Re: Please help to remove my curse

2006-02-25 Thread J. Landman Gay

David Mendriski wrote:

I have a dastardly curse on me.  I pray that some kind soul can help.


It isn't just you. :)

I have developed several application using Revolution Dreamcard 2.6   I 
was so happy with the products that I developed that I wanted to  make 
them into standalones to share. So I updated Dreamcard to the  latest 
Studio.  I tried to save these programs as standalones.  They  are 
reported as having saved correctly.  But when I click on the  standalone 
icons the name of the application only appears for a  fraction of a 
second in the menu bar, which then reverts to the  finder.  Nothing is 
launched, -  or stays launched.




Yup. This bug was just reported recently, and has now been fixed. It was 
obscure and very limited, only affecting stacks that were originally 
created in Dreamcard and later upgraded to Studio. But do not despair. I 
shall remove the curse (please close your eyes now as I wave this 
chicken over your head.) There. You'll be able to build standalones with 
the next release, appearing very soon. Hang on.


There's also a workaround if you can't wait. I'll write it up and send 
it to you offlist.


--
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: Please help to remove my curse

2006-02-25 Thread Thomas McGrath III

David,

Send me the stack and I will try to build on Mac OSX and WinXP.

Tom

On Feb 25, 2006, at 7:56 PM, David Mendriski wrote:


I have a dastardly curse on me.  I pray that some kind soul can help.
I have developed several application using Revolution Dreamcard  
2.6  I was so happy with the products that I developed that I  
wanted to make them into standalones to share. So I updated  
Dreamcard to the latest Studio.  I tried to save these programs as  
standalones.  They are reported as having saved correctly.  But  
when I click on the standalone icons the name of the application  
only appears for a fraction of a second in the menu bar, which then  
reverts to the finder.  Nothing is launched, -  or stays launched.   
After many tries Gave up saving I gave up using Studio.  I  
downloaded the new  StackRunner for Mac (the development  
platform).  I installed Stackrunner.  When I drag the icon of my  
original apps onto the StackRunner icon as instructed, it only open  
the window to choose an application to open.  I click on my  
applications and the chooser window merely reappears.  My simpler  
applications like “Soduko Solver” and “Keno Player” launch with  
StackRunner.  My cherished, polished apps for translating Italian  
verbs and Nouns won’t become running standalones thru Studio, nor  
will launch thru StackRunner, although they perform PERFECTLY under  
the development software.
I would gladly send anyone who could help me understand this  
dilemma a copy of these short files, if you would be willing to try  
to develop standalones on your system, or tell me what is causing  
the problem.
Again, I pray that someone out there is willing to take a look to  
help me. I am including my e-mail address if you wish to contact me  
directly.


PS. If my email filter bounce you back, please request to be  
admitted as a hopeful problem solver.


dave
[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


Thomas J McGrath III
[EMAIL PROTECTED]

Lazy River Software™ - http://www.lazyriversoftware.com

Lazy River Metal Art™ - http://www.lazyriversoftware.com/metal.html

Meeting Wear™ - http://www.cafepress.com/meetingwear

Semantic Compaction Systems - http://www.minspeak.com

SCIconics, LLC - http://www.sciconics.com/sciindex.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: Please help to remove my curse

2006-02-25 Thread Mark Schonewille

David,

Which operating system are you on and what exactly do you do 
before, while and after making the standalones?


Best,

Mark

David Mendriski wrote:

 of the application only appears for a  fraction of a 
second in the menu bar, which then reverts to the  finder.  Nothing is 
launched, -  or stays launched.  





dave
[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




--

Consultant and Software Engineer
mailto:[EMAIL PROTECTED]
http://www.economy-x-talk.com

eHUG coordinator
mailto:[EMAIL PROTECTED]
http://www.ehug.info

Advertise with us and reach 1000 truely interested internet 
users every month. See http://economy-x-talk.com/advertise.html 
for more information.


___
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 help with "on playStopped"

2005-08-02 Thread Ban Nguyen


Thanks Jacqueline.  That solved the problem.



-





> Hello everyone,
> 
> 
> I have a list of songs (scrolling list field "list"):
> 
> I put this script so when user select a song, then start the player
> 
> on selectionchanged
>   set the fileName of player "myPlayer" to the selectedtext of field
> "list"
>   start player "myPlayer"
> end selectionchanged
> 
> 
> I put this script into the player object "myPlayer" because I want the
> next songs continue to play:
> 
> on PlayStopped
>   local thisLine
>   put the hilitedLines of field "list" into thisLine--current line
>   set the hilitedLines of field "list" to (thisLine+1)  --next line
>   set the fileName of player "myPlayer" to the selectedtext of field
> "list"
>   start player "myPlayer"
> end PlayStopped
> 
> 
> 
> For some reason, it does not work right.  What it does is playing the
> first song.  After the first song done, it selects the second song (no
> playing), then selects the third song and plays. I open the property
of
> player object and see in the source shows "the second song"
> 
> 
> Could someone please help?  The code looks right to me but I don't
know
> if I am missing anything.


Try putting a "lock messages" before you set the hilitedline in 
PlayStopped. I think setting the hilitedline is also causing a 
"selectionchanged" message to be sent, so the script changes the 
selection twice.

-- 
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
___
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 help with "on playStopped"

2005-08-02 Thread J. Landman Gay

Ban Nguyen wrote:

Hello everyone,


I have a list of songs (scrolling list field "list"):

I put this script so when user select a song, then start the player

on selectionchanged
  set the fileName of player "myPlayer" to the selectedtext of field
"list"
  start player "myPlayer"
end selectionchanged


I put this script into the player object "myPlayer" because I want the
next songs continue to play:

on PlayStopped
  local thisLine
  put the hilitedLines of field "list" into thisLine--current line
  set the hilitedLines of field "list" to (thisLine+1)  --next line
  set the fileName of player "myPlayer" to the selectedtext of field
"list"
  start player "myPlayer"
end PlayStopped



For some reason, it does not work right.  What it does is playing the
first song.  After the first song done, it selects the second song (no
playing), then selects the third song and plays. I open the property of
player object and see in the source shows "the second song"


Could someone please help?  The code looks right to me but I don't know
if I am missing anything.



Try putting a "lock messages" before you set the hilitedline in 
PlayStopped. I think setting the hilitedline is also causing a 
"selectionchanged" message to be sent, so the script changes the 
selection twice.


--
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: PLEASE HELP PLEASE HEP.........

2005-07-12 Thread Eric Chatonet

Hi Ban and others who replied,

In a scrolling list field, line selection is automated at mouseDown  
by the engine.
So one single line in both scripts is enough (without using global,  
value function or anything else :-)


answer the hilitedText of fld "My scrolling list field" -- "of me" in  
the field script if you prefer


If you allow me, one word on top of that about ergonomics: however is  
the platform, guide lines say that selecting a line in a list just do  
that and nothing else :-)


Le 11 juil. 05 à 21:08, Ban Nguyen a écrit :


I have this code in the scrolling list field:

global textOfClickedLine
on mouseUp
   select the clickLine
   put the value of the clickLine into textOfClickedLine
   answer textOfClickedLine
end mouseUp

It prints the value of the clickline correctly

And then created a button on the same card

And have this code for the button:

on mouseUp
answer value(textOfClickedLine)
end mouseUp

but it prints out the whole text "textOfClickedLine" not the value.  
How

can I get the value of the "textOfClickedLine" to print out


Best Regards from Paris,

Eric Chatonet.

So Smart Software

For institutions, companies and associations
Built-to-order applications: management, multimedia, internet, etc.
Windows, Mac OS and Linux... With the French touch

Free plugins and tutorials on my website

Web sitehttp://www.sosmartsoftware.com/
Email[EMAIL PROTECTED]/
Phone33 (0)1 43 31 77 62
Mobile33 (0)6 20 74 50 86


___
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 HELP PLEASE HEP.........

2005-07-11 Thread Chris Sheffield

And no need to use the value() function in your button's script, btw.

On Jul 11, 2005, at 1:08 PM, Ban Nguyen wrote:


I have this code in the scrolling list field:

global textOfClickedLine
on mouseUp
   select the clickLine
   put the value of the clickLine into textOfClickedLine
   answer textOfClickedLine
end mouseUp

It prints the value of the clickline correctly

And then created a button on the same card

And have this code for the button:

on mouseUp
answer value(textOfClickedLine)
end mouseUp

but it prints out the whole text "textOfClickedLine" not the value.  
How

can I get the value of the "textOfClickedLine" to print out

I don't know what I did wrong Please help me.

Thank you for you help
___
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



--
Chris Sheffield
Read Naturally
The Fluency Company
http://www.readnaturally.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 HELP PLEASE HEP.........

2005-07-11 Thread Ban Nguyen

It works thank you so much for your help.




-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Chris
Sheffield
Sent: Monday, July 11, 2005 12:20 PM
To: How to use Revolution
Subject: Re: PLEASE HELP PLEASE HEP.

Looks like you already have your variable textOfClickedLine set up as  
a global.  All you need to do is declare that same variable as a  
global in your button's script.  Should work how you want it.

Chris


On Jul 11, 2005, at 1:08 PM, Ban Nguyen wrote:

> I have this code in the scrolling list field:
>
> global textOfClickedLine
> on mouseUp
>select the clickLine
>put the value of the clickLine into textOfClickedLine
>answer textOfClickedLine
> end mouseUp
>
> It prints the value of the clickline correctly
>
> And then created a button on the same card
>
> And have this code for the button:
>
> on mouseUp
> answer value(textOfClickedLine)
> end mouseUp
>
> but it prints out the whole text "textOfClickedLine" not the value.  
> How
> can I get the value of the "textOfClickedLine" to print out
>
> I don't know what I did wrong Please help me.
>
> Thank you for you help
> ___
> 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
>

--
Chris Sheffield
Read Naturally
The Fluency Company
http://www.readnaturally.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: PLEASE HELP PLEASE HEP.........

2005-07-11 Thread Chris Sheffield
Looks like you already have your variable textOfClickedLine set up as  
a global.  All you need to do is declare that same variable as a  
global in your button's script.  Should work how you want it.


Chris


On Jul 11, 2005, at 1:08 PM, Ban Nguyen wrote:


I have this code in the scrolling list field:

global textOfClickedLine
on mouseUp
   select the clickLine
   put the value of the clickLine into textOfClickedLine
   answer textOfClickedLine
end mouseUp

It prints the value of the clickline correctly

And then created a button on the same card

And have this code for the button:

on mouseUp
answer value(textOfClickedLine)
end mouseUp

but it prints out the whole text "textOfClickedLine" not the value.  
How

can I get the value of the "textOfClickedLine" to print out

I don't know what I did wrong Please help me.

Thank you for you help
___
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



--
Chris Sheffield
Read Naturally
The Fluency Company
http://www.readnaturally.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 HELP PLEASE HEP.........

2005-07-11 Thread David Burgun

define it as a global, outside of the handlers

global textOfClickedLine

Hope this helps
Dave



I have this code in the scrolling list field:

global textOfClickedLine
on mouseUp
   select the clickLine
   put the value of the clickLine into textOfClickedLine
   answer textOfClickedLine
end mouseUp

It prints the value of the clickline correctly

And then created a button on the same card

And have this code for the button:

on mouseUp
answer value(textOfClickedLine)
end mouseUp

but it prints out the whole text "textOfClickedLine" not the value. How
can I get the value of the "textOfClickedLine" to print out

I don't know what I did wrong Please help me.

Thank you for you help
___
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: please help!

2002-09-26 Thread Wolfgang M. Bereuter


On Dienstag, September 24, 2002, at 03:42  Uhr, 
[EMAIL PROTECTED] wrote:

> please help!
> Cc: [EMAIL PROTECTED]
> To: [EMAIL PROTECTED]
> From: ie ie <[EMAIL PROTECTED]>
> Reply-To: [EMAIL PROTECTED]
>
> Hello list,
> Im trying to build a distribution of my program ife for OSX, OS9 and
> WIN with Rev 1.1.1
> It worked fine for OS9 and WIN wich I have build before with Rev 1.0
>
> But the problems begun with 1.1.1. Its mostly the same code but I had
> crashes after crashes with the engine.
> Then the rev support suggested me to change some scripts because the
> engine of Rev 1.1.1 is different to 1.0 so maybe thats what causes the
> crashes.
> I have changed all that (I thinks I have found them all)
>
> During this time i changed to OSX to test it there too..
> It works fine (no crash after a lot of testing) in OSX and WIN (tested
> in VPC)...
> But still crashes in OS9
>
> Then I had the idea that maybe the problem is on which system I build
> the distribution.
> So I copyied all the stacks and made 3 different distributions with
> their own stacks to build.
> I started from OSX and builded the OSX Distribution
> Then I started with OS9 and builded the OS9 distribution (fat) and the
> WIN distribution.
>
> OSX works fine without crashes apart from the known bugs (scrolling
> text and colored field frames)
> Win works fine Scrolling and Colors are correct (but looses the icon,
> which worked fine with 1.0)
>
> OS9: All correct, but it still crashes terribly. Mostly after some
> clicks.
> Sometimes on quit.
> It crashed..:
> 1) in my old 9.1 so hard that after restarting OSX 10.1.5 (Default
> start volume) was not able to find the 9.1
> 2) in a clean fresh installed standard Apple MacOS 9.2.2 with "System
> error 10"
> 3) in classic under OSX without any warning.
> 4) It crashed on Macs of some testers too
>
> Anything else I could do?
> Thanks for any help in advance...

Does really nobody have any idea?

regards
Wolfgang M. Bereuter

Learn easy with trainingsmaps©

INTERNETTRAINER Wolfgang M. Bereuter
Edelhofg. 17/11, A-1180 Wien, Austria
...
http://www.internettrainer.com, [EMAIL PROTECTED]
...
Tel: ++43/1/ 961 0418, Fax: ++43/1/ 479 2539

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



Re: Please Help

2002-05-06 Thread Extensor

I have been coding using authoring systems for 10 years and have seen this.
An invisible character gets into the code and is their causing the error but
it can't be seen.

- Original Message -
From: "Steve L" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, May 06, 2002 12:05 PM
Subject: Please Help


> Hello,
>
> I added the on mouseUp--answer "hello" script to my
> existing button, works fine when clicked but when the
> ctrl and h key are pressed it does nothing.
>
> So, I created a new button and set it up the exact
> same way and it works fine when the ctrl and h keys a
> re pressed.
>
> I compared the two buttons and all settings are
> exactly the same; figure that one out.
>
> It works fine now, so thanks for the help.
>
> Steve
>
> __
> Do You Yahoo!?
> Yahoo! Health - your guide to health and wellness
> http://health.yahoo.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: Please Help

2002-05-06 Thread sims

>
>I am trying to set the shortcut keys of a button:

Try this:

1. make a button

2. in the script of the button place:

on mouseUp
   put "Help"
end mouseUp

3. try the button and see  if "Help" pops up.

4. click on a checkbox for the keyboard shortcut & input a letter
(I just tried command y here on my Mac)

5. try the key combo and see if "Help" pops up.

Does that help you?

atb

sims

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



Re: Please Help

2002-05-06 Thread Ken Ray

Steve,

I just tried this in Rev 1.1 on Windows 2000:

1) Create a button
2) Set its script to "on mouseUp;answer "Hello";end mouseUp"
3) In the properties palette I checked off Control (^) and the with key is
"h" (lower case).
4) Chose the browse tool
5) Typed Control-H

... and the answer box came up just fine.

What version of Rev are you using? Are you trying to run this inside Rev's
development environment or as a standalone? If in Rev's environment, don't
forget that you have to choose the browse tool, otherwise the script won't
be executed.

I'm assuming this is PC, right? Or is this Mac?

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

- Original Message -
From: "Steve L" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, May 06, 2002 11:24 AM
Subject: Please Help


> Hello,
>
> I have posted this question three times, and have yet
> to get a response, I am starting to get a complex.
>
> Either this is an extremely stupid question, or no one
> understands it, or just that I am very much disliked.
>
> If it is just that no one has an answer, then maybe
> someone from Rev can help.
>
> Here it goes again:
>
> I am trying to set the shortcut keys of a button:
>
> First, I went into the properties setting of the
> button and checked the :control" key with key "h" as
> the shortcut keys.  This would not work; it did not
> execute the button's mouseUp when the keys were
> pressed.
>
> Then I tried scripting in on preopenCard, the set
> accelMods and accelKey commands that did not work
> either.
>
> I even made sure that the insertion point was not in a
> field, and even tried turning off the Rev UI, but
> nothing works.
>
> Any help is always appreciated.
>
> Thanks
>
> Steve
>
>
> __
> Do You Yahoo!?
> Yahoo! Health - your guide to health and wellness
> http://health.yahoo.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