• Initiating Background Services BEFORE onTimerStart()

    I've tried to "registerForTemporalEvent" in the onStart() AppBase method, and in the DeviceView initialize() method. I get an error (at least in the simulator) about Out of Bounds.

    It works fine in the onTimerStart() method. But this is…

  • RE: Is SDK 7.1.0 an April's fool joke?

    NAHHHH!

    K. Just trying to give the simplest and least obtrusive possible solution for the specific issue where the return type has changed for getInitialView() (and other functions, such as getSettingsView()) and you want to build with both…

  • RE: App crashes in simulator w/o any further information

    Yes, at least partly. When I started to copy resources from the failing project into a new project (where I planned to test samples code), it suddenly read "undefined symbol qout", which is a trivial standard. Couldn#t find any help on that online, but…

  • RE: System 7 questions

    System 7 is adding a much missed native sort implementation (Array.sort), which is great.

    Is there a chance this will be backported to v1.0.0 as it is done with ResourceId and Tuple? I think it has always been a glaring ommission in the…

  • REVIEW_REQUEST_STATUS_DENIED

    I am trying to implement WatchUi.makeReviewTokenRequest(). Everything seems to be working, but after I rejected the review once on the watch, I am no longer able to request review. I always get ReviewRequestStatus "REVIEW_REQUEST_STATUS_DENIED". And even…

  • Console Not Reporting?

    This is strange. I had to reinstall Eclipse. I get compiler output just like normal.

    But my print statements, and even run time errors don't show up at all. I installed Eclipse again just to be sure. Same. I can't find a setting that would prevent these…

  • RE: drawArc based on a percentage

    Sorry but I really don't understand...

    The arc is based on this:

        0 degrees: 3 o'clock position.
    
        90 degrees: 12 o'clock position.
    
        180 degrees: 9 o'clock position.
    
        270 degrees: 6 o'clock position.

    Or at least…

  • Play two AnimationLayers at the same time

    It appears as though there is a limit to the number of active animation layers, I currently have two loaded that are supposed to be played in parallel but only the second ever moves. I have looked at the animation sample app and that only ever animates…

  • Symbol not found with new SDK

    Hi

    I recently updated my datafield to the new sdk 4.2.3 and now 4.2.4 (from 4.1.2).

    I got a compilation error in this line:

    if(info has :distanceToDestination && info.distanceToDestination != null) {

    It seems the new SDK does not have the "…

  • Activity.getActivityInfo().elapsedDistance gets stucked on Simulator Edge Devices

    Since ConnectIQ 4.2.* elapsedDistances gets stucked on Simulator for Edge Devices, at least for datafields.

        function compute(info) {
       		System.println(info.elapsedDistance + " "+ Act.getActivityInfo().elapsedDistance);
       		return;
       	}…