different windows in the same stack

2002-11-01 Thread yves COPPE
Hello,

I've tried to go to different cds in the same stack but don't reach my goal :

I'd like to go to some cds of the stack "as modal"
and some other cds of the same stack "as toplevel"

go to cd "one" of stack "myStack" as modal


when I'm on this cd, I have a btn with this script
go to cd "two" of stack "myStack" as toplevel


It makes problems.


Is it possible to do such a thing ?
--
Greetings.

Yves COPPE

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



Re: SQL connections

2002-11-01 Thread Alex Rice

On Friday, November 1, 2002, at 05:52  PM, Bernard Devlin wrote:


You will need to configure the Dsn (ODBC DataSource Name).  I know how 
to do
this on Win2k and Linux, but not on OS X.  It means you will need to 
have ODBC
drivers for the database you are using (unless you are using MySql, 
Oracle or
Valentina - in which case I believe you can make use of the connectors 
supplied
with Rev.)


Starting with Mac OS X 10.2, there is an ODBC Administrator app in 
/Applications/Utilities. I haven't used it, but would be *very* 
interested to hear how it goes and if you get Rev. working with ODBC on 
OS X.

The only time I've used ODBC before was on Windows and am familiar with 
setting up DSNs there. But on Unix/Mac OS there seems to be a panoply 
of different ODBC drivers and layers. Not sure where to start!

Alex Rice, Software Developer
Architectural Research Consultants, Inc.
[EMAIL PROTECTED]
[EMAIL PROTECTED]

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


Re: SQL connections

2002-11-01 Thread Bernard Devlin
I use this script in the onMouseUp event of button that gets a connection:

  put revdb_connections() into connectionList
  if connectionList is empty then
put the text of button btnDbType into DbType
put the text of field fdDsn into Dsn
put the text of field fdUsername into Username
put the text of field fdDsn into thePassword
get revdb_connect(DbType,Dsn,"",Username,thePassword)
wait 3 seconds -- not sure if it needs to wait as long as this
put revdb_connections() into connectionList
if connectionList is empty then
  answer "problem connecting to specified datasource"
 else
 set the cpConnNumber of field fdDsn to It  
 -- here the connection number is stored as a custom property so it
can be grabbed when needed
end if
  end if

You will need to configure the Dsn (ODBC DataSource Name).  I know how to do
this on Win2k and Linux, but not on OS X.  It means you will need to have ODBC
drivers for the database you are using (unless you are using MySql, Oracle or
Valentina - in which case I believe you can make use of the connectors supplied
with Rev.)

Here is the code you can put in a handler to take the SQL from a field, run it
against the ODBC connection, and display the result in another field:

  put the cpConnNumber of field fdDSN into theConnection
  get revdb_querylist(comma,return,theConnection,field "fdQuery")
  put it into field fdResultset

Hope this helps.

> > Does anyone have a simple, straightforward example of connecting to
> > an SQL data base file to read or write text  data?
> Also looking for this, please...
> Setting up OBDC databases for multiplaform access does not seem obvious to
> me... :-(
> 
> André
> 
> ___
> 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



NEW! Eps Import version 03

2002-11-01 Thread Alejandro Tejada
Hi everyone on the list!

Download the new version of the utility stack
EpsImportV03p from:

http://ffc.virtualave.net/revEpsImportV03p.zip
http://ffc.virtualave.net/mcEpsImportV03p.zip

This version is a whole step closer to bring
more of the Adobe Illustrator files to Revolution and
MetaCard.
Now you could import linked Png, Gif and Jpg images
from your designs. There are checkbuttons that give
you options for locking the screen, flip the graphics,
group the objects imported (images and graphics),
import the graphics as outlines (without fill colors),
 import graphics with their color fills, import all
graphics and linked images and select your own folder
for the linked images. And other options for importing
"placed" png images.

If you download version 02 of this tool, you'll like
better version 03. (Tool itself only 50k, but download
zip file is 315 k with the samples files)

Alejandro Tejada Capellan



__
Do you Yahoo!?
HotJobs - Search new jobs daily now
http://hotjobs.yahoo.com/
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution



Re: Way to ensure Rev app stays on top?

2002-11-01 Thread RGould8
Whoops - - - you're right - - that would be good to know.

This is for Mac OS 8/9 and Mac OS X.

In a message dated 11/1/02 3:17:06 PM, [EMAIL PROTECTED] writes:


Rob,

Is this (a) Mac-only, and (b) OS X or OS 9? Knowing this might help in
finding a solution...

Ken Ray
Sons of Thunder Software
Email: [EMAIL PROTECTED]
Web Site: http://www.sonsothunder.com/




Re: Way to ensure Rev app stays on top?

2002-11-01 Thread Ken Ray
Rob,

Is this (a) Mac-only, and (b) OS X or OS 9? Knowing this might help in
finding a solution...

Ken Ray
Sons of Thunder Software
Email: [EMAIL PROTECTED]
Web Site: http://www.sonsothunder.com/

- Original Message -
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, November 01, 2002 1:59 PM
Subject: Way to ensure Rev app stays on top?


> I've created a Revolution app that launches Internet Explorer.   This is
> fine, except that it puts IE on top of my Rev app.   My Rev app is only
200
> pixels wide.   What I'd like to do, if possible, is have my Rev app appear
to
> the left of the IE window - - - My Rev app would be at the very left edge
of
> the screen, from 0 - 200 pixels, and then I'd like for IE to be positioned
> from say, 210 pixels and beyond, to the right-edge of the screen.
>
> Does anyone know if there's a way to do this?   I know how to position the
> stage of my Revolution app to just the correct position.   I'm assuming
I'd
> have to use some sort of Applescript calls to position IE.
>
> - Rob
>

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



Re: Way to ensure Rev app stays on top?

2002-11-01 Thread Josh Dye
I would also like to know how to do this. :)

 - Josh Dye


- Original Message -
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, November 01, 2002 12:59 PM
Subject: Way to ensure Rev app stays on top?


I've created a Revolution app that launches Internet Explorer.  This is
fine, except that it puts IE on top of my Rev app.  My Rev app is only 200
pixels wide.  What I'd like to do, if possible, is have my Rev app appear to
the left of the IE window - - - My Rev app would be at the very left edge of
the screen, from 0 - 200 pixels, and then I'd like for IE to be positioned
from say, 210 pixels and beyond, to the right-edge of the screen.

Does anyone know if there's a way to do this?  I know how to position the
stage of my Revolution app to just the correct position.  I'm assuming I'd
have to use some sort of Applescript calls to position IE.

- Rob

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



Way to ensure Rev app stays on top?

2002-11-01 Thread RGould8
I've created a Revolution app that launches Internet Explorer.   This is fine, except that it puts IE on top of my Rev app.   My Rev app is only 200 pixels wide.   What I'd like to do, if possible, is have my Rev app appear to the left of the IE window - - - My Rev app would be at the very left edge of the screen, from 0 - 200 pixels, and then I'd like for IE to be positioned from say, 210 pixels and beyond, to the right-edge of the screen.   

Does anyone know if there's a way to do this?   I know how to position the stage of my Revolution app to just the correct position.   I'm assuming I'd have to use some sort of Applescript calls to position IE.

- Rob


Re: Picture Brightness on Windows

2002-11-01 Thread Trevor DeVore
Scott,

I implemented this technique and it worked great for what we needed.  I 
had a slider that would change the blend of a white image between 100% 
and 80% in order to make the image look lighter.  Thanks.

Trevor DeVore
Blue Mango Multimedia
[EMAIL PROTECTED]

On Friday, October 25, 2002, at 03:51  PM, Scott Rossi wrote:

In any event, you can do some hacked display manipulation using a
translucent image object (white, black or grey) and changing its 
blendLevel.
There are also ink effects that can be employed to achieve other color 
mix
variations.  Off hand I would guess that a brightness slider would 
display a
translucent white overlay for values from 0 to +100, and black for 0 to
-100. With some experimentation, you might be able to achieve what you 
need.

Regards,

Scott Rossi
Creative Director
Tactile Media, Multimedia & Design
-
E: [EMAIL PROTECTED]
W: http://www.tactilemedia.com

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



Re: UPC or Barcode Scanners

2002-11-01 Thread Ray Bennett
I use a WASP USB barcode scanner in a HyperCard application that I'm 
porting to Rev.  Haven't ported it yet, but see no reason it _shouldn't_ 
be straightforward.  The trick is that the scanner is programmable. 
Meaning that you can program it to send a preamble (read, "handler 
name") when it reads a code.  For me, I just named the preamble "wasp".  

Then, in my Home stack (main stack in Rev), I have the handler  "on wasp 
barcode".  

When you "gun" a code, the barcode reader sends keyboard input that 
looks like this:
   wasp "Francis Bacon 125"

I put the "on wasp" handler at the top of the hierarchy so that all of 
my substacks could avail themselves of it.  

Hope this helps.
Ray

[EMAIL PROTECTED] wrote:

Has anyone used Revolution to capture input from barcode readers/scanners
connected via serial or USB? I have tried without success. The unit beeps,
telling me the UPC is valid, but I get no text in my field. I have tried
the examples on opening and reading from serial ports in the Rev help. I
also tried the TEST SERIAL Rev app that was provided here on the list
several months ago. Is there a preferred type or brand of UPC scanner that
works best with Rev? Is there some sample scripts available that does this
sort of thing that I could use as a guide/tutorial?

Kind Regards,
Roger Eller
[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



UPC or Barcode Scanners

2002-11-01 Thread Roger . E . Eller

Has anyone used Revolution to capture input from barcode readers/scanners
connected via serial or USB? I have tried without success. The unit beeps,
telling me the UPC is valid, but I get no text in my field. I have tried
the examples on opening and reading from serial ports in the Rev help. I
also tried the TEST SERIAL Rev app that was provided here on the list
several months ago. Is there a preferred type or brand of UPC scanner that
works best with Rev? Is there some sample scripts available that does this
sort of thing that I could use as a guide/tutorial?

Kind Regards,
Roger Eller
[EMAIL PROTECTED]




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



Re: iCalendar/vCalendar (OT: joke)

2002-11-01 Thread Dar Scott

On Wednesday, October 30, 2002, at 02:27 PM, Sjoerd Op 't Land wrote:


I don't know what iCalendar/vCalendar is, but I think it will have 
units
of conductance, the inverse of resistance (ohms).
ohms^-1


I have seen mho, siemen and Siemen.  The last has caused me confusion, 
because the AV industry often uses S for seconds instead of s.

(although V isn't the symbol for voltage anymore, it now is U)


Now I feel really old.

Actually, I'm very glad you mentioned this.  I just got my new 
programmable power supply (to be controlled with Revolution, of course), 
looked at the manual, and--yep!--there is U!

Dar Scott

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


Re: usage of "this"

2002-11-01 Thread Rob Cozens
Hope this helps, check out Rob's original post and sorry for stealing your
brain-work Rob.


That seems like the answer, but I just checked and my dynamicPaths 
properties are set to false in both of the stacks. Or do you think I 
should be running with dynamicPaths set to true?

Jim, Alex, et al:

If it's the answer, I've no problem with others sharing it; but the 
dynamicPaths issue seems to deal with cards, not stacks.
--

Rob Cozens
CCW, Serendipity Software Company
http://www.oenolog.com/who.htm

"And I, which was two fooles, do so grow three;
Who are a little wise, the best fooles bee."

from "The Triple Foole" by John Donne (1572-1631)
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: SQL connections

2002-11-01 Thread Andre Rombauts
Le 01/11/2002 14:57, Ronald Zellner à [EMAIL PROTECTED] a écrit:

> Does anyone have a simple, straightforward example of connecting to
> an SQL data base file to read or write text  data?
Also looking for this, please...
Setting up OBDC databases for multiplaform access does not seem obvious to
me... :-(

André

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



SQL connections

2002-11-01 Thread Ronald Zellner
Does anyone have a simple, straightforward example of connecting to 
an SQL data base file to read or write text  data?

Also, related to the revdatabase.rev example (from the Revolution 
site) where you can send a  graphic file to a DB, is it also possible 
to send  a graphic object  that is on a card to a  DB?

Thanks,

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


Server maintenance

2002-11-01 Thread Kevin Miller
Hi,

We will be taking everything offline at 1:30PM this afternoon UK time
(that¹s in about 45 minutes) for anything up to an hour for essential
maintenance.  We need to rearrange some aspects of the server to be certain
that we don't have a repeat of the problem that took the server down for a
few hours the other day.

Kind regards,

Kevin

Kevin Miller <[EMAIL PROTECTED]> 
Runtime Revolution Limited - The Solution for Software Development
Tel: +44 (0) 870 747 1165.  Fax: +44 (0)1639 830 707.

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



Stack compare utility (scripts)

2002-11-01 Thread Ben Rubinstein
Has anyone done a utility to compare two stacks (my current interest is in
scripts); or has anyone done a utility to output a neutral description of a
stack (eg in XML format)?

Any suggestions, tips, links or utilites gratefully received,

 
  Ben Rubinstein   |  Email: [EMAIL PROTECTED]
  Cognitive Applications Ltd   |  Phone: +44 (0)1273-821600
  http://www.cogapp.com|  Fax  : +44 (0)1273-728866


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



Sending large files to Runrev

2002-11-01 Thread Heather Williams
Greetings,

Some of you may have noticed that if you sent a message to runrev or the
lists a day or so back, it returned to you as temporarily undeliverable.
This was owing to an unfortunate incident with some *very* large files
somebody unexpectedly sent us. Our server was unable to cope. We think all
the delayed mail has now arrived, and no mail was permanently lost.

We would be grateful if, before sending any unusually large files, you
checked with the recipient first. We can always make arrangements to receive
something big if we know it's coming.

Whilst waking up to a completely empty inbox makes a refreshing change, it's
not something I'd like to experience every day...

Regards,

Heather
-- 
Heather Williams <[EMAIL PROTECTED]> 
Runtime Revolution Ltd.
Tel: +44 (0) 131 7184333 Fax: +44 (0)1639 830707
Ten Thumbs Typing Tutor Teach your Fingers to Dance

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