Hi, I have posted the Address Book Data external version 2.5. The project includes a SuperCard 4.6 compatible universal external which is in the data fork of...
I am searching for the char number that corresponds to a char in the set: 123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ To do this I am using...
... Maybe not the only valid test, but certainly a simple way to get your information. Just might be possible to use Replace(), but it would require some...
Or via applescript: -- applescript set mystring to "abcdeABCDE" considering case set myres to offset of "A" in mystring end considering or via OffsetX external...
Works like a charm Bob. function CSOffset str,bigstr --so long as null is not in str or bigstr return offset(null,replace(bigstr,str,null)) end CSOffset DCS...
Alec, If you wouldn't mind, can you clarify something? When trying beta externals, which might have a memory leak, how might one detect this problem? Would you...
Looks like this works as well... function CSOffsetList str,bigstr repeat for len(str) put null after swapstr end repeat --so long as swapstr is not str or in...
Hi, It seems that the reason I am having difficulty with implementing the the alpha of the pictureData in my image external is that strictly speaking it is not...
... The snd file is created with a sound editor and appears as a QT file. It can be played with no problem, but attempting to open it with SC's Resource Editor...
Hi Vince, Yes, have the Activity Monitor open. Also, call the external in a repeat loop a hundred times in a row. If there'a a leak, SC's memory will go up a...
What do I need to do in order for a field to only accept a range of chars. I have built a base converter (any number of base n to any number of base m)....
Hi all, When using apples image system SIPS the output from a scale,crop rotate etc usually goes to another file. I know some of you who visit here are experts...
Hi Dave, I've saved some of this replace() stuff from previous posts (probably from you) and sometime I hope to find time to experiment with these and see what...
At the bottom of the script editor is a line giving the obj's name etc... Why not its id, too, there is room enough and it would avoid having to close the...
I completely agree. Getting to an object's ID for absolute referencing takes more time than it should. I write a little global mouseEnter handler at the...
... If the object has no name, the ID will be shown, but I usually use the Object Browser to keep track of ID's (especially if there is a large number of cd/bg...
Know what would be great? 1. A property of text fields (inputFilter?) which works with a userProp in some structured way to allow the parameterization of input...
Hi, I use the following to restrict a field to containing just numbers or calculations. Something that limits you to certain number formatting (###_##_####)...
... I think the object browser is a great feature. Not only you have number, name and ID of all objects but also whether it belongs to a card or bg. Haroldo...
Haroldo Mauro
hmauro@...
Oct 3, 2006 1:09 am
36963
I'm using Supercard 4.5.2 Trial Version. I want to make a standalone from a project I've just finished, and I have 2 questions: 1. I didn't find the Standalone...
Haroldo Mauro
hmauro@...
Oct 3, 2006 2:16 am
36964
... Standalone Maker has always been excluded from the trial versions. What is the url for the page that states this differently? Best regards, Scott Simon ...
... I'm sorry, it says "except:"... and I missed it. My fault. Would a standalone run on OS 9 or earlier X versions of the OS? Yhank you. Haroldo...
Haroldo Mauro
hmauro@...
Oct 3, 2006 2:50 am
36966
Thanks Alec, Does your script manage arrow key nav through the string? Select? Copy/Paste? Delete? I need the standard text field behaviors... plus the...
Added a gradient builder palette with a rotation dial. Palette uses dragNdrop to add/edit gradient colors. Browse object scripts for mousedrop handlers and...
Hi, ... This will pass keyinfield. For all the arrow keys, you need to test for 28,29,30 and 31 There is another delete key, I think it is 127 or 128. The...
... If it's only these chars, you could probably use lineOffset. Build a list with the charToNum()s of the chars you're looking for each on a line, then pass...