Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

SuperCard

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 3499 - 3528 of 45601   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
3499 Terry Judd
tsj@... Send Email
Jul 6, 2001
1:54 am
... Adam, do you just mean you want to run this AppleScript from within SC? If so then the following will work create a string containing the above script... ...
3500 chilton@... Send Email Jul 6, 2001
2:51 am
... Unfortunately, it is not. AppleShare via TCP/IP is still a hack in my opinion. Trying to do a search using Sherlock of a remote Mac (while Sherlock is on...
3501 chilton@... Send Email Jul 6, 2001
2:53 am
... By iMac here, I mean the iMac.MacintoshDeveloper.com iMac. :-) (which, I was told today, is being packaged up tonight and I'll have it back online in about...
3502 chilton@... Send Email Jul 6, 2001
2:55 am
... Well, most scripting languages have an apple event known as 'miscdosc&#39; which means 'miscelaneous - do script...'. So if Interaction is following the lead...
3503 yahoo@... Send Email Jul 6, 2001
4:40 am
... This can be achieved by making Interaction pull the generated XML content from Flamethrower before it processes the XML into a standard HTML page using a...
3504 Jeff Hardin
jdhardin@... Send Email
Jul 6, 2001
12:28 pm
Hi folks- Has anyone implemented an address book in SuperCard? I'd be happy with an implementation of the old HyperCard address stack. I'm looking for some...
3505 Bob/Ann Nagele
bob00@... Send Email
Jul 6, 2001
5:29 pm
... I've got what you're looking for, all done in SuperCard. It was developed initially as an easy, easy way for printing envelopes, but it has all the basic...
3506 dopey001nl@... Send Email Jul 6, 2001
7:06 pm
I need to convert numbers to their binary equivalents... Is there an external who gives me "0101 0101 1111" when I enter "1375" as a decimal code? I hope so,...
3507 Carl Manaster
manaster@... Send Email
Jul 6, 2001
7:46 pm
... Here's a script: function decimalToBinary aNumber put empty into binaryText -- load the raw bits into the text: repeat while aNumber > 0 put aNumber mod 2...
3508 Dopey
dopey@... Send Email
Jul 6, 2001
7:51 pm
YOU'RE THE BEST!!!!! Thanks, this works perfectly Ton...
3509 Stéphane Leys
leys.stephane@... Send Email
Jul 6, 2001
8:04 pm
... function Bin x repeat while x>0 put x mod 2 before s put x div 2 into x end repeat return s end Bin -- Stéphane Leys http://leys.stephane.free.fr/...
3510 dopey001nl@... Send Email Jul 6, 2001
9:45 pm
ok, I got the help I needed, but now it seems to be more difficult then expected... I need to create special barcodes which are created with the following...
3511 Carl Manaster
manaster@... Send Email
Jul 6, 2001
10:32 pm
Here goes: function incrementBinary aString put 1 into carry put the length of aString into tLength repeat with c = tLength down to 1 get char c of aString ...
3512 Didier Gross
d_gross@... Send Email
Jul 7, 2001
7:54 am
... Ton, What you call first char is more exactly called MSD (Most Significant Digit). If I understand well, you're converting numbers up to 4095, as you are...
3513 Stéphane Leys
leys.stephane@... Send Email
Jul 7, 2001
8:11 am
... Convert your number to binary function Bin x put 0 into n repeat while x>0 put x mod 2 before s put x div 2 into x add 1 to n if x>0 and n mod 4=0 then put...
3514 Martyn Simpson
martyn@... Send Email
Jul 7, 2001
10:22 am
... what's a wheel?...
3515 John Johnston
jhj@... Send Email
Jul 7, 2001
10:38 am
Hi, I want to try to do a fake aqua. does anyone know were I can find a set of grcs for the trafic lights etc , in up over and down. I had a quick trawl...
3516 Bruce Martin
illuminator@... Send Email
Jul 7, 2001
2:02 pm
Well, if you have OS X you can simply use the Grap application to get a screen shot of any Aqua element you want. If you want Aqua buttons and Other form...
3517 chilton@... Send Email Jul 7, 2001
2:24 pm
... get a ... names ... be ... will be ... Or you can use the Camera external in SuperCard. It actually works faster than Grab in OSX, and can output to more...
3518 Didier Gross
d_gross@... Send Email
Jul 7, 2001
4:41 pm
... Button builder is a shareware which allows you to create in a few clicks Aqua buttons. www.realmacs.co.uk/buttonbuilder.html OK, back on topic now, before...
3519 John Johnston
jhj@... Send Email
Jul 7, 2001
5:15 pm
... Thanks Bruce, I don't think I am going for the scroll bars, just playing with buttons at the moment. ... Ok I'll try that. My main problem is getting the...
3520 John Johnston
jhj@... Send Email
Jul 7, 2001
6:38 pm
Hi folks, another question: I am trying to keep a small movie looping using click script i got this script: play movie file ¬ "Macintosh HD:Desktop...
3521 Stéphane Leys
leys.stephane@... Send Email
Jul 7, 2001
6:57 pm
... This works for me : set the movieidle to true put "Giga4:QuickTime Folder:Sample Movie" into movieName put loc of cd grc 1 into movieLoc play movie...
3522 John Johnston
jhj@... Send Email
Jul 7, 2001
7:15 pm
... and me, thanks Stéphane. Cheers John Johnston...
3523 degbert
degbert@... Send Email
Jul 8, 2001
4:51 am
Is there a way to check to see if a file can be read with PictureData before you actually use it? I'm opening a series of (supposed) images from a folder and...
3524 John Johnston
jhj@... Send Email
Jul 8, 2001
9:08 am
... Hi, You could use try and catch eg from the middle of a displayPict handler: try set the pictureData of cd grc "display" of cd 1 of wd id 114 to tDoc catch...
3525 Daniel C. Kueng
studio@... Send Email
Jul 8, 2001
11:08 am
... You can ask the pictureData of the grc after you have set it: (the easiest way, but perhaps not yielding to the desired result) if pictureData of grc x =...
3526 Joe Koomen
joe@... Send Email
Jul 8, 2001
2:48 pm
... Get the Apple guidelines for Aqua. It's a pdf with lots of samples and exact pixel measurements for creating interface elements. The doc is called...
3527 John Johnston
jhj@... Send Email
Jul 8, 2001
3:14 pm
... Thanks Joe, I got it. btw one can also play with the interface builder which is installed by the developers CD that comes with X. Cheers John johnston...
3528 Adthrawn
adthrawn@... Send Email
Jul 8, 2001
4:15 pm
Hi, To find the files, you need to use Mac OS 9 and have a trawl through all the evil-sounding folders... They'll be in PDF form most likely... I need to fix...
Messages 3499 - 3528 of 45601   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help