Re: [ANN] F-ab 2.5.0 released and available for download

2008-07-24 Thread Jim Ault
On 7/24/08 5:16 PM, "Jiro Harada" <[EMAIL PROTECTED]> wrote: > Hello, > > F-ab 2.5.0 is now available for download. > > F-ab is a simple browser for Flash movies. It is created by Runtime > Revolution 2.9. In F-ab, Flash movies are identified by channels > instead of URLs. Currently 1300 or more

Re: [ANN] F-ab 2.5.0 released and available for download

2008-07-24 Thread J. Landman Gay
Jiro Harada wrote: Ken, How are you playing the Flash movies - are you using revBrowser? No, I wrote an external to handle Flash Player. In the Lib folder of this application, you will find BlendCoffee.dll on Windows or BlendCoffee.bundle on Mac OS. This is the external. This external enable

Re: strip chars

2008-07-24 Thread Mark Schonewille
Hi JB, I don't know which stack you mean, but this should do it: put replacetext("123sdf45","[^0-9]","") The ^ searches for everything that is not in the specified range 0-9. Best, Mark -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering http://economy-x

Re: [ANN] F-ab 2.5.0 released and available for download

2008-07-24 Thread Jiro Harada
Ken, How are you playing the Flash movies - are you using revBrowser? No, I wrote an external to handle Flash Player. In the Lib folder of this application, you will find BlendCoffee.dll on Windows or BlendCoffee.bundle on Mac OS. This is the external. This external enables that Flash Player

strip chars

2008-07-24 Thread -= JB =-
I downloaded a stack a while back that had a bunch of scripts in it that would do things like strip chars and various other goodies. I can't remember who wrote it or the name of it so I can't find it. Does anyone know the name of a stack that has sample code that allows me to strip everything bu

Re: [ANN] F-ab 2.5.0 released and available for download

2008-07-24 Thread Ken Ray
On 7/24/08 7:16 PM, "Jiro Harada" <[EMAIL PROTECTED]> wrote: > Hello, > > F-ab 2.5.0 is now available for download. > > F-ab is a simple browser for Flash movies. It is created by Runtime > Revolution 2.9. In F-ab, Flash movies are identified by channels > instead of URLs. Currently 1300 or m

Re: So many ways in XTalks

2008-07-24 Thread Scott Morrow
...is that a return in a function (or a command but that's more difficult to understand) stops the running handler and returns immediately a result disregarding next statements. A light bulb (if somewhat dim) just went on over my head... thanks. For most things, readability is better

[ANN] F-ab 2.5.0 released and available for download

2008-07-24 Thread Jiro Harada
Hello, F-ab 2.5.0 is now available for download. F-ab is a simple browser for Flash movies. It is created by Runtime Revolution 2.9. In F-ab, Flash movies are identified by channels instead of URLs. Currently 1300 or more high-quality Flash movies are registered in the channels. Furtherm

Re: Combo Box button

2008-07-24 Thread -= JB =-
Hi Mark, No, it was set to false. Originally I made it an Option button and then changed it from within the inspector to Combo Box. I set the traversalOn property with the message box because within the inspector I did not see an option to set it. Shouldn't it have automatically set the traver

Re: Combo Box button

2008-07-24 Thread Mark Schonewille
Hi JB, Is the traversalOn of the combobox true? -- 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.com/server.html for more info. On 2

Combo Box button

2008-07-24 Thread -= JB =-
I have a Combo Box button inside a Group and for some reason I am not able to edit the text but can still make choices. How can I make this button allow me to edit the text like Combo Box buttons are supposed to do? -=>JB<=- ___ use-revolution mailing

Re: revBrowser in standalone

2008-07-24 Thread Thomas McGrath III
Andres, Yes the image holder (object) is just there for the coordinates and is blank with the border as default from the tools menu image object. I am not importing an image so unless the image object is a png I am using what ever the img obj defaults to. Rev 2.9 Thanks Tom On Jul 24, 2

Re: revBrowser in standalone

2008-07-24 Thread Thomas McGrath III
Mark, OK and the revBrowser. bundle is in the OSX app package: "Test.app/ Contents/MacOS/Externals/revbrowser.bundle" The image object as it comes from the tool palette. i.e. an image holder object to which an object that can hold an image. grin I set the rect to the rect of an image Brows

RE: Rev and joystick or switch

2008-07-24 Thread Randall Reetz
put the mouseV into startV repeat while the mouse is down put the mouseV into nowV move grc A x,(nowV-startV) end repeat -Original Message- From: "Randall Reetz" <[EMAIL PROTECTED]> To: "How to use Revolution" Sent: 7/24/2008 1:11 PM Subject: RE: Rev and joystick or switch Or, if the j

Mirko Geshev

2008-07-24 Thread Richmond Mathewson
Mirko Geshev has pulled himself together after 2 years in a "yogic slumber" and is doing his homework:- http://tech.groups.yahoo.com/group/RRRStudents/files Folder: MIRKO'S WORK sincerely, Richmond Mathewson. A Thorn in the flesh i

RE: Rev and joystick or switch

2008-07-24 Thread Randall Reetz
Or, if the joystick is controlling the mouse, then you just use standard mouse events. No need for an intermediate event generator like usboverdrive. -Original Message- From: "David Glasgow" <[EMAIL PROTECTED]> To: use-revolution@lists.runrev.com Sent: 7/24/2008 12:29 PM Subject: Rev an

RE: Rev and joystick or switch

2008-07-24 Thread Randall Reetz
With usboverdrive (google it, download it, install it) you can send keystrokes (arrow keys, etc) events from a joystick or game controller. But maybe there is a rev native solution??? -Original Message- From: "David Glasgow" <[EMAIL PROTECTED]> To: use-revolution@lists.runrev.com Sent:

Rev and joystick or switch

2008-07-24 Thread David Glasgow
I want to use a switch (lever style accessibility gadget) or a very simple joystick to enable users to respond to images by pushing away or pulling towards themselves. It needs to work on both Mac & PC. Fewer buttons the better, and no flash rumbling or stuff like that. Any suggestions fo

Re: So many ways in XTalks

2008-07-24 Thread Eric Chatonet
Writing tutorials, I'm probably depraved :-) Or for other reasons... What I wanted to point out but it's possible I missed it ;-) is that a return in a function (or a command but that's more difficult to understand) stops the running handler and returns immediately a result disregarding ne

Re: So many ways in XTalks

2008-07-24 Thread J. Landman Gay
Eric Chatonet wrote: Dear Jacque, You are right (as Ken was in a recent post). But my goal is always readability and elegance: e.g. no break, no 'and' and no 'or': something understandable at first sight without racking one's brains... I always prefer it to concision even if I'm able to write p

Re: So many ways in XTalks

2008-07-24 Thread Eric Chatonet
Dear Jacque, You are right (as Ken was in a recent post). But my goal is always readability and elegance: e.g. no break, no 'and' and no 'or': something understandable at first sight without racking one's brains... I always prefer it to concision even if I'm able to write put CleanText(StripC

Re: So many ways in XTalks

2008-07-24 Thread J. Landman Gay
Eric Chatonet wrote: Bonjour à tous, Le 24 juil. 08 à 07:49, Terry Judd a écrit : In your card or stack script ON mouseDown pMouseBtnNum IF pMouseBtnNum = 3 THEN IF word 1 of the target = "field" THEN IF not(the locktext of the target) THEN popup btn "c

Preferred Method For Custom Windows

2008-07-24 Thread Mikey
What does everyone prefer as a method of displaying custom windows - having an extra substack with all of them on separate cards, separate substacks for each dialog, something else? -- Mitch Hedberg - "My fake plants died because I did not pretend to water them."

Re: So many ways in XTalks (was: Re: Contextual Menus)

2008-07-24 Thread william humphrey
I like that especially when I can understand it. Very often I copy someone's excellent code and just use it like a monkey... ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your su

Re: So many ways in XTalks (was: Re: Contextual Menus)

2008-07-24 Thread Ken Ray
> Rev allows many ways to script: Agreed! > Here is the same as the above using a function. > What is interesting is that a function returns a value immediately > when a condition matches and avoids using nested conditional > structures or long statements with and/or. > > on mouseDown pButton >

Re: revBrowser in standalone

2008-07-24 Thread Mark Schonewille
Tom, the externalpackages of stack "revExternalLibrary" should contain "revBrowser" and the externals of stack "revExternalLibrary" should contains something like /Users/Tom/Desktop/Test/MacOSX/Test.app/Contents/MacOS/Externals/ revbrowser.bundle What is an image holder?! You don't need

Re: [ANN][EN][FR] Tutorial #26 by So Smart Software: How to reorganize a list field manually us

2008-07-24 Thread runrev260805
Eric! Thank you so much for all your tutorials. This one is exact, what i needed to understand how to do it Regards, Matthias Original Message Subject: [ANN][EN][FR] Tutorial #26 by So Smart Software: How to reorganize a list field manually using (24-Jul-2008 15:18) Fro

Re: revBrowser in standalone

2008-07-24 Thread Thomas McGrath III
Mark, Thank you for jumping on this with me. I was starting to pull on my beard and it's ugly enough without having patches in it. OK, put the externalPackages of stack "Media" from within the IDE results in nothing for this stack. I thought since this is now built into RR that I don't nee

Re: HyperCard Button Icons

2008-07-24 Thread dbrooks
Thanks Jacque, Mark, and Phil. This tells me where to look. Best, Dave B. David Brooks wrote: The converted stack (HC --> RR) DOES have the icons. When those buttons are copied to a stack created in RR, they appear. Once that original stack is removed from memory, the icons are no l

Re: revBrowser in standalone

2008-07-24 Thread Andres Martinez
Hello Tom The image holder is just used to set the rectangle coordinates for the browser area. In our projects we have had problems in Windows when using a PNG shaped window. We still use RR 2.8.1 Regards, Andres Martinez www.baKno.com On Jul 24, 2008, at 9:09 AM, Thomas McGrath III wro

[ANN][EN][FR] Tutorial #26 by So Smart Software: How to reorganize a list field manually using Rev 2.9 drag and drop feature

2008-07-24 Thread Eric Chatonet
Tuesday, July 24, 2008 -- English version - I'm happy to announce that "How to reorganize a list field manually using Rev 2.9 drag and drop feature", 26th tutorial for Revolution is available: This stack shows how to reorganize a list field manuall

Re: revBrowser in standalone

2008-07-24 Thread Mark Schonewille
Hi Tom, It works fine for me, most of the time. Have you checked the externalPackages function, does the externals property refer to the location where the revBrowser external can be found, and do you know which execution errors you're getting? Also, which version of Revolution are you us

Re: revBrowser in standalone

2008-07-24 Thread Thomas McGrath III
Has anyone had an issue with using revBrowser in a standalone? I am at the end of a project and need to just have this work. The Windows build will not work. The OSX build will not work. But the .rev file with revBrowser will work in the IDE on both platforms. Thanks, Tom McGrath On Jul

Re: revBrowser in standalone

2008-07-24 Thread Thomas McGrath III
Trevor, Thanks, Found it and removed the line. There was another line in that file that said "altBrowser, altFont.bundle" which I changed to "altFont, altFont.bundle" Still trying to figure out why the revBrowser won't work on building a standalone. Thanks Tom McGrath On Jul 23, 2008

Re: Removing an OSX dock icon

2008-07-24 Thread Luis
Close... Pain In The Axx Cheers, Luis. On 24 Jul 2008, at 11:45, Terry Judd wrote: On 24/7/08 8:39 PM, "David Bovill" <[EMAIL PROTECTED]> wrote: 2008/7/22 Ken Ray <[EMAIL PROTECTED]>: And then reload the dock with "killall Dock"). It's a real PITA, but it works pretty well. PITA?

Re: Removing an OSX dock icon

2008-07-24 Thread Terry Judd
On 24/7/08 8:39 PM, "David Bovill" <[EMAIL PROTECTED]> wrote: > 2008/7/22 Ken Ray <[EMAIL PROTECTED]>: > >> >> And then reload the dock with "killall Dock"). It's a real PITA, but it >> works pretty well. > > > PITA? - when I google for that I get: Immoral Traffic in Persons > Act

Re: Removing an OSX dock icon

2008-07-24 Thread David Bovill
2008/7/22 Ken Ray <[EMAIL PROTECTED]>: > > And then reload the dock with "killall Dock"). It's a real PITA, but it > works pretty well. PITA? - when I google for that I get: Immoral Traffic in Persons Act, legislation passed in India

So many ways in XTalks (was: Re: Contextual Menus)

2008-07-24 Thread Eric Chatonet
Bonjour à tous, Le 24 juil. 08 à 07:49, Terry Judd a écrit : In your card or stack script ON mouseDown pMouseBtnNum IF pMouseBtnNum = 3 THEN IF word 1 of the target = "field" THEN IF not(the locktext of the target) THEN popup btn "contextualMenu"

Re: time-limiting a trial-version

2008-07-24 Thread Eric Chatonet
Bonjour Nicolas, There would be a lot to say about protection schemes... A way to achieve your goal would be to use SSL encryption: Cipher and decipher routines would be placed in your standalone and values in a custom property of your stack. Note that you need Rev Enterprise to access SSL fun

time-limiting a trial-version

2008-07-24 Thread Nicolas Cueto
Hello, I have a software package that consists of two parts. A standalone, which contains the Rev engine and secure information. And a stack which the standalone calls up on start-up, which holds the brunt of the objects and scripts, and which is saved on occassion. Both standalone and stack are p

AW: problems with set loc of a stack

2008-07-24 Thread Tiemo Hollmann TB
Oh boy, these basics ;) Thanks Mark! > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] [mailto:use-revolution- > [EMAIL PROTECTED] Im Auftrag von Mark Schonewille > Gesendet: Donnerstag, 24. Juli 2008 09:36 > An: How to use Revolution > Betreff: Re: problems with set loc of a stack > >

Re: HyperCard Button Icons

2008-07-24 Thread Mark Schonewille
Hi Jacque, You appear to be right. The HCAddressing doesn't affect the ID's, only whether "card" or "background" is included in object references. So, the problem really must be that the images are only in the original stack and copying them should be sufficient. -- Best regards, Mark Sc

Re: problems with set loc of a stack

2008-07-24 Thread Mark Schonewille
Hi Tiemo, As soon as you use the open command, the defaultStack changes. Try this: put the short name of the defaultStack into myStack go invisible stack "foo" -- or open set the loc of stack "foo" to the loc of stack myStack show stack "foo" -- Best regards, Mark Schonewille Economy-x-Talk C