Just adding up to the story... I probably have to find the url of the Auctiva Image, open the url, copy the image, change the name to the item name, replacing the spaces by underscore, etc...
Hi, guys!
Okay, this is my first Applescript, so I need some help: I'm trying to move all the pictures hosted at Auctiva to my web hosting, which is accessed through Finder, change the name of the pictures to the template name, but replacing the blank spaces with an underscore, and then replacing the url of the Auctiva picture with the new one in the web server.
I'm at the beginning of the code and just encountered my first problem, below. Apparently, auction images is not the correct component to use, as it is giving an error stating that GS can't get every auction image. Maybe it is related to the auction only, and not the template???? Anybody more familiar with Applescript, around????
Thanks!
tell application "GarageSale"
repeat with myTemplate in the selected templates
set myTitle to title
repeat with myAuctionImages in auction images
end repeat
end repeat
end tell
Okay, this is my first Applescript, so I need some help: I'm trying to move all the pictures hosted at Auctiva to my web hosting, which is accessed through Finder, change the name of the pictures to the template name, but replacing the blank spaces with an underscore, and then replacing the url of the Auctiva picture with the new one in the web server.
I'm at the beginning of the code and just encountered my first problem, below. Apparently, auction images is not the correct component to use, as it is giving an error stating that GS can't get every auction image. Maybe it is related to the auction only, and not the template???? Anybody more familiar with Applescript, around????
Thanks!
tell application "GarageSale"
repeat with myTemplate in the selected templates
set myTitle to title
repeat with myAuctionImages in auction images
end repeat
end repeat
end tell