List Field and Ask Dialog

2002-04-06 Thread Magnus von Brömsen
Hello I have a List Field with some lines of text. When clicking a line I want the Ask dialog shown, fill in a number and have that number put in (with a tab) after the last word of the line. 1. This script in the Text Field works: on mouseUp put tab 1 after the last word of the

Re: List Field and Ask Dialog

2002-04-06 Thread David Vaughan
Magnus Without giving you the text of the answer, your problem is that in your test case you have already selected a line in the field so the chunk (selectedText) is valid. After the ask dialog that field is no longer selected so any chunk address fails. You need to note the line you

Re: rev conference

2002-04-06 Thread Sjoerd Op 't Land
Devin Asay wrote/ schreef: snip To get an idea of your level of interest, tick one of the items below: ( ) I will definitely come to a Revolution workshop at Macworld NY. ( ) I would consider coming to a Revolution workshop at Macworld NY. (x) Other: I won't come because NY is too

Re: List Field and Ask Dialog

2002-04-06 Thread Jeanne A. E. DeVoto
At 2:39 AM -0800 4/6/2002, Magnus von Brömsen wrote: I get the old error (Chunk: no target found) when trying this: on mouseUp ask How many? if it is not empty then put tab it after the selectedLine end mouseUp You may need to set the button's traversalOn to false. (This avoids

a supplemental newbies forum area

2002-04-06 Thread BCE
Hey everyone, I created a YaBB board here for your use: http://www.mailping.net/cgi-bin/yabb/YaBB.cgi If it gets used I'll maintain it and possibly move it to it's own domain. You'll need to register to post, but you can browse as a guest. It's brand new, just launched today, so please visit

Re: MOD function does not work! So be warned!

2002-04-06 Thread Rob Cozens
One problem is what is an integer? I would define an integer as any non-decimal number within the range of numbers supported by the interpreter. http://groups.yahoo.com/group/xtalks/ Thank you, Michael. I'm waiting confirmation of my subscription as I write this. -- Rob Cozens CCW,

Re: How use shell on MacOS X ?

2002-04-06 Thread Dar Scott
On Saturday, April 6, 2002, at 04:00 AM, Ludovic Thébault wrote: Why the shell command doesn't works with MacOS X ? I don't know why. I hope it will soon. In the mean time you might want to try this function that uses AppleScript. I mentioned it on the list a couple weeks ago. I have

[OT humor] Learning Revolution Skills

2002-04-06 Thread Dar Scott
My children have caught the Revolution bug. I have told them that if they work on their Revolution skills I'll contract some stack design to them. Even so, I was caught off-guard. My wife and the kids were making a lot of noise in the kitchen. I asked what was going on. My wife turned to

Re: Bad Chars in Rev Docs (was 'Re: Jeanne...revAppVersiondoesn't work?')

2002-04-06 Thread Ken Norris (dialup)
on 4/6/02 10:12 AM, Ken Ray at [EMAIL PROTECTED] wrote: There's also option-= as well, which doesn't display properly. But you CAN display them under Windows by using the Symbol font: option- is numToChar(163) option- is numToChar(179) option-= is numToChar(185) option-L is

Re: [OT humor] Learning Revolution Skills

2002-04-06 Thread William T. Simmons
Great story! Tommy Simmons Employment Law Advisory Network www.employmentlawadvisors.com - Original Message - From: Dar Scott [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, April 06, 2002 12:39 PM Subject: [OT humor] Learning Revolution Skills My children have caught the

mainstack and substack

2002-04-06 Thread yves COPPE
Hello, I have a mainstack with many substacks. I'd like to change making one of the substacks the main stack and the actually main a substack. How to proceed ? -- Greetings. Yves COPPE Email : [EMAIL PROTECTED] ___ use-revolution mailing list

RE: Jeanne...revAppVersion doesn't work?

2002-04-06 Thread Chipp Walters
Also, I hate to be a crab about it...but the help files still have the problem with apostrophe's on Windows. I know it's created for Macs, but can't someone figure out how to automatically convert the apostrophe's for windows? It kills all the links to help troubleshooter files. Jeanne, I

Re: Jeanne...revAppVersion doesn't work?

2002-04-06 Thread Ken Norris (dialup)
on 4/6/02 3:41 PM, Chipp Walters at [EMAIL PROTECTED] wrote: I checked out the latest version, and you are indeed correct. The apostrophe problem is not there. It appears even though I installed the RR1.1.1 do a different folder, it still used the help files (and the IDE?) from the older

Image still cut off/menubar problem

2002-04-06 Thread Ken Norris (dialup)
Hi there, Mac PB 1400c, 133mhz, 48 mb, OS 8.6, SanDisk Flash memory 128 mb with 120 mb available for additional virtual RAM, RR 1.1b1 Three problems: 1) The full screen image I put in is still cut off at the top where the task buttons are. The image is mostly there, but it's pushed down. I've

Re: RR now charging royalities for runtimes?

2002-04-06 Thread Ken Norris (dialup)
Just a note, my .02 worth: Note: I didn't read every single post on this thread, so if anyone else already stated the obvious, I apologise. I wouldn't think, in Scotland or anywhere else in the UK, or the U.S., or any European countries, that anyone can legally overwrite a previous agreement. I

Re: List Field and Ask Dialog

2002-04-06 Thread Magnus von Brömsen
Many thanks David I did the same test as you -- and that works fine!?!. Then I went back to my original text field to find what is wrong. For some reason I had deselect Can Recive Keyboard focus. I dont now why... Thanks for all help. /magnus On lördag, april 6, 2002, at 01:37 , David