Re: magnify

2002-03-10 Thread Jeanne A. E. DeVoto
At 4:38 PM -0800 3/9/2002, Dar Scott wrote: >In the Transcript dictionary I found the magnify property. Is >there a check box, button or menu item in the development >environment that changes this for me? I'm looking for an easy way >to change this while editing images. You can command-click th

Re: Initializing variables

2002-03-10 Thread cowhead
When you have a long list of variables, it might be easier to try an array instead. For example: on mouseUp global myVar repeat with i = 1 to 1000 put 0 into myVar[i] end repeat end mouseUp So, instead of calling your variables x,y,z etc...you can simply call them myVar[1],myVar[2], etc good lu

Scanning machines on a network

2002-03-10 Thread Richard Gaskin
A lot of software packages scan the local network to see if other copies of the software may be running with the same serial number. I've thought of many ways to accomplish this, but all of them seem slow and inefficient. How is this done? -- Richard Gaskin Fourth World Media Corporation C

Re: the mouse

2002-03-10 Thread Ken Norris (dialup)
on 3/9/02 4:51 PM, Dar Scott at [EMAIL PROTECTED] wrote: > > On Friday, March 8, 2002, at 02:13 PM, Ken Norris (dialup) wrote: > >>> on mouseUp >>> repeat for 60 times >>> put the mouse into field "mouseValue" >>> --put the mouseClick into field "mouseClickValue" >>> wait for 500 milliseconds >

Re: Scanning machines on a network

2002-03-10 Thread Dar Scott
On Sunday, March 10, 2002, at 12:00 PM, Richard Gaskin wrote: > A lot of software packages scan the local network to see if other > copies of > the software may be running with the same serial number. > > I've thought of many ways to accomplish this, but all of them seem > slow and > inefficien

remove me

2002-03-10 Thread Nadav Dafni
remove me, please -Original Message- From: Jim Hurley <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Saturday, March 09, 2002 5:03 PM Subject: Initializing variables I have a list of variables, say "x,y,z" I would like to set each of these equal to zer

revShowPrintDialog: Cancel print and other things

2002-03-10 Thread Michael D Mays
Hi, How do I cancel a print job when using revPrintText or revPrintFIeld? I use revShowPrintDialog true,true and I can cancel the printing if I select "Cancel" during page setup but if I click "Cancel" during dialog the job still prints. Also, how persistent and what is the scope of the showPa

Re: Scanning machines on a network

2002-03-10 Thread Dar Scott
On Sunday, March 10, 2002, at 01:54 PM, Dar Scott wrote: > On Sunday, March 10, 2002, at 12:00 PM, Richard Gaskin wrote: >> A lot of software packages scan the local network to see if other >> copies of >> the software may be running with the same serial number. >> >> I've thought of many ways