Re: How do I put Toolbox objects into a table control?

2006-05-18 Thread Jan Schenkel
--- [EMAIL PROTECTED] wrote: > Hi all, > > I'm starting to "move along" with learning Studio > 2.7. > Although the questions still come. > > How do I put other controls into a table control, > for example, a check box, or a combo box? That is, a > column of check boxes. > If I can, will it allow

[ANN] STS XML Library 2.0.2 Available

2006-05-18 Thread Ken Ray
Just a quick note to let you all know that I have posted version 2.0.2 of the STS XML Library at my web site which fixes a couple of small handful of bugs and provides an enhancement to stsXML_GetNodeData to get access to embedded CDATA. For a complete breakdown on what changed, see the Version H

Re: opening email app in Windows

2006-05-18 Thread Peter Brigham
I have a button that puts some text on the clipboard and I want it then to go to (or, if not already open, to launch) the user's email application. On the "MacOS" platform I can do this just fine with a brief Applescript "tell Finder to activate" script. However, I'm working on a mac and ha

database access bandwidth: PHP vs. Revolution

2006-05-18 Thread Josh Mellicker
Forgive the noob question: At first glance it appears that accessing a database with Rev "hits" the database for every column in every record in the repeat loop. Whereas it seems that a SELECT query executed from, say, PHP, puts all the data returned into an array in one query, then the dat

How do I put Toolbox objects into a table control?

2006-05-18 Thread mfstuart
Hi all, I'm starting to "move along" with learning Studio 2.7. Although the questions still come. How do I put other controls into a table control, for example, a check box, or a combo box? That is, a column of check boxes. If I can, will it allow the end user to do live updates to these control

Re: Identifying the end of a file transfer

2006-05-18 Thread Richard Miller
Good idea. Thanks. Richard On May 18, 2006, at 4:40 PM, Sarah Reichelt wrote: On 5/18/06, Richard Miller <[EMAIL PROTECTED]> wrote: I've got one stack sending a file out to server, and a separate stack (on a separate machine) scanning the server for the availability of that file. When it see

TRIM command? - reply #2

2006-05-18 Thread mfstuart
Thanx to all for helping. Here's my result. After trying your quick answers to my request, here's what I've found to work when applying a TRIM function to text: To those in need of this, I created a function, as you may use/call it multiple times. -- gets the very first word and the very last w

Crash

2006-05-18 Thread Hershel Fisch
Hi every body, I'm wondering if any body had this experience with crashing version 2.72 on a mac osx 10.3. Thanks, Hershel Fisch ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage yo

Re: Replace with

2006-05-18 Thread Camm29
FANTASTIC !!! - Original Message - From: "Ken Ray" <[EMAIL PROTECTED]> To: "Use Revolution List" Sent: Thursday, May 18, 2006 10:03 PM Subject: Re: Replace with > On 5/18/06 3:45 PM, "Camm29" <[EMAIL PROTECTED]> wrote: > > > It may be simple but I failed. > > > > i need a Simple way to

TRIM command? - reply

2006-05-18 Thread mfstuart
WOW!! :) I'm blown away with the speed you guys (and gals) reply to these requests. As I'm new to RunRev, I'll be trying out the different answers, and get back to you. Awesome, Mark ___ use-revolution mailing list use-revolution@lists.runrev.com Pleas

Re: Replace with

2006-05-18 Thread Sarah Reichelt
On 5/19/06, Ken Ray <[EMAIL PROTECTED]> wrote: On 5/18/06 3:45 PM, "Camm29" <[EMAIL PROTECTED]> wrote: > It may be simple but I failed. > > i need a Simple way to achieve , > > replace "0:" with "" in data > replace "1:" with "" in data > replace "2:" with "" in data > replace "3:" with "" in da

Re: TRIM command?

2006-05-18 Thread Sarah Reichelt
On 5/19/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hi all, Is there a RunRev TRIM command? To remove beginning and/or trailing spaces. If there is, I can't find it. If there isn't, how would I script the function for this? There was a lot of discussion about this a few months ago, so an

Re: TRIM command?

2006-05-18 Thread Ken Ray
On 5/18/06 3:58 PM, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hi all, > > Is there a RunRev TRIM command? To remove beginning and/or trailing spaces. > If there is, I can't find it. > If there isn't, how would I script the function for this? The basic trim for both sides would be (assume

Re: TRIM command?

2006-05-18 Thread Alex Tweedly
[EMAIL PROTECTED] wrote: Hi all, Is there a RunRev TRIM command? To remove beginning and/or trailing spaces. If there is, I can't find it. If there isn't, how would I script the function for this? AFAIK, there isn't. If this is *within* a line (or if you don't need to worry about CR for s

Re: Replace with

2006-05-18 Thread Ken Ray
On 5/18/06 3:45 PM, "Camm29" <[EMAIL PROTECTED]> wrote: > It may be simple but I failed. > > i need a Simple way to achieve , > > replace "0:" with "" in data > replace "1:" with "" in data > replace "2:" with "" in data > replace "3:" with "" in data > replace "4:" with "" in data > replace "5:

Re: TRIM command?

2006-05-18 Thread Brian Yennie
This script should do the trick: repeat while (char 1 of myString = space) delete char 1 of myString end repeat repeat while (char -1 of myString = space) delete char -1 of myString end repeat ___ use-revolution mailing list use-revolution@lis

Re: Replace with

2006-05-18 Thread Sarah Reichelt
Not the best, but I do love "repeat for each" :-) Sarah On 5/19/06, Camm29 <[EMAIL PROTECTED]> wrote: Great Someone said you were the best ! Camm - Original Message - From: "Sarah Reichelt" <[EMAIL PROTECTED]> To: "How to use Revolution" Sent: Thursday, May 18, 2006 9:46 PM Subject: Re

TRIM command?

2006-05-18 Thread mfstuart
Hi all, Is there a RunRev TRIM command? To remove beginning and/or trailing spaces. If there is, I can't find it. If there isn't, how would I script the function for this? TIA, Mark ___ use-revolution mailing list use-revolution@lists.runrev.com Please

Re: Replace with

2006-05-18 Thread Camm29
Great Someone said you were the best ! Camm - Original Message - From: "Sarah Reichelt" <[EMAIL PROTECTED]> To: "How to use Revolution" Sent: Thursday, May 18, 2006 9:46 PM Subject: Re: Replace with On 5/19/06, Camm29 <[EMAIL PROTECTED]> wrote: > It may be simple but I failed. > > i need

Re: Replace with

2006-05-18 Thread Sarah Reichelt
On 5/19/06, Camm29 <[EMAIL PROTECTED]> wrote: It may be simple but I failed. i need a Simple way to achieve , replace "0:" with "" in data replace "1:" with "" in data replace "2:" with "" in data replace "3:" with "" in data replace "4:" with "" in data replace "5:" with "" in data replace "6:

Replace with

2006-05-18 Thread Camm29
It may be simple but I failed. i need a Simple way to achieve , replace "0:" with "" in data replace "1:" with "" in data replace "2:" with "" in data replace "3:" with "" in data replace "4:" with "" in data replace "5:" with "" in data replace "6:" with "" in data replace "7:" with "" in data r

Re: Identifying the end of a file transfer

2006-05-18 Thread Sarah Reichelt
On 5/18/06, Richard Miller <[EMAIL PROTECTED]> wrote: I've got one stack sending a file out to server, and a separate stack (on a separate machine) scanning the server for the availability of that file. When it sees it, it needs to retrieve it from the server. Problem is, this second stack is se

Re: Saving a stack state and variables

2006-05-18 Thread Jim Ault
On 5/18/06 12:49 PM, "Rob Beynon" <[EMAIL PROTECTED]> wrote: > I therefore need to write out to a file the contents of all fields, > and the status of all buttons and menus, as well as some variables. > Because some fields can have many lines, it is not as simple as one > entry per line. > <> On

Re: Splash Screen Strategy

2006-05-18 Thread Chipp Walters
Hi Todd, I use MagicCarpet to manage all my MainStacks and SubStacks (I call plugins). I know you already have a copy. I'll be talking a bit more about some of the new things I'm doing with auto-updating architectures at RevCon and hope to see you there. Contact me offlist if you need more info

Re: near-real-time communication between an app in NY and an app in LA

2006-05-18 Thread Jim Ault
Another interesting setup is the one I just completed two minutes ago. Using Alex Tweedly's UDP Client and Server stacks they are sending messages to each other without 'looking' to my FTP server. I do the same thing as you with the intermediary file server being a Mac set to FTP with a second us

Re: near-real-time communication between an app in NY and an app in LA

2006-05-18 Thread Alex Tweedly
Josh Mellicker wrote: I type a number in a field on a card in LA A person in NY sees that number appear magically within seconds in the corresponding field on their card How do it know?* I am compiling a list of ways for two apps to "sync up" by sending simple packets of info to each oth

Saving a stack state and variables

2006-05-18 Thread Rob Beynon
Hi all, I have a slightly weird stack http://www.liv.ac.uk/pfg/LocalTools.html that does something specific for our research. Basically, you enter one field (sequence) or download from the web, then perform various operations based on choices, to generate an SVG file that can the be edited extern

near-real-time communication between an app in NY and an app in LA

2006-05-18 Thread Josh Mellicker
I type a number in a field on a card in LA A person in NY sees that number appear magically within seconds in the corresponding field on their card How do it know?* I am compiling a list of ways for two apps to "sync up" by sending simple packets of info to each other, through a central se

Re: Detecting Shockwave

2006-05-18 Thread Ken Ray
On 5/18/06 5:38 AM, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > > > How can I check for shockwave (including version) from within > > Rev. I need a Windows/MacOS9/MacOSX solution. Well, for OS X you can check for a file at: /Library/Application Support/Macromedia/Shockwave 10/Shockwave

Re: images in cross-platform stacks (PNGs)

2006-05-18 Thread Richard Gaskin
Alex Shaw wrote: Some good info & tips for using PNGs.. http://user.fundy.net/morris/?photoshop27.shtml http://user.fundy.net/morris/?photoshop03.shtml Really good articles; thanks for posting those. Not only great info on the PNG format, but also fine examples of good instructional design.

Re: Identifying the end of a file transfer

2006-05-18 Thread Ton Kuypers
Check the size of the file, check it again in 2 seconds. If the size is the same, the file should be on the server... But your "flag-file" should do just as easy... Warm regards, Ton Kuypers Digital Media Partners bvba Tel. +32 (0)477 / 739 530 Fax +32 (0)14 / 71 03 04 http://www.dmp-int.com

Identifying the end of a file transfer

2006-05-18 Thread Richard Miller
I've got one stack sending a file out to server, and a separate stack (on a separate machine) scanning the server for the availability of that file. When it sees it, it needs to retrieve it from the server. Problem is, this second stack is seeing the availability of the file BEFORE it has c

Detecting Shockwave

2006-05-18 Thread revolution
How can I check for shockwave (including version) from within Rev. I need a Windows/MacOS9/MacOSX solution. ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription pre

Re: images in cross-platform stacks (PNGs)

2006-05-18 Thread Alex Shaw
Hi Richard & others.. Some good info & tips for using PNGs.. http://user.fundy.net/morris/?photoshop27.shtml http://user.fundy.net/morris/?photoshop03.shtml regards alex ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this

Re: regEx to remove spaces ?

2006-05-18 Thread jbv
many thanks to all list members who responded to my question. actually I had already cooked my own script (see below - not really elegant, but efficient & fast enough for what I need to do). I was just wondering if it could be done in a simpler way with a regEx... Best, JB put "" into myL p

Re: regEx to remove spaces ?

2006-05-18 Thread Mark Schonewille
Hi Alex, You're right about the additional assumptions, although one might call the function within another repeat loop for each line, if each pair of quotes is in one single line. As other solutions have shown, one may also replace the return with a unique string before calling this func

Re: Re: images in cross-platform stacks

2006-05-18 Thread Malte Brill
Hi Tom, 1.8 on my intel iMac 17" by default. All the best, Malte I wonder what the new Intel Macs are set to? ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscript

Re: Moving files to trash

2006-05-18 Thread Sarah Reichelt
On 5/18/06, Richmond Mathewson <[EMAIL PROTECTED]> wrote: One of the ways to avoid RR's instant 'delete' would be to have your stack/standalone create a directory at a standardised place on the end-user's machine (how about in the user's 'home' directory?) called something like "RTrash" and fil

Moving files to trash

2006-05-18 Thread Richmond Mathewson
One of the ways to avoid RR's instant 'delete' would be to have your stack/standalone create a directory at a standardised place on the end-user's machine (how about in the user's 'home' directory?) called something like "RTrash" and files could be jettisoned there. The 'RTrash' directory could

Moving files to trash

2006-05-18 Thread Richmond Mathewson
/home/My Computer/My Desktop/Trash Linspire (KDE) /root/Desktop/Trash Wanderer (KDE) could not locate 'trash' anywhere with Damn Small Linux I think there are at least 200 Linux Distros on the go at present - and the situation with a Trash folder may be extremely problematic! How about