Arne's Forum Posts

  • Savvy001

    Good that you found the issue. The Cordova export procedure is almost fully automatic nowadays. The only thing you need to remember for Intel XDK is to do the import of the project.

    I you start with a blank project you need to add the Cordova plugin manually as the configuration file is not read by the XDK.

    I was looking for a tutorial to reference but did not find a generic one for Cordova but the one for Crosswalk is good to read: https://www.scirra.com/tutorials/809/ho ... -crosswalk

  • amkp Thanks, I will check it and get back to you.

  • What Android versions do you have on those devices?

  • newt That's the one. If you publish via Amazon you can use a dedicated Amazon ad instead of e.g. Admob. Don't have any experience if it's better or not.

    We have some apps on Amazon, you just use a standard Cordova export. Test it first by dropping it on their app tester to see if it will work on Amazon specific devices, it usually works fine.

  • I have a Nexus 7 with Android 5.0 and the notification is shown as an icon and when I drag down the notification area I can also see the text message.

    When the app is in the background or killed the notification should always be visible as an icon. How long did you wait for the notification?

  • amkp You need to go on a dungeon quest to find the Custom Analytic part.

    Path: Parse Analytics > Events > (+) > UserClick Count > Custom Breakdown > UserClick > Filters

    Added an attachment with a screenshot how it should look when you find it.

    [attachment=0:6iemz5hq][/attachment:6iemz5hq]

  • amkp

    I did a Crosswalk export and sent the following data as JSON from the Parse Dashboard.

    {"name":"Arne","location":"Sweden"}[/code:186o681j]
    When it arrived on my Android device it looked like this:
    [code:186o681j]{"location":"Sweden","name":"Arne","push_hash":"d41d8cd98f00b204e9800998ecf8427e"}[/code:186o681j]
    
    The JSON you are showing looks like it came from an iOS device. The "aps" part are only sent to iOS devices.
    
    How do you send your JSON string?
  • I did this some time ago. Is that what you are looking for?

  • I want the code to be minified but I want to use "dot"-code completion also. Now I have code that looks like this:

    var queryClass = Parse["Object"]["extend"](qClass);
    queryObject = new Parse["Query"](queryClass);
    [/code:39a6ce09]
    It looks horrible,  fails JSHint/JSLint, is error prone, does not support code completion or JSDoc type documentation. Just plain bad!
    
    To test how good it can be, I did my own [url=https://www.frostyelk.se/development/edittimeLib.zip]edittime.js lib[/url] with documentation and code completion support and get this when I point to AddCondition i WebStorm:
    [img="https://www.frostyelk.se/development/AddCondDocsLibWS.PNG"]
  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Sorry Ashley for being unclear and jumping to solutions before making the requirements clear. What I want has nothing to do with extern.js but I saw it as a possible solution to my needs.

    What I want is:

    * Code completion in Webstorm when using external libraries in a plugin.

    As code completion is built on "dot" syntax it doesn't work when using literals. Another thing is that JSLint/JSHint complains about this, minor issue but I couldn't get Bracket to work after their last update.

    Any suggestions?

  • I forgot to make the request to Ashley, he is of course the only one to make improvements in this area

  • I agree with that you need to use the database functionality, the Analytics part is not suitable for this.

  • hmott I can see from the file structure that you have extracted the zip file directly into the plugins folder. You should instead extract the zip file in temporary location and then drag and drop the "parse1020.c2addon" file to an open Construct2 window.

    So to resolve the current problem you need first need to remove the folder "...\plugins\ParseFE1020\" before doing the drag and drop again.

    We are using the "new" method described in the manual to install plugins: https://www.scirra.com/manual/158/third-party-addons

    I will add a reference to the manual to make it clearer how to install external plugins.

  • Major update to include Parse Push Notifications.

    The new version support Parse Push Notifications for iOS and Android devices via Cordova export.

    Send push notifications very easily from the Parse Push Dashboard or make more complex pushes with Cloud code.

  • I have tried to get the FacebookConnect plugin to work for the last six months now:

    https://forums.html5dev-software.intel. ... =37&t=6845

    The last piece of the puzzle is to fix Crosswalk, i have a discussion with a build engineer at Intel now so it is ongoing but no solution yet.