Re: Using Rev CGI for Giant POST action

2008-07-06 Thread Andre Garzia
Aloha Swami, the way YouTube does it is by using flash as a middle player for the upload. You can have a flash uploader thing that will handle the file uploads. The Yahoo! User Interface javascript library (aka YUI) has a flash file uploaded utility available and ready to use. I think this is your

Re: Option Menu

2008-07-06 Thread Charles Szasz
Kay, Thanks a lot! -- View this message in context: http://www.nabble.com/Option-Menu-tp18306013p18309315.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use-revolution mailing list use-revolution@lists.runrev.com Please

Re: Option Menu

2008-07-06 Thread Kay C Lan
On Mon, Jul 7, 2008 at 4:09 AM, Charles Szasz <[EMAIL PROTECTED]> wrote: > I have tried including the option label in the option text too but did not > know if that would cause any problems later on. > > That is OK and will work fine. Actually you can develop some very neat tricks with this. Say

Re: Script Inspector

2008-07-06 Thread Mikey
Stewart, Just because it's been done a few times before doesn't mean it isn't worth doing. It's simple enough to do. I wrote a very crude one that generates a tab pane for each of the scripts in a stack. I originally wrote it as part of my quest to really get into the IDE. There have got to be

Re: Script Inspector

2008-07-06 Thread Kay C Lan
On Sun, Jul 6, 2008 at 8:55 AM, RevList <[EMAIL PROTECTED]> wrote: > I am also planning to do an entire dump of all scripts into another field > so that I can get a complete code report of the entire solution. > > Before I go much farther on this, I thought that I would first ask if > there is alr

Re: Vscroll Property of a field that is scrolled to the end

2008-07-06 Thread Mark Smith
Please ignore - I hadn't read the much better replies from Jan, Mark and Scott! best, Mark On 7 Jul 2008, at 00:28, Mark Smith wrote: This doesn't look to 'hacky' to me - maybe you could use both exit conditions in the 'until' and I'm not sure you need to to do the calculation - using jus

Re: Vscroll Property of a field that is scrolled to the end

2008-07-06 Thread Mark Smith
This doesn't look to 'hacky' to me - maybe you could use both exit conditions in the 'until' and I'm not sure you need to to do the calculation - using just 'the formattedheight' seems to work fine: repeat until (the vscroll of fld "Song" = the formattedHeight of fld "Song") or the mousecli

Re: Rev Icons

2008-07-06 Thread J. Landman Gay
RevList wrote: How to use Revolution on July 6, 2008 at 10:44 AM -0700 wrote: The ID number is too high for it to be a native Rev icon, so it must be somewhere in the stack. Or if the stack is a substack, it may be in the mainstack. One typical place to store icon images is in an unplaced gro

Re: Creating variables

2008-07-06 Thread Éric Miclo
Hello Mark, It's workin fine! Thanks a lot!. Best regards, ÉrIC Le 6 juil. 08 à 22:49, Mark Schonewille a écrit : Hi Éric, Use the do command: do ("put" && quote & "test" & quote && "into" && varName) -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering

Re: Creating variables

2008-07-06 Thread Mark Schonewille
Hi Éric, Use the do command: do ("put" && quote & "test" & quote && "into" && varName) -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering http://economy-x-talk.com http://www.salery.biz Benefit from our inexpensive hosting services. See http://economy-x-talk

Creating variables

2008-07-06 Thread Éric Miclo
Hello, I've 2 lists of names and want to create variables by combining the names of the 2 lists. Example: listOne is: A B C listTwo is: 1 2 and I want to create those variables: A1 A2 B1 B2 C1 C2 I did try this: repeat for each line lineListOne in listOne repeat for each line lineLi

Re: Vscroll Property of a field that is scrolled to the end

2008-07-06 Thread Scott Rossi
Recently, Sivakatirswami wrote: > How do you get the vscroll of a field that would be scrolled all the way > to the end, without actually scrolling it to the end? The formattedHeight of the field - the height of the field - the margins of the field comes very close. But for an exact number, I us

Re: Vscroll Property of a field that is scrolled to the end

2008-07-06 Thread Mark Schonewille
Hi Sivakatirswami, I have posted this a few times already, I guess it won't hurt if I post it again. The maximum scroll equals: Code: the formattedHeight of fld x - the height of fld x - the margins of fld x - the textHeight of fld x provided that the margins are an integer and the fix

Option Menu

2008-07-06 Thread Charles Szasz
I am using option menus in my app. The label I set for each option menu is fine until the user clicks on it and then the label never returns after that. I would like for the menu label to show up for the option menu if the user clicks on it to view options but does not select any of the options. I

Re: Vscroll Property of a field that is scrolled to the end

2008-07-06 Thread Jan Schenkel
--- Sivakatirswami <[EMAIL PROTECTED]> wrote: > How do you get the vscroll of a field that would be > scrolled all the way > to the end, without actually scrolling it to the > end? > > What I want to do is the "rolling credits" thing. > > This works > > CASE "About" > put 1 into tAboutScrol

Vscroll Property of a field that is scrolled to the end

2008-07-06 Thread Sivakatirswami
How do you get the vscroll of a field that would be scrolled all the way to the end, without actually scrolling it to the end? What I want to do is the "rolling credits" thing. This works CASE "About" put 1 into tAboutScroll REPEAT until the vscroll of fld "About" = 2714 # the 2714 here

Re: Add field content to a script

2008-07-06 Thread Ken Ray
On 7/6/08 1:21 PM, "RevList" <[EMAIL PROTECTED]> wrote: > I have a field called ItemPath on a card that displays the path to a > particular card or control in another stack > > For example in one instance, the field is displaying. > button id 1016 of card id 1002 of stack "/Users/slynch/Desktop/S

Add field content to a script

2008-07-06 Thread RevList
I have a field called ItemPath on a card that displays the path to a particular card or control in another stack For example in one instance, the field is displaying. button id 1016 of card id 1002 of stack "/Users/slynch/Desktop/Sample Stack.rev" Now I want to be able to display the script of th

Re: Rev Icons

2008-07-06 Thread RevList
How to use Revolution on July 6, 2008 at 10:44 AM -0700 wrote: >The ID number is too high for it to be a native Rev icon, so it must be >somewhere in the stack. Or if the stack is a substack, it may be in the >mainstack. One typical place to store icon images is in an unplaced >group, so see if

Re: Rev Icons

2008-07-06 Thread william humphrey
Thanks (as always) for the help with the field labeling gray thing and also the info on where we should store our imported icons. ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage yo

Re: Rev Icons

2008-07-06 Thread J. Landman Gay
william humphrey wrote: Of course when the enabled of a field is set to false then it doesn't respond to any mouseenter, mousedown etc. So how do you make it magically erase the label inside it and become enabled when a mouse clicks in it? What I usually do is place a text string into the fiel

Re: Rev Icons

2008-07-06 Thread J. Landman Gay
RevList wrote: When I was browsing through some stacks made by others, I am discovering some ICON ids that are used and as far as I can see, are not images that are within the stack itself, but must be standard REV icons. For example, ID 2800082 is an icon image of a couple of cards stacked on t

Re: Rev Icons

2008-07-06 Thread william humphrey
Of course when the enabled of a field is set to false then it doesn't respond to any mouseenter, mousedown etc. So how do you make it magically erase the label inside it and become enabled when a mouse clicks in it? ___ use-revolution mailing list use-re

Re: Rev Icons

2008-07-06 Thread william humphrey
Scratch that -- the label is gray when fld is told to be disabled. ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/l

Re: Rev Icons

2008-07-06 Thread william humphrey
I was wondering. In the apple interface (many Apple programs) often fields are named by having a grayed out text in the field when it is empty like: "first name" in a slightly larger bold version of the font that is screened gray like 40%. Is it best to do this in RunRev by making an icon for each

Re: Rev Icons

2008-07-06 Thread william humphrey
When you import an image into the stack it also becomes selectable as an icon (you probably know this already) but then there must be someway to convert that imported image to one of the ones like you see in those lists of metacard icons and others. I don't know how to do this so when I import an i