Index

Modifying Selected Orders

In the following example all transactions of the selected orders are set to ‘paid’:

tell application "GarageSale"
  repeat with myOrder in (get selected ebay orders)
    repeat with myTransaction in the every ebay order transaction of myOrder
      set paid of myTransaction to yes
    end repeat
  end repeat
end tell


<< Modifying All Listings Running Scripts >>