Error in external

2007-02-12 Thread John Craig
I wrote a small external a while back after Mark Waddington's newsletter article. The external seems to work fine most of the time, but every once in a while throws an error. The variable watcher tells me that the temp vars that were set prior to calling the external function have mysteriously

Dollar Format

2007-02-12 Thread Jeff Honken
How would a person force a U.S. dollar format on a variable? I'm trying to set NBalance as a dollar but the following errors: put pBalance - (iDPayment + DSUM) into NBalance set the numberFormat of NBalance to "#.00" Any help will be greatly appreciated. Jeff _

Re-posting of Question about Draw and Paint Palette

2007-02-12 Thread Joe Lewis Wilkins
Sorry for being so insistent, but I really need to know. If it can't be done, it can't be done, but I suspect it can. Hi Everyone, Is there a way that Rev's Draw and Paint Control Palette can be added to our own Stacks so that they will be available in the standalones created later on? It

Re: Dollar Format

2007-02-12 Thread Derek Bump
Jeff, The "numberFormat" is actually a global setting, so you would set it and perform your script as such: set the numberFormat to "#.00" put pBalance - (iDPayment + DSUM) into NBalance Let us know if that doesn't help. Derek Bump Dreamscape Software http://www.dreamscapesoftware.c

Re: Dollar Format

2007-02-12 Thread Mark Smith
Jeff, try the format function put format("%1.2f",NBalance) into NBalance The numberFormat is a system property, and you can't set it for one variable. It persists (I think) until the current handler finishes. In any case, it simply limits the decimal places, and will not put the trailing z

RE: Dollar Format

2007-02-12 Thread Jeff Honken
Mark, That worked great. Thanks, Jeff -Original Message- From: Mark Smith [mailto:[EMAIL PROTECTED] Sent: Monday, February 12, 2007 9:59 AM To: How to use Revolution Subject: Re: Dollar Format Jeff, try the format function put format("%1.2f",NBalance) into NBalance The numberFormat

Best way to Pass Results to a Field from an External

2007-02-12 Thread Dave
Hi All, I have an External C/C++ function. One of the tasks it performs is to analyze a large amount of data and generate three lines of output per data "chunk", there are about 1000 chucks (but this can vary). I have at present a C/++ loop in the external that goes through each chuck and

Re: Re-posting of Question about Draw and Paint Palette

2007-02-12 Thread Richard Gaskin
Joe Lewis Wilkins wrote: Is there a way that Rev's Draw and Paint Control Palette can be added to our own Stacks so that they will be available in the standalones created later on? It would also be nice if its Tool functions were also available. The answer wasn't forthcoming probably becau

Mercury in retrograde

2007-02-12 Thread Richard Gaskin
Mark, could be a better way to resolve a conflict than to post it to the list? I don't know the nature of the conflict nor do I need to know, but FWIW my own experience working with Josh has been different than yours. I've known both of you for several years, and you both have a long list of pr

Re: Error in external

2007-02-12 Thread Trevor DeVore
On Feb 12, 2007, at 6:05 AM, John Craig wrote: I wrote a small external a while back after Mark Waddington's newsletter article. The external seems to work fine most of the time, but every once in a while throws an error. The variable watcher tells me that the temp vars that were set prior

Re: Re-posting of Question about Draw and Paint Palette

2007-02-12 Thread Ken Ray
On Mon, 12 Feb 2007 06:39:58 -0800, Joe Lewis Wilkins wrote: > Sorry for being so insistent, but I really need to know. If it can't > be done, it can't be done, but I suspect it can. > > Hi Everyone, > > Is there a way that Rev's Draw and Paint Control Palette can be added > to our own Stacks

Re: Re-posting of Question about Draw and Paint Palette

2007-02-12 Thread Joe Lewis Wilkins
Thanks Richard. I had kind of come to that conclusion on my own, but it's comforting to hear an authoritative opinion on the topic. Developing such a palette will certainly be grist for a future article on my Macinstuct.com column on Revolution. I finalize a cross platform application begun

Re: Error in external

2007-02-12 Thread J. Landman Gay
John Craig wrote: I wrote a small external a while back after Mark Waddington's newsletter article. The external seems to work fine most of the time, but every once in a while throws an error. The variable watcher tells me that the temp vars that were set prior to calling the external function

[OT] Decompiling SWF on a Mac

2007-02-12 Thread Richmond Mathewson
Somebody just dumped a load of shockwave files of phonetic materials they want me to pop together into a RR thing for a Free English pronunciation guide. That is all jolly well and good . . . but need to extract the sound components of the swf files so I can turn them into aiff files - help, advice

Re-posting of Question about Draw and Paint Palette

2007-02-12 Thread Richmond Mathewson
Be there or be square: http://tech.groups.yahoo.com/group/RRgraphix/ look in the files section . . . love, abuse and happy hunting! Richmond Mathewson Save the last dance for me, and don't slip in the dogs mess on the way over to t

answer dialog over modal window

2007-02-12 Thread Chris Sheffield
I'm having a strange problem. Seems to be happening only under Windows (tested on Windows XP, server 2003). I'm not sure if it's something I've done wrong or if I've found a bug in Rev. Maybe someone can help. Running Rev 2.7.4. I have an application that at one point opens a modal dialog f

data to excel

2007-02-12 Thread Liam Lambert
I am trying to enter some data into excel using Ken Ray's code. I want to put the data into columns A1,B1 (the number for each row is entered in field "Nub") ON mouseUp put "A,B,C,D,E" INTO tAlph REPEAT for each item tLett in tAlph put tLett before fld "Nub" put fld "Nub" in

Re: [OT] Decompiling SWF on a Mac

2007-02-12 Thread Brent Anderson
On the Mac there is File Juicer. It's shareware, but the limitations are open enough that you can extract everything within the trial period. Beyond that, I think it starts watermarking random images, but if you're only dealing in sound that shouldn't be a problem. On 2/12/07, Richmond Mathewso

Re: Re-posting of Question about Draw and Paint Palette

2007-02-12 Thread Joe Lewis Wilkins
Hi Rich, I took a look at this but was kind of overwhelmed by the content and, being unfamiliar with the layout, could not determine whether there is something to download, or not. It looks like you may have done some very interesting graphics stuff, but is this intended to be shared or w

Re: answer dialog over modal window

2007-02-12 Thread Chris Sheffield
Well, I ended up solving my own problem, but I'm pretty sure there's a bug here, as Rev is not behaving as the docs say it should in this case. I'm pretty sure, but someone please correct me if I'm wrong, that the docs say that using open stack "blahblah" as sheet will open the stack as a m

Re-posting of Question about Draw and Paint Palette

2007-02-12 Thread Richmond Mathewson
Hi Joe, I suggest you download "PAINT ME" - in theory, at least, you should be able to integrate that stack into your work and, subsequently, any standalones you hive off. All the stuff on my Yahoo Groups: http://tech.groups.yahoo.com/group/RRgraphix/ http://tech.groups.yahoo.com/group/richmond

Re: [OT] Decompiling SWF on a Mac

2007-02-12 Thread Trevor DeVore
On Feb 12, 2007, at 12:06 PM, Richmond Mathewson wrote: Somebody just dumped a load of shockwave files of phonetic materials they want me to pop together into a RR thing for a Free English pronunciation guide. That is all jolly well and good . . . but need to extract the sound components of the

[OT] Decompiling SWF on a Mac

2007-02-12 Thread Richmond Mathewson
Thank you very much Brent and Trevor, however, neither of your suggestions seem to work with the files I have been given (sample available at the following URL): http://mail.maclaunch.com/richmond/bad.swf.zip and at present I am running SWF Decompiler for windows inside Connectix Virtual PC 4 an

Re: [OT] Decompiling SWF on a Mac

2007-02-12 Thread Trevor DeVore
On Feb 12, 2007, at 2:03 PM, Richmond Mathewson wrote: Thank you very much Brent and Trevor, however, neither of your suggestions seem to work with the files I have been given (sample available at the following URL): http://mail.maclaunch.com/richmond/bad.swf.zip and at present I am running S

[OT] Decompiling SWF on a Mac

2007-02-12 Thread Richmond Mathewson
Wow, Thanks Trevor! Will upload the stack files of the finished programs to RevOnline when finished. sincerely, Richmond Mathewson Save the last dance for me, and don't slip in the dogs mess on the way over to take my hand.

Re: Re-posting of Question about Draw and Paint Palette

2007-02-12 Thread Joe Lewis Wilkins
Thanks a lot, Rich. I'll probably do more than that. Joe Wilkins On Feb 12, 2007, at 1:42 PM, Richmond Mathewson wrote: Hi Joe, I suggest you download "PAINT ME" - in theory, at least, you should be able to integrate that stack into your work and, subsequently, any standalones you hive off.

[OT] Decompiling SWF on a Mac

2007-02-12 Thread Richmond Mathewson
This looks like a good bet: http://www.kinesissoftware.com sincerely, Richmond Mathewson Save the last dance for me, and don't slip in the dogs mess on the way over to take my hand. ___

Re: Re-posting of Question about Draw and Paint Palette

2007-02-12 Thread Joe Lewis Wilkins
Richmond, First let me apologize for my previous use of the shorter version that makes you faintly sick. I was so excited that I didn't read the P.S. Sorry! Then to express my ignorance. I don't see anyway to download the "PAINT ME" stack. Do I need to become a Yahoo member first? My so

Re: Buttonclick deselects text

2007-02-12 Thread Devin Asay
On Feb 10, 2007, at 5:38 PM, Kresten Bjerg wrote: Hi I have buttons, which, on mouseup, shall use bits of user- selectedtext from a textfield. But it seems that the clicking of some buttons deselects the text before it can be caught. I guess this is a trivial problem,but : what is the tric

Richmond's Yahoo-Groups and related guff.

2007-02-12 Thread Richmond Mathewson
A while back I had a "file crisis" - i.e. lots of daft RunRev files I wanted to make available for those hardy souls who were willing to risk any consequences of playing with them, and no money to pay for a socking great website. Various 'kind' people offered to hold them for me on their websites;

Re: data to excel

2007-02-12 Thread Ken Ray
On Mon, 12 Feb 2007 21:08:18 +, Liam Lambert wrote: > I am trying to enter some data into excel using Ken Ray's code. What is the result? Are you getting an error, or is it putting the data in the wrong place, or not at all? Ken Ray Sons of Thunder Software, Inc. Email: [EMAIL PROTECTED] W

data to excel

2007-02-12 Thread Liam Lambert
It is filling all the column A with 99 and put 99 in the right place in D and E leaving B and C empty ? Thanks Liam On Mon, 12 Feb 2007 21:08:18 +, Liam Lambert wrote: > I am trying to enter some data into excel using Ken Ray's code. What is the result? Are you getting an error, or is it

Re: Buttonclick deselects text

2007-02-12 Thread Martin Baxter
Devin Asay wrote: On Feb 10, 2007, at 5:38 PM, Kresten Bjerg wrote: Hi I have buttons, which, on mouseup, shall use bits of user-selectedtext from a textfield. But it seems that the clicking of some buttons deselects the text before it can be caught. I guess this is a trivial problem,but :

Re: anyone here for a Brazilian User Group?

2007-02-12 Thread Kay C Lan
Been away for a month and am hurriedly scanning through hundreds of posts. Came across this Subject heading and was sure there'd be several way off topic replies. How disappointing. Is it because programing is such a 'male' thing. Hope to get to todays posts sometime this week;-)

Is libURL required for a "get url..." statement?

2007-02-12 Thread Derek Bump
I know that you cannot use commands associated with any Rev Library until after the startup handler has finished, but is the following command part of the libURL library? get url "http://www.mysite.com/"; The reason I ask is because it seems to me that it would not be, but is instead built

Re: Mercury in retrograde

2007-02-12 Thread Mark Wieder
Richard- Monday, February 12, 2007, 8:26:21 AM, you wrote: > Mark, could be a better way to resolve a conflict than to post it to the > list? Not trying to resolve a conflict, just hoping I can keep someone else from falling into the same pit. -- -Mark Wieder [EMAIL PROTECTED] __

Re: Best way to Pass Results to a Field from an External

2007-02-12 Thread Mark Wieder
Dave- Monday, February 12, 2007, 7:55:17 AM, you wrote: > put "line1" & cr & "line2" & cr & "line3" & cr & cr after field > "DataLog" > What is the best way to achieve this in a C/C++ External? I can see > that I can get and set the contents of a Field but I can't see how to > use the "after" ke

Adding a scrolling field to a stack of cards

2007-02-12 Thread Joe Lewis Wilkins
Hi all, I have the beginnings of an application/stack. I've created the menus which are a group, appear with all cards; but I now want to add a scrolling text field with it's contents to all of the cards in the easiest possible manner. How? Involves some more grouping, but I don't see how

Re: Adding a scrolling field to a stack of cards

2007-02-12 Thread Joe Lewis Wilkins
Decided to just copy the field object and paste it into the other cards, since I decided I didn't want it to appear on absolutely every one, but I'd still like to know the answer to my question, since I'm sure this is a common occurrence. TIA, Joe Wilkins On Feb 12, 2007, at 7:21 PM, Jo

Re: Adding a scrolling field to a stack of cards

2007-02-12 Thread Sarah Reichelt
I have the beginnings of an application/stack. I've created the menus which are a group, appear with all cards; but I now want to add a scrolling text field with it's contents to all of the cards in the easiest possible manner. How? Involves some more grouping, but I don't see how. Create your f

Re: Adding a scrolling field to a stack of cards

2007-02-12 Thread Joe Lewis Wilkins
Thank you Sarah. Not as easy as backgrounds in HC, but I can see it is more flexible. It was the "Place Group" that made it a puzzle. So the steps are: 1. Create an object 2. With that object selected, choose "Group" from the menu or ToolBar 3. Open the object's Property Inspector 4. Che

Re: Adding a scrolling field to a stack of cards

2007-02-12 Thread J. Landman Gay
Joe Lewis Wilkins wrote: Thank you Sarah. Not as easy as backgrounds in HC, but I can see it is more flexible. It was the "Place Group" that made it a puzzle. So the steps are: 1. Create an object 2. With that object selected, choose "Group" from the menu or ToolBar 3. Open the object's Pr

Re: Adding a scrolling field to a stack of cards

2007-02-12 Thread Mark Swindell
On Feb 12, 2007, at 8:16 PM, Joe Lewis Wilkins wrote: 1. Create an object 2. With that object selected, choose "Group" from the menu or ToolBar 3. Open the object's Property Inspector 4. Check the "Behave as Background" checkbox or set the backgroundBehavior to true 5. Go to each card a

Re: Adding a scrolling field to a stack of cards

2007-02-12 Thread Joe Lewis Wilkins
Thanks, Mark. I should have said that. Joe Wilkins On Feb 12, 2007, at 9:29 PM, Mark Swindell wrote: On Feb 12, 2007, at 8:16 PM, Joe Lewis Wilkins wrote: 1. Create an object 2. With that object selected, choose "Group" from the menu or ToolBar 3. Open the object's Property Inspector

Re: Is libURL required for a "get url..." statement?

2007-02-12 Thread Dave Cragg
On 13 Feb 2007, at 02:28, Derek Bump wrote: I know that you cannot use commands associated with any Rev Library until after the startup handler has finished, but is the following command part of the libURL library? get url "http://www.mysite.com/"; The reason I ask is because it seems t