Re: Magnifier

2003-07-19 Thread Ken Norris
Hi Richard,

 Date: Fri, 18 Jul 2003 10:50:39 -0700
 Subject: Re: Magnifier
 From: Richard Gaskin [EMAIL PROTECTED]

 Not mine.  As much as I've enjoyed SC over the years, my work these days is
 so committed to multi-platform deployment that I rarely get a chance to use
 SC anymore.
--
Well it's from Fourth World, and not new. I think it was done in SC3 because
I had to convert it to SC 4.1.1. That's why I figured you'd know about it,
but I see that it's Mark's project.
--
 What does it do?
--
It's a moveable graphic which uses the sourceRect feature to place a blowup
of whatever is under it in itself. It's very cool, just exactly like moving
a magnifying glass over the screen when you drag it.

If you still have SC, you can get it here (4th from the bottom):

http://groups.yahoo.com/group/SuperCard/files/Samples/

Best,
Ken N



___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Magnifier

2003-07-19 Thread Ken Norris
Hi Dar,

Please take a look at my Re to Scott.

 Date: Fri, 18 Jul 2003 12:14:37 -0600
 Subject: Re: Magnifier
 From: Dar Scott [EMAIL PROTECTED]


 I've made some crude things for looking closely at part of a stack, but
 that part has to be visible.  I don't know how to do that with a
 magnifying glass in front, but if you are willing for the magnification
 to be someplace else, then I'd use snapshot
--
Won't work, I don't think.

Ken N.

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Shuffle

2003-07-19 Thread curry
  (And actually, if you really wanted to be perfect, you might improve 
  it by multiplying the number of lines or items by a desired amount for 
  your random number parameter, so you have less chance of two lines 
  having the same random number and (I assume) remaining in the order 
  they originally were in the list.)

Or use some large number?

Dar Scott
Yeah! That's simpler. :-)
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Magnifier

2003-07-19 Thread Ken Norris
Hi Scott,

 Date: Fri, 18 Jul 2003 11:28:17 -0700
 Subject: Re: Magnifier
 From: Scott Rossi [EMAIL PROTECTED]
 
 If I understand what you're looking for, the easiest way would probably be
 to take a snapshot of the current card and enlarge the resulting image.
 
 You can take a look at our Camouflage demo stack which does this for the
 screen, rather than a card:
 
 go stack url http://www.tactilemedia.com/tmpanel.rev;
 
 Launch the Camouflage stack and then click the Magnify button...
--
Yes...that's basically it. I'd love to build one for my mom to use for
reading emails (she has macular degeneration).

Mind if I take a gander at the scripts?

It'd be really cool to have a the magnified image appear in a simulated
magnifying glass widget.

I guess the trick is in the updating process, so that the actual screen
comes back when you quit dragging

Ken N.

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: building a font picker

2003-07-19 Thread Alex Rice
On Friday, July 18, 2003, at 10:27  PM, Howard Bornstein wrote:

 This is using my previous suggestion of comparing two letters
rather than the entire alphabet.
Howard thanks. Yes this method is fairly quick. Actually I was hoping 
for a ready-made system property like the fixedWidthFontFamilies or 
something ;-)

re: comparing I vs. Z or the whole alphabet. Picking two letters I 
would take I and M. I think M is supposed to be the widest letter in 
general, hence an em-dash... I could be wrong about that.

But my reason for using entire alphabet instead of I and Z is that I 
think it could be possible for some font to have an I and Z have a 
difference in width that is less than the resolution of the 
formattedWidth. I can't visualize what the font would be, but it's 
certainly possible. That's why I would make it more reliable by 
comparing multiple letters. Thoughts?

The key to this speed, btw, is the lock screen command.
Yep I am doing that too.

Alex Rice, Software Developer
Architectural Research Consultants, Inc.
http://ARCplanning.com
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Magnifier

2003-07-19 Thread Ken Norris
Hi Dar,

 Date: Fri, 18 Jul 2003 13:36:57 -0600
 Subject: Re: Magnifier
 From: Dar Scott [EMAIL PROTECTED]
 
 
 On Friday, July 18, 2003, at 12:14 PM, Dar Scott wrote:
 
 I'd use snapshot.
 
 I forgot to mention.  The rectangle is correct in the example but the
 values are scrambled in the TD.  If you get a picture of the wrong part
 of the screen, that may be the trouble.
---
OK, I'll keep that in mind...if i knew what a TD is.

Ken N.

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Magnifier

2003-07-19 Thread Dar Scott
On Friday, July 18, 2003, at 10:13 PM, Ken Norris wrote:

I forgot to mention.  The rectangle is correct in the example but the
values are scrambled in the TD.  If you get a picture of the wrong 
part
of the screen, that may be the trouble.
---
OK, I'll keep that in mind...if i knew what a TD is.
Sorry, I had seen others refer to the Transcript Dictionary as the TD 
and I was trying to act cool like I was in the in crowd.

The entry for 'import snapshot' has this syntax description:
import snapshot [from rect[angle] top,left,bot,rt [of window 
windowID]]

The example for taking a screenshot of a stack has this line:
import snapshot from rect (the rect of stack My Stack)
...so I think the syntax should be this:
import snapshot [from rect[angle] left,top,rt,bot [of window 
windowID]]

...which seems to work for me.

Dar Scott

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Magnifier

2003-07-19 Thread Dar Scott
On Friday, July 18, 2003, at 09:28 PM, Ken Norris wrote:

I've made some crude things for looking closely at part of a stack, 
but
that part has to be visible.  I don't know how to do that with a
magnifying glass in front, but if you are willing for the 
magnification
to be someplace else, then I'd use snapshot
--
Won't work, I don't think.
The magnified image has to be over what is being magnified, huh?

How about you take a snapshot of the entire desktop when the mouse goes 
down, create the magnifying glass at the mouse, drag it around showing 
an enlargement of the snapshot at that point?  Things will be frozen, 
though.

Dar Scott

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: building a font picker

2003-07-19 Thread Peter Reid
But what are the CE fonts?
Central European fonts, i.e. those based on Cyrillic characters 
rather than the usual Roman characters.  If you install additional 
font support in Mac OS 9 for languages such as Russian, Polish, etc. 
then these fonts appear.

Cheers

Peter
--
Peter Reid
Reid-IT Limited, Loughborough, Leics., UK
Tel: +44 (0)1509 268843 Fax: +44 (0)8700 527576
E-mail: [EMAIL PROTECTED]
Web: http://www.reidit.co.uk
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Shuffle

2003-07-19 Thread miscdas
curry writes:
[snip]

  (And actually, if you really wanted to be perfect, you might improve  
 it by multiplying the number of lines or items by a desired amount for  
 your random number parameter, so you have less chance of two lines   
having the same random number and (I assume) remaining in the order   
they originally were in the list.) 

===
But then, you no longer have a randomized list... You now have a non-random 
function based on random. 

miscdas 
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: you - the potential buyer

2003-07-19 Thread Klaus Major
Hi Erik,

...
Major Klaus,
i have several URL's for your name.
is there a preferred one for RunRev purposes?
Yo, my official URL for RunRev purposes is:

www.major-k.de/revstart.html

That will open the x-talk section directly in the frameset.

I already started to translatethe complete website (except one or two 
things,
that are not of interest fo english speaking folks.
Unfortunately the german folks are also not interested :-D

[EMAIL PROTECTED]http://www.erikhansen.org
Regards

Klaus Major
[EMAIL PROTECTED]
www.major-k.de
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


strange X build

2003-07-19 Thread Wolfgang M. Bereuter
Hello list
I have builded on OSX (10.2.6) a distribution for OSX, OS9, WIN and 
Linux.
The OSX build has a very strange appearance. There is no stack in the 
data folder. All are in the  splash screen.
All other builds are correct and working fine. Seems the OSX works fine 
too..?
Any ideas what this can be...?

Thanks for help in advance

regards
Wolfgang M. Bereuter
Learn easy with trainingsmaps©
INTERNETTRAINER Wolfgang M. Bereuter
Edelhofg. 17/11, A-1180 Wien, Austria
...
http://www.internettrainer.com, [EMAIL PROTECTED]
...
Tel: ++43/1/ 961 0418, Fax: ++43/1/ 479 2539
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: strange X build

2003-07-19 Thread Thierry Arbellot
Hi Wolfgang,

Have you taken a look inside the package contents ?
There is a MacOs folder that contains a data folder with all substacks 
inside.

Hope it can help.

Regards.

Thierry Arbellot.

On Saturday, Jul 19, 2003, at 12:41 Europe/Paris, Wolfgang M. Bereuter 
wrote:

Hello list
I have builded on OSX (10.2.6) a distribution for OSX, OS9, WIN and 
Linux.
The OSX build has a very strange appearance. There is no stack in 
the data folder. All are in the  splash screen.
All other builds are correct and working fine. Seems the OSX works 
fine too..?
Any ideas what this can be...?

Thanks for help in advance

regards
Wolfgang M. Bereuter
Learn easy with trainingsmaps©
INTERNETTRAINER Wolfgang M. Bereuter
Edelhofg. 17/11, A-1180 Wien, Austria
...
http://www.internettrainer.com, [EMAIL PROTECTED]
...
Tel: ++43/1/ 961 0418, Fax: ++43/1/ 479 2539
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: building a font picker

2003-07-19 Thread Howard Bornstein
But my reason for using entire alphabet instead of I and Z is that I 
think it could be possible for some font to have an I and Z have a 
difference in width that is less than the resolution of the 
formattedWidth. I can't visualize what the font would be, but it's 
certainly possible. That's why I would make it more reliable by 
comparing multiple letters. Thoughts?

Oh, sorry, I forgot to mention this other part. In the fields I set up to 
test, I make the fontsize something like 18 points (or larger). This 
should insure that the difference between i and M (I think you're 
right about M) are clearly differentiated. I had set of some tests that 
gave me the actual formattedwidth of each character at different sizes, 
and at the larger sizes, they were always clearly different.

Howard Bornstein

D E S I G N  E Q
www.designeq.com
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Buying Revolution in Europe

2003-07-19 Thread eric engle
I would like to buy the low end starter license for
Revolution. 

I live in Germany. I would rather pay in euros,
perhaps by postal money order. I don't have credit
cards, because I refuse to go into debt.

Is it possible to pay in Euros? To an account in
Germany?

Thanks!

__
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


size of image

2003-07-19 Thread Dar Scott
How do I get the size of an image that has been squished or stretched?   
The width and height are as stretched.  I want the pixel dimensions  
of the original image.

Dar Scott
 

  Dar Scott Consultinghttp://www.swcp.com/dsc/Programming  
Services
 


___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: size of image

2003-07-19 Thread J. Landman Gay
On 7/19/03 2:23 PM, Dar Scott wrote:

How do I get the size of an image that has been squished or stretched?   
The width and height are as stretched.  I want the pixel dimensions  
of the original image.
the formattedWidth of img 1
the formattedHeight of img 1
--
Jacqueline Landman Gay | [EMAIL PROTECTED]
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: RTFText, HTMLText, and Formatted Content in RR

2003-07-19 Thread erik hansen

--- Jeanne A. E. DeVoto [EMAIL PROTECTED]
wrote:
 There is a general distinction here to be made,
 between character
 formatting and paragraph formatting.
 
 Character formatting - font, size, style, and
 color changes that may be
 applied to any part of a line or lines - is
 well-supported in Rev using
 either HTML and RTF formats.
 
 Paragraph formatting - alignment of individual
 paragraphs, header levels,
 list formats, and so on - is not. This is not
 so much because of lack of
 support in the RTFText and HTMLText properties,
 per se, as because fields
 don't support these things (at least not yet).
 A field is more like a
 SimpleText window than like a Word window, in
 terms of the formatting
 options it supports: you can do character
 formatting, but although you can
 set alignment, tab stops, and margins
 field-wide, you can't set them for
 individual paragraphs.
 
 I don't suppose this observation really helps,
 in terms of getting the
 formatting you want to import from Word, but it
 may help clarify why some
 things are supported and others aren't, and
 help you predict what
 formatting will and won't transfer.
 
 I know that some of these paragraph formatting
 options for fields have been
 feature requested - because *I've* requested
 them ;-) - and I anticipate
 that if and when they're added to fields, the
 RTFText property will also be
 updated to support them.

how about using a field for each paragraph?

=
[EMAIL PROTECTED]http://www.erikhansen.org

__
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: you - the potential buyer

2003-07-19 Thread erik hansen
--- Klaus Major [EMAIL PROTECTED] wrote:

 Yo, my official URL for RunRev purposes is:
 
 www.major-k.de/revstart.html
 
 That will open the x-talk section directly in
 the frameset.
 
 I already started to translate the complete
 website (except one or two 
 things,
 that are not of interest to english speaking
 folks.
 Unfortunately the german folks are also not
 interested :-D

nice looking site. that splash of color in
the RunRev link graphic puts some Sonne in
what was otherwise, ich muss es sagen, a somewhat
grausam GUI. in fact that little bit of yellow
and brown humanizes the blue-red-white
combination.(apologies to France, UK, USA, etc.)

maybe RR could emulate this and add some
earth tones to the surround. this all may
seem obscure, but to me - the potential buyer
they have a visceral effect on purchasing
decisions.

Erik


=
[EMAIL PROTECTED]http://www.erikhansen.org

__
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: you - the potential buyer

2003-07-19 Thread Klaus Major
Hi Erik,

...
nice looking site. that splash of color in
the RunRev link graphic puts some Sonne in
:-)

what was otherwise, ich muss es sagen, a somewhat
grausam GUI. in fact that little bit of yellow
and brown humanizes the blue-red-white
combination.(apologies to France, UK, USA, etc.)


I cannot follow you here...

Except the fun page my headline-images are all greyscale jpgs...

What exactly are you talking about?

What graphics card are you using?
I noticed some evil color changes on windows... :-)
maybe RR could emulate this and add some
earth tones to the surround. this all may
seem obscure, but to me - the potential buyer
they have a visceral effect on purchasing
decisions.
Sorry, don't understand...?

Erik
What's up Erik?
Had a bad day? ;-)
It ain't THAT shabby :-)
Regards

Klaus Major
[EMAIL PROTECTED]
www.major-k.de
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: size of image

2003-07-19 Thread Dar Scott
On Saturday, July 19, 2003, at 02:16 PM, J. Landman Gay wrote:

On 7/19/03 2:23 PM, Dar Scott wrote:

How do I get the size of an image that has been squished or 
stretched?   The width and height are as stretched.  I want the 
pixel dimensions  of the original image.
the formattedWidth of img 1
the formattedHeight of img 1
Wow!  Thanks!  It makes sense once I think about it, but even though I 
searched through terms with image in the description, I skipped over 
those.

Dar Scott

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Magnifier (script!)

2003-07-19 Thread David Kwinter
 I guess the trick is in the updating process, so that the actual screen
 comes back when you quit dragging
 
 Ken N.
 
 ___
 use-revolution mailing list
 [EMAIL PROTECTED]
 http://lists.runrev.com/mailman/listinfo/use-revolution


Ken, make a new stack, make it big and put this into the stack script:

on moveStack
  if exists(image 1) then delete image 1
 
  put the rect of this stack into sRect
  hide stack me
  import snapshot from rect sRect
 
  put the height of image 1 into originalH
  put the width of image 1 into originalV
  set the height of image 1 to originalH*2
  set the height of image 1 to originalV*2
  show stack me
 
end moveStack   

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


New User Question, OSX, return in field

2003-07-19 Thread PBSI
Hi Folks,

As a newly licensed user of Revolution (thanks RunRev for the license 
changes) on OSX, can anyone tell me if there is an easy way to get a 
field to ignore the return key?  On OSX the return key is supposed to 
invoke the default button (which I have one of) but it doesn't seem to 
work in Revolution.

Thanks, Brian Maher

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: you - the potential buyer

2003-07-19 Thread Klaus Major
Am Sonntag, 20.07.03 um 00:08 Uhr schrieb erik hansen:

ok, the company page (GUI?) is a study in
greys. not so cheerful.
your RR page hase a link with a yellow pencil
and a light brownish hand around the RR logo.
this lights things up.
red-white-blue by itself lacks warmth (to me).
the flags of France UK USA are these colors.
the German flag seems warmer with the gold.
adding some color was a good call is what i
meant.
Erik
Aha! ;--)

Regards

Klaus Major
[EMAIL PROTECTED]
www.major-k.de
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Standalone with extra stacks

2003-07-19 Thread Barry Levine
This may sound strange but I've only been developing single-stack 
standalones. I've used text files to store various params.

I now have to create a three-stack solution; at least, I think three 
stacks is the proper design. I'd appreciate any advice  regarding the 
project as I describe it below:

Stack #1: Splash screen containing the standalone engine. No changes to 
this stack once it's compiled.

Stack #2: Sign-in stack containing a few buttons and a field. The 
buttons contain the code that adds/deletes user names to/from the 
field. Other code in the buttons will also create/delete folders named 
for each user.

Stack #3: The business part of the program containing a number of 
cards. Each card contains a few QT Player objects and the code 
contained in the stack (and/or buttons in the stack) will permit the 
user to link to photos or movies on the local hard drive.

This all seems quite straightforward to me except for one thing (which, 
as I indicated above, I've never done): What is the Transcript code I 
would use to call Stack #2 from Stack #1 and close Stack #1's window so 
it's not seen for the rest of the program?

Would this work?:

open stack stack #2
close stack stack #1
...or would this simply exit the program?

Should I just hide the window of Stack #1 (which is the standalone)?

As always, advice is gratefully appreciated.

Thanks,
Barry
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


re: Standalone with extra stacks

2003-07-19 Thread Barry Levine
I think I found the answer. Anyone care to confirm?

-- script of splash screen standalone (named Splash.rev)
on openStack
send Continue to me in 2 seconds
end openStack

on Continue
open stack Main.rev
close stack Splash.rev
end Continue


So the above seems to indicate that closing a stack (even though it contains the standalone engine) leaves the engine running. Correct?

Thanks,
Barry

Re: Rev 2.02/New pricing

2003-07-19 Thread Judy Perry
Unless, as Hypercard users have told a bazillion times, their app is
written with some toy tool...

:(

Judy

On Thu, 17 Jul 2003, Richard Gaskin wrote:

 It's not about developers.  It's about end-users.

 End-users don't generally care what their apps were made with so long as
 they provide a great software experience.



___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Update to which version?

2003-07-19 Thread Michael
Having purchased the sbe license with available updates for a 
year...when a bug fix is released and distributed, will this new 
pricing mean I will have to lose functionality if I want to update? At 
this point, I am able to build to linux, one of the facets of RR that 
appealed to me when I decided to buy the license.
 I hope I am not repeating something here that may have been already 
covered. If so, accept my apologies.

mike



___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Doc Nit: No mouseField function

2003-07-19 Thread Dan Shafer
The mouseStack function definition in the docs for 2.x refers to a 
mouseField function, which apparently does not exist.

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Standalone with extra stacks

2003-07-19 Thread Pierre Sahores
On Sun, 2003-07-20 at 02:12, Barry Levine wrote:
 This may sound strange but I've only been developing single-stack 
 standalones. I've used text files to store various params.
 
 I now have to create a three-stack solution; at least, I think three 
 stacks is the proper design. I'd appreciate any advice  regarding the 
 project as I describe it below:
 
 Stack #1: Splash screen containing the standalone engine. No changes to 
 this stack once it's compiled.
 
 Stack #2: Sign-in stack containing a few buttons and a field. The 
 buttons contain the code that adds/deletes user names to/from the 
 field. Other code in the buttons will also create/delete folders named 
 for each user.
 
 Stack #3: The business part of the program containing a number of 
 cards. Each card contains a few QT Player objects and the code 
 contained in the stack (and/or buttons in the stack) will permit the 
 user to link to photos or movies on the local hard drive.
 
 This all seems quite straightforward to me except for one thing (which, 
 as I indicated above, I've never done): What is the Transcript code I 
 would use to call Stack #2 from Stack #1 and close Stack #1's window so 
 it's not seen for the rest of the program?
 
 Would this work?:
 
 open stack stack #2
 close stack stack #1
 
 ...or would this simply exit the program?
 
 Should I just hide the window of Stack #1 (which is the standalone)?
 
 As always, advice is gratefully appreciated.
 
 Thanks,
 Barry
 
 ___
 use-revolution mailing list
 [EMAIL PROTECTED]
 http://lists.runrev.com/mailman/listinfo/use-revolution

Try, if needed :

Instead of close stack stack #1, close window the short name of stack
#1
-- 
Bien cordialement, Pierre Sahores

Serveurs d'applications  bases ACID SQL
Penser et produire l'avantage compétitif

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: Image recognition tool

2003-07-19 Thread Mark Powell
As I understand it, Revolution can ready binary data, which suggests there
that you would have the ability to compare two files.  Others would know
this better than I.

-Original Message-
From: Sannyasin Sivakatirswami [mailto:[EMAIL PROTECTED]
Sent: Saturday, July 19, 2003 8:20 PM
To: [EMAIL PROTECTED]
Subject: Image recognition tool


Probably too much to ask... but does anyone think that there would a 
way for revolution to determine if one image was a duplicated of 
another? I mean, not by file name but from the image data itself?


Sannyasin Sivakatirswami
Himalayan Academy Publications
at Kauai's Hindu Monastery
[EMAIL PROTECTED]

www.HimalayanAcademy.com,
www.HinduismToday.com
www.Gurudeva.org
www.Hindu.org

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Image recognition tool

2003-07-19 Thread Dar Scott
On Saturday, July 19, 2003, at 09:19 PM, Sannyasin Sivakatirswami wrote:

Probably too much to ask... but does anyone think that there would a 
way for revolution to determine if one image was a duplicated of 
another? I mean, not by file name but from the image data itself?
imageData(I1) = imageData(I2) and alphaData(I1) = alphaData(I2) and 
formatedWidth(I1) = formatedWidth(I2)

Just a wild guess.

I don't know how that would work with multiframe gifs.

Dar Scott

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: Image recognition tool

2003-07-19 Thread Vikram Singh
Siva,

I think if you use md5digest it may give you what you want.

Regards
Vikram

= Original Message From Sannyasin Sivakatirswami [EMAIL PROTECTED] =
Probably too much to ask... but does anyone think that there would a
way for revolution to determine if one image was a duplicated of
another? I mean, not by file name but from the image data itself?


Sannyasin Sivakatirswami
Himalayan Academy Publications
at Kauai's Hindu Monastery
[EMAIL PROTECTED]
 

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Magnifier

2003-07-19 Thread Ken Norris
Hi Dar,

 Date: Sat, 19 Jul 2003 01:26:19 -0600
 Subject: Re: Magnifier
 From: Dar Scott [EMAIL PROTECTED]

 The entry for 'import snapshot' has this syntax description:
 import snapshot [from rect[angle] top,left,bot,rt [of window
 windowID]]
 
 The example for taking a screenshot of a stack has this line:
 import snapshot from rect (the rect of stack My Stack)
 
 ...so I think the syntax should be this:
 import snapshot [from rect[angle] left,top,rt,bot [of window
 windowID]]
 
 ...which seems to work for me.
--
Right. The normal coordinate description for a rect is as you say, so the
TD is wrong the way it says it.

However, in many descriptions, any screen coordinate is, by definition,
always a pair of numbers usually drawn from what is usually called the
topLeft corner (pair) to the bottomRight cornewr (pair). Maybe that's where
the Dictionary description got off track.

Just guessing,
Ken N.

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: Image recognition tool

2003-07-19 Thread Vikram Singh
It will also allow you (after formatting) to maintain a list of human readable 
chunks of characters without necessarily maintaining the corresponding image 
in that environment (eg that image may be in one of many substacks which are 
not open). You can then compare the correspondingly formatted md5digest of 
incoming images with the list to know if a copy exists. I think searching 
through a few thousand lines will take less than a few seconds! Isnt rev 
powerful?

Regards

Vikram

= Original Message From Vikram Singh [EMAIL PROTECTED] =
Siva,

I think if you use md5digest it may give you what you want.

Regards
Vikram

= Original Message From Sannyasin Sivakatirswami [EMAIL PROTECTED] =
Probably too much to ask... but does anyone think that there would a
way for revolution to determine if one image was a duplicated of
another? I mean, not by file name but from the image data itself?


Sannyasin Sivakatirswami
Himalayan Academy Publications
at Kauai's Hindu Monastery
[EMAIL PROTECTED]


___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution