Page 1 of 1

mobilePickDate /Time missing handler error

Posted: Thu Jan 12, 2017 11:00 am
by Cheng
Hi,

when i try to use this one line code in simple OnButtonup function:

mobilePickDate "date"

The compile always give me missing handle error
Do i miss includes anything?

I use lastest stable v8.x win
I try use back version 6.x on another pc also same error

While i thought i could find some clues in this clock example but
It did not use mobilePickDate /Time as well

Kindly advise. Thanks

Re: mobilePickDate /Time missing handler error

Posted: Thu Jan 12, 2017 11:59 am
by Klaus
Hi Cheng,

1.welcome to the forum! :D

2. No need to hide you question deep into a subforum? :D
Will move this thread to the beginner forum.

3. Unfortunately "mobileXXX" handler will only work on mobile devices or in the simulator.
So you need to:

Code: Select all

...
if the environment = "mobile" then
   mobilePickDate "date"
   ### etc...
end if
...
Best

Klaus