Index

Modifying Selected Listings

If you intend to apply a certain command to more than one listing (bulk command), consider using a repeat look. Here is an example script that changes the starting price for all selected listings to 2.00:

tell application "GarageSale"
  repeat with theListing in (get selected ebay listings)
    set the use buy it now of theListing to yes
    set the buy it now price of theListing to 2.0
  end repeat
end tell

Feel free to replace ‘starting bid’ with any other listing attribute named in the AppleScript dictionary highlighted above.



<< Attributes Available Through AppleScript Modifying All Listings >>