Re: Visible and extra monitors.

2008-10-09 Thread Kay C Lan
On Mon, Oct 6, 2008 at 5:01 AM, Richmond Mathewson [EMAIL PROTECTED]wrote:

 This one has probably come up before . . .

 Possibly, an itemised table showing what commands are available in each
 version of Runtime Revolution should be drawn up to spare people with early
 versions a lot of time, and make them stump up the money for newer versions.


Yes, about as many times as the answer ;-)

Open the Rev Dictionary, cntrl+click (right click or whatever on a Win) on
either of the column headings and you'll be given a pop-up list of the
available columns. Tick 'Version'. Now, like with most tables, you can click
on the column heading and have the table sorted by that column. Click again,
and go from ascending to descending (or visa versa).

So, not only can you simply look up a keyword,function,message,property in
the dictionary and immediately have the version number available, but you
can sort them all and see which have been introduced at each release.

Unfortunately, as tables aren't exactly Rev's strong point, there are
problems with sorting in earlier versions of the Dictionary. If memory
serves me correctly, this applied to the Platform column, this use to be
Icons rather than Text, so it wouldn't sort correctly. I've not noticed any
sorting problems with the latest 3.0 Dictionary - but I haven't tested every
column either.

HTH
___
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


Visible and extra monitors.

2008-10-05 Thread Richmond Mathewson
Chipp Walters wrote:

Dude,

Just use my function posted last week:

function isStackCurrentlyVisibleOnAnyMonitor pStack
 -- pStack IS THE SHORT NAME OF STACK
 if pStack is among the lines of windows() then
  if not the vis of stack pStack then return false
  if the blendlevel of stack pStack = 100 then return false
  repeat for each line L in the screenrects
 if the topLeft of stack pStack is within L then return true
 if the topRight of stack pStack is within L then return true
 if the bottomLeft of stack pStack is within L then return true
 if the bottomRight of stack pStack is within L then return true
  end repeat
  return false
 else
  return false
 end if
end isStackCurrentlyVisibleOnAnyMonitor

2 points here:

1. [OT] where I come from the word 'Dude' carries fairly negative connotations 
(well, maybe that was your intention),

2. SCREENRECTS - plural was introduced in Runtime Revolution 2.7

(i.e. Richmond spent a long time p*ss*ng around with 2.6.1 wondering what he 
was doing wrong!!!)

This one has probably come up before . . .

Possibly, an itemised table showing what commands are available in each version 
of Runtime Revolution should be drawn up to spare people with early versions a 
lot of time, and make them stump up the money for newer versions.

sincerely, Richmond Mathewson.


A Thorn in the flesh is better than a failed Systems Development Life Cycle.




___
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: Visible and extra monitors.

2008-10-05 Thread william humphrey
Dude is surfer talk. The only negative connotation where I come from is all
put on the speaker (meaning if you call someone Dude then you are from
that class of skater boy/surfer/stoner people who call people Dude).
___
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: Visible and extra monitors.

2008-10-05 Thread Thomas McGrath III

I have never heard of Dude as a negative connotation!!!

Richmond, where do you come from that it is?

Tom McGrath III

On Oct 5, 2008, at 5:01 PM, Richmond Mathewson wrote:


2 points here:

1. [OT] where I come from the word 'Dude' carries fairly negative  
connotations (well, maybe that was your intention),


___
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


Visible and extra monitors.

2008-10-05 Thread Richmond Mathewson
I come from the North-East of Scotland.

Frankly 'Dude' sounds like 'Dud'.

However, the point about SCREENRECTS was more important.

sincerely, Richmond Mathewson.



A Thorn in the flesh is better than a failed Systems Development Life Cycle.




___
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: Visible and extra monitors.

2008-10-05 Thread Stephen Barncard
Perhaps you haven't seen the movie the Big Lebowski. It explains 
all about the 'Dude'.


:


I come from the North-East of Scotland.

Frankly 'Dude' sounds like 'Dud'.

However, the point about SCREENRECTS was more important.

sincerely, Richmond Mathewson.



--


stephen barncard
s a n  f r a n c i s c o
- - -  - - - - - - - - -



___
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: Visible and extra monitors.

2008-10-05 Thread Thomas McGrath III

Agreed, I was just curious. Thanks for answering.

Regards,

Tom McGrath

On Oct 6, 2008, at 12:38 AM, Richmond Mathewson wrote:


However, the point about SCREENRECTS was more important.


___
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: Visible and extra monitors.

2008-09-29 Thread Chipp Walters
Dude,

Just use my function posted last week:

function isStackCurrentlyVisibleOnAnyMonitor pStack
 -- pStack IS THE SHORT NAME OF STACK
 if pStack is among the lines of windows() then
  if not the vis of stack pStack then return false
  if the blendlevel of stack pStack = 100 then return false
  repeat for each line L in the screenrects
 if the topLeft of stack pStack is within L then return true
 if the topRight of stack pStack is within L then return true
 if the bottomLeft of stack pStack is within L then return true
 if the bottomRight of stack pStack is within L then return true
  end repeat
  return false
 else
  return false
 end if
end isStackCurrentlyVisibleOnAnyMonitor
___
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


Visible and extra monitors.

2008-09-28 Thread Richmond Mathewson
Just uploaded to revOnline my implementation of the recent discussion about 
whether a stack is visible to the person sitting in front of the VDU:

Visibubble under 'Richmond'

and it works . . . except that I have 2 monitors attached to my Mac G4 
Windtunnel; and when I can see a stack on the the second monitor my program 
tells me it is not visible.

Bright ideas welcomed.

sincerely, Richmond Mathewson.



A Thorn in the flesh is better than a failed Systems Development Life Cycle.




___
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