DAG's Forum Posts

  • Quick and dirty solutions:

    Edit data.js and change © to \u00A9

  • Problem Description

    Since the latest updates, there is a problem with utf-8 chars like the Copyright symbol "©".

    Construct 2 export a data.js file. This is a new feature and I think this makes some problems.

    Steps to Reproduce Bug

    • Just create a project with a text object.
    • Set the text property to "© Copyright 2014 xxx"
    • Export to ejecta and run on iphone.

    Observed Result

    On device the text looks like: "© Copyright 2014 ..."

    Expected Result

    With out the first letter "Â". (wrong encoding)

    Affected Browsers

    Only with ejecta. On desktop there are no problems.

    Construct 2 Version ID

    r190

  • Just use the direction of the bullet.

    For example calculate the angle(xprev,yprev,x,y) or x/y separately (dx = xprev-x; dy = yprev-y).

    On collision - move the the object towards to the angle.

  • Just check the impact of the bullet. For example x position or direction. then move the victim to the the opposite direction.

    For animations you can write some code on "every tick" or use position plugins like "moveTo".

  • Try to lock the orientation and use the "browser" object. There is a condition for mobile orientation. (not tested).

    Which runner (webviewer) are you using?

  • Hi,

    the function object is awesome. And the recently added autocomplete feature is really great.

    It would be great if it were possible to change the parameter name.

    Only the names display in the call function window.

    Suggestion: Add on the "On function" Event window textboxes for entering parameter names.

    Assigned to the parameter index. In the function can still be used FunctionParam(n).

    What do you think about this feature?

  • Try Construct 3

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

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

  • I don't need the "preloadd sounds" (Project Properties). Because on layout start, I preload all sound by playing with -x db (silent) (the preload function of sound object don't works fine). Whatever...

    Ashley: Can you publish the source code of the "preload sounds" function? How does this work?

    The fact is that this feature doesn't work with ejecta in combi with the sound object etc.

    Reproducibility (yet): 0%

  • Problem Description

    I have a very complex project. With a lot of sounds.

    A few weeks ago the feature "Preload sounds" (Project Properties) was not yet available.

    So I build my own sound preload on layout start.

    Whatever ... I don't know whats the problem is. But I want report a issue.

    If the Preload Sounds property is YES, my project does not load using ejecta.

    Stops at ca. 10-11% (c2 loadingbar).

    I can't reproduce this bug with new created project. :/

    But this bug exists 100%. - Perhabs other users have the same problem.

    I want to say: Test this feature (preload sounds) again extensively.

    Attach a Capx

    Sorry, I don't want to publish my source code. And can't reproduce.

    Steps to Reproduce Bug

    No way yet. (Maybe soon.)

    Observed Result

    The load with ejecta does not work. Hangs at 10% - 11%.

    And on browser the processing time takes longer. But works.

    Operating System and Service Pack

    iOS using Ejecta

    Construct 2 Version ID

    r177 (since the feature preload sounds?)

  • Problem Description

    Multiple Tilemaps cannot be switched /selected.

    Needed for multiple layers.

    Steps to Reproduce Bug

    • Step 1 Create a Tilemap.
    • Step 2 Place it to Layer 0.
    • Step 3 Clone the Tilemap.
    • Step 4 Add a Layer (Layer 1).
    • Step 5 Place the second Tilemap1 (cloned) to the added Layer 1.
    • Step 6 Try to switch your tilemaps.

    Observed Result

    You will see that you can only use the latest created tilemap. (Tilemap Bar).

    It is not possible to select and edit other tilemaps. The Tilemap Bar focused the latest created tilemap.

    Expected Result

    When I click on a tilemap I want to edit it. So the tilemap bar must update / focus the clicked tilemap.

    Operating System and Service Pack

    Windows 8

    Construct 2 Version ID

    r175 64bit

  • Thanks

  •   Little Big Piano

    I have made this App because I couldn't find any good piano App on the App Store.

      • Choose a song from a continuously growing library. • Just tap to play. Best way to play on a touch device. • Handle the timings. • Helpful colorsystem (According to the note length) • The piano can also play automatically (just listen). • Learn and Play your favorite songs. • Play your own tune. • Suggest Songs. • For iPad and iPhone. (Universal App)

    Just try it out and enjoy. It's for free! Have Fun!

    Read more ...

    Visit DAGapps.de

  • You no longer need to enable each app for iAd in the Manage Your Apps module in iTunes Connect.

    After you sign the iAd App Network Contract and integrate the iAd Framework into your app, you approved and "Ready for Sale" apps will all be eligible to receive iAd ads.

    At iTunes Connect you can see your reports at the iAd module.

    Its very easy now. Just show Ads via Ejecta for example. (Tip for Ejecta: You have to add some lines to display the advertisements banners correctly.)

    With iAp I have no experience yet.

  • Update:

    Ejecta (Support by posting)

    BLE Mini (Maybe a solution. Need self-built plugin)

  • SOLUTION:

    javascript:

    function MathSign(number)
    {
    	return number?number<0?-1:1:0;
    }
    [/code:2ydogslp]