jamban's Forum Posts

  • Hi, there is no option to export Tizen in Construct 3, unlike in Construct 2.

    please make this option appear again. I really need it for tizen platform.

    Thank you

  • You do not have permission to view this post

  • You do not have permission to view this post

  • You do not have permission to view this post

  • You do not have permission to view this post

  • Hi, im trying to make web whatsapp webview on contruct 3.

    can you helpme to show full page of web.whatsapp.com using contruct 3.

    I need to modify user agent so the page will be desktop mode.

  • Hi, I've tried to load sprite from url but its doesn't work in construct 3.

    but when I try it on Construct 2 its work!

    is this bug?

  • Hi, I just finsished my game, and I want to build my game in Android studio so I export it to Android Studio Project. But the problem is my 3rd party plugin must be add manually.

    Can you tell me how to add plugin manually when my project was exported to Android studio project?

    I've tried to add on config.xml but still not working

  • Hi, anyone can help me?

    So, my project is like "cool text generator", user will write some text on textbox, and then the result is text will be change to be different font in every text. The text is same object

    After that user can copy thet text to clipboard by clicking icon. I used Copytoclipboard plugin from rex.ranbow.

    this is the UI:

    This is the event:

    The problem is: when I click copy icon, user just copy text with instance variable id : 1

    What I want :

    this is the sample capx (with plugin included)

    drive.google.com/file/d/1M3smRSCwYF3M50yoPfD3nMX9gmw938HT/view

    (repost)

  • Hi, anyone can help me?

    So, my project is like "cool text generator", user will write some text on textbox, and then the result is text will be change to be different font in every text. The text is same object

    After that user can copy thet text to clipboard by clicking icon. I used Copytoclipboard plugin from rex.ranbow.

    this is the UI:

    This is the event:

    The problem is: when I click copy icon, user just copy text with instance variable id : 1

    What I want :

    this is the sample capx (with plugin included)

    drive.google.com/file/d/1M3smRSCwYF3M50yoPfD3nMX9gmw938HT/view

  • Create two variables with both alphabet strings, then replace each letter:

    > Variable alphabet1 = ABCDEFGHIJKLMNOPQRSTUVWXYZ
    Variable alphabet2 = ₳....(funky letters)
    
    Repeat len(alphabet1) times
    Set text to Replace(text, mid(alphabet1, loopindex, 1), mid(alphabet2, loopindex, 1))
    

    Its work! thank you,

    you saved my life :)

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • Currently I have project to create funky text generator.

    I want to replace every alphabet character on my project.

    I use RegexReplace(TagText.Text, "a", "g", "₳") but it just change one character only, I want to change all the character a-z

    to

    Thank you

  • Note that Facebook and similar sites have a lot of embedding options and APIs for specific features, that you should be able to plug into an iframe object no problem. You'll have to look at their documentation for more details.

    thank you, but I want to link a whole fb page :D

  • yes I know, but can I control the layout size?

  • Hi, I tried to showing facebook page using browser plugin (go to url), it success but I can't control the size of layout. I was use iFrame to showing the site, but facebook block the iFrame function.

    Can you help to solve my problem?

    for example,

    my layout project is 800x800, I need to show the facebook page with layout 700x700

    Thank you