Re: PHP List and Split commands

2004-06-13 Thread Troy Rollins
On Jun 14, 2004, at 12:24 AM, [EMAIL PROTECTED] wrote: I'm looking for a command in Rev like the following PHP command... list( $tVar01, $tVar02, $tVar03)= split ("\|", $line); there's a command in transcript that works similar to the PHP split command.. (i don't have anything with me at this compu

RE: PHP List and Split commands

2004-06-13 Thread [EMAIL PROTECTED]
> > I'm looking for a command in Rev like the following PHP command... > > list( $tVar01, $tVar02, $tVar03)= split ("\|", $line); there's a command in transcript that works similar to the PHP split command.. (i don't have anything with me at this computer to reference to, but i've been using it

Re: ANN: new version of CGI-Tool Stack

2004-06-13 Thread Andre Garzia
On Jun 13, 2004, at 11:20 PM, Bruce Robertson wrote: So what happened to ServerWorks? Lat mention of it appear to be late April. Bruce, ServerWorkz, now known internally as libServerWorkz, is almost ready for it's world debut. I am developing on both sides, self-contained solution (based on rev

Re: Calling a method [like a function pointer]

2004-06-13 Thread K
I was sending in time to one of my theads that I build/tested using nothing but a repeat I forgot to replace one of the error repeat next to error return. After I removed the stray repet next the code started executing without error. Oddly the apply missed this and the erros where reported ev

Re: ANN: new version of CGI-Tool Stack

2004-06-13 Thread Bruce Robertson
> Hi folks, > > After being in hospital for a while due to an evil mosquito bite, I am > back coding. First it's an annoucement of a new version of CGI-Tool > stack. This is a simple Helper stack made by Me, Andre Alves Garzia > ([EMAIL PROTECTED]), to help people setup MC Engine and LibCGI with >

ANN: updated CGI-Tool palette...

2004-06-13 Thread Andre Garzia
Hi Folks, I am releasing a very improved version of my CGI-Tool stack. It's now a palette. You just drop it in your plugins folder, invoke it thru the development menu. Features: * Will upload and install (set perms and stuff) the MetaCard engine in a remote FTP account. * Will upload and instal

backgroundPattern

2004-06-13 Thread hershbp
Hi , How can I know what id# background a certain icon or back groud is ? I'm trying to figure out the mac backgroundpattern is what # ? I did put the backgroundpattern of this stack in the message box it came up 210091. What I want , if the platfrom is "MacOS" then set the background to "the mac

is Rodney site down?

2004-06-13 Thread Andre Garzia
Hi Folks, any one here noticed that Rodney's weblog is down? Trying to reach http://rodney.weblogs.com reaches another manilla site... strange... -- Andre Alves Garzia  2004 Soap Dog Studios - BRAZIL http://studio.soapdog.org ___ use-revolution mailing

RE: Declare a Variable from a Variable?

2004-06-13 Thread Ken Ray
> Can you declare a variable from a variable in Transcript? > Like the following... > > put "randomVariableName" into newVariableToCreate > create variable newVariableToCreate Just curious... for what purpose? Unless you have explicitVariables turned on, you don't need to predeclare your variab

Re: Declare a Variable from a Variable?

2004-06-13 Thread Richard Gaskin
Derek Bump wrote: Can you declare a variable from a variable in Transcript? Like the following... put "randomVariableName" into newVariableToCreate create variable newVariableToCreate You may find it useful to use an array for that, with the key serving as the variable name: put tSomeData into

RE: PHP List and Split commands

2004-06-13 Thread Phil Davis
I'm no PHP expert, but it seems like you could do this: -- make line var into an numerically-keyed array split tLine with "|" -- make array elements available as simple vars put tLine[1] into tVar01 -- first key is 1, not 0 put tLine[2] into tVar02 put tLine[3] into tVar03

Re: Declare a Variable from a Variable?

2004-06-13 Thread Jan Schenkel
--- Derek Bump <[EMAIL PROTECTED]> wrote: > Can you declare a variable from a variable in > Transcript? Like the > following... > > put "randomVariableName" into newVariableToCreate > create variable newVariableToCreate > > > Derek Bump > Hi Derek, You can use the "do" command to create a lo

Declare a Variable from a Variable?

2004-06-13 Thread Derek Bump
Can you declare a variable from a variable in Transcript? Like the following... put "randomVariableName" into newVariableToCreate create variable newVariableToCreate Derek Bump Dreamscape Software Compress Images Easily with JPEGCompress http://www.d

Re: PHP List and Split commands

2004-06-13 Thread Jan Schenkel
--- Derek Bump <[EMAIL PROTECTED]> wrote: > I'm looking for a command in Rev like the following > PHP command... > list( $tVar01, $tVar02, $tVar03)= split ("\|", > $line); > > If this exists in Rev then it would make my life a > whole lot easier. > > > Derek Bump > Hi Derek, As far as I can s

PHP List and Split commands

2004-06-13 Thread Derek Bump
I'm looking for a command in Rev like the following PHP command... list( $tVar01, $tVar02, $tVar03)= split ("\|", $line); If this exists in Rev then it would make my life a whole lot easier. Derek Bump Dreamscape Software Compress Images Easily with J