Thanks alot guys. I got it!!!!
Well that's my initial step for what i want to do.
What i want to do with graphic converter is i want to make an Applescript droplet into which the user drags a bunch of PNG files with a white NONTRANSPARENT Bground , and want my droplet
to make all thoes file's background color be transparent ...then save all those files with transparency.
So right now i don't have a clue how to do it but my algorith would be something like:
UPON RECEIVING A BUNCH OF DROPPED files
for all those files
-open the file
-Set the color WHITE to be transparent
-save the file
-close the file
end for loop
So i have other questions
1. My initial step: How would i let the script detect that a bunch of files are dropped into it?
2. My second step: How would i put all the received files into an array so i can manipulate them
3. What is the Graphic Converter command i would use to set the transparent Color of the image file that is currently being processed by the FOR loop?
I looked in the dictionary of Graphic Converter X and there is a command TRANSPARENT COLOR( RGB)
I searched for an example of using that, and i found one in the web
They use this:
tell application "GraphicConverter"
open theImage //This theImage was created somewhere in the file
tell window 1
//a bunch of other stuff which i will not write here
set transparency to true
set transparent color to {65535, 65535, 65535}
end tell
end tell
****
So i can kinda see how to set transparency but i thought RGB would be numbers from 0 to 255
so for example white would be 255 255 255.. But here it's 65535?
And would that be all it takes to turn the image's bground color( white) into transparent?
Thanks