Car 54 where are you? (before my time)

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • Bruce
    Indigo Rose Customer
    • Jun 2001
    • 2134

    Car 54 where are you? (before my time)

    Here’s one fer ya!
    You know those web sites where you can find the map from an address? How would one click on a button in AMS get that web page to add an address, TAB add a city comma state then ENTER. Information would be pulled from a txt file in AMS. I have seen this done before… Ideas?

    Car 54 where are you?

    The search engine that helps you find exactly what you're looking for. Find the most relevant information, video, images, and answers from all across the Web.
  • Bruce
    Indigo Rose Customer
    • Jun 2001
    • 2134

    #2
    Got it thanks to Tigg-a-roo

    table = TextFile.ReadToTable("filename");


    [1] = String.Replace (table[1], " ", "+") table[2] = String.Replace (table[2], " ", "+") File.OpenURL("http://maps.yahoo.com/maps_result?addr=" .. table[1] .. "&csz=" .. table[2] .. "&country=us&new=1&name=&qty=");

    Comment

    Working...
    X