Re: Trapping for the Return Key on keypad of a Windows machine

2007-02-05 Thread [EMAIL PROTECTED]
I suggest you can use: rawkeydown or rawkeyup

on rawKeyDown theKeyNumber
if theKeyNumber is 65308 then increaseScroll -- mouse wheel down
pass rawKeyDown -- if the key should have further effects. For blocking the key 
comment this line.
else if theKeyNumber is 65309 then decreaseScroll -- mouse wheel up
else pass rawKeyDown -- don't forget this for all other keys!
end rawKeyDown
every 

--
if you pass rawkeydown the signal of the pushed key is send further in the 
hierarchy. If you do not pass the key has no further effect and is blocked. 
Every key on the keypad has its own rawkey

For checking the option keys (shift, alt, control) use 
optionkey, shiftkey etc. (see docu)

The rawkey is the same if the user has made the choice of a different language 
(english or german or ...) => the "rawkey" of "ä"-key on a german keyboard is 
the same when used an english keyboard layout but the "keydown" key is 
dependent on the language and the pressed optionkeys (shift ...).

Test also:
on returnKey -- go to the next card when the user presses return
-- do
end returnKey

Regards, Franz

Mit freundlichen Grüßen
Franz Böhmisch

[EMAIL PROTECTED]
http://www.animabit.de
GF Animabit Multimedia Software GmbH
Am Sonnenhang 22
D-94136 Thyrnau
Tel +49 (0)8501-8538
Fax +49 (0)8501-8537


Original Messageprocessed by David InfoCenter 
Subject: Trapping for the Return Key on keypad of a Windows machine 
(03-Feb-2007 19:40)
From:Charles Szasz <[EMAIL PROTECTED]>
To:  use-revolution@lists.runrev.com


Does anyone have a suggestion on how to trap the Return key on the 
keypad of a Windows machine running Windows 2000 and XP? In my 
application, the last text entry when it is completed is supposed to 
enable a button for calculation. It works using the standard Return 
key on the keyboard but is does not work using the Return key on the 
keypad when the number lock is set.


Charles Szasz
[EMAIL PROTECTED]



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

To: use-revolution@lists.runrev.com___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Please verify bug-- takes 2 secs

2007-02-05 Thread Chipp Walters

Well,

Bonus points for Jerry for fixing the debugger in Galaxy. Now, if we
can only get Rev to fix it on their end.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Please verify bug-- takes 2 secs

2007-02-05 Thread Sarah Reichelt

I've run into a really weird bug which I'm not sure how to get around.
It involves invoking the debugger from a background group script from
a card which the script has been placed on.

It's basically a very simple thing to describe. I want to be able to
set a breakpoint in a background group script and have it enter debug
mode. I find I can do this ONLY when I'm on the originating card from
where the group was created. IOW, any OTHER card where the group
resides, will execute the script, but not invoke the debugger. It just
'jumps' right over a breakpoint statement.

I'm using 2.7.4 and was hoping someone else out there would verify,
and/or suggest a work around.

You can run the test stack by putting below into the msg box:

go URL "http://www.gadgetplugins.com/chippstuff/GroupDebugBug.rev";



Hi Chipp,

I drop into debug mode in all cases, from every card and no matter
which button I click. However I am using Galaxy, so I don't know if
that is making the difference.

Ok, just turned off Galaxy and now I see the problem. The script
editor opens in all cases, but only when going from card 1 do I get
into debug mode.

Sarah
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Please verify bug-- takes 2 secs

2007-02-05 Thread Chipp Walters

Hi all,

I've run into a really weird bug which I'm not sure how to get around.
It involves invoking the debugger from a background group script from
a card which the script has been placed on.

It's basically a very simple thing to describe. I want to be able to
set a breakpoint in a background group script and have it enter debug
mode. I find I can do this ONLY when I'm on the originating card from
where the group was created. IOW, any OTHER card where the group
resides, will execute the script, but not invoke the debugger. It just
'jumps' right over a breakpoint statement.

I'm using 2.7.4 and was hoping someone else out there would verify,
and/or suggest a work around.

You can run the test stack by putting below into the msg box:

go URL "http://www.gadgetplugins.com/chippstuff/GroupDebugBug.rev";

TIA,
Chipp
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: just noticed another potential bug

2007-02-05 Thread Mark Wieder
Klaus-

Monday, February 5, 2007, 9:34:44 AM, you wrote:

> I tried to add this comment to bug 4054, but could not because I was
> accused by the QualtityCenter to have tried to change the
> "Hardware component" from "Mac" to "all", which I did not, of course,
> nor is there any popup menue or whatever named "Hardware"

Try adding a comment to BZ#2648.
Or BZ#3625.
Or reopen BZ#829.

-- 
-Mark Wieder
 [EMAIL PROTECTED]

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revSpeech related question

2007-02-05 Thread Sarah Reichelt

On 2/6/07, Trevor Hopkins <[EMAIL PROTECTED]> wrote:

I have an application that I would like to parse into a menu, all of the
voices that are currently installed on a user's Mac. The user can then
select one of these voices from the menu and have Rev set the voice, check
the selected menuItem, and then uncheck all other voices in the menu.



Here is what I use:

I am assuming that you have a "Voices" menu in your menubar.
The currently selected voice is stored in a custom property called
cCurrentVoice.

Put this script into the menubar group's script:

-- list all the voices and add a checkmark to the currently selected one
--
on mouseDown
   put revSpeechVoices() into tVoiceList
   put the cCurrentVoice of this stack into tCurrent
   get lineOffset(tCurrent, tVoiceList)
   if it > 0 then put "!c" before line it of tVoiceList
   put tVoiceList into btn "Voices"
end mouseDown


Put this script into the "Voices" menu script:

-- store the new selection in the custom property
-- set Rev's voice
-- speak a sample of text
--
on menuPick pVoice
   set the cCurrentVoice of this stack to pVoice
   revSetSpeechVoice pVoice
   revSpeak "Do you like this voice?"
end menuPick

HTH,
Sarah
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Variable in SQL Statement

2007-02-05 Thread Sarah Reichelt

On 2/6/07, Jeff Honken <[EMAIL PROTECTED]> wrote:

I've been trying to put a wildcard "%" into a SQL statement that
contains a variable.  I just can't seem to find the right format.
Here's the SQL statement:

put revQueryDatabase(gConID, "SELECT ClaimNum FROM AccountEntry WHERE
ClaimNum LIKE '" & QueryDate & "'&% ORDER BY ClaimNum DESC LIMIT 1")
into q

I've tried the &% and various other combinations with no luck. Can
someone please point me in the correct direction for this statement.


While others have solved your problem, I would like to share my
technique for dealing with such things. I construct the SQL query or
the AppleScript call or the shell command or the script that I want to
"do" and put it into it's own variable. Then I use the variable in the
main function but when I get a problem, I "put" the variable so that I
can see why it's gone wrong. When constructing strings with quotes,
file paths etc, this makes for much easier debugging.

In your example, I would have done this:
put "SELECT ClaimNum FROM AccountEntry WHERE ClaimNum LIKE '" &
QueryDate & "'&% ORDER BY ClaimNum DESC LIMIT 1" into tQuery
put tQuery  -- for debugging
put revQueryDatabase(gConID, tQuery) into q

Cheers,
Sarah
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revSpeech related question

2007-02-05 Thread Stephen Barncard

from the docs:
Use the revSpeechVoices function to find out what voices can be used 
to speak text on the current system.


Parameters:
The voiceGender is one of "male", "female", or "neuter". If you don't 
specify a voiceGender, all voices are returned.



I have an application that I would like to parse into a menu, all of 
the voices that are currently installed on a user's Mac. The user 
can then select one of these voices from the menu and have Rev set 
the voice, check the selected menuItem, and then uncheck all other 
voices in the menu.


Just wondering if anyone has any tips on this -- I'm sure this code 
has been written many times. Thanks in advance for any assistance.


Cheers,

Trevor Hopkins
Exeter, UK



--


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


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: Variable in SQL Statement

2007-02-05 Thread Jeff Honken
Ken, that worked great.  Thanks, Jeff

-Original Message-
From: Ken Ray [mailto:[EMAIL PROTECTED] 
Sent: Monday, February 05, 2007 5:43 PM
To: How to use Revolution
Subject: Re: Variable in SQL Statement

On Mon, 5 Feb 2007 17:30:19 -0500, Jeff Honken wrote:

> I've been trying to put a wildcard "%" into a SQL statement that
> contains a variable.  I just can't seem to find the right format.
> Here's the SQL statement:
> 
> put revQueryDatabase(gConID, "SELECT ClaimNum FROM AccountEntry WHERE
> ClaimNum LIKE '" & QueryDate & "'&% ORDER BY ClaimNum DESC LIMIT 1")
> into q

I think it's because the ampersand is inside the query itself, try this:

 put revQueryDatabase(gConID, "SELECT ClaimNum FROM AccountEntry WHERE
 ClaimNum LIKE '" & QueryDate & "%' ORDER BY ClaimNum DESC LIMIT 1")
 into q

Ken Ray
Sons of Thunder Software, Inc.
Email: [EMAIL PROTECTED]
Web Site: http://www.sonsothunder.com/
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your
subscription preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Wide PNG's displaying only coloured stripes?

2007-02-05 Thread Scott Rossi
Recently, David Bovill wrote:

> Here is an example:
> 
>   http://docs.rev-co.de/radial.png

How do you intend to display this image?  Do you show it at full size and
expect a user to scroll it around the screen, or do you scale it down?

FYI, I can't get it to display in a stack -- the size exceeds the threshold
Sarah mentioned.  When the image is scaled to 4000 pix wide, it imports as
expected.

Regards,

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


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


revSpeech related question

2007-02-05 Thread Trevor Hopkins
I have an application that I would like to parse into a menu, all of the 
voices that are currently installed on a user's Mac. The user can then 
select one of these voices from the menu and have Rev set the voice, check 
the selected menuItem, and then uncheck all other voices in the menu.


Just wondering if anyone has any tips on this -- I'm sure this code has been 
written many times. Thanks in advance for any assistance.


Cheers,

Trevor Hopkins
Exeter, UK

_
MSN Hotmail is evolving – check out the new Windows Live Mail 
http://ideas.live.com


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Wide PNG's displaying only coloured stripes?

2007-02-05 Thread David Bovill

Found it (bug report):

   http://quality.runrev.com/qacenter/show_bug.cgi?id=4026


4091 is that the image

object displays a corrupt image.

And that seems to fix the problem. NB anyone know how to convert
inches to pixels? There is this Url: but I can"t figure the dpi I need
it is not 72dpi... or 96?

   http://www.classical-webdesigns.co.uk/resources/pixelinchconvert.html
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Variable in SQL Statement

2007-02-05 Thread Ken Ray
On Mon, 5 Feb 2007 17:30:19 -0500, Jeff Honken wrote:

> I've been trying to put a wildcard "%" into a SQL statement that
> contains a variable.  I just can't seem to find the right format.
> Here's the SQL statement:
> 
> put revQueryDatabase(gConID, "SELECT ClaimNum FROM AccountEntry WHERE
> ClaimNum LIKE '" & QueryDate & "'&% ORDER BY ClaimNum DESC LIMIT 1")
> into q

I think it's because the ampersand is inside the query itself, try this:

 put revQueryDatabase(gConID, "SELECT ClaimNum FROM AccountEntry WHERE
 ClaimNum LIKE '" & QueryDate & "%' ORDER BY ClaimNum DESC LIMIT 1")
 into q

Ken Ray
Sons of Thunder Software, Inc.
Email: [EMAIL PROTECTED]
Web Site: http://www.sonsothunder.com/
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Variable in SQL Statement

2007-02-05 Thread Ruslan Zasukhin
On 6/2/07 12:30 AM, "Jeff Honken" <[EMAIL PROTECTED]> wrote:

> I've been trying to put a wildcard "%" into a SQL statement that
> contains a variable.  I just can't seem to find the right format.
> Here's the SQL statement:
> 
> put revQueryDatabase(gConID, "SELECT ClaimNum FROM AccountEntry WHERE
> ClaimNum LIKE '" & QueryDate & "'&% ORDER BY ClaimNum DESC LIMIT 1")
> into q

So you final string will looks as:

WHERE ClaimNum LIKE '199'% ORDER BY
 
But it should be 

WHERE ClaimNum LIKE '199%' ORDER BY


> I've tried the &% and various other combinations with no luck. Can
> someone please point me in the correct direction for this statement.

-- 
Best regards,

Ruslan Zasukhin
VP Engineering and New Technology
Paradigma Software, Inc

Valentina - Joining Worlds of Information
http://www.paradigmasoft.com

[I feel the need: the need for speed]


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Variable in SQL Statement

2007-02-05 Thread Jeff Honken
I've been trying to put a wildcard "%" into a SQL statement that
contains a variable.  I just can't seem to find the right format.
Here's the SQL statement:

put revQueryDatabase(gConID, "SELECT ClaimNum FROM AccountEntry WHERE
ClaimNum LIKE '" & QueryDate & "'&% ORDER BY ClaimNum DESC LIMIT 1")
into q

I've tried the &% and various other combinations with no luck. Can
someone please point me in the correct direction for this statement.

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Rotate Graphic Image Smoothly?

2007-02-05 Thread [EMAIL PROTECTED]
==On February 5, 2007 3:41:12 PM EST Bill Marriott wrote:

==If your ultimate objective is to have a smoothly rotating graphic on the 
==web, than Rev is probably not the best tool for this. The 
==smoothest-appearing option would be something in Flash format. An
animated 
==GIF can also work well if the dimensions are small.

==I would recommend Xara Xtreme Pro (free trial version at xara.com) as a 
==means to do either. You can do very simple Flash movies as well as GIF 
==animations very easily, working with both vectors and bitmaps.

==Bill 

Bill,

Thank you for your suggestions.  I have a Mac, and own Flash too.
Xara is Windows only, but I'm sure others will find it useful.
I have just never worked with Flash before.  I guess I finally
have a reason to work with it.  Too many tools, so little time!

Thanks!

Rick



mail2web - Check your email from the web at
http://link.mail2web.com/mail2web


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Wide PNG's displaying only coloured stripes?

2007-02-05 Thread David Bovill

Well yes - the image example is 4772 x 1492. I"ll try within 4096 - is there
a bug report - it would be good to know wha tthe maximum i can safely scale
the images to?

On 05/02/07, Sarah Reichelt <[EMAIL PROTECTED]> wrote:


On 2/6/07, David Bovill <[EMAIL PROTECTED]> wrote:
> With the graphing application I have a problem i do not understand. With
> smaller graphs everything is OK, but with large or rather wide graphs
they
> do not dislay correctly - I get coloured bands.
>
> Has anyone else seen this - I do not think jpegs or other formats work
much
> better - they display fine in Preview on OSX?

How wide are the images that fail? There is a known issue with Rev
displaying images on OS X if they are more than 4096 pixels in any
dimension. I think that's the limit, but it's something like that.

Sarah
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your
subscription preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Wide PNG's displaying only coloured stripes?

2007-02-05 Thread David Bovill

That sounds like the problem - is there a way around it - setting a
background colour?

Here is an example:

 http://docs.rev-co.de/radial.png


On 05/02/07, Scott Rossi <[EMAIL PROTECTED]> wrote:


Recently, David Bovill wrote:

> With the graphing application I have a problem i do not understand. With
> smaller graphs everything is OK, but with large or rather wide graphs
they
> do not dislay correctly - I get coloured bands.
>
> Has anyone else seen this - I do not think jpegs or other formats work
much
> better - they display fine in Preview on OSX?

Can you post a screenshot somewhere, or an example stack?  One thing that
can happen is if you have shallow gradient spanning a large distance,
there
may not be a wide enough range of colors to render the gradient smoothly,
and the result is a banding effect.

Regards,

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


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your
subscription preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Wide PNG's displaying only coloured stripes?

2007-02-05 Thread Sarah Reichelt

On 2/6/07, David Bovill <[EMAIL PROTECTED]> wrote:

With the graphing application I have a problem i do not understand. With
smaller graphs everything is OK, but with large or rather wide graphs they
do not dislay correctly - I get coloured bands.

Has anyone else seen this - I do not think jpegs or other formats work much
better - they display fine in Preview on OSX?


How wide are the images that fail? There is a known issue with Rev
displaying images on OS X if they are more than 4096 pixels in any
dimension. I think that's the limit, but it's something like that.

Sarah
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


altsqlite3, dbsqlite3.dll

2007-02-05 Thread Viktoras Didziulis
Just upgraded my Revolution (WindowsXP, RevStudio 2.7.4), downloaded the 3
alt plugins. Installations went smoothly. 
But
 
put revdb_connect("sqlite3", "C:/path/test.db","[EMAIL PROTECTED]","my pswd
goes here") into tConID 
 
produces an error: the application or DLL ...\dbsqlite3.dll is not a valid
Windows image. Please check this against your installation diskette. 
 
Did I miss a thread on this list, or it is just me?.. What may have went
wrong with my installation ? 
 
Viktoras
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Rotate Graphic Image Smoothly?

2007-02-05 Thread Bill Marriott
Rick,

>>>
Is there a way to SMOOTHLY rotate a graphical image around it's center point 
in Rev? If so, then how could I make this image do this on the web?  Do I 
need to create it as an animated .gif file, or is there a better way?
<<<

If your ultimate objective is to have a smoothly rotating graphic on the 
web, than Rev is probably not the best tool for this. The 
smoothest-appearing option would be something in Flash format. An animated 
GIF can also work well if the dimensions are small.

I would recommend Xara Xtreme Pro (free trial version at xara.com) as a 
means to do either. You can do very simple Flash movies as well as GIF 
animations very easily, working with both vectors and bitmaps.

Bill 



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Wide PNG's displaying only coloured stripes?

2007-02-05 Thread Scott Rossi
Recently, David Bovill wrote:

> With the graphing application I have a problem i do not understand. With
> smaller graphs everything is OK, but with large or rather wide graphs they
> do not dislay correctly - I get coloured bands.
> 
> Has anyone else seen this - I do not think jpegs or other formats work much
> better - they display fine in Preview on OSX?

Can you post a screenshot somewhere, or an example stack?  One thing that
can happen is if you have shallow gradient spanning a large distance, there
may not be a wide enough range of colors to render the gradient smoothly,
and the result is a banding effect.

Regards,

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


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Wide PNG's displaying only coloured stripes?

2007-02-05 Thread David Bovill

With the graphing application I have a problem i do not understand. With
smaller graphs everything is OK, but with large or rather wide graphs they
do not dislay correctly - I get coloured bands.

Has anyone else seen this - I do not think jpegs or other formats work much
better - they display fine in Preview on OSX?
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: just noticed another potential bug

2007-02-05 Thread J. Landman Gay

Jim Ault wrote:

On 2/5/07 11:17 AM, "J. Landman Gay" <[EMAIL PROTECTED]> wrote:


I got hit with this weeks ago, and submitted a bug report about the bug
reports. It's been verified, but not fixed. As it stands now, no one can
add any comments to a ticket they did not originally submit, which makes
it impossible to add content that might help the team diagnose a
particular bug. 


It sounds like the bug-version cycle is going to be a long one if additional
comments cannot be added.  Perhaps we should have Ken add a feature to
RevQAzilla that forwards the comment to the original poster to relay to the
system.  It's a workaround, but I think a good one.


My preferred solution is to send Bill Marriott after them. :) He's 
heading up the public beta program and new QA center. Bill? You reading 
this?



--
Jacqueline Landman Gay | [EMAIL PROTECTED]
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: just noticed another potential bug

2007-02-05 Thread Jim Ault
On 2/5/07 11:17 AM, "J. Landman Gay" <[EMAIL PROTECTED]> wrote:

> I got hit with this weeks ago, and submitted a bug report about the bug
> reports. It's been verified, but not fixed. As it stands now, no one can
> add any comments to a ticket they did not originally submit, which makes
> it impossible to add content that might help the team diagnose a
> particular bug. 

It sounds like the bug-version cycle is going to be a long one if additional
comments cannot be added.  Perhaps we should have Ken add a feature to
RevQAzilla that forwards the comment to the original poster to relay to the
system.  It's a workaround, but I think a good one.

 I am interested in a quality release of an excellent development
environment and, as you say, additional comments would help.  It would be a
shame to have the Rev team use their resources to partially fix bugs.  The
original poster does not have the time or resources to explore all aspects
of the bug they reported.

Jim Ault
Las Vegas


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: just noticed another potential bug

2007-02-05 Thread J. Landman Gay
I got hit with this weeks ago, and submitted a bug report about the bug 
reports. It's been verified, but not fixed. As it stands now, no one can 
add any comments to a ticket they did not originally submit, which makes 
it impossible to add content that might help the team diagnose a 
particular bug.



Mark Smith wrote:

It accused me of the same crime - I, also, was innocent.

I fought the QA Center, and the QA Center won. :(

Mark

On 5 Feb 2007, at 17:34, Klaus Major wrote:


 I was accused by the QualtityCenter to have tried to change the
"Hardware component" from "Mac" to "all", which I did not, of course


--
Jacqueline Landman Gay | [EMAIL PROTECTED]
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: game-based learning

2007-02-05 Thread Tereza Snyder


On Feb 2, 2007, at 12:32 PM, Richard Gaskin wrote:



Somewhere out there is a game waiting to be created, something that  
will open up the world of entertainment software to a whole new  
audience that isn't currently into games.


Or as I once put it at a game developer meeting:  Where is the  
"Catcher  in the Rye" of games, the thing that will appeal to  
people who like rich, provocative entertainment but aren't  
attracted to current game play models?


Maybe it'll be made by one of the readers of this list



Maybe me! In my next life, I guess.

Like Richard, my eyes were opened by Myst (well, actually by Spelunx,  
its predecessor, which BTW I'd love to find a copy of). I am bored  
bored bored by most games nowadays and so actively repelled by the  
pervasive violence that even though I belong to the Game Developers  
Association, I regard it chiefly as a theoretical study. However, may  
I recommend the SIGs of International Game Developers Association as  
a venue for making connections:


http://www.igda.org/SIGs/


in particular, the education SIG:

http://www.igda.org/education/


t


--
Tereza Snyder

   Califex Software, Inc.
   www.califexsoftware.com

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: just noticed another potential bug

2007-02-05 Thread Mark Smith

It accused me of the same crime - I, also, was innocent.

I fought the QA Center, and the QA Center won. :(

Mark

On 5 Feb 2007, at 17:34, Klaus Major wrote:


 I was accused by the QualtityCenter to have tried to change the
"Hardware component" from "Mac" to "all", which I did not, of course


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: just noticed another potential bug

2007-02-05 Thread Stephen Barncard

re-posted to Bugzilla (sorry QA center)



This must be engine related, since this does also happen with 
MetaCard, latest engine (Reev 2.7.4) and latest MC GUI.

Klaus Major


--


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



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: just noticed another potential bug

2007-02-05 Thread Klaus Major

Hi Jim,


On 2/5/07 9:34 AM, "Klaus Major" <[EMAIL PROTECTED]> wrote:

Hi all,
This must be engine related, since this does also happen with
MetaCard, latest engine (Reev 2.7.4) and latest MC GUI.

I tried to add this comment to bug 4054, but could not because I was
accused by the QualtityCenter to have tried to change the
"Hardware component" from "Mac" to "all", which I did not, of course,
nor is there any popup menue or whatever named "Hardware"
:-D


Good try.  Thanks for that. (Danke)


Bitteschön :-)


I won't waste time imagining that I can tweak the IDE.


And we should not have to, in my opinion!


:-D
Jim Ault
Las Vegas


Regards

Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: just noticed another potential bug

2007-02-05 Thread Jim Ault
On 2/5/07 9:34 AM, "Klaus Major" <[EMAIL PROTECTED]> wrote:
> Hi all,
> This must be engine related, since this does also happen with
> MetaCard, latest engine (Reev 2.7.4) and latest MC GUI.
> 
> I tried to add this comment to bug 4054, but could not because I was
> accused by the QualtityCenter to have tried to change the
> "Hardware component" from "Mac" to "all", which I did not, of course,
> nor is there any popup menue or whatever named "Hardware"
> :-D
> 
Good try.  Thanks for that. (Danke)
I won't waste time imagining that I can tweak the IDE.

:-D
Jim Ault
Las Vegas


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Visibility Problem Update

2007-02-05 Thread Charles Szasz
I used a different program, Disco, to burn a hybrid disc to transfer  
my latest version of my app for Windows XP to Parallels running  
Windows XP. This time all of the labels fields were visible and data  
could be entered into the entry fields. The previous versions I used  
Toast 6 with burning for Mac and Windows cause problems reading the  
labels and adding data to the fields. By the way, the Toast burns  
were for both Mac and Windows. As I indicated before, I have problems  
with dragging the app file to the Parallels XP desktop.



Charles Szasz
[EMAIL PROTECTED]



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: just noticed another potential bug

2007-02-05 Thread Klaus Major

Hi all,


On 2/5/07 8:54 AM, "Stephen Barncard" <[EMAIL PROTECTED]>
wrote:
I've seen this in 2.7.5 beta 1 and filed a Bug report. Confirmed  
by Marcus.

http://quality.runrev.com/qacenter/show_bug.cgi?id=4054


On 2/5/07 1:58 AM, "David Bovill" <[EMAIL PROTECTED]> wrote:
Confirmed here - in general commandkey short cuts can stop  
working all

though they continue to work direct from the menu.

Thanks for this note Stephen.  Good to hear some feedback that the  
bug is

actually getting attention.
I am going through a couple weeks of intense script editing.  For  
whatever
reason, I can only go for 15-20 minutes before the shortcut-bug  
gets me, and
I have to remember to use the contolkey workaround.  This used to  
be a rare

occurrence.

I would really like to know if there is a workaround by editing one/ 
or more
of the rev IDE stacks because it would be at the top of my to-do  
list. Not
only is it counter-productive, but you have to wonder what else is  
going

wrong that you cannot see.

Side note:  No other program I work with has shortcuts that fail,  
even when
Rev is missing the beat.  The only real cure is to quit and  
relaunch...
since this is important software I am writing, I suppose I should  
quit when

it first occurs rather than trust the IDE.

To emphasize: I have *not* seen any problems with my apps but have  
seen
weird changes occur in the revErrors stack and the variable watcher  
stack.
This should be a warning to me that it could also occur in one of  
my stacks.

For now, frequent relaunching of Rev.

Optimistically looking forward to a fixed version.  Unfortunately I  
don't
have any free hours in my day for the next month or two to do any  
beta test

work.


This must be engine related, since this does also happen with  
MetaCard, latest engine (Reev 2.7.4) and latest MC GUI.


I tried to add this comment to bug 4054, but could not because I was  
accused by the QualtityCenter to have tried to change the
"Hardware component" from "Mac" to "all", which I did not, of course,  
nor is there any popup menue or whatever named "Hardware"

:-D


Jim Ault
Las Vegas


Regards

Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: just noticed another potential bug

2007-02-05 Thread Jim Ault
On 2/5/07 8:54 AM, "Stephen Barncard" <[EMAIL PROTECTED]>
wrote:
> I've seen this in 2.7.5 beta 1 and filed a Bug report. Confirmed by Marcus.
> http://quality.runrev.com/qacenter/show_bug.cgi?id=4054
> 
>>On 2/5/07 1:58 AM, "David Bovill" <[EMAIL PROTECTED]> wrote:
>> Confirmed here - in general commandkey short cuts can stop working all
>> though they continue to work direct from the menu.
>> 
Thanks for this note Stephen.  Good to hear some feedback that the bug is
actually getting attention.
I am going through a couple weeks of intense script editing.  For whatever
reason, I can only go for 15-20 minutes before the shortcut-bug gets me, and
I have to remember to use the contolkey workaround.  This used to be a rare
occurrence.

I would really like to know if there is a workaround by editing one/or more
of the rev IDE stacks because it would be at the top of my to-do list. Not
only is it counter-productive, but you have to wonder what else is going
wrong that you cannot see.

Side note:  No other program I work with has shortcuts that fail, even when
Rev is missing the beat.  The only real cure is to quit and relaunch...
since this is important software I am writing, I suppose I should quit when
it first occurs rather than trust the IDE.

To emphasize: I have *not* seen any problems with my apps but have seen
weird changes occur in the revErrors stack and the variable watcher stack.
This should be a warning to me that it could also occur in one of my stacks.
For now, frequent relaunching of Rev.

Optimistically looking forward to a fixed version.  Unfortunately I don't
have any free hours in my day for the next month or two to do any beta test
work.

Jim Ault
Las Vegas


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: just noticed another potential bug

2007-02-05 Thread Stephen Barncard

I've seen this in 2.7.5 beta 1 and filed a Bug report. Confirmed by Marcus.

http://quality.runrev.com/qacenter/show_bug.cgi?id=4054



Confirmed here - in general commandkey short cuts can stop working all
though they continue to work direct from the menu.

On 05/02/07, Jim Ault <[EMAIL PROTECTED]> wrote:


Mac OSX 10.4.8, Mac G5 dual processor, Rev Enteprise 2.7.2

This is probably the same bug reported before.
Previous bug report was the cmd-V for paste stops working in script editor
window, then will start working again.  Temporary fix is close the window
and reopen it.  Otherwise use the mouse to choose the command in the menu
(which works all the time), or do the workaround I described last week
with
MenuMaster (great so far)

The cmd-M for focus on the message box also stops working.  I know that it
stops yet the paste still works.  Tough one since timing and recipes have
not been reproducible.


Jim Ault
Las Vegas


--


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



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: just noticed another potential bug

2007-02-05 Thread David Bovill

Confirmed here - in general commandkey short cuts can stop working all
though they continue to work direct from the menu.

On 05/02/07, Jim Ault <[EMAIL PROTECTED]> wrote:


Mac OSX 10.4.8, Mac G5 dual processor, Rev Enteprise 2.7.2

This is probably the same bug reported before.
Previous bug report was the cmd-V for paste stops working in script editor
window, then will start working again.  Temporary fix is close the window
and reopen it.  Otherwise use the mouse to choose the command in the menu
(which works all the time), or do the workaround I described last week
with
MenuMaster (great so far)

The cmd-M for focus on the message box also stops working.  I know that it
stops yet the paste still works.  Tough one since timing and recipes have
not been reproducible.


Jim Ault
Las Vegas


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your
subscription preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: A hard challenge anyone?

2007-02-05 Thread Brian Yennie
One other possible approach: use the "token" chunk... while there may  
still be caveats to getting exactly the information you want, it does  
a very good job of picking out the function names since it's based on  
the actual script parser.


repeat for each token t in "aFunction(bFunction(1)) + cFunction 
(dFunction(eFunction(fFunction(2"

  put t&cr after temp
end repeat
put temp

>>
aFunction
(
bFunction
(
1
)
)
+
cFunction
(
dFunction
(
eFunction
(
fFunction
(
2
)
)
)
)
>>

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Trapping for the Return Key on keypad of a Windows machine

2007-02-05 Thread Martin Blackman

It should be triggering an 'enterinfield'

On 04/02/07, Charles Szasz <[EMAIL PROTECTED]> wrote:

Does anyone have a suggestion on how to trap the Return key on the
keypad of a Windows machine running Windows 2000 and XP? In my
application, the last text entry when it is completed is supposed to
enable a button for calculation. It works using the standard Return
key on the keyboard but is does not work using the Return key on the
keypad when the number lock is set.


Charles Szasz
[EMAIL PROTECTED]



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


just noticed another potential bug

2007-02-05 Thread Jim Ault
Mac OSX 10.4.8, Mac G5 dual processor, Rev Enteprise 2.7.2

This is probably the same bug reported before.
Previous bug report was the cmd-V for paste stops working in script editor
window, then will start working again.  Temporary fix is close the window
and reopen it.  Otherwise use the mouse to choose the command in the menu
(which works all the time), or do the workaround I described last week with
MenuMaster (great so far)

The cmd-M for focus on the message box also stops working.  I know that it
stops yet the paste still works.  Tough one since timing and recipes have
not been reproducible.


Jim Ault
Las Vegas


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution