septeven's Forum Posts

  • works well in win 7 64

  • 2Bdigital

    will be working

    Btw, I guess it's not difficult to do it in a plugin, and I guess it's less difficult to do it in construct 2 as well.

  • 2Bdigital I will be working on a carousel part for my plugin, that finally behaves with swipe gesture.

  • chrisbrobs I thought about a wysiwyg system but I'm pretty sure that is impossible to do this with the Construct 2 SDK right now. Or if it is, it will be heavy to do. Btw, could you share this wizard tool ?

  • Do you talk about that

  • Keska rgb(255,255,255) is white... if it's your question.

    Besides Ashley, does Construct 2 support rgba ? I supported it in my plugins but didn't think to test it with default functions of C2 ?

  • Ashley Ohh really ? I was sure that it worked correctly. I'm not on the computer right now, I'll check it tomorrow though.

  • smitchell Thanks for sharing your experience. To be honest, I can't wait to see how users uses my plugin, it was really fun to develop it and most of all, I learnt a lot!

    About your link, yes maybe, but be sure it won't be for now. The next thing is to adapt a carousel option.

  • Ashley did you see what I wrote before? When I use the third party plugin mouse-touch, it works. Maybe you have to look to this way....?

    About your edit, I don't think so, considering I develop only apps...

  • Ashley Sorry to bumped it again but do you think it will be fixed soon?

  • smitchell are you the only user of iScroll :)

    You can load an image with url or just set 'image.png' to load an image in your index.html folder. Hopefully you'll see what I mean!

    About the helpfile, yes I'll do it asap.

    Well, what about your experience with this plugin?

  • Version 1.1

    • Changelog -

    FIX - Issues when the minifier option was checked in the export dialog (with radius corners, shadow and the input line actions).

    FIX- A bug when you modified the text of a linked line.

    FIX- The header and footer bar wasn't centered when you changed the width.

    ADD- Position flags

    ADD- Back of formating (bold and italic) actions in the event sheet.

    ADD- An iOS toggle line action with iOS 4- and 5+ supported (Choose the version in the iScroll object properties).

    ADD- Condition 'Toggle button status'.

    ADD- Action 'Set toggle button status'.

    ADD- Ability to add text in the input line action.

    The main new feature

    <center><img src="http://dl.dropbox.com/u/27157668/construct2/images/iscroll/toggle.jpg" border="0" /></center>

    Enjoy, and hopefully, give your feedbacks.

  • Ashley It will be great.

  • Ashley Unless I am mistaken, when you load sth dynamically, it has to be a file which is either online or local, but if it's a local file, there's no way to specify the path of the plugin folder (where the file should be), isn't it ?

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • OK It was a known issue (that I was aware) from the original plugin.

    In fact, I added this :

    new window["iScroll"] (...,
    onBeforeScrollStart: function (e) {
    var target = e.target;
    while (target.nodeType != 1) target = target.parentNode;
    if (target.tagName != 'SELECT' && target.tagName != 'INPUT' && target.tagName != 'TEXTAREA')
    e.preventDefault();

    but this is apparently broken with the minifier and I didn't figure out to write it correctly.

    I've finally added an addEventListener directly to the input form which makes a stopPropagation.