I tried in the preview on the right to sort my listings by price and by title but after that this is now impossible to have a preview I had before (by default).
I just want a preview in the exact order I have in my left comlumn from top to bottom (like before I tried things).
How is it possible to fix that issue ? Thank you for your help.
pictures: in blue the left column / the other picture shows the preview on the right
I have two questions but I don’t know if it’s here the right place to ask them to you so do not hesitate to tell me where I can do it if it’s not the right place.
Is it possible to get from garagesale a listing with complete title, price and main picture of selected listings ? I get my trouble with preview by trying to get that on garagesale.
It would be useful to have this sort of listing in case of deposit sale to show to the consignor what we did with its consignation.
Have you thought about including a dragging option to create instantly 100’s of listings all numbered ? Users will have just to create one template listing and then to use this option without writting every time a number in each duplicated template listing.
To get instantly numbered listings would be so great and probably not so difficult to create for the programmers of garagesale. We might have an " inputbox " : how many listing do you want to create ? / What is the starting number. / Which listing do you want to duplicate
ex: 500 listings / starting from number 20500 / duplicate listing 20499=> so you will have listing #20500 / #20501 / … #20999 (#number at the beginning of the title) like listing 20499.
Off course listing 20499 has to be a “listing template”: without picture and with a blanck title (or only #20499) to have with this feature 500 ready to complete listings based on the “lisiting template” #20499
I don’t understand the question. Are you asking for a way to export the preview to file?
You can use AppleScript for this. This example AppleScript would create 11 listings, from “MyListing 100 to MyListing 110”.
tell application "GarageSale"
set baseName to "MyListing Number "
repeat with counter from 100 to 110
set theListing to make ebay listing
set title of theListing to baseName & counter
end repeat
end tell
To use AppleScript seems to be a good solution to win time. I found the applescript tutorial in my garagesale app. If I need some help I will ask it in a new post.
About my question: yes I’m asking for a way to export the preview to file instead of doing screenshots.
I’m sorry but I didn’t succeed to add a description in:
tell application "GarageSale"
set baseName to "MyListing Number "
repeat with counter from 100 to 110
set theListing to make ebay listing
set title of theListing to baseName & counter
end repeat
end tell
I tried this:
tell application "GarageSale"
set baseName to "MyListing Number "
set baseDescription to "Mydescription "
repeat with counter from 100 to 110
set theListing to make ebay listing
set title of theListing to baseName & counter
set description to baseDescription
end repeat
end tell
And how is it possible to select an already created listing and to dupplicate it through the Applescript you gave me?
tell application "GarageSale"
set baseName to "MyListing Number "
repeat with counter from 100 to 110
set theListing to make ebay listing
set title of theListing to baseName & counter
end repeat
end tell
After that help I will have all my answers to start using Applescript for my business. Did you saw “About my question: yes I’m asking for a way to export the preview to file instead of doing screenshots.” ?
tell application "GarageSale"
set thelisting to first item of (get selected ebay listings)
tell thelisting
set newListing to duplicate listing
set title of newListing to "Duplicated Listing"
end tell
end tell
And how to combine these 2 scripts in a same script ?
tell application “GarageSale”
set baseName to "MyListing Number "
repeat with counter from 100 to 110
set theListing to make ebay listing
set title of theListing to baseName & counter
end repeat
end tell
I tried this:
tell application “GarageSale”
set thelisting to first item of (get selected ebay listings)
tell thelisting
repeat with counter from 100 to 110
set newListing to duplicate listing
set title of newListing to “Title” & counter
end repeat
end tell
end tell
If you don’t want to duplicate the initial listing over and over again, you should update theListing with the result from the previous duplicate command, like this:
tell application "GarageSale"
set thelisting to first item of (get selected ebay listings)
repeat with counter from 100 to 110
tell thelisting
set newListing to duplicate listing
end tell
set title of newListing to "Title" & counter
set thelisting to newListing
end repeat
end tell