Apple scriptable standalones

2004-11-20 Thread william griffin
Out of curiosity I decided to build a standalone and see what effects Applescript could have on it. Script edit gave me an error as soon as I compiled this: tell application iGame3d do script quit end tell So I went looking for the dictionary and there was none. How does one provide a dictionary

RE: Paragraph-level formatting

2004-11-20 Thread MisterX
im trying to find this stack i made long ago to clean up paragraphs. It has what you want including justification! Works with monospace fonts but it might be adaptable to normal fonts using the formattedwidth of text... I'll let you know when I find it... -Original Message- From:

Re: Drawer confusion

2004-11-20 Thread Klaus Major
Hi Kaveh, I am using OS X with RR 2.5. I have a main stack for which I need a drawer stack, permanently available. I am confused about the relationship between the two stacks. If the drawer stack is not open, the main stack will complain that it cannot see it. When they are open, all is well as

RE: Paragraph-level formatting

2004-11-20 Thread FlexibleLearning
As I recall from a long time ago, the limitations are due to the embedded text engine that would need to be completely replaced. /H ___ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Drawer confusion

2004-11-20 Thread Kaveh Bazargan
At 9:49 am +0100 20/11/04, Klaus Major wrote: [...] hmmm, let me see if i understand you right... Is your settings stack a substack of your main stack? Well, sounds like :-) Thanks Klaus. Yes, that was my elementary error. I have made it a substack, and looks like now it is saved inside the

Re: Resized images reverting to their original size

2004-11-20 Thread Chipp Walters
Jim Carwardine wrote: I'm sure that all the different ways to reference an image is needed and used by a few deeply knowlegeable scriptors, however, what I went thru to do something similar to what you are asking was nothing short of one big work-around. Rant coming... Why can't we have a

Re: Resized images reverting to their original size

2004-11-20 Thread Chipp Walters
Chipp Walters wrote: on mouseUp constant kImgWidth = 80 OOPS forget the constant declaration above...left over from a copy/paste. It's now defined in the handler ___ use-revolution mailing list [EMAIL PROTECTED]

RE: Paragraph-level formatting

2004-11-20 Thread Alan Golub
Thanks -- I'd love to see how you put this together. Alan On Saturday, November 20, 2004, at 03:03AM, MisterX [EMAIL PROTECTED] wrote: im trying to find this stack i made long ago to clean up paragraphs. It has what you want including justification! Works with monospace fonts but it might be

Re: use-revolution Digest, Vol 14, Issue 48

2004-11-20 Thread Frank D. Engel, Jr.
There probably is none. My (now old) BlueWhite G3 keyboard does not have one, nor does it have (forward) delete or end keys. The Mac's delete key is equivalent to Windows' Backspace key. On Nov 19, 2004, at 6:09 PM, Roger Guay wrote: I don't find an insert key on my Macintosh Powerbook. Is

Arrays of field controls

2004-11-20 Thread gwalias-rev
Dear Revolutionaries Is there some way to refer to a group of controls as if they were in an array. Here's what I want to do ... I have several text fields for a user to enter information and once they click Accept, I want to store them in a single array variable. I would like to be able to just

RE: Arrays of field controls

2004-11-20 Thread MisterX
just name your fields as data1 data2 data3 then in your loop repeat with x = 1 to azillion put field (datax) into array[x] end repeat if your fields are already alligned like having a field 1, field 2, etc.. you dont even need to name them! put fld x into array[x] cheers X[array]

Re: Arrays of field controls

2004-11-20 Thread Frank D. Engel, Jr.
The other way to do it, if you want nicer names, is to have a separate (invisible) field or a property (of a card or stack) and list the field names in it, perhaps one per line. Now you can do this: repeat for each line ndx of field fieldNames put field ndx into array[ndx] end repeat This

Standard images

2004-11-20 Thread James Spencer
I know this question has been asked but in going through the archives, the only solution I've seen was very general and I didn't really understand the details. I've got an old project that I've been working on short of on-and-off since Rev 2.0 or so. I made the mistake of using Rev's

Re: Resized images reverting to their original size

2004-11-20 Thread Jim Carwardine
Thanks, Chipp. I am just venting a little. I think Rev is wonderful. The learning curve is long for some things. Especially those things that didn't have as many choices as with HyperCard... Jim on 11/20/04 8:37 AM, Chipp Walters wrote: Jim Carwardine wrote: I'm sure that all the

Re: Standard images

2004-11-20 Thread J. Landman Gay
On 11/20/04 10:22 AM, James Spencer wrote: I know this question has been asked but in going through the archives, the only solution I've seen was very general and I didn't really understand the details. I've got an old project that I've been working on short of on-and-off since Rev 2.0 or so.

some EuroRevCon photos

2004-11-20 Thread sims
Here's just a few photos from the 1000 plus that I am sorting through for the EuroRevCon web site. The web site will take a couple of days. Many more photos will be coming. Incidently, events such as the EuroRevCon are not only fun but also help promote Rev - the EuroRevCon is listed right next

Re: Standard images

2004-11-20 Thread James Spencer
On Nov 20, 2004, at 11:15 AM, J. Landman Gay wrote: On 11/20/04 10:22 AM, James Spencer wrote: I know this question has been asked but in going through the archives, the only solution I've seen was very general and I didn't really understand the details. I've got an old project that I've been

Re: Apple scriptable standalones

2004-11-20 Thread Mark Wieder
william- Saturday, November 20, 2004, 12:02:14 AM, you wrote: wg Script edit gave me an error as soon as I compiled this: ...and no wonder... Try: local theScript put tell application quote iGame3d quote cr \ do script quote quit quote cr \ end tell cr \ into theScript do

Re: Apple scriptable standalones

2004-11-20 Thread Klaus Major
Hi Mark, william- Saturday, November 20, 2004, 12:02:14 AM, you wrote: wg Script edit gave me an error as soon as I compiled this: ...and no wonder... Try: local theScript put tell application quote iGame3d quote cr \ do script quote quit quote cr \ end tell cr \ into theScript

Re: Command - C does not work

2004-11-20 Thread Mark Wieder
Roger- Friday, November 19, 2004, 12:11:24 PM, you wrote: RG Command - C has stopped working for me in Rev 2.2. Command - V RG still works to paste objects, but I am forced to use Copy under RG the File menu to copy objects. Any ideas are greatly appreciated. I finally figured out the recipe

Re: Standard Images

2004-11-20 Thread James Spencer
On Nov 20, 2004, at 11:15 AM, J. Landman Gay wrote: On 11/20/04 10:22 AM, James Spencer wrote: I know this question has been asked but in going through the archives, the only solution I've seen was very general and I didn't really understand the details. I've got an old project that I've been

RE: Command - C does not work

2004-11-20 Thread MisterX
with control-ins, if that works on macs too (might be command-ins), you dont need to call the menubar, ever. But it only works for text! If your menubar has a copy hotkey in it's edit menu, it should work though. But hey, Im working on xos which can do this, and I guess a simple frontscript like

Re: Apple scriptable standalones

2004-11-20 Thread Andre Garzia
Folks, i theory to get your rev apps to be applescriptable is damn easy, all you need is ResEdit (carbon)or some xml editor and plist knowledge. You need to create an AETE entry in your resource fork, AETE means something like apple event terminology or something. Theres a nice addon for

Re: Revolution Comment

2004-11-20 Thread Ken Ray
On 11/19/04 8:30 PM, Timothy Miller [EMAIL PROTECTED] wrote: Some people will love all the new features. Computer professionals, mostly, I'd guess. I'm kind of disappointed. Revolution is a Space Shuttle, and all I need is a hang glider. That's why HC was such a good thing for me in the first

Re: Understanding the Convert Command

2004-11-20 Thread Ken Ray
On 11/20/04 12:20 AM, Gregory Lypny [EMAIL PROTECTED] wrote: If I enter 1/10/2004 in the date field, I get Friday, October 01, 2004 3:00:00 AM, which is not 2 AM. Greg, I don't understand why it's adding 1 hour for you... I'm in Wisconsin and I tried exactly the same activities you did and I

Re: Calculations Involving Dates

2004-11-20 Thread Ken Ray
On 11/19/04 4:59 PM, Gregory Lypny [EMAIL PROTECTED] wrote: Hello, The date format of my Mac is set to Day/Month/Year. Maybe I've been in front of the screen too long, but why does the following handler answer No? Does it mean that the only way to do date calculations is with date

Re: Creating Stack via script help?

2004-11-20 Thread John Patten
Thanks Jacqueline! Rev's a great product, but I think its real strength is in the communitty of users that use it! The users on this list are the best! Thanks Again! John Patten :-) On Saturday, November 20, 2004, at 00:04AM, [EMAIL PROTECTED] wrote: Message: 14 Date: Sat,

Re: some EuroRevCon photos

2004-11-20 Thread Erik Hansen
--- sims [EMAIL PROTECTED] wrote: Here's just a few photos from the 1000 plus that I am sorting through for the EuroRevCon web site. this is a surprise. i expected der Klaus to be etvas vierd from the Kabarett Musik, Cool Klaus http://EZPZapps.com/ERC_photos/klaus.JPG and el Andre to

RegEx Help--Across Lines

2004-11-20 Thread Sivakatirswami
I am using Rev to repurpose old html to new CSS compliant mark up. The old pages are incredibly inconsistent. Fortunately grep is our friend.. I need a grep expression that will pass out the content from both #1: title some title /title and #2 title some title /title where the first instance

Re: Standard Images

2004-11-20 Thread J. Landman Gay
On 11/20/04 3:12 PM, James Spencer wrote: OK, one last stupid question and I'll have this thing beat. My button icons are all working fine but what aren't are icons for the answer dialogs: generally I've called for answer question My prompt? with Yes or No but it doesn't matter if the iconType

Re: RegEx Help--Across Lines

2004-11-20 Thread Ken Ray
On 11/20/04 8:20 PM, Sivakatirswami [EMAIL PROTECTED] wrote: I am using Rev to repurpose old html to new CSS compliant mark up. The old pages are incredibly inconsistent. Fortunately grep is our friend.. I need a grep expression that will pass out the content from both #1: title some