Re: Standalone Text Field problem for WindowsXP

2007-12-09 Thread Ken Ray
On Fri, 7 Dec 2007 23:40:24 -0800, Joe Lewis Wilkins wrote: As it turns out, much of the missing text is actually there. It just can't be seen. I thought it might be that the color for the text was being set to white, but that isn't the problem. The Menu hot keys work, but the menus

Re: Packages

2007-12-09 Thread Chipp Walters
Mark, Your solution seems like a winner, except for the newly created and empty folder situation. Jacque, Here's one example: I've got a product that resizes graphics, but I don't want them to 'go into' a package and find and resize the graphics there. How to know if you're in a 'package' or

Re: Packages

2007-12-09 Thread Mark Smith
It's definitely a pain for Rev programmers until a general and reliable isPackage() function or somesuch is available. I don't think any of the things discussed so far will give a definitive answer as to the packageness of a folder. Checking .suffixes will work, but the list of suffixes

Re: Packages

2007-12-09 Thread Klaus Major
Hi Mark, It's definitely a pain for Rev programmers until a general and reliable isPackage() function or somesuch is available. I don't think any of the things discussed so far will give a definitive answer as to the packageness of a folder. Checking .suffixes will work, but the list of

Re: Packages

2007-12-09 Thread Mark Smith
It's been a bit of a journey, hasn't it :) Anyway, I've added the suggestion for an 'isPackage()' function to 5549. Best, Mark On 9 Dec 2007, at 15:40, Klaus Major wrote: Hi Mark, It's definitely a pain for Rev programmers until a general and reliable isPackage() function or somesuch is

Re: Standalone Text Field problem for WindowsXP

2007-12-09 Thread Joe Lewis Wilkins
Hi Ken, I believe I mentioned in a subsequent posting that what you suggest WAS the case; however, fixing that still did not fully resolve the problem. My biggest question regarding that subject is: How in the devil did the menubar get way up there in the first place? I sure didn't put

Accents etc

2007-12-09 Thread Ton Cardona
Thanks, Devin, it is certainly a bug but will it ever be fixed? Ton Cardona ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: Packages

2007-12-09 Thread Mark Smith
Finally, here is my attempt at a workaround: function isPackage pFolder -- first check for presence of PkgInfo if char -1 of pFolder is / then delete char -1 of pFolder if there is a file (pFolder /Contents/PkgInfo) then return true -- if still here, then check suffix put

Re: Packages

2007-12-09 Thread J. Landman Gay
Mark Smith wrote: Checking .suffixes will work, but the list of suffixes probably can't be exhaustive, the absence of a .DS_Store is not reliable (a package that has been a regular folder may well have one, a regular folder may not have one), and the presence of /Contents/PkgInfo or

Standalone error message problem

2007-12-09 Thread Paul Gabel
Hello everyone: Even though I built standalones using Rev 2.8.1 before, all of a sudden I'm getting the error message You don't have one of the selected engines. Then the standalone building process stops. I can't find any reference to this in the docs. This does not happen when I build

Rev 2.9 button problem

2007-12-09 Thread Paul Gabel
Hello everyone: When I build a standalone using Rev 2.9 beta 9, my rectangle buttons will neither play a sound nor move according to the scripts below, even though they work perfectly in the IDE. on mouseDown -- in the button script moveButtons end mouseDown - on

Rev 2.9 beta 9 script editor problem

2007-12-09 Thread Paul Gabel
Hello everyone: Can anyone using the latest Rev 2.9 beta verify this? In the script editor I am no longer able to select a word or phrase and option-drag it to a new location, as I could in Rev 2.8.1. Paul Gabel iMac Intel Leopard ___

Re: Rev 2.9 beta 9 script editor problem

2007-12-09 Thread Devin Asay
Hi Paul, RunRev knows about this problem. See Bug # 5542. The problem is the drag-copy operation was inadvertently mapped to the Command (apple) key on OS X instead of the option key. Devin On Dec 9, 2007, at 1:04 PM, Paul Gabel wrote: Hello everyone: Can anyone using the latest Rev

Re: start player with rtsp://...

2007-12-09 Thread Mark Talluto
On Dec 7, 2007, at 3:58 AM, Richard Miller wrote: Mark, As I recall, I had the same problem and discovered I needed to create a new, identical player (by script), and delete the old player, every time I needed the player to play an rtsp url. Then the start player command would work fine.