Isn't that 64 bit version on SatImage's website?On Jun 30, 2011, at 7:06 PM, Cameron Knowlton wrote: I recently upgraded my Mac and found that the standard Satimage didn't work, since it's not 64 bit. There *is* a 64 bit version around, but it's hard to find... let me know if you need a hand locating it.
Hope this helps. Cameron Knowlton
At 6:26 PM -0500 11/06/30, Christopher Stone wrote: Hey Jean-Christophe,
AppleScript's text item delimiters are useful and very fast, but I generally prefer to use the Satimage.osax for find/replace. It too is very fast, more versatile, and I don't have to fool with resetting TIDs.
At the simplest level:
set fileName to "Re: file path problem" set fileName to change ":" into ";" in fileName
Using a list:
set fileName to "Re: file path problem!" set fileName to change {":", "!"} into {";", "?"} in fileName
Jumping up to regular expressions:
set fileName to change "[:!]" into "" in fileName with regexp without case sensitive
-- Best Regards, Chris
--
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden
|