Re: [feature] did you guys knew that "?" is a valid character for function/command name?

2010-09-07 Thread Alejandro Tejada
Hi Stephen, Stephen Barncard-4 wrote: > > If one is interested in speed, it can be quite useful. > > Also you could write scripts with no functions! Just commands. Return the > data in the same variable without copying to another (which happens in > functions). > > It's a different coding st

Re: [feature] did you guys knew that "?" is a valid character for function/command name?

2010-09-07 Thread Mark Wieder
Ben- Tuesday, September 7, 2010, 2:38:24 PM, you wrote: > I've now, better late than never, opened a report at RQCC: > http://quality.runrev.com/qacenter/show_bug.cgi?id=8945 Thanks. I added my votes. -- -Mark Wieder mwie...@ahsoftware.net

Re: [ANN] revObjective 1.0 released!

2010-09-07 Thread Mark Wieder
Monte- Tuesday, September 7, 2010, 2:36:57 PM, you wrote: > Thanks Mark > But I don't think that's causing an issue. Have you tried version > 1.1? The stack needs to close on the first run or it won't get the > preOpenStack message when it is chosen from the menu. Unfortunately Yep - that's wi

Re: [ANN] revObjective 1.0 released!

2010-09-07 Thread Monte Goulding
> I guess I could separate out the startup code into a separate invisible > plugin and just leave revObjective modeless. OK, Done, I'll release V1.2 tonight. The startup plugin is not as independent as I would have liked because it simplified things to move the revObjective FrontScript into it

Re: Datagrid Drag and Drop

2010-09-07 Thread zryip theSlug
On Tue, Sep 7, 2010 at 10:26 PM, zryip theSlug wrote: > On Tue, Sep 7, 2010 at 9:42 PM, Peter Haworth wrote: >> Months ago, I got some guidance form Trevor on how to drag and drop into and >> out of a datagrid.  I ended up not needing to do it at the time but now I do >> and I can't find the note

Re: [feature] did you guys knew that "?" is a valid character for function/command name?

2010-09-07 Thread Ben Rubinstein
On 07/09/2010 09:51, Ben Rubinstein wrote: This is very bad news for my long-held campaign to introduce '@' as an optional (but one day might be checked) prefix to a parameter, to indicate in the calling line that this is passed by reference. He was subsequently forced to retract partially, see

Re: [ANN] revObjective 1.0 released!

2010-09-07 Thread Monte Goulding
Thanks Mark But I don't think that's causing an issue. Have you tried version 1.1? The stack needs to close on the first run or it won't get the preOpenStack message when it is chosen from the menu. Unfortunately there's no option for plugins to do some startup stuff but not load the stack. I

Re: Datagrid Drag and Drop

2010-09-07 Thread zryip theSlug
On Tue, Sep 7, 2010 at 9:42 PM, Peter Haworth wrote: > Months ago, I got some guidance form Trevor on how to drag and drop into and > out of a datagrid.  I ended up not needing to do it at the time but now I do > and I can't find the notes I made on it.  I've searched the online datagrid > documen

Re: Mac OS X Textured Button custom control

2010-09-07 Thread Bob Sneidar
I had an issue with the button for some reason. When I clicked it quickly, the button stayed hilited until I clicked again (sometimes). If I clicked slowly, the button behaved properly (almost all the time). Bob On Sep 5, 2010, at 10:03 AM, theworcestersource.com wrote: > > Hello everybody,

Datagrid Drag and Drop

2010-09-07 Thread Peter Haworth
Months ago, I got some guidance form Trevor on how to drag and drop into and out of a datagrid. I ended up not needing to do it at the time but now I do and I can't find the notes I made on it. I've searched the online datagrid documentation and can't find anything on this subject. Can a

Re: Selected Text

2010-09-07 Thread Warren Kuhl
Jonathan, No I have not. In fact...I never even heard of this until now. Thanks for the suggestion I will look into this as well. Appreciate it! Warren On Tue, Sep 7, 2010 at 1:57 PM, Jonathan Lynch wrote: > Have you explored the selectionchanged message? > > For one of my applications, I use

Re: Selected Text

2010-09-07 Thread Jonathan Lynch
Have you explored the selectionchanged message? For one of my applications, I use this for detecting clicks inside unlocked fields. On Tue, Sep 7, 2010 at 2:52 PM, Warren Kuhl wrote: > Mark, > > Thanks for the explanation. It really gaves me a good understand with how > the process works. I

Re: Selected Text

2010-09-07 Thread Warren Kuhl
Mark, Thanks for the explanation. It really gaves me a good understand with how the process works. I will see if I can lock/unlock the field as necessary as the user needs to ability to change the text. Appreciate your help! Warren On Tue, Sep 7, 2010 at 1:38 PM, Mark Schonewille < m.schonewi

Re: Selected Text

2010-09-07 Thread Mark Schonewille
Hi Warren, It looks like the problem is not the selectedText but the mouseUp message. Unlocked fields don't receive a mouseUp message when the user clicks in such a field, but control-click and command-click do trigger a mouseUp message. So, either you have to provide a way to lock and unlock t

Selected Text

2010-09-07 Thread Warren Kuhl
1) I am trying to return the selected text in a field. It looks like this can only be done on locked text. Is there anyway around this? In the field I am trying: on mouseup answer selectedtext() end mouseup The above is only true when the field is locked. 2) Also...how do I prevent text to

Re: [ANN] revObjective 1.0 released!

2010-09-07 Thread Mark Wieder
Monte- Monday, September 6, 2010, 6:32:39 PM, you wrote: > Ok, can you give me some more info? It's the "close stack" command at the end of your preOpenStack handler in the stack script. I can get rid of the error if I change the last few lines of that handler to reset the templatebutton

Re: Drag cursor

2010-09-07 Thread stephen barncard
I think this should just work. I don't think you need to do any cursor stuffl, at least on the Mac. I've seen the green PLUS and I didn't do any cursor code at all. Try without doing any cursor calls. On 7 September 2010 11:02, FlexibleLearning wrote: > Does anyone know how to specify the drag cu

Re: Drag cursor

2010-09-07 Thread Thierry
Le 7 sept. 2010 à 20:02, FlexibleLearning a écrit : > Does anyone know how to specify the drag cursor type? I am dragging images > around and want to display a 'copy' cursor (with a little plus sign) when > the ctrl key is down, a 'move' cursor (no little plus sign) when the ctrl > key is up, and

Drag cursor

2010-09-07 Thread FlexibleLearning
Does anyone know how to specify the drag cursor type? I am dragging images around and want to display a 'copy' cursor (with a little plus sign) when the ctrl key is down, a 'move' cursor (no little plus sign) when the ctrl key is up, and a 'cantDrop' cursor when appropriate. The engine seems to ove

Re: [feature] did you guys knew that "?" is a valid character for function/command name?

2010-09-07 Thread stephen barncard
If one is interested in speed, it can be quite useful. Also you could write scripts with no functions! Just commands. Return the data in the same variable without copying to another (which happens in functions). It's a different coding style for sure. On 7 September 2010 09:56, Alejandro Tejada

Re: [feature] did you guys knew that "?" is a valid character for function/command name?

2010-09-07 Thread Alejandro Tejada
Hi Alex, Alex Tweedly wrote: > > Not quite. We specify pass-by-ref by using '@' in the handler > specification; you can't use it in the calling script as Ben did in his > example in the email. Ben wants to be able to use the '@' > (presumably as an option, with no actual effect) in the callin

Re: [feature] did you guys knew that "?" is a valid character for function/command name?

2010-09-07 Thread Mark Wieder
Ben- Tuesday, September 7, 2010, 1:51:35 AM, you wrote: > This is very bad news for my long-held campaign to introduce '@' as an > optional (but one day might be checked) prefix to a parameter, to indicate in > the calling line that this is passed by reference. I went to go vote for this bug rep

Re: [OT] router + manual DHCP setting

2010-09-07 Thread Jim Ault
Thanks for all the replies and good tips I will do some testing later today and report back. On Sep 7, 2010, at 5:48 AM, Mike Bonner wrote: 99% sure you're not set up this way, but if your belkin is setup to a smaller subset subnet (IE a netmask other than 255.255.255.0) you coudl be setting

Re: [feature] did you guys knew that "?" is a valid character for function/command name?

2010-09-07 Thread Alex Tweedly
Not quite. We specify pass-by-ref by using '@' in the handler specification; you can't use it in the calling script as Ben did in his example in the email. Ben wants to be able to use the '@' (presumably as an option, with no actual effect) in the calling script, to help remind him that the va

Re: [feature] did you guys knew that "?" is a valid character for function/command name?

2010-09-07 Thread Andre Garzia
Err, Ben, this is actually in place since forever... we can pass by references values with @ On Tue, Sep 7, 2010 at 5:51 AM, Ben Rubinstein wrote: > This is very bad news for my long-held campaign to introduce '@' as an > optional (but one day might be checked) prefix to a parameter, to indi

Re: [OT] router + manual DHCP setting

2010-09-07 Thread Mike Bonner
99% sure you're not set up this way, but if your belkin is setup to a smaller subset subnet (IE a netmask other than 255.255.255.0) you coudl be setting your IP's outside the range of the valid subnet. As pointed out tho, this is pretty unlikely unless you did it yourself. On Tue, Sep 7, 2010 at

Re: [ANN] revObjective 1.0 released!

2010-09-07 Thread Monte Goulding
> Ok, I got it installed and now everything is enabled except for the Add > button. This still looks a little rough and I still don't know what to do > with it now that I have it. To enable the add button you've got to select a control on a stack that you might want to add to the revObjective

Re: [ANN] revObjective 1.0 released!

2010-09-07 Thread Len Morgan
Ok, I got it installed and now everything is enabled except for the Add button. This still looks a little rough and I still don't know what to do with it now that I have it. By the way, the description of the Integer field is the same as the Number field and yet the number field shows "10.1"

Re: [ANN] revObjective 1.0 released!

2010-09-07 Thread Monte Goulding
Hi Len On Windows you press print screen on the keyboard. Cheers Monte On 07/09/2010, at 8:53 PM, Len Morgan wrote: > Can you advise me on how to "take" a screen shot? I've never been successful > but then I've never really tried that hard either. > > len > > On 9/7/2010 5:48 AM, Monte Gou

Re: [ANN] revObjective 1.0 released!

2010-09-07 Thread Monte Goulding
Oh, did you install the revObjective folder (contains the 4 objects that come with the plugin) into the plugins folder with the plugin? That field filters the list of objects so don't type anything in there for the minute and if you have delete it. Also if you select a control in one of your sta

Re: [ANN] revObjective 1.0 released!

2010-09-07 Thread Len Morgan
Can you advise me on how to "take" a screen shot? I've never been successful but then I've never really tried that hard either. len On 9/7/2010 5:48 AM, Monte Goulding wrote: Hi Len Can you send me a screenshot to mo...@goulding.ws that certainly doesn't sound good ;-) Is there any kind

Re: [ANN] revObjective 1.0 released!

2010-09-07 Thread Monte Goulding
Hi Len Can you send me a screenshot to mo...@goulding.ws that certainly doesn't sound good ;-) > Is there any kind of documentation available? I'm on windows 7 and when I > open the plugin, I'm allowed to type in the upper right hand text box > (although I don't know what I'm supposed to type

Re: [ANN] revObjective 1.0 released!

2010-09-07 Thread Len Morgan
Is there any kind of documentation available? I'm on windows 7 and when I open the plugin, I'm allowed to type in the upper right hand text box (although I don't know what I'm supposed to type there) and everything else is disabled. I have no idea what to do now. len morgan

[ANN] InstallGadget 2.0 Public Testing

2010-09-07 Thread Monte Goulding
Hi Everyone If you are interested in being involved in testing InstallGadget 2.0 and it's Rev plugin please download from http://goulding.ws/installgadget/installgadget-2-0-public-testing/ and send comments off list to mo...@goulding.ws Cheers -- Monte Goulding M E R Goulding Software Developm

Re: Geographic Functions, any takers?

2010-09-07 Thread Ben Rubinstein
On 30/08/2010 17:19, Ewan Richardson wrote: > Has anyone written any libraries for Geographic functions within rev? > > > Im thinking of a library for dealing with latitude and longitude, for > example determining distance between points, bearings radian calculations > ect. Ewan, Sorry for the

Re: [feature] did you guys knew that "?" is a valid character for function/command name?

2010-09-07 Thread Ben Rubinstein
This is very bad news for my long-held campaign to introduce '@' as an optional (but one day might be checked) prefix to a parameter, to indicate in the calling line that this is passed by reference. ie if functionWithSideEffects(tInput, @tOutput) then ... should allow

Re: [OT] router + manual DHCP setting

2010-09-07 Thread Mark Schonewille
Hi Jim, Look at all the automatic DHCP settings. Note the router IP and DNS IP's and the subnet mask. After changing to manual DHCP, re-enter the same router and DNS IP's and the subnet mask. Now click Apply. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineerin

Re: [OT] PING

2010-09-07 Thread Dave Cragg
Thanks very much, Chipp. Greatly appreciated. Dave ___ 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/listinfo/use-re