Nee help with this one.
Can a application script be written to do the following:
We have to test many logos to see if they were uploaded correctly to the web. We have a URL path that can be used to test if the file was uploaded correctly. The URL is always the same, except for the last part of the URL that is associated with the filename in question.
This is without error checking (if Safari is the default browser):
set baseUrl to "http://www.xxxxxxxxx/xxxxxxx/xxxxxx/" -- Correct this!
set myNum to text returned of (display dialog "Enter the 13 digit logo number, then hit return" default answer "")
open location (baseUrl & myNum & ".jpg")
Or in one line:
open location ("http://www.xxxxxxxxx/xxxxxxx/xxxxxx/" & (text returned of (display dialog "Enter the 13 digit logo number, then hit return" default answer "")) & ".jpg")