Re: Linux - Check for Updates broken

2010-03-27 Thread Peter Alcibiades
Richard Gaskin wrote: I couldn't find an RQCC report for this so I just filed one: http://quality.runrev.com/qacenter/show_bug.cgi?id=8707 Its pretty obvious that the overall Linux situation, including this, has to be the result of policy, so there is probably no point filing Linux bug

Re: [ANN] Colorize and link while you type in tRev

2010-03-27 Thread Marcio Alexandroni
Hi Jerry, Great implementation Jerry, it really helps a lot coding with tRev! And thanks for accepting the suggestion, I really need to say you are fast, I wrote you asking if you had plans for this feature about 10 days ago and it's ready! Cheers! Marcio Alexandroni www.cialogica.com.br (

Re: scripting applescript menu-clicking questions

2010-03-27 Thread Bernard Devlin
Thanks Sarah. I have a bug in my applescript that is hard to work out. But it certainly seems in the later versions that one can get e.g. Safari to do things with no activate command and the action takes place in an open Safari, without brining it to the front. I'll have to keep on at this to

Re: Property profiles

2010-03-27 Thread Mark Schonewille
Hi Sarah, Just like you, I tried to use profiles, before they were broken for 2 years. They seem to be fixed now, but profiles are too confusing for me. Modifiying a property of an object causes the property profiles of that object to change to make sure that the object stays unchanged for

Versions and revWeb

2010-03-27 Thread David Bovill
I'm wandering how the versions work between the Rev IDE and the RunRev plugin - I am getting a warning that The application was built for a newer version of the plugin than you have installed. The plugin version in 1.0 and i used 4.5 dp2 for the build - in general how can I tell which plugin

Re: Linux - Check for Updates broken

2010-03-27 Thread Richmond Mathewson
On 27/03/2010 10:10, Peter Alcibiades wrote: Richard Gaskin wrote: I couldn't find an RQCC report for this so I just filed one: http://quality.runrev.com/qacenter/show_bug.cgi?id=8707 I can think of far more pressing concerns than 'only' the Update-thingy (unless, of course, the effort

Re: Script for tagging email addresses

2010-03-27 Thread Andre Garzia
You should enquote the href string or you will be unable to parse it with a XML library later, also your code will not be XHTML compliant. On Sat, Mar 27, 2010 at 2:57 AM, Jim Ault jimaultw...@yahoo.com wrote: First, I think you have a typo... E-mail: a

Re: Script for tagging email addresses

2010-03-27 Thread Jim Ault
Thanks for the XHTML compliant tip, Andre. Good to know. Jim Ault Las Vegas On Mar 27, 2010, at 5:43 AM, Andre Garzia wrote: You should enquote the href string or you will be unable to parse it with a XML library later, also your code will not be XHTML compliant. On Sat, Mar 27, 2010 at

Custom Control Design Tutorial

2010-03-27 Thread Len Morgan
Has anyone created a tutorial for creating and using a custom control? What I'd like to end up with is a custom control that I could copy onto a stack similar to Trevor's Data Grid. As an example, I've been tasked with redesigning the GUI for a pipeline control system that comprises various

Re: [ANN] Colorize and link while you type in tRev

2010-03-27 Thread Jerry Daniels
Marcio, Glad you like the feature! tRev's live text coloring was challenging because it has to include links to handlers. I found a way to make it work using a combination of arrays and htmltext. Best, Jerry Daniels Use tRev's buy link during your 7 day free trial to get 20% off:

Re: Custom Control Design Tutorial

2010-03-27 Thread Björnke von Gierke
I'm not sure what would make your object not be portable? the main things to look out for are: Changing the rectangle or location will of course change some movement dependant scripts. you need to look out for that if you do graphical stuff (like resizing a water level graphic for your tank).

Re: Custom Control Design Tutorial

2010-03-27 Thread Len Morgan
Maybe *I'm* the one that's misinterpreted the question! :-) I think what you're telling me is that I'm over engineering the problem and that all I'm really after is a self-contained group that has all of the functions I'd need to manipulate the tank which I would then copy (or clone?) as many

Fwd: Re: Linux - Check for Updates broken

2010-03-27 Thread Richmond Mathewson
Hey, here we go again; replying to my own posting . . . :) so there is probably no point filing Linux bug reports. However, prove me wrong. When this works, and when the fabled media player comes out, If one were really desperate for a media player I am sure that the good people who made

Re: Custom Control Design Tutorial

2010-03-27 Thread Scott Rossi
Recently, Len Morgan wrote: This actually brings up another question though: There are some cases of tanks in the current system that display the feet of water in the tank next to the tank, and some where the number is shown IN the tank. If we temporarily ignore how I'd let the user move

dragging a stack around

2010-03-27 Thread Mark Swindell
How would one drag an entire window/stack around (for example, if the title bar becomes obstructed)? If I hold my mouse down over an empty piece of real estate I'd like to be able to drag the whole window from there, just as if I were dragging from the title bar. Thanks

Re: dragging a stack around

2010-03-27 Thread Colin Holgate
There may be a neater way to do it, but this works (as a stack script): global startclickloc on mousedown put the loc of this stack into startloc put the clickloc into startclickloc send checkloc to this card in 5 end mousedown on checkloc if the mouse is up then exit checkloc

Re: dragging a stack around

2010-03-27 Thread Marty Knapp
Here's a script from Scott Rossi's WindowLab example stack: (put it in the stack scripts) local allowDrag on mouseDown put mouseH() , mouseV() into allowDrag end mouseDown on mouseMove x,y if allowDrag is empty then exit mouseMove set topLeft of this stack to globalLoc(x-item 1 of

Re: dragging a stack around

2010-03-27 Thread Scott Rossi
Recently, Marty Knapp wrote: Here's a script from Scott Rossi's WindowLab example stack: The above was an old script -- one other handler (mouseEnter) should be added, just in case the routine ever gets stuck. I place the following in the script of the first card (watch line wrap): local

Re: Custom Control Design Tutorial

2010-03-27 Thread Len Morgan
That's what I was afraid of, but then, I should only have to figure it out once. len On 3/27/2010 12:42 PM, Scott Rossi wrote: Recently, Len Morgan wrote: This actually brings up another question though: There are some cases of tanks in the current system that display the feet of water

Re: dragging a stack around

2010-03-27 Thread Colin Holgate
Both scripts do essentially the same thing, though I like my one more! One interesting thing, I did first try typing on mouseMove, but that doesn't get colorized, making me think it didn't exist as an event. But then again, mouseDown doesn't get colorized either.

Re: Script for tagging email addresses

2010-03-27 Thread Web Admin Himalayan Academy
Aloha, Jim: Brilliant, thank you. Yes, Andre is right, one wants definitely wants href values otherwise it can bite you later. repeat for each line LNN in emailAddrList put format (a href=\ LNN \ LNN /a) into LNNLinked replace LNN with LNNLinked in masterList works... IOn

Re: Fwd: Re: Linux - Check for Updates broken

2010-03-27 Thread Peter Alcibiades
The issue is, either deliver, or remove the placeholder saying its coming shortly. Don't leave it there for years when there's no sign of any intention to deliver it. Far more important than whether the thing is delivered or not. Its sending a message, but its sending it in a completely

how to run.bat file in rev

2010-03-27 Thread Shani
hay, all rev expert, Q1) how to run.bat file in runrev revolution. Q3) how to run this as run it from command prompt but i want to run it from Runrev.C:\jadejava jade.Boot buyer:BookBuyerAgent(The-Lord-of-the-rings)

RevServer to JAVA client

2010-03-27 Thread Shani
hay all, is this program is correct for Rev Server. is it communicate with java. what i change in rev or java Revserver coding # on revServer c ##Opening socket with Java Cleint on port 6800 open socket(java Client : (6800)) with