How can I print all parts of oversize

2005-11-13 Thread Kresten Bjerg
The window to be printed is in all instances on the screen. The export snapshot sounds OK, but not to a file, it is the printing, which shall be fully automatic for the user of the standalone. Can that be scripted into the handler ? Kresten www.psy.ku.dk/bjerg

scrolling to a line

2005-11-13 Thread Charles Hartman
I've modified Xavier's modification of my modification of (somebody's??) code to search incrementally in a sorted list field. (This version, unlike Xavier's, assumes the whole line in the field is the sorted item.) But it doesn't solve one problem: suppose the user starts typing a string

Resizing During Resizing

2005-11-13 Thread Rob Cozens
Hi All, I want to be able to change the height or width of a stack from inside the stack's resizeStack handler without triggering a second resizeStack message. I have created a portfolio of photographs of my wife's art. All photos have a 3 (w) to 2 (h) orientation/proportion and the stack

tmalign in gadgetbar

2005-11-13 Thread Bob Hartley
Hi All. i have tmalign in the gadgets folder but refreshing the gadgetbar to the gadgets folder does not show tmal;igh in the gadgetbar grouping. Anyone know the problem. I'm on winXP Cheers Bob ___ use-revolution mailing list

Re: Safe (icon) image IDs

2005-11-13 Thread David Bovill
On 11 Nov 2005, at 21:17, Scott Rossi wrote: But this reminds me of a Stupid Web Trick™ that I use in situations where I want to grab something from the Web, but for whatever reason the link is inaccessible from my browser (or Rev in this case). STEP 1 - open your favorite text editor STEP

Re: Resizing During Resizing

2005-11-13 Thread Eric Chatonet
Hi Rob, just add an exit to top: on resizeStack newWidth,newHeight,oldWidth,oldHeight beep lock screen put abs(newWidth-oldWidth) into widthDifference put abs(newHeight-oldHeight) into heightDifference lock messages if widthDifference = heightDifference then set the height of this

RE: Resizing During Resizing

2005-11-13 Thread MisterX
Hi Rob, most routines I use to resize stack windows rely on the stack's rect instead of the width or height of the window. Since resizing the width/height displaces the topleft point of the window, you have to be careful that you don't jitter the windowborder you are grabing and the mouseloc...

Re: frappr map

2005-11-13 Thread David Bovill
On 12 Nov 2005, at 08:06, Pierre Sahores wrote: About AJAX, just a work in progress using ka-map, mapscript, mapserver (to get from www.maptools.org and http:// www.kyngchaos.com/macosx/downloads.php, a runtime revolution glue application's server (not online at this time), a MySQL

RE: scrolling to a line

2005-11-13 Thread MisterX
try select before line lo of me or something like that, no that don't work in list fields set the hilitedline of me to lo (0 works ok! ;) ;) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Charles Hartman Sent: Sunday, November 13, 2005 17:08

download and Mime problems (was RE: Safe (icon) image IDs)

2005-11-13 Thread MisterX
Could this help? It seems free... and open source ;) http://osx.freshmeat.net/projects/mime-editor/ cheers Xavier http://Monsieurx.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Bovill Sent: Sunday, November 13, 2005 18:27 To: How

Re: Resizing During Resizing

2005-11-13 Thread Eric Chatonet
Hi Rob, 2 thoughts: 1. The screen is locked while a resizeStack handler is running, so it is not necessary to use the lock screen command to prevent changes from being seen. (However, the lockScreen property is not set to true.) 2. Xavier is right: working with the rect would be better to

Re: download and Mime problems (was RE: Safe (icon) image IDs)

2005-11-13 Thread David Bovill
On 13 Nov 2005, at 18:54, MisterX wrote: Could this help? It seems free... and open source ;) http://osx.freshmeat.net/projects/mime-editor/ Looks like Linux only - freedesktop. Rox is cool though :) ___ use-revolution mailing list

Re: scrolling to a line

2005-11-13 Thread Charles Hartman
On Nov 13, 2005, at 12:47 PM, MisterX wrote: try select before line lo of me or something like that, no that don't work in list fields set the hilitedline of me to lo (0 works ok! ;) I don't think so, unless I'm being even denser than usual. If there's no match at all, 'lo' will contain

Re: The Disappearing Desktop - It's Real This Time

2005-11-13 Thread Mark Wieder
Dave- Saturday, November 12, 2005, 4:54:07 PM, you wrote: I suspect the CIO was talking about web services in the narrow sense of something like SOAP (no longer word of the month). And if My main problem with web and SOAP services is that they seem to appear and disappear every six months

Re: tmalign in gadgetbar

2005-11-13 Thread James Spencer
On Nov 13, 2005, at 11:22 AM, Bob Hartley wrote: Hi All. i have tmalign in the gadgets folder but refreshing the gadgetbar to the gadgets folder does not show tmal;igh in the gadgetbar grouping. Anyone know the problem. I'm on winXP Because you are on winXP, there may be something else

RE: scrolling to a line

2005-11-13 Thread MisterX
set the hilitedline of me to lo (0 works ok! ;) I don't think so, unless I'm being even denser than usual. If there's no match at all, 'lo' will contain 0, so no scroll at all. I meant it unselects anything if you click in an empty line ;) can be handled how you want... for example if

Re: The Disappearing Desktop - It's Real This Time

2005-11-13 Thread David Bovill
On 13 Nov 2005, at 05:24, Sivakatirswami wrote: Actually he was talking about a very much larger framework/standard where Warner Brothers was thinking if they did it that way then everyone could talk to their accounting via web services, banks, vendors... etc everyone... i.e. the

Re: frappr map

2005-11-13 Thread Pierre Sahores
Thanks for the tip, David. Best Regards, Pierre Le 13 nov. 05 à 18:37, David Bovill a écrit : On 12 Nov 2005, at 08:06, Pierre Sahores wrote: About AJAX, just a work in progress using ka-map, mapscript, mapserver (to get from www.maptools.org and http://

Re: scrolling to a line

2005-11-13 Thread J. Landman Gay
Charles Hartman wrote: I've modified Xavier's modification of my modification of (somebody's??) code to search incrementally in a sorted list field. Could it have been the one I posted about two years ago? I sent this to the list: local lUserKeys, lOldTicks on keyDown whichKey -- select

Re: The Disappearing Desktop - It's Real This Time

2005-11-13 Thread Sivakatirswami
More real world testimony: For several years I've been uploading the files for our magazine Hinduism Today to Banta Publication in Missouri, using their Emerge program which is this giant JAVA applet that runs inside a browser and interfaces with Creo's amazing InSite prepress system. It's

Re: The Disappearing Desktop - It's Real This Time

2005-11-13 Thread David Bovill
On 13 Nov 2005, at 20:45, Sivakatirswami wrote: For these people, as Chipp said, productivity is the most important issue, with nearly 500 publications a year to get out the door, some of the weeklies, its time to get real, and the glitter of the web service has finally worn off, get the

RE: scrolling to a line

2005-11-13 Thread MisterX
I've modified Xavier's modification of my modification of (somebody's??) code to search incrementally in a sorted list field. that was original code - not to boast but to say why there wasn't no arrowkey handling in it before. I also have on arrowkey handlers so I don’t have to handle those.

Re: scrolling to a line

2005-11-13 Thread Dan Shafer
FWIW, I don't think that's expected behavior or necessarily good user experience design. If there's no find then things should stay the same. Maybe a beep but a scroll to a phantom location doesn't really help me much, doesn't give me any new information. My $0.02. On Nov 13, 2005, at

Re: scrolling to a line

2005-11-13 Thread Charles Hartman
On Nov 13, 2005, at 3:04 PM, Dan Shafer wrote: FWIW, I don't think that's expected behavior or necessarily good user experience design. If there's no find then things should stay the same. Maybe a beep but a scroll to a phantom location doesn't really help me much, doesn't give me any new

Re: scrolling to a line

2005-11-13 Thread Charles Hartman
I finally figured out where I got the original code which I quoted in my message http://lists.runrev.com/pipermail/use-revolution/2005-November/ 069934.html -- it was written by Klaus and posted on Ken's SoT site: http://www.sonsothunder.com/devres/revolution/tips/fld003.htm On Nov

Re: The Disappearing Desktop - It's Real This Time

2005-11-13 Thread Sivakatirswami
Dan: I am admittedly very ignorant of the overall picture, issues and the lexicon of this environment (AJAX is another brand name for COMET you use to clean sinks..) , but this is still an important discussion for us as we develop our own web sites and services, so let me just ask some

How can I print all parts of oversize cards!?

2005-11-13 Thread Kresten Bjerg
Sorry, I havent learnt how to make reply to join the thread. Been trying to follow the export snapshot idea, - but see no way to script the printing of the result, either as file or as a variableprint apparently only relates to cards !!! Do I have to construct an extra

Re: The Disappearing Desktop - It's Real This Time

2005-11-13 Thread Mark Smith
I have to say, I'm a little baffled about what is being discussed here. Is it just the idea of apps (or applets in browsers) that interact with remote servers in real (ish) time? Dynamic HTML or XML generation? Obviously, we have these already, so what is it? Densely, Mark Smith

Re: frappr map

2005-11-13 Thread Kay C Lan
Can't get this to work with Firefox and X.4.3. The map at the home page is visible (I guess it is a screen shot) but it doesn't matter which group I visit or what map I use (map,satellite,hybrid) it doesn't appear. Also no photo's whether tag or thumbnail come up. The tagline though does appear in

(no subject)

2005-11-13 Thread Christopher Gioia
i want to unsuscribe - Yahoo! FareChase - Search multiple travel sites in one click. ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe

Why doesn't this script work?

2005-11-13 Thread Stephen Paul McNutt
Here's a script I use to set the defaultFolder property for a standalone. The part for OSX works perfectly, but the part for Win32 doesn't. I've placed all those answer commands in there to check variable and property values as I go. local ldefaultFolder if the environment

Re: scrolling to a line

2005-11-13 Thread J. Landman Gay
J. Landman Gay wrote: Charles Hartman wrote: I've modified Xavier's modification of my modification of (somebody's??) code to search incrementally in a sorted list field. Could it have been the one I posted about two years ago? I sent this to the list: local lUserKeys, lOldTicks on

Re: How can I print all parts of oversize cards!?

2005-11-13 Thread J. Landman Gay
Kresten Bjerg wrote: Sorry, I havent learnt how to make reply to join the thread. Been trying to follow the export snapshot idea, - but see no way to script the printing of the result, either as file or as a variableprint apparently only relates to cards !!! Yes, that's right. Do I