I am frequently in a position of needing to know if a string already exists in a container (before I add it to that container or modify it within that...
Randall Couldn't you just use the 'is in' or 'contains' operator? Or is there a reason why that wouldn't work in your case? I don't know thou how fast they...
Lowell, Others have already chimed in on this with other good solutions, but yes, you need to install xSetClipboard as an external. It can then be called...
If the idea is to get an exact item match, something like this seems to work. function ItemMatchOffset mtch,str,dlims put len(dlims) into dcnt repeat with c =...
on mouseUp put ",:/" & space & cr into dlims put "102:104" & cr &¬ "120 121,122/124,126" & cr &¬ "134" into sourceStr put sourceStr into cd fld 1 put "121"...
Here is a reworked handler to do fast bracketed offsets with the option of defining acceptable before and after delimiting char sets. on mouseUp global ...
... OK, I'll go with my solution ;-) function ItemMatchOffset mtch,str,dlims set itemdel to char 1 of dlims get str repeat with i= 2 to len (dlims) get...
Hi everyone! I'm brand new to the list. I'm thinking of purchasing SuperCard and I wanted to get people's thoughts as to the pros & cons of developing with it....
... It's what people usually call "Life". Don't worry, you'll get used to it ;-) Just coming up for air for a moment, -- M. Uli Kusterer http://www.zathras.de...
Well, I have used many different development environments. RealBasic, Visual Basic, Revolution and SuperCard. They all have their pros and cons. Mainly...
Actually, I tried Superedit about a year ago for the same reason but after a few days I returned to the regular editor. There were a lot of LITTLE things I...
The script tracer's 'Msg...' button might be useful. Make a button with the following script. on mouseup if the optionkey is down then trace end mouseup ...
I have been doing media browsers and information access tools and auto-generated interface layouts and behaviors in SC for 15 years or so. I love it. My wish...
What would you do to allow independent front and back specified bracketing and multi-char bracketing? For markup doc parsing (starts with "</" and ends with...
By enclosing the needle and the haystack within delimiters one can match an item exactly (excluding lettercase). Including the first item (no native leading...
For multi-character delimiters you could delimit the delimiters list with a character that would never be a delimiter... put cr & linefeed & "A" & cr into...
Hi Russell, Pros for me include native Mac OS interface controls (they behave like the real thing because they are the real thing), a rather easy to learn...
Dear Group, I wondered if there's a simple way to widen the standard window from an Answer dialog to accommodate longer strings so they don't wrap. Seems the...
Another ONEliner I use item delimiters (,) to store lists of words on a single line. Years ago I designed a sorter that handled the job of alphabetizing the...
... Set linedel to "," Then you can use sortfieldbyitem on your original items list S. __________________ Stéphane Leys http://perso.orange.fr/modulopi/...
Can anybody tell me if it is possible to setup a web page driven by an SC project stack. In other words, a web page where viewers enter data and then click a...
... This is possible, as I recall Tomas demonstrating his Sockets external at one of the chats... I can't remember which chat it was, so if anyone can, please...