zenox98's Forum Posts

  • GREDENIAND

    This is an English forum and the rules are you must either post in English or provide an English translation, or you are unlikely to get the help you require.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • See attached.

    As has been pointed out, events are run sequentially, so without an Else, all your actions are valid.

  • Unfortunately it uses a non-standard plugin, so unable to open.

    I did notice you are still using r172, so have you tried updating to the latest beta, or at least the stable r173 build to see if it's a bug that's already been fixed?

  • Something like:

    Ensure Layouts are numbered sequentially, such as 'Layout1', 'Layout2' etc, then

    System Go to Layout "Layout"& int(random(5)+1)

  • This is always caused by a third-party plugin - it's not a bug in C2.

    As you haven't provided any of the required information, I can only suggest you uninstall, reboot, remove the remaining C2 folder (save plugins if needed) the reinstall C2. This should give you a clean install. If not, please post more info with required .capx.

  • Another idea if you don't want to use a plugin.

    Add a Global called trailoverlap then set it to 1 when trail overlaps itself.

    Reduce the trail generation time, i.e. only create a trail every 0.1 seconds and only when Global trailoverlap = 0.

    See attached.

  • Have you got - or can you quickly knock up - a small example .capx that you can attach to your post, so that we can test on our systems?

    If we can verify your findings then it would then be a good candidate for posting in the 'Bugs' section for Ashley to check.

  • Sounds like an addon stopping the functionality. Try disabling any and all Firefox addons, then add one at a time to find the culprit.

  • Here's another .capx I use for playing

    I just tested adding an effect then printing and it printed correctly, including effect.

    May I humbly request of any other users that have a moment to please test this also.

  • Tom

    Top row breadcrumbs - the row starting with 'Board Index' does not appear to be clickable. All other breadcrumbs, including forum navigation links at bottom, are all functioning as expected.

  • I can't explain it?! Works every time for me.

    What browser are you using? I always use Firefox (currently Firefox 31.0).

  • I just quickly tried the attached which as you say, is probably just the page and not the snapshot:/ Although if I omit the Take Snapshot action, I also get a blank page! But adding the Take Snapshot printed the Outlined text and image.

  • You forgot the

    "System on canvas snapshot" condition. If you check manual. you'll see that this waits to make sure the snapshot has been taken. Then put the Browser action after it. That's what the following does:

    System on canvas snapshot - Browser Execute Javascript "window.print();".

  • You have to take a snapshot first using the system action, then add a condition

    System on canvas snapshot - Browser Execute Javascript "window.print();".

    Just tried and it worked, but not perfect.

  • Maybe try the Browser objects 'execute javacript' action and set it to "window.print();" in combination with the System Action - Take Snapshot.