+Gill & Tony 338 Posted October 29, 2020 If I know a users numeric userid, how do I construct the URL which will display their profile? I thought it was something like coord.info/PR<userid> but that doesn't work. Thanks Tony Quote Share this post Link to post
+HHL 657 Posted October 29, 2020 (edited) Use a GSAK macro: $userid = 123456 # change 123456 to your needs or use a form $corecode = NumToGsCode($userid) $CoordInfo = "http://coord.info/PR" + "$corecode" # Pause Msg="$CoordInfo" Clip Data=$CoordInfo WEB Url="$CoordInfo" Add a form for the userid input. Edited October 29, 2020 by HHL Quote Share this post Link to post
+Gill & Tony 338 Posted October 29, 2020 6 minutes ago, HHL said: Use a GSAK macro: $ownerid = 123456 # change 123456 to your needs or use a form $corecode = NumToGsCode($ownerId) $CoordInfo = "http://coord.info/PR" + "$corecode" # Pause Msg="$CoordInfo" Clip Data=$CoordInfo WEB Url="$CoordInfo" Add a form for the userid input. Thanks I can do that. Quote Share this post Link to post
Moun10Bike 462 Posted October 29, 2020 Or, use:https://www.geocaching.com/p/default.aspx?id=<User Number> 2 Quote Share this post Link to post
+Gill & Tony 338 Posted October 29, 2020 26 minutes ago, Moun10Bike said: Or, use:https://www.geocaching.com/p/default.aspx?id=<User Number> Thanks. That is what I was looking for. Han's solution also works, but this is simpler. Cheers Tony Quote Share this post Link to post