ArcadEd's Forum Posts

  • I'll open a support ticket with them, thanks Ashley. I'm not sure where the issue is, or if it's just a combination of Jellybean, Construct and Phonegap.

  • Well phonegap just updated their SDK, but it didn't fix the issue. Based on the code and info I posted above, does anyone have any info on how I might fix this manually?

    Thanks.

  • If anyone has any ideas where I would put the above code I would appreciate it.

  • Thanks for clarifying that for me. I figured as much as it works fine in the web browser, just not compiled with phonegap. I'm not really sure how all of these things come together in the end, I just know how to get there :).

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Well here seems to be a fix that is going around. I'm not sure if it's related, but if so I would love to know where to drop this code to fix the issue.

    The solution, just add this code in the top of the iscroll.js

    var last_click_time = new Date().getTime();

    $("a").live("click", function(ev) {

         var click_time = ev["timeStamp"];

         if (click_time && (click_time - last_click_time) < 1000) {

              ev.stopImmediatePropagation();

              return false;

         }    

         last_click_x = click_x;

         last_click_y = click_y;

         last_click_time = click_time;

    });

  • Appears to be an issue with either Phonegap or Jquery 1.7.1 and not Construct. I'll post more information or a fix if I find one.

  • So I just got in my Nexus and first thing I did was install my Word Search for Kids game on it. The game works perfect on my phone, HTC Thunderbolt.

    Every touch is registering twice. In my game you press letters to select them, and press them again to deselect them. Each touch causes the letter to highlight, and then unhighlight. It plays the sound for each as well, it's like I am double clicking it. Happens on every touch event.

    Any ideas?

  • That would be awesome Pode, if you could add that option :).

  • Is there a way to set parameters for the iframe tag? For example I want to turn off scrolling in my window and there doesn't seem to be a way to do it in CSS that I can find.

  • Thank you.

  • Thanks. I hope someone is able to get it fixed because sprite font is such a needed plugin for most of my games

  • It's ok, I appreciate what you have done so far.

  • OK, so I tried 3 different projects using sprite font. All with the same result, the layout using sprite font doesn't load. Not just the sprite font objects, but none of the other objects as well. All I get is my background image. Like I said, I tried it on 3 different games, some simple, some more complex.

    I then tried a game without sprite font and cocoon worked fine.

    I just wanted to update you. Wish I could give more information than that, but it's all I really have to go on :).

    And thanks so hard for working on this plugin, I believe it's one of the best plugins for C2 and wish it was implemented in standard builds.

  • OK, I think it's related to the sprite font plugin. I tried 3 games I have using it and they all do the same thing once there is a page using sprite fonts. I tried a game with no sprite fonts at all and it works fine. I'll update the sprite font thread.

  • Hmm. Actually it's doing it two of my games I have tested it on.

    edfarias.com/games/kaplow

    Same thing. Title screen is fine, when I press play I get just the background on the next screen.