+ 0 - 0 | § ¶What do you use SuperCard for?
I started a thread on the SuperCard List on the uses of SuperCard, here is what the list produced, please add your own uses of SuperCard. (more)+ 0 - 0 | § ¶Pipe to shell
I figured out how to pipe SC varables to the shell function thing in OS X. using the Supercard to Perl tutorial posted by Ian Bridges to the list file area.I've added a couple of scripts to the shell section of script lib using this.
Basically you do something like this, where x is your var:
put "echo "&"'"&X&"'"&" | whateverShellfunction you want" into tcom
return shell(tcom)
you seem to need single quotes round the var.
The shell stuff is a bit scary for a scripter like me, but looks like a goldmine.
+ 0 - 0 | § ¶Notepad
I just uploaded a simple SC notepad proj, after a thread on the list.Here it is download and a
+ 0 - 0 | § ¶Over!
Over! is a course design tool for dog agility enthusiast.This came up on a wee thread I started on the SuperCard list on what list members use SC for, very interesting so far, when it has run it's course, I summarise here I think.
+ 0 - 0 | § ¶BBC NEWS | Technology | Virus-like attack hits web traffic
BBC NEWS | Technology | Virus-like attack hits web traffic'An attack by fast-spreading malicious code targeting computer servers has dramatically slowed internet traffic.'
I certainly could not access this site for a few hours this morning, and my isp email does not work at the mo:(
+ 0 - 0 | § ¶Script Lib
Script Lib 0.2Uploaded a new php file which fixes a few bugs and improves the online version a bit.
Beta 7 of the SuperCard project will be finished today I hope, mail me if you would like to try it out.
+ 0 - 0 | § ¶twexus: 17318 images
twexus: 17318 images I have seen over 100 of these images on the pairs page this morning,which is distracting me quite a bit.+ 0 - 0 | § ¶SuperCard Resource
After a little quite spell the SuperCard Resource is updated. Had me worried, as it is the most comprehensive SC site on the web.+ 0 - 0 | § ¶targeting bitmaps
A shot but interesting thread on the superCard list Bob Nagele found clicking on bitmaps, that the target returned by a card script is the card. Mark Lucas explained, it was for hypercard compatibility, HC's bitmaps not being objects. A workaround is to have something, even one character, in the script of the bitmap.+ 0 - 0 | § ¶ScriptLib project
I've finished a proj to access the online script library.Please mail me if you would like to try it.
+ 0 - 0 | § ¶satam110103.JPG 1280x960 pixels
satam110103.JPG 1280x960 pixels 317K in a new window. I got a new digital camera, Fugi FinePix A202. This is what it looks like from my doorstep, when I wait with my daughter for her lift to strings orchestra, at this time of year.+ 0 - 0 | § ¶Apple - Safari
The blog looks no worse in Apple - Safari than IE. but some of the admin side is a bit mixed up.+ 0 - 0 | § ¶Script Lib - MultiMessage
I have been working on Script Lib or at least the SuperCard proj for it, adding support for an 'exchange' for librarys for Bernard Lavie's MultiMessageHere a I am still looking for beta testers for the proj, please mail me.
+ 0 - 0 | § ¶Script Lib
Script Lib Got it's first new scripts, in theAppleScript Section. Thanks to Tomas Franzén+ 0 - 0 | § ¶ScriptLib
ScriptLibI've update this, and fixed a few things at the php end. Commenting and adding scripts now works, existing scripts are not overwritten. If you try this please let me know how you get on.
+ 0 - 0 | § ¶myIP
I used to use a XCFN by chilton, to get this, looking for a replacement I checked Internet Connect's appleScript Dictionary.function myIP
put empty into tAppleScript
put "tell application " & quote & "Internet Connect" & quote & return after tAppleScript
put "set y to log of application " & quote & "Internet Connect" & quote & return after tAppleScript
put "end tell" & return after tAppleScript
put replace(Script(do, Applescript, tAppleScript),linefeed,CR) into tInfo
put 0 into sLine
repeat
get lineOffset("local IP address",tInfo,SLine)
if it is 0 then exit repeat
add it to Sline
put last word of line sLine of tInfo into tR
end repeat
get lineOffset("Connection terminated",tinfo,Sline)
if it is not 0 then return "Not connected"
return tr
end myIp
The log has lots more information, most of which I don't understand. I guess the script could be improved a lot.
