/Library/Application Support/SuperCard 4.8.0/SC Pouch/SharedFile
Its path is also returned when asking for "the SharedFile" in SuperTalk.
--
You received this message because you are subscribed to the Google Groups "SuperCard Discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email to supercard-tal...@googlegroups.com.
To post to this group, send email to superca...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/supercard-talk/6bdf7905-2c43-420a-9d57-aad9c4fa12e2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
..If the are PNG files they are not resources. Consider converting them to ICNS (icon) files. Then they can be imported to a dataFork resource in a new project via SuperEdit's "Import icon family" menu item in the File menu, and then copied to other projects (or the SharedFile).
--
You received this message because you are subscribed to the Google Groups "SuperCard Discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email to supercard-tal...@googlegroups.com.
To post to this group, send email to superca...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/supercard-talk/51f53d2a-0f1f-46fb-8948-48a2eba9505d%40googlegroups.com.
No, I am suggesting ICNS icon files are a better way to go as there are modern tools available (iconUtil) for creating them from png files.I don't even think the current version of Graphic Converter saves to PICT resources, and resource editors in general are not intel compatible (at least I have not found one).
--
You received this message because you are subscribed to the Google Groups "SuperCard Discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email to supercard-tal...@googlegroups.com.
To post to this group, send email to superca...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/supercard-talk/aaf57ccf-d845-4c35-95b3-88e41da177dd%40googlegroups.com.
iconutil -c icns <pathTo.iconsetFolder>man iconutil--
You received this message because you are subscribed to the Google Groups "SuperCard Discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email to supercard-tal...@googlegroups.com.
To post to this group, send email to superca...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/supercard-talk/f71afd0e-d49d-4d29-b445-f54992c4b0b7%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "SuperCard Discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email to supercard-tal...@googlegroups.com.
To post to this group, send email to superca...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/supercard-talk/c39e8a5d-3581-4260-b2bf-d00fcce5edc3%40googlegroups.com.
on mouseUp
answer picture "Select an image file:"
if it = "" then exit script
lock screen
set the itemDel to "."
local rezName = item 1 of pathTools("fileFromPath", it)
set the pictureData of cd grc 1 to file it
export the raw pictureData of cd grc 1 into it
set the pictureData of cd grc 1 to none
answer startest("add star", "this proj", "PICT", rezName, it)
end mouseUp
Here's a quickie project I just slapped together that uses pictureData and one of the IT sample project XFcns to convert any importable image format to a PICT resource:Not a whole lot of fancy scripting here...on mouseUp
answer picture "Select an image file:"
if it = "" then exit script
lock screen
set the itemDel to "."
local rezName = item 1 of pathTools("fileFromPath", it)
set the pictureData of cd grc 1 to file it
export the raw pictureData of cd grc 1 into it
set the pictureData of cd grc 1 to none
answer startest("add star", "this proj", "PICT", rezName, it)
end mouseUp
If you'd prefer to import directly the the SharedFile instead, there's another IT sample XFcn enclosed which does that too (I'll leave that minor tweak as an exercise for the reader... ;-)HTH,-Mark
--
You received this message because you are subscribed to the Google Groups "SuperCard Discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email to supercard-tal...@googlegroups.com.
To post to this group, send email to superca...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/supercard-talk/4645313e-d904-49cd-aa7b-95d0b82e7379%40googlegroups.com.
OK, lets try that attachment again...
--
You received this message because you are subscribed to the Google Groups "SuperCard Discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email to supercard-tal...@googlegroups.com.
To post to this group, send email to superca...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/supercard-talk/03f0a22a-1f75-4b47-b7f6-8847554f5a2e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
<PICT Rezzer.sc45.zip>