Time for action – making the location card work
The Location card has three fields in it, for latitude, longitude, and a title for the location. The user could well type in the details manually, but if they happen to be at the location in question there's a button there to grab the location and to fill in the numbers automatically.
Edit the script of the Set to Current Location button, and type in the following lines:
on mouseUp mobileStartTrackingSensor "location", true put mobileSensorReading("location", false) into tLocation mobileStopTrackingSensor "location" set the itemdelimiter to comma if the number of items in tLocation = 3 then put item 1 of tLocation into field "latitude" put item 2 of tLocation into field "longitude" end if end mouseUp
Nothing too tricky there, the location is grabbed and the latitude and longitude entries are stored in the two fields.
Edit the script of the Cancel button, and change it to this easy script:
on mouseUp go to card ...