Frontscripts message path question

2006-05-30 Thread Todd Geist
Hello I have a question about the the message path and FrontScripts. Do Frontscripts sit at the front of the message path for all open stacks or just the one that did the inserting in the first place. Specifically, I have a littl front script that keeps an eye on another app and when it

Re: Frontscripts message path question

2006-05-30 Thread Jim Ault
Richard Gaskin has build a fine resource for this topic. Lots more goodies available, too. http://www.fourthworld.com/rev/ Extending the Message Path An Introduction to Using Libraries, Backscripts, and Frontscript Jim Ault Las Vegas On 5/30/06 12:15 AM, Todd Geist [EMAIL PROTECTED] wrote:

Re: Copies of your app running on the local net

2006-05-30 Thread Paul Claude
Suppose that you want to accommodate for the possibility to change user names. You would have to supply new license codes all the time. This doesn't only undermine the protective power of your licensing scheme, it also increases the danger of old license codes being lost and found by

Re: Photo Processing - Brightness and Unsharp Mask

2006-05-30 Thread Ian Wood
I'd buy it like a shot, as long as it was OS X as well as Windows. Lack of image manipulation is one of my biggest gripes with Revolution. Being able to use QT effects/filters but only for transitions really rubs it in. Ian On 30 May 2006, at 05:09, Chipp Walters wrote: Chris has a

Re: Frontscripts message path question

2006-05-30 Thread Mark Schonewille
Hi Todd, Yes, the front script is the first in the message hierarchy and catches all messages, before they reach any open stack, provided that the message doesn't originate from anywhere higher in the message hierarchy. Best, Mark -- Economy-x-Talk Consultancy and Software Engineering

Re: Photo Processing - Brightness and Unsharp Mask

2006-05-30 Thread Malte Brill
Hi Chipp, If it also adds faster rotation (and maybe a bit smoother) than Revs built in methods count me in for the buyers. All the best, Malte Does anyone really think an image external that does the stuff Sivakatirswami talks about is marketable?

extract every code out of stack

2006-05-30 Thread Claus Dreischer
Hi, i somehow managed to mess up one of my stacks ... (Main stack has a preOpenStack handler, the substacks don't. But now some substacks perform the preOpenStack handler of the main stack when opening these substacks. I don't have a clue how to fix that. :-( ) Is there a way to get all the

Re: extract every code out of stack

2006-05-30 Thread Mark Schonewille
Hi Claus, Sure, you could extract every script of every object, but that will probably not solve the problem. The actual problem is that you need to get aware of the message hierarchy. Start by moving the preOpenStack handler of the main stack to the card script of the first card of that

Re: extract every code out of stack

2006-05-30 Thread Klaus Major
Hi Claus, nice to read you again :-) Hi, i somehow managed to mess up one of my stacks ... (Main stack has a preOpenStack handler, the substacks don't. But now some substacks perform the preOpenStack handler of the main stack when opening these substacks. I don't have a clue how to fix

Re: extract every code out of stack/Addendum

2006-05-30 Thread Klaus Major
Hi Claus, there is a similar functionailty in my plug-in 2lz2! Button: misc... - Analyze this... Take a look, might help you. Regards Klaus Major [EMAIL PROTECTED] http://www.major-k.de ___ use-revolution mailing list

Re: Detecting Window's Maximize Window Click

2006-05-30 Thread Rob Cozens
Moi: on resizeStack newWidth,newHeight,oldWidth,oldHeight if newWidth = oldWidth and newHeight = oldHeight then -- Maximize Box was clicked One further note: Change only the stack dimension(s) in the if portion and put all the resizing/repositioning of controls in the else

Re: HTML entities

2006-05-30 Thread Peter T. Evensen
You could set the htmlText of an invisible field and then get the text of that field to translate. At 07:49 PM 5/29/2006, you wrote: Hi All, I have a field of data that I want to format into a web page. The data can contain symbols, most likely just the degree symbol but possibly others. If I

[EN][FR]Re: extract every code out of stack

2006-05-30 Thread Dom
Claus Dreischer [EMAIL PROTECTED] wrote: Is there a way to get all the code from all the objects in all the stacks? you may take a glance at Rappus from my description: Rappus is a small tool to write down a stack's scripts under text files. A folder is created at the same level than the

Re: Unicode sorting

2006-05-30 Thread Devin Asay
Dar, Thanks for the code! I'll test it at earliest opportunity. Devin On May 27, 2006, at 2:05 PM, Dar Scott wrote: On May 27, 2006, at 9:12 AM, Devin Asay wrote: For the Russian (don't know if this will come thru in your email reader): Я вижу вас. The unicode is (omitting the U+

Re: Detecting Window's Maximize Window Click

2006-05-30 Thread Rob Cozens
Gee Ken, Actually this doesn't work on Windows, Rob It looks like it's working fine here (WinXP TPC Edition 2005). User drags the bottom corner and stack resizes. User clicks on Maximize/Minimize box and stack resizes. Note Windows maximize/minimize is _not_ the same as MacOS

Re: Detecting Window's Maximize Window Click

2006-05-30 Thread Rob Cozens
Thanks Ken, Let me know if this works for you guys... My present focus is an application targeting the Tablet PC platform; so I don't care what MacOSes do...for now. Windows logic needs to key on the working screenRect, not the windowBoundingRect, for Tablet PC compliance. It also needs

sql execution

2006-05-30 Thread Robert Sneidar
I have successfully used revdb_execute() to create tables and index them. Now I want to insert records but am having difficulty. I try to send the following syntax: insert into VP2000.APACCT99 values ('','11010-','System Checking Account','21010-','20010-',' 10104','19990620','') I get

Re: Photo Processing - Brightness and Unsharp Mask

2006-05-30 Thread Mark Talluto
On May 29, 2006, at 9:09 PM, Chipp Walters wrote: Chris has a working version of some image manipulation externals, but as of now we have no documentation or demo stacks. Does anyone really think an image external that does the stuff Sivakatirswami talks about is marketable? I am

turning a list into something more complex

2006-05-30 Thread R . Beynon
I'm writing a program that will eventually create a tabbed line, multiple lines in a field. Is there any way I can display each line (or a subsection thereof) and place beside it a series of check boxes or pull down boxes. peptide 1 1234.5 [chk1] [..] [..] pulldowncolour pulldownstyle

Re: sql execution

2006-05-30 Thread Stephen Barncard
Trevor Devore's DB Library is an abstraction layer that makes doing SQL in Rev very manageable. You'll never have to touch 'INSERT', for instance as he has written a handler to do the inserts from an array. http://mangomultimedia.com/developer/revolution/ I use it every day. Free, but Trevor

Re: turning a list into something more complex

2006-05-30 Thread Devin Asay
On May 30, 2006, at 9:31 AM, [EMAIL PROTECTED] wrote: I'm writing a program that will eventually create a tabbed line, multiple lines in a field. Is there any way I can display each line (or a subsection thereof) and place beside it a series of check boxes or pull down boxes. peptide 1

Re: GoURL and Firefox and Windows

2006-05-30 Thread Chris Sheffield
Richard (and anyone else who may be interested), I found a handy workaround for this problem on Ken Ray's site (thanks again, Ken). set the hideConsoleWindows to true put empty into tTitle if NT is in the systemVersion then set the shellCommand to cmd.exe put quote

sql execution - reply

2006-05-30 Thread mfstuart
Hi Bob, I've created a simple stack that interfaces to a MySQL table. It accesses a States listing, very simple. It has all the functions that one would need to read, write, and delete records, as well as the typical record navigation. All of this in native Run Rev scripting. There is no

Re: turning a list into something more complex

2006-05-30 Thread Devin Asay
On May 30, 2006, at 9:52 AM, Devin Asay wrote: I've done something like this before, and the easiest way is to make a large field without scrollbars and create checkboxes and/or option lists btns that are aligned to the lines in the field. Then group all of them and make the group

2.2 build on Linux?

2006-05-30 Thread Wolfgang Bereuter
Some times ago I did a build with rev 2.2 for OSX WIN and Linux It runs fine on OSX and Win. Now I have checked it on Red Haet. It starts correct to the Splash-screen (first card), but on click, nothing happens, only the busy cursor appears. Is that a problem of the old version 2.2? Thanks

Looks like I'm not receiving no mail

2006-05-30 Thread Hershel Fisch
___ 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-revolution

Re: extract every code out of stack

2006-05-30 Thread Claus Dreischer
Hi Claus, nice to read you again :-) Hallo (kleiner) Klaus ;-) ... (Main stack has a preOpenStack handler, the substacks don't. But now some substacks perform the preOpenStack handler of the main stack when opening these substacks. you can change the script of your mainstack like this:

Re: 2.2 build on Linux?

2006-05-30 Thread Mark Schonewille
Hello Wolfgang, I can't say anything about Red Hat specifically, but I made several builds with Rev 2.2 for Linux and my standalones run fine. Maybe you should post the script that should run after the click? Best, Mark -- Economy-x-Talk Consultancy and Software Engineering

Re: Detecting Window's Maximize Window Click

2006-05-30 Thread Ken Ray
On 5/30/06 9:49 AM, Rob Cozens [EMAIL PROTECTED] wrote: Gee Ken, Actually this doesn't work on Windows, Rob It looks like it's working fine here (WinXP TPC Edition 2005). Well, I tried it on Win XP Pro SP 2 with this code: on resizeStack newWidth,newHeight,oldWidth,oldHeight

Re: extract every code out of stack

2006-05-30 Thread Claus Dreischer
Hi Claus, Hi Mark, Sure, you could extract every script of every object, but that will probably not solve the problem. The actual problem is that you need to get aware of the message hierarchy. THIS must be the main problem ;-) It was my understanding, that the preOpenStack message is

Re: Photo Processing - Brightness and Unsharp Mask

2006-05-30 Thread Sivakatirswami
I'll have to be honest and say probably not. I could be wrong. It would take a) someone whose image work flow already has Rev apps deeply integrated into his production environment (moi, et quelques autres, a small club of 1 to 10?) or b) whose love affair with Adobe and other my

Re: Photo Processing - Brightness and Unsharp Mask

2006-05-30 Thread Sivakatirswami
On May 29, 2006, at 10:22 AM, Wilhelm Sanke wrote: wo things I can recommend loosely pertaining to your query are Chipp Walters' convolve stack and DLL (to be downloaded from his website) hmmm. Altuit, I could be getting old but I'm not seeing any links to Chipps freeware from the top

Re: First record status inconsistent using SQLite

2006-05-30 Thread Devin Asay
Noted and voted. DNA On May 28, 2006, at 3:35 AM, David Vaughan wrote: On 28/05/2006, at 1:24, Devin Asay wrote: OTOH, documentation errors are easy to fix. I recently stumbled across a minor doco error in one of the revDB functions and submitted it to BZ. Lo and behold it showed up as

Re: Photo Processing - Brightness and Unsharp Mask

2006-05-30 Thread Chipp Walters
Swami-san, You can find the matix at: http://www.altuit.com/webs/altuit2/RunRev/Downloads.htm I'm working on a newer faster version using Wilhelm Sanke's non-array methods, and when it's ready I'll post it. There's a link on the side of www.altuit.com called Revolution Resources which takes

Re: turning a list into something more complex

2006-05-30 Thread Chipp Walters
Sure, Use an embedded image in the htmlText of the field. Then create a on mouseDown handler and do a popup command from there. I do it all the time. -Chipp On 5/30/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I'm writing a program that will eventually create a tabbed line, multiple lines

number of columns in a table field

2006-05-30 Thread Russ McBride
I know, I should probably give up on table fields, but call they're useful for building interfaces to databases that I can't give up on them yet. Anyone know how to get the actual number of columns and rows in a table field (not the viewable number of columns and rows? Thanks, russ

Re: number of columns in a table field

2006-05-30 Thread Bill Marriott
If you're trying to determine how many columns the actual data has, as opposed to how many columns are visible, the following would work (though I don't know if it is the fastest or most clever method): put 0 into maxTabs; set the itemdelimiter to tab repeat for each line x in fld theField if

Re: number of columns in a table field

2006-05-30 Thread Russ McBride
Thanks Bill, that works nicely. I don't know now what viewablecolumns is supposed to track since the number of columns in view at any given moment is different from it and the total number of columns is different from it. And what's the difference between currentview and formattedview?

Re: Unicode sorting

2006-05-30 Thread Devin Asay
Dar, I got your code to work by making some simple changes in the sortCodeFromRussian function: function sortCodeFromRussianChar utf16Char set the useUnicode to true put charToNum(utf16Char) into unicodePoint ## Devin's changes - it turns out leaving the code points in decimal works

Re: Linux installation

2006-05-30 Thread Bob Warren
Hi Rev folks! With (more than) a little off-list help, I have managed to improve my standalone module for discovering fundamental system path information in Linux. You can download it here: http://www.howsoft.com/runrev/sysinfo/get_sys_info_linux.zip When extracting the program from the ZIP

Re: number of columns in a table field

2006-05-30 Thread Kay C Lan
On 5/31/06, Russ McBride [EMAIL PROTECTED] wrote: I know, I should probably give up on table fields, but call they're useful for building interfaces to databases that I can't give up on them yet. Hmmm, I use Rev to build db front ends all the time and the thing I love about it is you 'don't'

Re: sql execution

2006-05-30 Thread Kay C Lan
On 5/30/06, Robert Sneidar [EMAIL PROTECTED] wrote: insert into VP2000.APACCT99 values ('','11010-','System Checking Account','21010-','20010-',' 10104','19990620','') I get an error saying Commands out of sync; You can't run this command now but I can paste the same syntax into an SQL

Re: Unicode sorting

2006-05-30 Thread Dar Scott
On May 30, 2006, at 5:08 PM, Devin Asay wrote: ## Devin's changes - it turns out leaving the code points in decimal works perfectly, ## and I only had to make a couple of adjustments. if unicodePoint 1039 and unicodePoint 1072 then -- ignore case add 32 to unicodePoint else if

Re: extract every code out of stack

2006-05-30 Thread Geoff Canyon
On May 30, 2006, at 11:38 AM, Claus Dreischer wrote: It was my understanding, that the preOpenStack message is only sent to the (sub)stack that is going to open, not that it's going to the (main)stack that triggered the opening of the (sub)stack too (and all other substacks without an own

Re: number of columns in a table field

2006-05-30 Thread Bill Marriott
Kay, Sorry, I'm not sure what you're talking about -- of course all those UI options are great but the way one must use them is not. The standard method, I believe, is to use a group the hold all those fields and controls, and then scroll that group around. But the performance of such a

Re: Webcam and Rev?

2006-05-30 Thread Dan Shafer
I don't think it is possible directly. On 5/29/06, Garrett Hylltun [EMAIL PROTECTED] wrote: Rev 2.6.1 Is it possible in Rev 2.6.1 to access usb or serial webcams? Thanks, -Garrett ___ use-revolution mailing list use-revolution@lists.runrev.com

Re: Webcam and Rev?

2006-05-30 Thread Stephen Barncard
One possible solution is to use Firewire as an input. Digital 8 and DV cams can be had pretty cheaply, and the quality and lenses will be far better. sqb I don't think it is possible directly. On 5/29/06, Garrett Hylltun [EMAIL PROTECTED] wrote: Rev 2.6.1 Is it possible in Rev 2.6.1 to