Re: URGENT MAC OS X Problems

2003-07-07 Thread Signe Marie Sanne
the command : "create folder"

1) works fine when I create a folder
BUT
2) doesn't work if the new created folder has a diacritical char
for example :

create folder "../test" works fine

create folder "../répétition" doesn't work  (if I write 
"repetition" (without the "é") it's good)

Yves, I know that you are on a Mac OSX but perhaps this may give you some clue:

On Mac OS 9.2.2 using MetaCard 2.5 the first time you use create 
'folder "../répétition" ' the folder is actually created (at the same 
level as your engine).

On Mac OS 9.2.2 using Revolution 2.0r2 the first time you use create 
'folder "../répétition" ' the folder is created  (at the same level 
as your engine).

If you then try to send the same script again you get an error: 
can't create that directory.

--

1. amanuensis Signe Marie Sanne  e-mail: [EMAIL PROTECTED]
Romansk Institutttel:  +47 55 58 21 27
Oysteins gt. 1   
5007 Bergen	 http://www.hf.uib.no/hfolk/mlab/hjem/default.html
Norway

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


Re: URGENT MAC OS X Problems

2003-07-07 Thread Yves COPPE
Le mardi, 8 juil 2003, à 05:48 Europe/Brussels, Rob Cozens a écrit :

2° 3.  What happens if you use the Rev Toolbar to turn off messages 
before opening your stack?  If the problem goes away, it's in your 
handlers (preOpenStack, openStack, openBackground, openCard ??).


Earlier, I was able to toggle the menu in this stack...
Now when I turn on the menu before opening the stack, my splash screen 
appears and all stays blocked...
I have to "force quit"

Greetings.

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


Re: re Dial via built in modem

2003-07-07 Thread Dar Scott
On Sunday, July 6, 2003, at 02:21 AM, Scott Rankin wrote:

I found your posting of Oct 19 last year when trying to solve the 
problem of dialing the internal modem via applescript (OS X).

Have you found a solution?
I currently am having trouble with using the internal modem with 
Revolution 2.0.1 on OS X, but am hopeful that this will be fixed soon.  
It might be your internal modem works just fine.  If so, or when this 
is resolved, you should be able to do some simple dialing and 
touch-tone tasks from within your handlers.  In the mean time, I, too, 
would be interested in what can be done with the internal modem using 
AppleScript.

Dar Scott

**
  Dar Scott Consulting Programming Services [EMAIL PROTECTED]
**
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: Equivalence to the SuperCard function call "via" object

2003-07-07 Thread Ken Ray
Joel,

The value() function is what you need, but to include parameters, you
need to include them like a "do". That is, if the parameter is a
variable you need to "&" it. I ran your test like this:

Script of button 1:
---
on mouseUp
  put "Hello" into tMyVar
  put "Goodbye" into tAnotherVar
  answer value("getSomeData(1,the date," & tMyVar & "," & tAnotherVar &
")",btn 2)
end mouseUp

Script of button 2:
---
function getSomeData p1,p2,p3,p4
  -- p1 is a number, p2 is a date, p3 is a string, p4 is a string
  return p1&&p2&&p3&&p4
end getSomeData

When I clicked button 1, I got:

  1 7/7/03 Hello Goodbye

(which is what I expected). So variables are not evaluted before they
are sent to the object - you need to force them to evaluate by "&"-ing
them as in my example above.

Does this help?

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


> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf Of 
> Joël Guillod
> Sent: Monday, July 07, 2003 12:00 PM
> To: [EMAIL PROTECTED]
> Subject: Re: Equivalence to the SuperCard function call "via" object
> 
> 
> I am trying to do what Supercard do with the function...via. 
> That is I want that the function is evaluated by the script 
> of the specified object.
> 
> E.g.:
> 
> In Supercard you can write :
> 
>  put getSomeData(1,the date,tMyVar,tAnOtherVar) via btn 
> "MyButton" of \
>cd 10 of stack "someStack" into tMyResult
> 
> How to translate that into rev?
> 
>  -- does not work:
>  send "get getSomeData(1,the date,tMyVar,tAnOtherVar)" to \
>btn "MyButton" of cd 10 of stack "someStack" into 
> tMyResult  put it into tMyResult
> 
>  -- does not work or dont give the expected result:
>  get value("getSomeData(1,the date,tMyVar,tAnOtherVar)", \
>btn "MyButton" of cd 10 of stack "someStack")
>  put it into tMyResult
> 
>  -- work around but not elegant:
>  -- getSomeData is no more a function but a handler...
>  call "getSomeData "1,the date,tMyVar,tAnOtherVar" of \
>btn "MyButton" of cd 10 of stack "someStack"
>  put the result into tMyResult
> 
> Of course, putting the script of the target object in the 
> message path is some other possibility but I would exclude 
> this for implementation reason.
> 
> Maybe the "function via object" a feature for the wish list?
> 
> Or did I miss something?
> 
> Joel
> 
> > Message: 9
> > Date: Sat, 5 Jul 2003 06:40:44 -0700
> > To: [EMAIL PROTECTED]
> > From: "Jeanne A. E. DeVoto" <[EMAIL PROTECTED]>
> > Subject: Re: Equivalence to the SuperCard function call "via" object
> > Reply-To: [EMAIL PROTECTED]
> > 
> > At 1:30 AM -0700 7/5/03, Joël Guillod wrote:
>  Is there an equivalent to the following Supercard statement?
>  
>  functionName([paramList]) via object
> >> 
> >> YES I did but it does not behave as described in the docs, 
> only the 
> >> "me" keyword is related to the optional object param.
> > 
> > 
> > What exactly are you trying to do?
> > 
> > --
> > Jeanne A. E. DeVoto ~ [EMAIL PROTECTED]
> > Runtime Revolution Limited - Software at the Speed of Thought 
> > http://www.runrev.com/
> 
> ___
> 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: URGENT MAC OS X Problems

2003-07-07 Thread Rob Cozens
2° 3.  What happens if you use the Rev Toolbar to turn off messages 
before opening your stack?  If the problem goes away, it's in your 
handlers (preOpenStack, openStack, openBackground, openCard ??).

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: Equivalence to the SuperCard function call "via" object

2003-07-07 Thread Chipp Walters
Joël,

Check out the CALL and the VALUE commands. I believe CALL may do what you're
describing.

-Chipp

> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of Joël Guillod
> Sent: Monday, July 07, 2003 12:00 PM
> To: [EMAIL PROTECTED]
> Subject: Re: Equivalence to the SuperCard function call "via" object
>
>
> I am trying to do what Supercard do with the function...via. That
> is I want
> that the function is evaluated by the script of the specified object.
>
> E.g.:
>
> In Supercard you can write :
>
>  put getSomeData(1,the date,tMyVar,tAnOtherVar) via btn "MyButton" of \
>cd 10 of stack "someStack" into tMyResult
>
> How to translate that into rev?
>
>  -- does not work:
>  send "get getSomeData(1,the date,tMyVar,tAnOtherVar)" to \
>btn "MyButton" of cd 10 of stack "someStack" into tMyResult
>  put it into tMyResult
>
>  -- does not work or dont give the expected result:
>  get value("getSomeData(1,the date,tMyVar,tAnOtherVar)", \
>btn "MyButton" of cd 10 of stack "someStack")
>  put it into tMyResult
>
>  -- work around but not elegant:
>  -- getSomeData is no more a function but a handler...
>  call "getSomeData "1,the date,tMyVar,tAnOtherVar" of \
>btn "MyButton" of cd 10 of stack "someStack"
>  put the result into tMyResult
>
> Of course, putting the script of the target object in the message path is
> some other possibility but I would exclude this for implementation reason.
>
> Maybe the "function via object" a feature for the wish list?
>
> Or did I miss something?
>
> Joel
>
> > Message: 9
> > Date: Sat, 5 Jul 2003 06:40:44 -0700
> > To: [EMAIL PROTECTED]
> > From: "Jeanne A. E. DeVoto" <[EMAIL PROTECTED]>
> > Subject: Re: Equivalence to the SuperCard function call "via" object
> > Reply-To: [EMAIL PROTECTED]
> >
> > At 1:30 AM -0700 7/5/03, Joël Guillod wrote:
>  Is there an equivalent to the following Supercard statement?
> 
>  functionName([paramList]) via object
> >>
> >> YES I did but it does not behave as described in the docs,
> only the "me"
> >> keyword is related to the optional object param.
> >
> >
> > What exactly are you trying to do?
> >
> > --
> > Jeanne A. E. DeVoto ~ [EMAIL PROTECTED]
> > Runtime Revolution Limited - Software at the Speed of Thought
> > http://www.runrev.com/
>
> ___
> 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


selectionChanged for empty selection?

2003-07-07 Thread Alex Rice
Why isn't a selectionChanged message sent by a list field when the 
selection goes from one or more lines to empty lines? For example 
Option-clicking on a Mac to deselect a line in a list field.

I can work around it by handling mouseUp, but this seems to reduce the 
utility of the selectionChanged message.

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: Open driver?

2003-07-07 Thread Dar Scott
On Sunday, July 6, 2003, at 03:27 AM, Christoph Pastl wrote:

How can I connect to my virtual serial port?
From the TD on "open file":

You can use the open file command to open a serial port on Mac OS or 
Windows systems. On Mac OS systems, specify either “printer:” or 
”modem:“. On Windows systems, specify either “COM1:”, “COM2:”, or up 
to “COM9:”. Set the serialControlString property before opening the 
port to specify the baud rate and other settings.
From the TD on "printer:":

To use the modem port on Mac OS systems, use the modem: keyword. 
(Revolution does not support additional serial ports.) To use serial 
ports on Windows systems, use the COM1: through COM9: keywords.
From the TD on "open driver":

Changes to Transcript:
Support for using serial drivers with OS X systems was added in 
version 2.0.
I think this says that you can't open your serial port on Mac OS 9, 
though I think you have a chance if you can convince it to look like 
the printer port.

Dar Scott

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


Re: [ANN] Game Available for Test

2003-07-07 Thread J. Landman Gay
On 7/7/03 11:36 AM, Glasgow David wrote:

Yes it looks fine indeed.

But..Jacqueline's comments make me worry that I don't understand
passwords and locking like I thought.
The first thing I did was try to see how he did that lovely whizzing
text.  How is it that I can browse and even copy all of the scripts?
Is this not what you mean by "explore"?
I think you probably understand passwords just fine. What happened was 
that Scott first sent out a password-protected stack, and almost 
immediately afterward replaced it with a non-passworded copy. The one I 
downloaded the first time was password-protected (and the scripts could 
not be opened or viewed.) But when I downloaded another copy the next 
day, the password had been removed. The second copy is the one you 
probably were viewing.

So you are not going crazy.

--
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: URGENT MAC OS X Problems

2003-07-07 Thread Alex Rice
On Monday, July 7, 2003, at 12:47  PM, Yves COPPE wrote:
the stack is about 5.6 MBytes
where can I see the amount of RAM allowed on MAC OS X ???
my computer has 768 MBytes physical RAM 
I would rule this out. You have plenty of RAM. Unless you are editing 
some DVDs in the background or something :-)

Mac OS X uses it's "virtual memory" all the time. Virtual memory 
includes physical RAM + disk space as overflow RAM. The effect is that 
Mac OS X will never run out of memory, instead it will start paging 
memory to disk and slowly churn churn churn until it's dead in the 
water.

Use Utilities/Process Viewer.app to see how much memory an app is 
using. **

Use the terminal command vm_stat for arcane information about the 
virtual memory system.

** It might be hard to separate your stack's memory usage from 
Revolution unless you build a standalone and run it.

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: URGENT MAC OS X Problems

2003-07-07 Thread Klaus Major
Bon soir Yves,

Le lundi, 7 juil 2003, à 20:09 Europe/Brussels, Klaus Major a écrit :

Bon soir Yves,

SUCCESS!!! :-D

This worked fine on my OS X 10.2.6 RR 2.01:

...
get shell("mkdir" && "répétition")
...
mkdir = make directory :-)
I'm proud of me :-)

How can I make a full pathname
for example : users//Documents/myData/Répétition
with this command ??? get shell(...)
Just like any other path in RR...

There are some Unix related goodies that you can use.

Like $HOME or $USER

Try this in the msg:

put $HOME

will give the path to your home directory

and

put $USER

will give the username of the currently logged-in user

So you can create a path like in your example:

...
get shell("mkdir" && $HOME & "/Documents/" & "répétition")
...
See also the info about "specialfoldernames" on Ken Rays website!

How can you explain that create folder doesn't work but rename folder
without diacritical chars to a folder with diacritical chars do work ?
Not at all ;-)

Hope that helps.

Greetings.

Yves COPPE
[EMAIL PROTECTED]
Au revoir...

Regards

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


Debugger Testing

2003-07-07 Thread Edwin Gore
Okay...

I'm beginning to feel like maybe I'm going crazy, since I can't believe other people 
would not be inconvenienced by step-over in the 2.01 debugger not working.

Therefore, I have devised a test - if you download 

http://www.shinra.com/debugtest.rev

and run it you will see a stack with a single button on it. Turn on the debugger, and 
click the button. The debugger will open, and if you click on on the Step Over button 
in the debugger, you should remain in the script for the button, click  "step Over" a 
few times, and then the name of the button should change.

What I am getting instead, on all of my machines, even after uninstalling and 
reinstalling, is that I click step over, and when it gets to the function, it steps 
into it.

I KNOW that step over was working before - I just don't know if it was in the beta, or 
in 2.0.

If a couple of people could try this stack to verify that it's a problem for them, I 
would really appreciate it.

Also, if anyone still has a copy of the installer for the pre-release 2.0, I would 
appreciate the opportunity to experiment with it as well...

I NEED to be able to debug...

Thanks,

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


Re: URGENT MAC OS X Problems

2003-07-07 Thread Yves COPPE
Le lundi, 7 juil 2003, à 20:09 Europe/Brussels, Klaus Major a écrit :

Bon soir Yves,

SUCCESS!!! :-D

This worked fine on my OS X 10.2.6 RR 2.01:

...
get shell("mkdir" && "répétition")
...
mkdir = make directory :-)





How can I make a full pathname
for example : users//Documents/myData/Répétition
with this command ??? get shell(...)
How can you explain that create folder doesn't work but rename folder 
without diacritical chars to a folder with diacritical chars do work ?

Greetings.

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


Re: URGENT MAC OS X Problems

2003-07-07 Thread Yves COPPE
Le lundi, 7 juil 2003, à 20:00 Europe/Brussels, Rob Cozens a écrit :

Salut, Yves.

Sorry to hear you are (a) having difficulties and (b) having problems 
getting answers.

I don't have answers; but suggestions as to what I would try next:

1° 1.  Try creating a folder without diacriticals and renaming it.

strange but it works...

1° 2.  Try creating a folder with diacriticals in the OS or another 
app [probably dumb; but I'm an ignorant Anglo with no experience in 
this area   :{`) ]

without problem
2° 1.  Are you seeing the OS X beach ball spinning while this happens?
NO
2° 2.  How does the size of the stack, + any images or other resources 
that load with it, compare to the amount of physical RAM available 
after allowing for the OS?

the stack is about 5.6 MBytes
where can I see the amount of RAM allowed on MAC OS X ???
my computer has 768 MBytes physical RAM 

Hope this helps a little.
--

Greetings.

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


Re: Equivalence to the SuperCard function call "via" object

2003-07-07 Thread Richard Gaskin
Joël Guillod wrote:

> -- does not work or dont give the expected result:
> get value("getSomeData(1,the date,tMyVar,tAnOtherVar)", \
> btn "MyButton" of cd 10 of stack "someStack")
> put it into tMyResult

What is the desired result?

-- 
 Richard Gaskin 
 Fourth World Media Corporation
 Developer of WebMerge 2.2: Publish any database on any site
 ___
 [EMAIL PROTECTED]   http://www.FourthWorld.com
 Tel: 323-225-3717   AIM: FourthWorldInc

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


Re: Image Problems: Download available

2003-07-07 Thread Ken Norris
Hi Richmond,

> From: "Mathewson" <[EMAIL PROTECTED]>
> Subject: Image Problems: Download available
> Date: Mon, 07 Jul 2003 06:02:19 -0400
> 
> Dear All,
> Just uploaded a stack to my website:  IMAGE CONVERTER.REV
> (soon to receive an Oscar for
> originality in naming programs) - this will import various
> image formats (including the MAC-specific PICT format) and
> export them in JPEG or PNG format.
> 
> Download it, Play with it, Throw it away..
--
I tried it with my stack, but the image, which was a shaded purple PICT got
changed to a solid green JPEG., i.e., not the same image as the PICT at all.

Ken N.

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


Re: URGENT MAC OS X Problems

2003-07-07 Thread Rob Cozens
1° 3.  Try creating a folder with diacriticals using AppleScript.
--
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: URGENT MAC OS X Problems

2003-07-07 Thread Klaus Major
Bon soir Yves,

SUCCESS!!! :-D

This worked fine on my OS X 10.2.6 RR 2.01:

...
get shell("mkdir" && "répétition")
...
mkdir = make directory :-)

Hope that helps.

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


Re: URGENT MAC OS X Problems

2003-07-07 Thread Klaus Major
Bon soir Yves,

Hello list again

PLEASE HELP HELP HELP
don't panic :-)

...and get your towel... :-)

I've send questions earlier without answers
So I come again...
Working on Mac OSX 10.2.6 FR and Rev 2.0.1
1°
I have a problem I didn't know with Rev 1.1.1
the command : "create folder"

1) works fine when I create a folder
BUT
2) doesn't work if the new created folder has a diacritical char
for example :

create folder "../test" works fine

create folder "../répétition" doesn't work  (if I write  "repetition" 
(without the "é") it's good)

what to do ?
How can I create a folder with french chars ???
I just tested it and one can create a folder with that name in the 
finder!

But the engine refuses to create a folder with accents in its name.

So i think it may be possible with "shell" somehow, but don't know 
how...

Can someone (with more knowledge about shell commands) provide a hint
in favour of Yves health? ;-)
Thanks a lot.

2°
Is it normal that when I ask the "script edit mode" item in the 
develpment menu, it takes about 1/2 hour to toggle ?
Sorry, no idea, but really sounds not too normal... :-(

Thanks.

Greetings.

Yves COPPE
[EMAIL PROTECTED]
Regards

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


Re: URGENT MAC OS X Problems

2003-07-07 Thread Rob Cozens
Salut, Yves.

Sorry to hear you are (a) having difficulties and (b) having problems 
getting answers.

I don't have answers; but suggestions as to what I would try next:

1° 1.  Try creating a folder without diacriticals and renaming it.

1° 2.  Try creating a folder with diacriticals in the OS or another 
app [probably dumb; but I'm an ignorant Anglo with no experience in 
this area   :{`) ]

2° 1.  Are you seeing the OS X beach ball spinning while this happens?

2° 2.  How does the size of the stack, + any images or other 
resources that load with it, compare to the amount of physical RAM 
available after allowing for the OS?

Hope this helps a little.
--
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: Image converters

2003-07-07 Thread Ken Norris
H i Richmond,

> From: "Mathewson" <[EMAIL PROTECTED]>
> Subject: Image converters
> Date: Mon, 07 Jul 2003 03:22:56 -0400
> 
> If you have a problem converting images on a Macintosh
> (why???) the place to look for image converters is
> 
> http://www.versiontracker.com
> 
> if you are poor / tight-fisted like me there are quite a
> few FREE widgets around that can do the trick.
--
Well, it's not that I can't convert an image, it's that the Rev dialog asks
for it, but won't do it. I can only assume it's a bug, or is otherwise
broken, because it simply doesn't work.

Also, why don't the ink properties work on PICT images? I couldn't find any
documentation concerning this.

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


URGENT MAC OS X Problems

2003-07-07 Thread Yves COPPE


Hello list again

PLEASE HELP HELP HELP

I've send questions earlier without answers
So I come again...
Working on Mac OSX 10.2.6 FR and Rev 2.0.1

1°
I have a problem I didn't know with Rev 1.1.1
the command : "create folder"

1) works fine when I create a folder
BUT
2) doesn't work if the new created folder has a diacritical char
for example :

create folder "../test" works fine

create folder "../répétition" doesn't work  (if I write  "repetition" 
(without the "é") it's good)

what to do ?
How can I create a folder with french chars ???
2°
Is it normal that when I ask the "script edit mode" item in the 
develpment menu, it takes about 1/2 hour to toggle ?
I have this problem with a big stack (a main stack with many 
substacks), no problems with smaller stacks

Now it's so serious I cannot toggle anymore When I ask "script edit 
mode", the rev appl "quit" and return to finder
But I can further use the stacks when I restart Rev and further write 
scripts but I cannot debug...



PLEASE HELP...

Thanks.

Greetings.

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


Re: RevJournal is "Live"!

2003-07-07 Thread Ken Norris
on 7/7/03 10:10 AM, [EMAIL PROTECTED] at
[EMAIL PROTECTED] wrote:
Hello Alan,

> Date: Mon, 07 Jul 2003 09:49:14 -0400
> Subject: RevJournal is "Live"!
> From: Alan Golub <[EMAIL PROTECTED]>

> StoryCard Software LLC is pleased to announce that revJournal is now live a=
> t
> http://www.revjournal.com.
--
Nice work, and needed, too. I wish you all success. I became a member just
now.

Ken N.

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


Re: use-revolution digest, Vol 1 #1569 - 14 msgs

2003-07-07 Thread Klaus Major
Hi Damon,

It's a little weird when you get into this area. One of the best  
ways to make Chapter Tracks in a Quicktime movie is to set cuePoints  
in an audio or video editor then save the file.  This puts a text  
track into the movie with all the start times for each chapter, but  
does not set them as chapter tracks. Then you can open the movie in  
Quicktime Pro and get movie properties and select the text track in  
the pulldown menu then select make Chapter tracks from the properties  
pulldown. It will want you do associate the new chapter tracks with  
either the video or audio tracks... choose either one and then save...  
BAM now the movie has chapter tracks. I've tried some of the Chapter  
Track editors out there, but they don't seem to create the desired  
results like the above method does.

Director works with chapter tracks using cuePoint statements. Director  
automatically reads the text track of the movie whether it's set to be  
chapters or not, and then allows you to navigate the chapters based on  
the cuePoints. iShell automatically shows chapter tracks as parameters  
in it's UI.

The cool thing about Chapter Tracks and cuePoints is that you can  
write scripts that are universal to any movie, allowing you to  
navigate forward and backwards and even stop without knowing exact  
times. Very handy and reusable. And way better than trying to read the  
text file into an array and then use them.

I'm new to Rev so i don't know much about callBacks... is there a good  
resource for this? do you think callbacks can be used in a similar  
manner

any help would be great
take a look at this little stack:

The Mistery of the callbacks v1.0

You can download it at:

http://www.runrev.com/Revolution1/developercentral/ 
usercontributions.html

waaay doown the page :-)

That should get you started with "callbacks"

Drop a line if you need more info/assistance...

-d
Regards

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


ODBC on MacOSX?

2003-07-07 Thread Joël Guillod
I got a "revdberr,invalid database type" when calling:

   revOpenDatabase("ODBC",...)

I installed the last Complete MySQL package from Server Logistics and the
ODBC seems to work with the test application under Terminal.

After a long browse in the web, I have not found what's happening. MySQL
works just fine with the revOpenDatabase("mysql",...) but how can I set up
the ODBC so it actually works with Rev?

Thanks for helping!

Joel

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


Re: Image problems

2003-07-07 Thread Ken Norris
Thanks Scott,

I still have a couple questions.

> Date: Sun, 06 Jul 2003 23:41:20 -0700
> Subject: Re: Image problems
> From: Scott Rossi <[EMAIL PROTECTED]>
> 
> Recently, Ken Norris wrote:
> 
>> I imported a pict image and Rev asked if I wanted to convert it, so I chose
>> to convert to a PNG image.
>> 
>> Nothing happened. Why not?
>> 
>> I tried again, but this time I left it as a Pict (Mac only) image. It
>> imported OK, but Inks refuse to work. Why not?
>> 
>> How do I fix these problems?
> 
> Can you convert the PICT to PNG/GIF/JPEG before importing?
--
Yes, but, then, what is the purpose of the convert dialog? Is it broken? A
known bug?

Do ink settings work only in PNG, GIF, or JPEG and _not_ PICT?

Ken N.

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


Re: use-revolution digest, Vol 1 #1569 - 14 msgs

2003-07-07 Thread Damon Luther
It's a little weird when you get into this area. One of the best 
ways to make Chapter Tracks in a Quicktime movie is to set cuePoints in 
an audio or video editor then save the file.  This puts a text track 
into the movie with all the start times for each chapter, but does not 
set them as chapter tracks. Then you can open the movie in Quicktime 
Pro and get movie properties and select the text track in the pulldown 
menu then select make Chapter tracks from the properties pulldown. It 
will want you do associate the new chapter tracks with either the video 
or audio tracks... choose either one and then save... BAM now the movie 
has chapter tracks. I've tried some of the Chapter Track editors out 
there, but they don't seem to create the desired results like the above 
method does.

Director works with chapter tracks using cuePoint statements. Director 
automatically reads the text track of the movie whether it's set to be 
chapters or not, and then allows you to navigate the chapters based on 
the cuePoints. iShell automatically shows chapter tracks as parameters 
in it's UI.

The cool thing about Chapter Tracks and cuePoints is that you can write 
scripts that are universal to any movie, allowing you to navigate 
forward and backwards and even stop without knowing exact times. Very 
handy and reusable. And way better than trying to read the text file 
into an array and then use them.

I'm new to Rev so i don't know much about callBacks... is there a good 
resource for this? do you think callbacks can be used in a similar 
manner

any help would be great

-d

On Saturday, July 5, 2003, at 09:01  AM, 
[EMAIL PROTECTED] wrote:

How do I navigate Quicktime Chapter tracks with Revolution.

Is there a native way of navigating Quicktime Chapter Tracks with
revolution? or cuePoints? AppleScript, QTscript, Director, iShell,
and others all have way to navigate Chapter Tracks.  I'm looking
at Revolution as a cross-platform solution for current and future
projects that relies on the ability to navigate Chapter Tracks.
Chapter tracks and cuePoits are very different things.  Revolution 
supports
a wide variety of QT notifications, messages, and structures, so while 
it
doesn't currently support chapter tracks if going as far away from 
that as
cuePoints would work for you then maybe going just a little farther to 
Rev's
support for callbacks will provide what you need.

Thinking this might make a good feature suggestion to submit, I was 
hoping
to find the documentation for Director and iShell with regard to 
chapter
track support to serve as a guide, but alas came up empty.  Where 
should I
look for that in those products?
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [ANN] Game Available for Test

2003-07-07 Thread Glasgow David
Yes it looks fine indeed.

But..Jacqueline's comments make me worry that I don't understand passwords and 
locking like I thought.

The first thing I did was try to see how he did that lovely whizzing text.  How is it 
that I can browse and even copy all of the scripts? Is this not what you mean by 
"explore"?

Best wishes,

David Glasgow

Courses HTTP://www.i-Psych.co.uk 

 >
 >Like everything Scott writes, this one is very cool. He 
 >really creates 
 >gorgeous stuff. You won't be able to explore it though; it is 
 >password 
 >protected and the scripts are locked.
 >
 >-- 
 >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 Dial via built in modem

2003-07-07 Thread Scott Rankin
Dear Bill,

I found your posting of Oct 19 last year when trying to solve the 
problem of dialing the internal modem via applescript (OS X).

Have you found a solution?

I haven't been able to find anything.

I want to be able to dial via the modem so that I can control telephone 
company network features which are activated by long strings of codes.

Scott

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


Re: Equivalence to the SuperCard function call "via" object

2003-07-07 Thread Joël Guillod
I am trying to do what Supercard do with the function...via. That is I want
that the function is evaluated by the script of the specified object.

E.g.:

In Supercard you can write :

 put getSomeData(1,the date,tMyVar,tAnOtherVar) via btn "MyButton" of \
   cd 10 of stack "someStack" into tMyResult

How to translate that into rev?

 -- does not work:
 send "get getSomeData(1,the date,tMyVar,tAnOtherVar)" to \
   btn "MyButton" of cd 10 of stack "someStack" into tMyResult
 put it into tMyResult

 -- does not work or dont give the expected result:
 get value("getSomeData(1,the date,tMyVar,tAnOtherVar)", \
   btn "MyButton" of cd 10 of stack "someStack")
 put it into tMyResult

 -- work around but not elegant:
 -- getSomeData is no more a function but a handler...
 call "getSomeData "1,the date,tMyVar,tAnOtherVar" of \
   btn "MyButton" of cd 10 of stack "someStack"
 put the result into tMyResult

Of course, putting the script of the target object in the message path is
some other possibility but I would exclude this for implementation reason.

Maybe the "function via object" a feature for the wish list?

Or did I miss something?

Joel

> Message: 9
> Date: Sat, 5 Jul 2003 06:40:44 -0700
> To: [EMAIL PROTECTED]
> From: "Jeanne A. E. DeVoto" <[EMAIL PROTECTED]>
> Subject: Re: Equivalence to the SuperCard function call "via" object
> Reply-To: [EMAIL PROTECTED]
> 
> At 1:30 AM -0700 7/5/03, Joël Guillod wrote:
 Is there an equivalent to the following Supercard statement?
 
 functionName([paramList]) via object
>> 
>> YES I did but it does not behave as described in the docs, only the "me"
>> keyword is related to the optional object param.
> 
> 
> What exactly are you trying to do?
> 
> --
> Jeanne A. E. DeVoto ~ [EMAIL PROTECTED]
> Runtime Revolution Limited - Software at the Speed of Thought
> http://www.runrev.com/

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


Re: RevJournal is "Live"!

2003-07-07 Thread Fred_D_Yocum

Congratulations !
http://www.revjournal.com. has just gone on my browser toolbar.

F D Yocum
Graphic Designer
Mennonite Central Committee



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


Re: MAC OS X Problems

2003-07-07 Thread Yves COPPE
Le lundi, 7 juil 2003, à 15:29 Europe/Brussels, Mathewson a écrit :

Cher Yves,
  DIACRITICS:  Vous avez un petit problem; nous sommes
ecossais (les developpeurs des Runtime Revolution et moi),
et n'avons pas des diacritiques dans nos langues (Anglais,
Ecossais, et langue de Galles) - et chaque european a le
problem de la dominance Americaine.
The easiest solution (!!!) is to use either Fontographer or
Fontlab to design a font where letters with diacritics are
stored in the first ASCII table (merde!).  If you would
like this tell me and I will make you a font like this.
Richmond Mathewson


Hello

I think you don't understand my problem

when I use the command "create folder" and there is a diacritic char in 
the name of the folder, the folder isn't created.
in Rev 1.1.1 well 
why anymore in Rev 2.0.1 ???

It's very urgent to find a solution !!

Thanks.

Greetings.

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


Re: RevJournal is "Live"!

2003-07-07 Thread Alan Golub
Title: Re: RevJournal is "Live"!



Thanks! Please keep us posted with any new developments of your own. Always on the lookout for quick revNews stories!

Alan

On 7/7/03 10:47 AM, "Ken Ray" <[EMAIL PROTECTED]> wrote:

Well done, Alan! Looks like a winner! 
 
Ken Ray
Sons of Thunder Software
Email: [EMAIL PROTECTED]
Web Site: http://www.sonsothunder.com/ 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alan Golub
Sent: Monday, July 07, 2003 8:49 AM
To: [EMAIL PROTECTED]
Cc: Richard Gaskin
Subject: RevJournal is "Live"!

StoryCard Software LLC is pleased to announce that revJournal is now live at http://www.revjournal.com.

After several months’ work, and a frustrating weekend of spotty host performance, the new online magazine, revJournal, is up and running. The debut issue features a host of interesting articles, including:

In revTools: An exclusive excerpt from Dan Shafer’s forthcoming three-volume eBook series, “Scripting Revolution”

In revTalk: An interview with Revolution developer Sarah Reichelt

In revSchool: Not one, but TWO installments of our ongoing Revolution tutorials

And more! We’re just getting started, so please visit the site for more details and the latest developments.

Thanks to all who contributed their time and/or feedback in helping us with our premiere launch.

We’re always looking for Revolution tidbits to post to the site, so please contact [EMAIL PROTECTED] with any news, reviews, or anything else of interest to Revolution developers.

Regards,
Alan S. Golub
StoryCard Software LLC 



-- 







RE: RevJournal is "Live"!

2003-07-07 Thread Ken Ray
Title: Message



Well 
done, Alan! Looks like a winner! 
 

Ken RaySons of Thunder SoftwareEmail: 
[EMAIL PROTECTED]Web Site: http://www.sonsothunder.com/ 


  
  -Original Message-From: 
  [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED] On Behalf Of Alan 
  GolubSent: Monday, July 07, 2003 8:49 AMTo: 
  [EMAIL PROTECTED]Cc: Richard 
  GaskinSubject: RevJournal is "Live"!StoryCard Software LLC is pleased to announce that revJournal is 
  now live at http://www.revjournal.com.After several months’ work, and 
  a frustrating weekend of spotty host performance, the new online magazine, 
  revJournal, is up and running. The debut issue features a host of interesting 
  articles, including:In revTools: An exclusive excerpt from Dan 
  Shafer’s forthcoming three-volume eBook series, “Scripting 
  Revolution”In revTalk: An interview with Revolution developer Sarah 
  ReicheltIn revSchool: Not one, but TWO installments of our ongoing 
  Revolution tutorialsAnd more! We’re just getting started, so please 
  visit the site for more details and the latest developments.Thanks to 
  all who contributed their time and/or feedback in helping us with our premiere 
  launch.We’re always looking for Revolution tidbits to post to the 
  site, so please contact [EMAIL PROTECTED] with any news, reviews, or 
  anything else of interest to Revolution developers.Regards,Alan S. 
  GolubStoryCard Software LLC 


MAC OS X Problems

2003-07-07 Thread Mathewson
Cher Yves,
  DIACRITICS:  Vous avez un petit problem; nous sommes
ecossais (les developpeurs des Runtime Revolution et moi),
et n'avons pas des diacritiques dans nos langues (Anglais,
Ecossais, et langue de Galles) - et chaque european a le
problem de la dominance Americaine.

The easiest solution (!!!) is to use either Fontographer or
Fontlab to design a font where letters with diacritics are
stored in the first ASCII table (merde!).  If you would
like this tell me and I will make you a font like this.

Richmond Mathewson

__
See Mathewson's software at:

http://members.maclaunch.com/richmond/default.htmland
http://www.runrev.com/Revolution1/developercentral/usercontributions.html
__
---
Great Macintosh Products 
 The MacLaunch Store! http://www.maclaunch.com/cgi-launch/store/agora.cgi
---
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


MAC OS X Problems

2003-07-07 Thread Yves COPPE
Hello list again

PLEASE HELP HELP HELP

I've send questions earlier without answers
So I come again...
1°
Working on Mac OSX 10.2.6 FR and Rev 2.0.1
I have a problem I didn't know with Rev 1.1.1

the command : "create folder"

1) works fine when I create a folder
BUT
2) doesn't work if the new created folder has a diacritical char
for example :

create folder "../test" works fine

create folder "../répétition" doesn't work  (if I write  "repetition" 
(without the "é") it's good)

what to do ?
How can I create a folder with french chars ???
2°
Is it normal that when I ask the "script edit mode" item in the 
develpment menu, it takes about 1/2 hour to toggle ?
I have this problem with a big stack (a main stack with many 
substacks), no problems with smaller stacks

Now it's so serious I cannot toggle anymore When I ask "script edit 
mode", the rev appl "quit" and return to finder
But I can further use the stacks when I restart Rev and further write 
scripts but I cannot debug...



PLEASE HELP...

Thanks.

Greetings.

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


Re: [ANN] libSMTP v1.5.0

2003-07-07 Thread Shao Sean
> Fabulous!

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


RevJournal is "Live"!

2003-07-07 Thread Alan Golub
Title: RevJournal is "Live"!



StoryCard Software LLC is pleased to announce that revJournal is now live at http://www.revjournal.com.

After several months’ work, and a frustrating weekend of spotty host performance, the new online magazine, revJournal, is up and running. The debut issue features a host of interesting articles, including:

In revTools: An exclusive excerpt from Dan Shafer’s forthcoming three-volume eBook series, “Scripting Revolution”

In revTalk: An interview with Revolution developer Sarah Reichelt

In revSchool: Not one, but TWO installments of our ongoing Revolution tutorials

And more! We’re just getting started, so please visit the site for more details and the latest developments.

Thanks to all who contributed their time and/or feedback in helping us with our premiere launch.

We’re always looking for Revolution tidbits to post to the site, so please contact [EMAIL PROTECTED] with any news, reviews, or anything else of interest to Revolution developers.

Regards,
Alan S. Golub
StoryCard Software LLC





Re: Desktop icon in Mac OS X

2003-07-07 Thread Yves COPPE
Le lundi, 7 juil 2003, à 15:09 Europe/Brussels, Thierry Arbellot a 
écrit :

Hi Yves,

I suppose you mean "icns" file type.

Have you created a Thumbnail 32-bit icon in the file ?

Regards.

Thierry Arbellot.


I will try with IconComposer from Apple and let you now.

Greetings.

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


Re: GIF licence ???

2003-07-07 Thread Edwin Gore
I believe that the problem is that the patent still has another year to go
in the U.K. - since they are based there, I don't believe taht they can
distribute if for for, even in the U.S.

- Original Message - 
From: "Mathewson" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, July 07, 2003 1:20 AM
Subject: GIF licence ???


> As the copyright on Compuserv's GIF codec is about to
> expire I'd like to know if RR are planning to release the
> code to export images from stacks in GIF format as a FREE
> downloadable?
>
> Cheekily yours, Richmond Mathewson
>
> __
> See Mathewson's software at:
>
> http://members.maclaunch.com/richmond/default.htmland
> http://www.runrev.com/Revolution1/developercentral/usercontributions.html
> __
> ---
> Great Macintosh Products
>  The MacLaunch Store! http://www.maclaunch.com/cgi-launch/store/agora.cgi
> ---
> ___
> 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: Desktop icon in Mac OS X

2003-07-07 Thread Thierry Arbellot
Hi Yves,

I suppose you mean "icns" file type.

Have you created a Thumbnail 32-bit icon in the file ?

Regards.

Thierry Arbellot.

On Saturday, Jul 5, 2003, at 23:08 Europe/Paris, Yves COPPE wrote:

Hello,

Can someone explain me how I can set a desktop icon to my app starting 
from the stack Builder

I've done a picture with "iconographer", save it as ics

then in the step 3 of the builder, tab "mac OSX" I've chosen this 
file...

and my app has no icon at all !!!

Thanks.
Greetings.
Yves COPPE
[EMAIL PROTECTED]

Salutations.
Yves COPPE
[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


Image Problems: Download available

2003-07-07 Thread Mathewson
Dear All,
  Just uploaded a stack to my website:  IMAGE CONVERTER.REV
(soon to receive an Oscar for
originality in naming programs) - this will import various
image formats (including the MAC-specific PICT format) and
export them in JPEG or PNG format.

Download it, Play with it, Throw it away..

Richmond Mathewson

__
See Mathewson's software at:

http://members.maclaunch.com/richmond/default.htmland
http://www.runrev.com/Revolution1/developercentral/usercontributions.html
__
---
Great Macintosh Products 
 The MacLaunch Store! http://www.maclaunch.com/cgi-launch/store/agora.cgi
---
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [ANN] libSMTP v1.5.0

2003-07-07 Thread Terry Judd
On Monday, July 7, 2003, at 09:49 AM, Shao Sean wrote:

well, i finally got around to getting it finished and
released, so here it is.. libSMTP v1.5.0
- plain text messages
- html messages (with inline/embedded images)
- file attachments
- smtp authentication
Fabulous!

have fun
-Sean
http://shaosean.tk/
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Newbies board gone?

2003-07-07 Thread Malte Brill
Hi List,

I´m back from a few days off in Switzerland and had my mailbox filled with
quite a few mails concerning the Revolution Newbies Board, hosted by Mark
Paris, that has vanished from the Web.
I tried to contact him off list before my vacation (Are you lurking Mark? I
hope you are well.), but didn´t recive an answer yet. If there´s anything I
can do to help bringing the Newbies board up again I would be glad to do so.
(Still got some MBs left on my Server)

Regards,

Malte

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


Image converters

2003-07-07 Thread Mathewson
If you have a problem converting images on a Macintosh
(why???) the place to look for image converters is

http://www.versiontracker.com

if you are poor / tight-fisted like me there are quite a
few FREE widgets around that can do the trick.

Richmond Mathewson

__
See Mathewson's software at:

http://members.maclaunch.com/richmond/default.htmland
http://www.runrev.com/Revolution1/developercentral/usercontributions.html
__
---
Great Macintosh Products 
 The MacLaunch Store! http://www.maclaunch.com/cgi-launch/store/agora.cgi
---
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


GIF licence ???

2003-07-07 Thread Mathewson
As the copyright on Compuserv's GIF codec is about to
expire I'd like to know if RR are planning to release the
code to export images from stacks in GIF format as a FREE
downloadable?

Cheekily yours, Richmond Mathewson

__
See Mathewson's software at:

http://members.maclaunch.com/richmond/default.htmland
http://www.runrev.com/Revolution1/developercentral/usercontributions.html
__
---
Great Macintosh Products 
 The MacLaunch Store! http://www.maclaunch.com/cgi-launch/store/agora.cgi
---
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Image problems

2003-07-07 Thread Mathewson
The solution is remarkably simple: don't import PICT
images!  Convert them to JPEG or GIF
first, then import them.

Love, Richmond

__
See Mathewson's software at:

http://members.maclaunch.com/richmond/default.htmland
http://www.runrev.com/Revolution1/developercentral/usercontributions.html
__
---
Great Macintosh Products 
 The MacLaunch Store! http://www.maclaunch.com/cgi-launch/store/agora.cgi
---
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Bugzilla search

2003-07-07 Thread Wolfgang M. Bereuter
On Sunday, Jul 6, 2003, at 19:49 Europe/Vienna, Dar Scott wrote:

Bugzilla search
Reply-To: [EMAIL PROTECTED]
On Sunday, July 6, 2003, at 09:20 AM, Toma Tasovac wrote:

I cannot perform any search function in the Runrev bugzilla database 
on Mac OS 10.2.6 with either Safari or IE -- I always get a 
javascript error of some kind.  It seems to be a known issue with 
Bugzilla -- but what are we to do until it gest fixed?  How are we 
supposed to search the database to see if a bug has already been 
reported?
It works for me with Camino too. But I could not make a query or 
report, because its to complicated for me...
Seems that I need a special training before I can use that =;(
What should I do now..?
Thanks for tips...

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