# This macro will do bla, bla $x = 0 Goto Position=Top While not($_EOL) # Loop through the entire file $x = $x + 1 # count the number of waypoints Goto Position=Next EndWhile # Show total number recs Pause Msg=$x |
$FileName = $_AppData + "\test.GPX" LOAD File="$FileName" |
LOAD File=$_AppData + "\test.GPX" |
# Load latest pocket query of my finds into Ozi explorer, then exit GSAK LOAD file=c:\temp\latest.GPX FILTER name="Only found caches" EXPORT Type=Ozi File="c:\temp\test.wpt" EXIT |
#example of macro to combine the results of 3 different filters # load first filter FILTER name="filter1" # load second filter FILTER name="filter2" join=or # load the 3rd filter FILTER name="filter3" join=or If $_FilterCount = 0 Cancel Msg="Sorry, there are no records in your combined filters" EndIf |
# example of macro to send override icons to GPS #Load first filter condition FILTER name="Found by my friend Bozo" EXPORT type=gps settings="set icon to funny face" # Load second filter condition FILTER name="Difficulty 5 caches" EXPORT type=gps settings="set icon to sad face" |