...ich hab's!http://gsak.net/board/style_images/1/icon6.gif
↧
Souvenirs in FSG einbinden by mel-whv - 2016-02-13
↧
Re-collect FavPoints by HHL - 2016-02-13
Version 1.5
Tweaks on showing balances.
Hans
Tweaks on showing balances.
Hans
↧
↧
Magellan explorist GC on Windows 10 by clyde - 2016-02-13
I also have an Explorist GC and it works fine under Windows 10. As I have no other reports of Explorist GC problems under Windows 10, it would appear to be an issue specific to your setup.
This is the strange part - if your Explorist GC is connected as a drive letter then it *should* be seen by GSAK. The "signature" that GSAK currently uses to detect an Explorist GC is that the drive must contain both the folders "Geocaching" and "App". Check your drive E: to verify that both these folders are present. Here is a screen shot of what my Explorist GC drive shows under Windows 10 (mine connects as drive "F:") :
QUOTE (Landsdown) |
My Magellan is set to "Connected to PC" and I can see this in the device manager and as drive E: in my computer. |
This is the strange part - if your Explorist GC is connected as a drive letter then it *should* be seen by GSAK. The "signature" that GSAK currently uses to detect an Explorist GC is that the drive must contain both the folders "Geocaching" and "App". Check your drive E: to verify that both these folders are present. Here is a screen shot of what my Explorist GC drive shows under Windows 10 (mine connects as drive "F:") :

↧
Support thread for Nuvi_GPX_v2 by Red Roo - 2016-02-13
QUOTE (p2tek @ February 13, 2016 11:57 pm) |
On Saturday 2-13-16, I updated GSAK to v8.5.1.68 and macro Nuvi_GPX_v2.Gsk to v2.24.1. In trying to run this macro, I find that I am unable to delete a folder in the GPX Folder Editor. I check the box, click on "Erase Selected Folder(s)" and the same dialog box is returned to me with the intended delete still present. Sure would appreciate a quick fix on this because I have a caching outing scheduled for Monday 2-15-16. |
I'll look at this today but I'm on the road at the moment, so I'm a bit limited.

↧
Support thread for Nuvi_GPX_v2 by lignumaqua - 2016-02-13
QUOTE (p2tek @ February 13, 2016 10:57 am) |
On Saturday 2-13-16, I updated GSAK to v8.5.1.68 and macro Nuvi_GPX_v2.Gsk to v2.24.1. In trying to run this macro, I find that I am unable to delete a folder in the GPX Folder Editor. I check the box, click on "Erase Selected Folder(s)" and the same dialog box is returned to me with the intended delete still present. Sure would appreciate a quick fix on this because I have a caching outing scheduled for Monday 2-15-16. |
In the meantime, you can easily delete folders using Windows Explorer, no need for a macro.
↧
↧
Nuvi_GPX_v2 by Red Roo - 2016-02-13
Nuvi_GPX_v2.Gsk v2.24.2 - Maintenance
Fixed a problem where the Folder Editor was not erasing Marked Folders (inadvertently left in after testing for v2.22).
Fixed a problem where the Folder Editor was not erasing Marked Folders (inadvertently left in after testing for v2.22).
↧
Support thread for Nuvi_GPX_v2 by Red Roo - 2016-02-13
QUOTE (p2tek @ February 13, 2016 11:57 pm) |
On Saturday 2-13-16, I updated GSAK to v8.5.1.68 and macro Nuvi_GPX_v2.Gsk to v2.24.1. In trying to run this macro, I find that I am unable to delete a folder in the GPX Folder Editor. I check the box, click on "Erase Selected Folder(s)" and the same dialog box is returned to me with the intended delete still present. Sure would appreciate a quick fix on this because I have a caching outing scheduled for Monday 2-15-16. |
New version (2.24.2) is available here to fix this problem

↧
eigene Log-Texte übersetzen by Buddi - 2016-02-14
Hi,
ich versuche mich gerade an einem Macro das mir eigene Log-Texte übersetzt. Funktioniert auch im Prinzip, nur leider müssen die Texte dafür im Bereich User-Notes stehen, Bereich Log-Section. Ich möchte aber eigentlich die Texte übersetzen die im Publish-Bereich zu sehen sind, über die Fieldnotes rein gekommen. Gehe ich dort auf Edit gibt es ja den großen Reiter "Log-Text" in dem ich meine Logs erfasse. Wenn ich damit fertig bin möchte ich im Prinzip zurück in die Übersicht und dort z.B. einen Cache markieren, Makro starten und dieser Text soll übersetzt und mit der Übersetzung ergänzt werden. Jemand eine Ahnung wie ich an dieses Feld komme?
MfG Jörg
Bisher aus dem vorhandenen Translate-Makro zusammengebastelter Ansatz:
GoTo Position=Top
transaction action=begin
$Htmlfilepath = $_AppData + "\html"
$HTMLFile= $Htmlfilepath + "\translation.html"
while not($_EOL)
$sourcetext = Extract($d_UserNote,"$~",1) + "$~" + Extract($d_UserNote,"$~",2)
$toTranslate = Extract($d_UserNote,"$~",2)
$toTranslate = Replace($_Quote,"%22",$toTranslate)
$toTranslate = Replace(" ","+",$toTranslate)
$toTranslate = Replace("!","%21",$toTranslate)
$toTranslate = Replace("#","%23",$toTranslate)
$toTranslate = Replace("$","%24",$toTranslate)
$toTranslate = Replace("&","%26",$toTranslate)
$toTranslate = Replace("'","%27",$toTranslate)
$toTranslate = Replace("(","%28",$toTranslate)
$toTranslate = Replace(")","%29",$toTranslate)
$toTranslate = Replace("*","%2A",$toTranslate)
$toTranslate = Replace("=","%3D",$toTranslate)
$toTranslate = Replace("?","%3F",$toTranslate)
$toTranslate = Replace("@","%40",$toTranslate)
$toTranslate = Replace("<","%3C",$toTranslate)
$toTranslate = Replace(">","%3E",$toTranslate)
$url = "http://translate.google.com/translate_a/t"
$PostData = "client=j&hl=en&sl=auto&tl=en&text=" + $toTranslate
GOSUB name=PostHTML
$text = GetFile($HTMLFile)
$text = UTF8($text,"d")
$text = Substr($text,3,len($text)-9)
$text = Replace("\r\n",$_NewLine,$text)
$d_UserNote = $sourcetext + $_NewLine + $_NewLine + $text +1
goto position=next
endwhile
transaction action=end
BEGINSUB Name=PostHTML
SHOWSTATUS msg="Getting online HTML file, please wait..." Width=350
$VBSFile = Quote($Htmlfilepath + "\PostHTML.vbs")
$Arguments = " " + Quote($URL) + " " + Quote($Postdata) + " " + Quote($HTMLFile)
$result = $VBSFile + $Arguments
RUNPGM pgm=$VBSFile parms=$Arguments wait=yes
SHOWSTATUS Msg="Done" Display=on
ENDSUB
ich versuche mich gerade an einem Macro das mir eigene Log-Texte übersetzt. Funktioniert auch im Prinzip, nur leider müssen die Texte dafür im Bereich User-Notes stehen, Bereich Log-Section. Ich möchte aber eigentlich die Texte übersetzen die im Publish-Bereich zu sehen sind, über die Fieldnotes rein gekommen. Gehe ich dort auf Edit gibt es ja den großen Reiter "Log-Text" in dem ich meine Logs erfasse. Wenn ich damit fertig bin möchte ich im Prinzip zurück in die Übersicht und dort z.B. einen Cache markieren, Makro starten und dieser Text soll übersetzt und mit der Übersetzung ergänzt werden. Jemand eine Ahnung wie ich an dieses Feld komme?
MfG Jörg
Bisher aus dem vorhandenen Translate-Makro zusammengebastelter Ansatz:
GoTo Position=Top
transaction action=begin
$Htmlfilepath = $_AppData + "\html"
$HTMLFile= $Htmlfilepath + "\translation.html"
while not($_EOL)
$sourcetext = Extract($d_UserNote,"$~",1) + "$~" + Extract($d_UserNote,"$~",2)
$toTranslate = Extract($d_UserNote,"$~",2)
$toTranslate = Replace($_Quote,"%22",$toTranslate)
$toTranslate = Replace(" ","+",$toTranslate)
$toTranslate = Replace("!","%21",$toTranslate)
$toTranslate = Replace("#","%23",$toTranslate)
$toTranslate = Replace("$","%24",$toTranslate)
$toTranslate = Replace("&","%26",$toTranslate)
$toTranslate = Replace("'","%27",$toTranslate)
$toTranslate = Replace("(","%28",$toTranslate)
$toTranslate = Replace(")","%29",$toTranslate)
$toTranslate = Replace("*","%2A",$toTranslate)
$toTranslate = Replace("=","%3D",$toTranslate)
$toTranslate = Replace("?","%3F",$toTranslate)
$toTranslate = Replace("@","%40",$toTranslate)
$toTranslate = Replace("<","%3C",$toTranslate)
$toTranslate = Replace(">","%3E",$toTranslate)
$url = "http://translate.google.com/translate_a/t"
$PostData = "client=j&hl=en&sl=auto&tl=en&text=" + $toTranslate
GOSUB name=PostHTML
$text = GetFile($HTMLFile)
$text = UTF8($text,"d")
$text = Substr($text,3,len($text)-9)
$text = Replace("\r\n",$_NewLine,$text)
$d_UserNote = $sourcetext + $_NewLine + $_NewLine + $text +1
goto position=next
endwhile
transaction action=end
BEGINSUB Name=PostHTML
SHOWSTATUS msg="Getting online HTML file, please wait..." Width=350
$VBSFile = Quote($Htmlfilepath + "\PostHTML.vbs")
$Arguments = " " + Quote($URL) + " " + Quote($Postdata) + " " + Quote($HTMLFile)
$result = $VBSFile + $Arguments
RUNPGM pgm=$VBSFile parms=$Arguments wait=yes
SHOWSTATUS Msg="Done" Display=on
ENDSUB
↧
Formatted Table by Granett - 2016-02-14
Could be a bug or could be desired behavior or I could have missed the explanation in this thread somewhere.
I have two option fields selected and the macro runs as expected but if I deselect the first option and leave the second option selected I am presented with this error.
![user posted image]()
I have been going back over some of the challenges I have completed in the past and converting the logs to Markdown. Different challenges require different fields and it would be nice to select and deselect the Optional Fields as desired.
Cheers
Graeme
I have two option fields selected and the macro runs as expected but if I deselect the first option and leave the second option selected I am presented with this error.

I have been going back over some of the challenges I have completed in the past and converting the logs to Markdown. Different challenges require different fields and it would be nice to select and deselect the Optional Fields as desired.
Cheers
Graeme
↧
↧
CopyFromDropbox.gsk fails with Patch 62/63 by FILD - 2016-02-14
It happens again with the same message....
Setting:
- GSAK is not open and uses to start with the Macro "CopyFromDropBox.GSK"
- From GC-Listing in my browser I download GPX-file and select open with GSAK
- GSAK starts
- Macro "CopyFromDropBox.gsk" starts
- Macro creates/opens the database "XX_TempDB_XX"
and now I get the error message shown in my first posting.
After cleaning up database and restart the database "XX_TempDB_XX" is not deleted and has to be deleted by hand, after that, I close down GSAK, start GSAK again and - same procedure starts again ...
Setting:
- GSAK is not open and uses to start with the Macro "CopyFromDropBox.GSK"
- From GC-Listing in my browser I download GPX-file and select open with GSAK
- GSAK starts
- Macro "CopyFromDropBox.gsk" starts
- Macro creates/opens the database "XX_TempDB_XX"
and now I get the error message shown in my first posting.
After cleaning up database and restart the database "XX_TempDB_XX" is not deleted and has to be deleted by hand, after that, I close down GSAK, start GSAK again and - same procedure starts again ...
↧
Formatted Table by Kai Team - 2016-02-14
Please see the first Note in this post in the macro release thread.
↧
eigene Log-Texte übersetzen by HHL - 2016-02-14
Das geht ungefähr so:
![user posted image]()
Makro-Schnipsel:
Frohes Coden
Hans

Makro-Schnipsel:
GSK |
IF seek($_PublishCode) $result = sqlite("open","$_AppData\gsak.db3") $result = sqlite("sql","select pText from PublishLogs where rowid = $_PublishId1","SqlGet=Yes") $data = sqlGet("pText") Pause Msg="$data" SqlGetClose ENDIF |
Frohes Coden
Hans
↧
BBcode function and Markdown by Spurges - 2016-02-14
GSAK: 8.5.1.66
I was working on a macro that uses the BBcode function, and it does not process Markdown syntax. I realize the GS Markdown implementation may still be in flux (too bad GS didn't do any real testing), so I'm just wondering what the plan is.
Will there be a new function called Markdown (or something) or will Markdown processing be added to the BBcode functionality?
Inquiring minds want to know.
I was working on a macro that uses the BBcode function, and it does not process Markdown syntax. I realize the GS Markdown implementation may still be in flux (too bad GS didn't do any real testing), so I'm just wondering what the plan is.
Will there be a new function called Markdown (or something) or will Markdown processing be added to the BBcode functionality?
Inquiring minds want to know.
↧
↧
invalid argument to date encode by geralduscambrensis - 2016-02-14
Thanks. How would I post a gpx file to you? Found it ![biggrin.gif]()
OH DEAR. "can't upload that type of file" can't upload a gpx file to GSAK, how odd
They have worked until recently. They load up to my Dakota 20 okay but strange things happen when I try to download GPS to GSAK

OH DEAR. "can't upload that type of file" can't upload a gpx file to GSAK, how odd
They have worked until recently. They load up to my Dakota 20 okay but strange things happen when I try to download GPS to GSAK
↧
invalid argument to date encode by geralduscambrensis - 2016-02-14
This shows some of the anomalies when I down load from Dakota 20 to GSAK
Any help?
Any help?

↧
invalid argument to date encode by The CEO - 2016-02-14
QUOTE (geralduscambrensis @ February 14, 2016 07:24 pm) |
OH DEAR. "can't upload that type of file" can't upload a gpx file to GSAK, how odd |
ZIP the GPX-file first, then upload the ZIP file.
↧
invalid argument to date encode by geralduscambrensis - 2016-02-14
Thanks. I wonder if that will sort out the problem?
Copy of one of the gpx files that throws up the error message
Copy of one of the gpx files that throws up the error message
↧
↧
FSG Plugin CachetypesABC by Alancache - 2016-02-14
This FSG Plugin macro will display a table showing which types of cache you have found whose name starts with each letter and number.
I started with CachetypesDT plugin by _SOP_ and updated the code by studying the ABC plugin by sbeelis.
To run the macro, include
<plugin>FSGPlugin_CachetypesABC</plugin>
in one of the notes sections of FindStatGen3
The macro seems to be working for Lab caches, but not for Waymarks. My knowledge of macro coding is very limited - so if anyone has any idea why this is feel free to say.
You can of course view an example output on my geocaching profile.
I started with CachetypesDT plugin by _SOP_ and updated the code by studying the ABC plugin by sbeelis.
To run the macro, include
<plugin>FSGPlugin_CachetypesABC</plugin>
in one of the notes sections of FindStatGen3
The macro seems to be working for Lab caches, but not for Waymarks. My knowledge of macro coding is very limited - so if anyone has any idea why this is feel free to say.
You can of course view an example output on my geocaching profile.
↧
FSG Plugin CachetypesABC by Alancache - 2016-02-14
Here is the file
↧
invalid argument to date encode by Kai Team - 2016-02-14
I ran the file through an online XML validator and it reported 132 errors in the way dates are formatted in the file:
![user posted image]()
Dates in GPX files should be formatted as YYYY-MM-DD, like this (including the time stamp):
or this (without a time stamp):
whereas the dates in your file are formatted like this:
It appears that Geoprinter is using an illegal date format in the GPX files it generates. Perhaps Geoprinter changed the date format in their files since the last time this worked?

Dates in GPX files should be formatted as YYYY-MM-DD, like this (including the time stamp):
QUOTE |
2016-02-07T08:00:00Z |
or this (without a time stamp):
QUOTE |
2016-02-07 |
whereas the dates in your file are formatted like this:
QUOTE |
07/Feb/2016 |
It appears that Geoprinter is using an illegal date format in the GPX files it generates. Perhaps Geoprinter changed the date format in their files since the last time this worked?
↧