Posts by fredMan

Welcome to our brand new Clickteam Community Hub! We hope you will enjoy using the new features, which we will be further expanding in the coming months.

A few features including Passport are unavailable initially whilst we monitor stability of the new platform, we hope to bring these online very soon. Small issues will crop up following the import from our old system, including some message formatting, translation accuracy and other things.

Thank you for your patience whilst we've worked on this and we look forward to more exciting community developments soon!

Clickteam.

    Hello everyone.
    I hope someone can help me with the HTML5-Exprorter plugin.
    I'm having trouble testing and solving the functionality of a small HTML5 application for mobile phones.

    What it is exactly about: Browsers like DuckDuchgo, Chrome, Edge, Opera and Vivaldi do not show any controls for mobile phones. With the Firefox browser I get all controls for mobile phones displayed. Everything is functional (control pad). Only the button (1) has no interaction.

    What I have done so far:
    - Searched the Steam forum and here for solutions without success.
    - Joystick control object inserted in the respective frames.
    - "Repeat while [Player1] pressed Fire 1" inserted as event.
    - Event "Repeat while [Player1] pressed Fire 1" queried in the storyboard control with: 'Jump to frame "start" (2)'
    - Testing the app on a mobile phone.
    - Testing the app in different browsers.

    Does anyone have a hint where I have made a mistake or how the button query should be?

    Thanks to all for helpful suggestions.

    Best regards
    fredMan :)

    If someone should have the same problems, below is the solution for my problem.

    Apache CORS / .htaccess
    <IfModule mod_headers.c>
    Header add Access-Control-Allow-Origin "*"
    Header add Access-Control-Allow-Methods: "GET,POST"
    Header add Access-Control-Allow-Headers "origin, x-requested-with, content-type"
    </IfModule>

    PHP side variable reception does not work with $_GET:
    $variable01 = $_POST['variable01'];
    $variable02 = $_POST['variable02'];

    Sometimes the simplest things are the hardest to solve.

    Best regards

    That's probably true.

    At the moment I am trying to integrate the app into my framework. When I call up the app using the standard file (created by Fusion) on my server, everything works without problems. However, if I integrate them into the framework, nothing will be displayed.

    I will probably have to work with iframes after all. ;o)

    I have a mental error somewhere.
    I want to send two fixed variable values to a (already finished and functional) PHP script.
    However, the data does not arrive at the PHP script.

    Definition in fusion:
    : ADD Post Data "x1" = "1"
    : ADD Post Data "x2" = "2"
    Get Url "https:// www. Homepagename .com / scriptname.php"
    (Spaces are intentionally inserted.)

    I just can't figure out where my fault might be. Can anyone help?

    Hello, everyone.
    I would like to check InGame to see if my HTML5 games have been included by other websites. For this purpose I would like to check the hostname with the HTML5 module "Hostname$ ("HTML5")".
    The idea was to pass the determined host name to a string variable and then check it.
    Unfortunately, it doesn't work.
    Does anyone have a possible solution or tip for me?