How do I change just the Handling cost on all templates at once without changing the shipping information?

How do I change just the Handling cost on all templates at once without changing the shipping information? I can select all templates and change it but it also changes ALL shipping information according to the one I am editing to tell it. which I do not want it to do. I tried making an applescript to do this but I don’t know the exact language so it understands just to change the “handling cost”. Anyone know? or does anyone have the applescript code I can copy for this function? Thanks

Would love to hear this one, too :slight_smile:

Here is the Apple Script you’d need. It only works in GarageSale 7 betas:

set theReply to (display dialog "Change the handling cost of all selected templates to:" default answer "10.00" buttons {"Cancel", "OK"} default button "OK")
if button returned of theReply is "OK" then
    tell application "GarageSale"
	set newHandlingCost to text returned of theReply
	repeat with theListing in (get selected ebay listings)
		set the handling costs of the ebay shipping option of the theListing to newHandlingCost
	end repeat
end tell

end if