septeven's Forum Posts

  • I've already found a solution to hide the browser bar in safari in iOS (I mean directly in the browser).

    But as far as I remember, it worked only in landscape mode ... I don't know why...

    Let me trying it again and if it still works, I'll give you the solution here.

  • R0J0hound

    I think he speaks about textbox and not text object.

    You can play with the borders property to disable the '3d' effect.

  • About the new pf_nosize flag,

    could it be possible to replace it by two flags : pf_noWidthSize & pf_noHeightSize (need it to prevent height resizing...)

  • As I said on fb,

    • Ability to define more than one dependency.
    • Use image to fill a quad in edittime.js.

    I'm sure that I forgot other things, I'll add it to this list soon.

    Thx for opening this thread.

  • Thanks all of you guys.

    The newt's solution was the one I needed.

    Solved ;)

  • Hey guys,

    I'm looking for a way to get text from an instance of a text object (by iid or uid)... ?

    Thx

  • Great, I'll try it tonight ;)

  • add a "is touching" 'or' condition to "Is not in touch" condition as this :

    Touch X Is in touch
    [b]or
    Touch Is touching "object"[/b]
    --> System - Set dragging to 0
    --> Set sSX to scrollX
    --> Set sSY to scrollY

    And use "@" before a username ("@septeven") to send an alert to the user.

    Because I may not see your answer though.

  • Laurent

    Here is the capx

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Laurent

    Just change the click references by touch references.

    I already turned it for touch, but i'm not on my computer right now.

    I'll upload it tomorrow if you don't figure it out.

  • Kyatric

    The example is a little bit slow at the beginning, only on the first loading. I have to implement a correct preloading system.

    But, this example calls images which are hosted on my dropbox. In your own project, you have better to put the images in one folder of your project. The loading should be quicker so.

    I would have loved to make this plugin with canvas and a basic sprite loading but I have a pretty bad knowledge of canvas javascripting... :/

  • Image Button

    Version: 0.2 (01/04/2013)

    Download ImageButton.zip

    Here is a plugin which lets you make button from images.

    1. Set a URL (in the properties) for Normal, Hover, Pressed and Disabled.

    2. Set the same size than your image in the common properties.

    Enjoy

  • Pode thanks for informations ;)

  • Tell me exactly what you need.

    I'm pretty sure that iScroll could help you on this.

  • Ashley should add this easy option to textbox.

    Anyway, you can use calljs plugin.

    First, add a textbox and set an <font color="red">ID_textbox</font> in the object's properties.

    Then,

    <font size="2">[i]When (action)[/i]
    --> [b]CallJS[/b] - Execute [i]"var a=document.getElementById(""<font color="red">ID_textbox</font>""); a.blur();"[/i]</font>

    And voila ;)