Revolution 3.0 New script editor

2008-09-04 Thread René Micout
Hello, I have discovered Revolution 3.0 last night (in France... last day for most of you). I have found the new script editor very few ergonomic (too much things on ONE screen at the same time, bad icons : simple buttons are better sometimes...). I work on an Apple PowerBook 12 + Cinema

Re: Revolution 3.0 New script editor

2008-09-04 Thread Mark Schonewille
Hi René, I fully agree with you. What would you say about designing your own script editor? I'm curious about what your ideal script editor would look like. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering http://economy-x-talk.com

Re: Revolution 3.0 New script editor

2008-09-04 Thread Kevin Miller
On 4/9/08 09:11, René Micout [EMAIL PROTECTED] wrote: I have discovered Revolution 3.0 last night (in France... last day for most of you). I have found the new script editor very few ergonomic (too much things on ONE screen at the same time, bad icons : simple buttons are better

Re: Revolution 3.0 New script editor

2008-09-04 Thread René Micout
I need to have a code window (with the biggest height : the greatest number of lines) and a debbug window (with the biggest height : the greatest number of lines) at the same time and not one window after another... I think each of us need this (?) And the solution is two windows one beside

Re: Revolution 3.0 New script editor

2008-09-04 Thread Sarah Reichelt
On Thu, Sep 4, 2008 at 6:50 PM, René Micout [EMAIL PROTECTED] wrote: I need to have a code window (with the biggest height : the greatest number of lines) and a debbug window (with the biggest height : the greatest number of lines) at the same time and not one window after another... I think

Re: Revolution 3.0 New script editor

2008-09-04 Thread Éric Miclo
Hello René, Did you take a look at GLX2 Script Editor from Jerry Daniels (http://glx2help.ning.com/ ). It is really a very good piece of software. It is not free but once you've given a try you can't go back to Rev's Script Editor. Best, ÉrIC Le 4 sept. 08 à 10:50, René Micout a écrit :

Re: Revolution 3.0 New script editor

2008-09-04 Thread René Micout
Sarah and Éric, The same answer at the same time !!! (4 mn better for Sarah). I had to be interest GLX2 a few months ago, but being a little tatasse (only Éric can understand) I had stopped by the black screens witch do not much liked me... But I just go back and I saw clear screens. I'll

Re: Revolution 3.0 New script editor

2008-09-04 Thread Mikey
I know that RR isn't like many other IDE's and many of you like it that way, but if you think RR is cluttered, you should check out the alternatives. RR's script editor is EXTREMELY clean and generous by comparison. ___ use-revolution mailing list

Re: Text of an image

2008-09-04 Thread Trevor DeVore
On Sep 4, 2008, at 1:11 AM, J. Landman Gay wrote: What's the difference between the text of an image and its imageData? Does text include the alphadata? If you 'put' the contents of an image file into an image control or set the imageData of an image control then the 'text' property

Re: Detecting a grabEnter?

2008-09-04 Thread dfepstein
My question about grabEnter has led to an interesting broader discussion of the relative merits of grab vs mouseMove.. I would be happy to write a more complicated mouseMove-controlled script, but as far as I can tell that won't solve the problem I posed. If the user is dragging an object,

Dynamic Table Field - updated

2008-09-04 Thread -= JB =-
I updated the stack Dynamic Table Field located in the Programming section of Rev OnLine. 1. AutoResize columns after entering text in a cell. 2. You can now command click a cell or option click for different ways to access empty cells. regards, -=JB=-

Re: Text of an image

2008-09-04 Thread Rob Cozens
Hi Jacque, What's the difference between the text of an image and its imageData? The imageData is the image as it is currently displayed; the image text is the actual image as imported or referenced. The imageData changes when the image is resized; the image text does not. This means one

Re: Detecting a grabEnter?

2008-09-04 Thread François Chaplais
a beginner's suggestion every time the mouseloc is available, check for for each object you find relevant: if within(objectName,mouseloc()) then do your stuff etc or equivalently with a switch structure (see within keyword in the dictionnary; in particular within handles the

Re: Text of an image

2008-09-04 Thread Eric Chatonet
Bonjour Jacque, Just an add-up: Let's say you are creating thumbnails using large referenced images (this means that your image object is locked with a lesser size). set the text of img 1 to url(binfile: file path) will display the image : OK. And you'll be able to display it its

Re: Detecting a grabEnter?

2008-09-04 Thread Eric Chatonet
Bonjour David, Actually, 2.9 drag and drop feature is able to solve your problem if you accept dragged object's automatic blend level. Le 4 sept. 08 à 15:49, [EMAIL PROTECTED] a écrit : My question about grabEnter has led to an interesting broader discussion of the relative merits of grab

Still the refresh problem in Rev. 3?

2008-09-04 Thread James Hurley
Could someone tell me if the screen refresh problem (OS X only) has been addressed in Rev. 3.0? Is it still necessary to force a screen refresh after certain repetitive screen changes (such as: setLoc... or put char i of tText after field...) using unlock screen or wait 0 millisec ? To

Re: Still the refresh problem in Rev. 3?

2008-09-04 Thread Eric Chatonet
Bonour Jim, No such card Le 4 sept. 08 à 16:50, James Hurley a écrit : Could someone tell me if the screen refresh problem (OS X only) has been addressed in Rev. 3.0? Is it still necessary to force a screen refresh after certain repetitive screen changes (such as: setLoc... or put

Re: Still the refresh problem in Rev. 3?

2008-09-04 Thread Malte Brill
Hi Jim, I am afraid the forced refresh still is necessary. All the best, Malte ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: Revolution 3.0 New script editor

2008-09-04 Thread Richard Gaskin
Mark Schonewille wrote: What would you say about designing your own script editor? I'm curious about what your ideal script editor would look like. Here's the one Ken and I and some of our clients use: http://fourthworldlabs.com/ROSE.jpg The Rev Open Source Editor (ROSE) currently works

Re: Text of an image

2008-09-04 Thread Richard Gaskin
Eric Chatonet wrote: Let's say you are creating thumbnails using large referenced images (this means that your image object is locked with a lesser size). set the text of img 1 to url(binfile: file path) will display the image : OK. And you'll be able to display it its original size in

Re: Installer Software

2008-09-04 Thread Ted
Thank you, everyone, for your suggestions. I greatly appreciate it. Ted ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: Text of an image

2008-09-04 Thread J. Landman Gay
Scott Rossi wrote: Yes -- the text refers to both properties. Wish I had known this years ago. Trevor DeVore wrote: In answer to your question about 'text' and 'alphadata', no, the 'text' of an image does not contain the 'alphadata' image control property. It can contain the alpha data

Re: Text of an image

2008-09-04 Thread Jim Ault
On 9/4/08 9:04 AM, Richard Gaskin [EMAIL PROTECTED] wrote: set the imageData of img 1 to the imageData of img 1 This will fit the text of the image to its current locked size. Many bytes saved :-) I've been experimenting with a similar technique here to make thumbnails I can store in a

Re: Text of an image

2008-09-04 Thread Jim Ault
On 9/4/08 9:04 AM, Richard Gaskin [EMAIL PROTECTED] wrote: set the imageData of img 1 to the imageData of img 1 This will fit the text of the image to its current locked size. Many bytes saved :-) I've been experimenting with a similar technique here to make thumbnails I can store in a

Re: Detecting a grabEnter?

2008-09-04 Thread dfepstein
Bonjour Eric, Your suggestion is intriguing but I haven't understood it. What is an automatic blend level? If by script I set the dragged object's blendLevel to 50, I still do not detect a mouseEnter when it's dragged over another object. Many thanks. David Epstein Bonjour David,

semi-OT: can Rev pre-populate data on a web form?

2008-09-04 Thread Chris Sheffield
We want our customers to go through a registration process. So the standalone would open a url to a form on our web site. The only reason we're going to a web form instead of using a form in the application is because we want an email message sent to us upon submitting the information.

Re: Text of an image

2008-09-04 Thread Eric Chatonet
Bonsoir Richard, I'm always worried when somebody, even you :-), says: sometimes it works and sometimes it does not ;-) Does not sound good... I have not experienced what you say: As soon as imageData are related to current display (i.e. related to the size of the image object you put in),

Re: Detecting a grabEnter?

2008-09-04 Thread Eric Chatonet
Bonsoir David, When you use Rev 2.9 feature, Rev sets the blendlevel of the dragImage you specified to a value that makes it enough transparent to see what you hover when dragging. This blend level can't be specified and is set by the engine. If you accept it, it might solve your problem

Re: Text of an image

2008-09-04 Thread Scott Rossi
Recently, J. Landman Gay wrote: In answer to your question about 'text' and 'alphadata', no, the 'text' of an image does not contain the 'alphadata' image control property. It can contain the alpha data as represented in the PNG format however. Sounds like we need more clarification. ;)

Re: semi-OT: can Rev pre-populate data on a web form?

2008-09-04 Thread Trevor DeVore
On Sep 4, 2008, at 1:58 PM, Chris Sheffield wrote: So my main question is, can Rev send data to a web form like this in such a way that whatever fields we specify will be populated when the browser/form opens? Not sure if something like this is even possible. I haven't done enough web

Re: Detecting a grabEnter?

2008-09-04 Thread Scott Rossi
Recently, [EMAIL PROTECTED] wrote: My question about grabEnter has led to an interesting broader discussion of the relative merits of grab vs mouseMove.. I would be happy to write a more complicated mouseMove-controlled script, but as far as I can tell that won't solve the problem I posed. If

Re: Text of an image

2008-09-04 Thread Trevor DeVore
On Sep 4, 2008, at 2:26 PM, Scott Rossi wrote: Perhaps one needs to get into the nitty gritty of *when* an object is treated a PNG by Rev, but regardless: 1) if you import a GIF, you can assign both its image/alpha data to another image by referencing its text 2) if you create a native

Re: semi-OT: can Rev pre-populate data on a web form?

2008-09-04 Thread Sarah Reichelt
On Fri, Sep 5, 2008 at 3:58 AM, Chris Sheffield [EMAIL PROTECTED] wrote: We want our customers to go through a registration process. So the standalone would open a url to a form on our web site. The only reason we're going to a web form instead of using a form in the application is because we

Play iTunes protected videos

2008-09-04 Thread Mark Talluto
Anyone find a way to play iTunes DRM content via the Rev QT player? Mark Talluto http://www.canelasoftware.com ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: Revolution 3.0 New script editor

2008-09-04 Thread David Bovill
2008/9/4 Richard Gaskin [EMAIL PROTECTED] Mark Schonewille wrote: What would you say about designing your own script editor? I'm curious about what your ideal script editor would look like. Here's the one Ken and I and some of our clients use: http://fourthworldlabs.com/ROSE.jpg The

Re: Revolution 3.0 New script editor

2008-09-04 Thread Andre Garzia
I second that GLX2 is addictive... the fact that you can click any function or handler you defined anywhere and jump to the source code for the given handler is a blessing for people that, like me, work with seven or more libraries loaded at the same time, I never ever think like: where did I put

Re: Play iTunes protected videos

2008-09-04 Thread Colin Holgate
At 11:54 AM -0700 9/4/08, Mark Talluto wrote: Anyone find a way to play iTunes DRM content via the Rev QT player? I don't have any protected videos here, but I have protected audio, and I could make those work by saving them as an MOV, and connecting them as usual, or even connecting

Re: Play iTunes protected videos

2008-09-04 Thread Scott Rossi
Recently, Mark Talluto wrote: Anyone find a way to play iTunes DRM content via the Rev QT player? Trevor Devore explained a while back that Apple has significantly restricted video playback to iTunes and QuickTime only. I don't believe anyone has found a workaround for this limitation.

put visible watermark onto a jpg with rev ?

2008-09-04 Thread runrev260805
Hi, does anyone know, if its possible to put an visible watermark (existing jpg or gif or png fild) onto an existing jpg file with rev? I know there are several external tools available, but for some reasons realizing this with rev (+ library/external) is much prefered. Regards, Matthias

Re: put visible watermark onto a jpg with rev ?

2008-09-04 Thread Chipp Walters
Sure, Just overlay your PNG (w/Alpha) watermark, then export snapshot as a JPEG. ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

error using the Revolution Search Engine - eveon in V3

2008-09-04 Thread runrev260805
Hi, in Rev 2.x and even in 3.0 i get errors, when the RevSearchEngine tries to update the database I get allways errors for the same 4 urls, even with V3. I think the resources are not online anymore. Is there a way to avoid RevSearchEngine trying to update form that URLs in future? Or is

Re: Revolution 3.0 New script editor

2008-09-04 Thread René Micout
Good Night I bought GLX2 this afternoon and I discovered now... A small problem : clic on the right scollbar don't work... Is it a bug ? Another : Rev-Guides Picker 2.1 no longer works (the horizontal guide)... Meilleurs souvenirs de Paris René I bought GLX2 this afternoon and I discovered Le

[Heads Up:] OLED Buttons

2008-09-04 Thread Stephen Barncard
Here's a line of new HUI devices for human input... those involved in KIOSKS and super-custom and multi-lingual applications might want to know about these... Awesome... each button on the keyboard has a little CPU and a 48x48 color screen. http://www.artlebedev.com/everything/optimus/

Re: Revolution 3.0 New script editor

2008-09-04 Thread Sarah Reichelt
On Fri, Sep 5, 2008 at 8:00 AM, René Micout [EMAIL PROTECTED] wrote: Good Night I bought GLX2 this afternoon and I discovered now... A small problem : clic on the right scollbar don't work... Is it a bug ? Another : Rev-Guides Picker 2.1 no longer works (the horizontal guide)... Meilleurs

stsMLXEditor, Notepad, Vista, Rev 3

2008-09-04 Thread Bernard Devlin
I'm going to get an Acer One notebook running Linux, and since there is obviously limited screen estate I hope to use an external editor placed on one workspace with the IDE on another. From what I've read on the list, if different parts of the IDE are placed on different workspaces, they will all

rev online

2008-09-04 Thread Peter Brigham
Well, after all this time using Rev I'm finally trying to put some of my stacks into my user space in Rev Online, and I can't for the life of me figure out how to do it. I *think* the procedure is: open the stack, select share this stack from the file menu, select the category, enter the

Re: Installer Software?

2008-09-04 Thread Monte Goulding
I use InstallGadget and I like it! :-D I second InstallGadget (the devp't of which I think includes a Revolution background?). It certainly does. Infact it is a rev interface for Inno Setup (on windows at least). I'd recommend using Inno if you need to do more sophisticated stuff.