Re: Remember the NSProgressIndicator OS X?

2004-07-17 Thread Wouter
Re: Remember the NSProgressIndicator OS X? From: Klaus Major Subject: Re: Remember the NSProgressIndicator OS X? Date: Fri, 16 Jul 2004 13:52:56 -0700 Hi Wouter, actually it was me who posted this question long ago ;-) snip Wow, dat is heelemal

Re: Remember the NSProgressIndicator OS X?

2004-07-17 Thread Wouter
Weird difference between mc and rev! For the rev users add the extra line in the following handler: on prepArray tG,tK if there is no grp runningStarX then goCreateSome put item 1 of Cp into tX put item 2 of Cp into tY put (2 * pi / 12) into sRad repeat with i = 1 to 12 put trunc(tG

Arrays Ad Nauseam

2004-07-17 Thread Rob Cozens
Hi All, One I got started on arrays, I couldn't stop without mathematical capabilities; so array support in the next update of Serendipity Library will include arrayMath and matrixMath functions, as well as a newArray function for building initializing arrays. ArrayMath supports mathematical

Re: Using angle brackets

2004-07-17 Thread FlexibleLearning
Depending on the email client (AOL especially), such a format can be misinterpreted as a tag and simly become invisible on the page. Similarly, those that automatically apply an html tag to text can be rendered by the format as seen in this list. /H For what it's worth, URLs generally

Re: Using angle brackets

2004-07-17 Thread Richard Gaskin
[EMAIL PROTECTED] wrote: For what it's worth, URLs generally work best in email clients when surrounded by angle brackets - http://www.FlexibleLEarning.com/xtalk Depending on the email client (AOL especially), such a format can be misinterpreted as a tag and simly become invisible on

Re: Using angle brackets

2004-07-17 Thread Troy Rollins
On Jul 17, 2004, at 12:41 PM, [EMAIL PROTECTED] wrote: Depending on the email client (AOL especially), such a format can be misinterpreted as a tag and simly become invisible on the page. Similarly, those that automatically apply an html tag to text can be rendered by the format as seen in this

Re: Refer to Cards

2004-07-17 Thread Roger Guay
Thanks, but I don't think this will work for what I need. What I need is a command that forces subsequent lines of script to act only on a specified card. Something like: on someHandler Do something to look only at card x for the following lines -- this is the line I'm after hide object

Re: Refer to Cards

2004-07-17 Thread Brian Yennie
Roger, How about something like: put myCardName into tCard hide object 1 of card tCard show object 2 of card tCard ... put anotherCardName into tCard ... Thanks, but I don't think this will work for what I need. What I need is a command that forces subsequent lines of script to act only on a

Support for MSSQL databases

2004-07-17 Thread Roger . E . Eller
I was wondering if RunRev will ever add Microsoft SQL to its database connectivity offerings. In the corporate environment, alot of times it is required that we use Microsoft (even though MySQL is just as good or better). Thanks. Roger Eller [EMAIL PROTECTED]

Re: Remember the NSProgressIndicator OS X?

2004-07-17 Thread Yves COPPE
Le 17-juil.-04, à 15:24, Wouter a écrit : Weird difference between mc and rev! For the rev users add the extra line in the following handler: Hi, Can you tell where I can change something in your script to have a more little or bigger wheel ?? Thank you. Greetings. Yves COPPE [EMAIL PROTECTED]

Re: Refer to Cards

2004-07-17 Thread Wouter
Re: Refer to Cards From: Roger Guay Subject: Re: Refer to Cards Date: Sat, 17 Jul 2004 11:17:27 -0700 Thanks, but I don't think this will work for what I need. What I need is a command that forces subsequent lines of script to act only on a

save as for text file?

2004-07-17 Thread Rich Lague
I'm trying to create an application in which the user will fill in a table field. I would then like to let the user save that field as a text file under a name they chose. This was my first attempt: on mouseUp ask Save list as... set the defaultFolder to

Re: save as for text file?

2004-07-17 Thread Dar Scott
On Jul 17, 2004, at 1:48 PM, Rich Lague wrote: on mouseUp ask Save list as... set the defaultFolder to /Users/rlague/Documents/Revolution-iB/RFP projecto/7.2i put field daTable into URL file:it.txt end mouseUp Off the top of my head... on mouseUp ask Save list as... if char -4 to -1 of

Re: save as for text file?

2004-07-17 Thread Derek Bump
Try This... on mouseUp put cd fld daTable into tableData ask Save File As... with untitled.txt if it is empty then exit mouseUp put it into targetFileName set the defaultFolder to /Users/rlague/Documents/Revolution-iB/RFPprojecto/7.2i/ open file targetFileName write tableData

Re: save as for text file?

2004-07-17 Thread Pierre Sahores
Le 17 juil. 04, à 21:48, Rich Lague a écrit : Try open file it on mouseUp ask file Save list as... with Temp # open it open file it write card field daTable to file it close file it end mouseUp I do not get the error message, but no file is created. So, is there a way to do what I'm

scriptsLimits

2004-07-17 Thread K
I am working on a OOP library for 'RR' and I am fuzzy on a few 'RR' internals. I currently have a 'control' that represents a template class (each is self registering). When the developer calls createInstance a clone of that control is created and 'the script' is modified to accept messages

weird behavior

2004-07-17 Thread Wouter
Hi all, Some weird behavior. If the style of a created graphic is set to polygon and the points of it are set to a list like: --- start of list point1 point2 point3 point4 point5 point6 - end of list then revolution adds another point to the list. it becomes: ---

Re: weird behavior

2004-07-17 Thread Richard Gaskin
Wouter wrote: Hi all, Some weird behavior. If the style of a created graphic is set to polygon and the points of it are set to a list like: --- start of list point1 point2 point3 point4 point5 point6 - end of list then revolution adds another point to the list. it

Re: Remember the NSProgressIndicator OS X?

2004-07-17 Thread Alejandro Tejada
on Sat, 17 Jul 2004 Wouter wrote: The difference between mc and rev if the extra line is not added: - in rev there is an extra line at 3 o'clock in the runningStarX7 graphic where there is none in mc, though both use the same engine!! (enlarge the runningStarX7 graphic to see this

Re: Arrays Ad Nauseam

2004-07-17 Thread Alejandro Tejada
on Sat, 17 Jul 2004 Rob Cozens wrote: One I got started on arrays, I couldn't stop without mathematical capabilities; so array support in the next update of Serendipity Library will include arrayMath and matrixMath functions, as well as a newArray function for building initializing

Re: Color conversion question

2004-07-17 Thread Alejandro Tejada
on Fri, 16 Jul 2004 John Rule wrote: Is there a routine to convert a color constant name (i.e. 'black') to the triple RGB value? I can't seem to find anything in the docs, and I have tried all of the tricks I know... Look at this message:

Re: weird behavior

2004-07-17 Thread Alex Tweedly
At 23:24 17/07/2004 +0200, Wouter wrote: Hi all, Some weird behavior. If the style of a created graphic is set to polygon and the points of it are set to a list like: --- start of list point1 point2 point3 point4 point5 point6 - end of list then revolution adds another

What is messageMessages property?

2004-07-17 Thread K
-==-=-=-=-=-=-==-=-=-=-=-=-=-=-==-=-=-=-=-=- Disclaimer: Any resemblance between the above views and those of my employer, my terminal, or the view out my window are purely coincidental. Any resemblance between the above and my own views is non-deterministic. The question of the existence

Re: Color conversion question

2004-07-17 Thread J. Landman Gay
On 7/17/04 6:59 PM, Alejandro Tejada wrote: on Fri, 16 Jul 2004 John Rule wrote: Is there a routine to convert a color constant name (i.e. 'black') to the triple RGB value? I can't seem to find anything in the docs, and I have tried all of the tricks I know... Look at this message:

RecordInput Setting for Telex USB Audio Device

2004-07-17 Thread Sannyasin Sivakatirswami
Is there any way to query the system on OSX for the 4 character string that will automatically switch the record input property to a setting that will pipe the sound from USB input? Of course one can go to the sound control panel in system prefs, set the input to the Telex USB Audio Device