Alice Community  

Go Back   Alice Community > Alice 2 > How do I...?

Reply
 
Thread Tools Display Modes
Problem whit mouse methods
Old
facup94
Junior Member
 
Status: Offline
Posts: 2
Join Date: Jun 2012
Question Problem whit mouse methods - 07-16-2012, 08:38 AM

I have a problem whit mouse events.
When i click multiple times, the method run multiple times too. But i want the method activates only when is not working at this time.
Sorry for my english.
I looking something like:
if (method is running = true)
do nothing
else
do something

But when i click multiple times this method continues running after i stop click (number of times i click).
Attached Files
File Type: a2w shoot game.a2w (442.3 KB, 3 views)
   
Reply With Quote
Old
zanaqua
Junior Member
 
Status: Offline
Posts: 3
Join Date: Jul 2012
Default 07-16-2012, 12:48 PM

I think this is what you are looking for
Attached Files
File Type: a2w Shoot Game(2).a2w (432.8 KB, 9 views)
   
Reply With Quote
Old
facup94
Junior Member
 
Status: Offline
Posts: 2
Join Date: Jun 2012
Default 07-16-2012, 01:50 PM

Thanks, but problem continue. I don't know if is my PC or what.
When i click a lot of times quickly, method repeats number of times i've clicked.
And i wanna exactly what you do, but alice don't do that. your world is perfect but no work. And repeat I don't know if the problem is on my PC or whatever.
   
Reply With Quote
Old
drellem
Member
 
drellem's Avatar
 
Status: Offline
Posts: 35
Join Date: Jun 2012
Default 07-16-2012, 04:58 PM

Here it is.
I wait for the method to finish before allowing the method to execute with
Wait 0.5
Attached Files
File Type: a2w Shoot Game(2).a2w (446.6 KB, 5 views)
   
Reply With Quote
Old
ogromen
Junior Member
 
Status: Offline
Posts: 1
Join Date: Jul 2012
Default 07-18-2012, 08:00 AM

Go to Google and search for the topic on this forum and some others where the answer could be given.


...............................
Movies database
http://deportedirecto.es/products.ph...52d03706903%29
Start of a new MLM
Homepage and search engine at the same time. This is Napred.BG. Check it out on http://napred.bg

Last edited by ogromen; 05-02-2013 at 06:35 AM.
   
Reply With Quote
Reminder
Old
djslater107
Administrator
 
Status: Offline
Posts: 190
Join Date: Jan 2007
Default Reminder - 07-21-2012, 08:19 AM

Members of this forum are encouraged to not write code for other members, but rather provide pseudocode explanations of possible solutions. Those who continue to write and share solutions will have their posting privileges suspended.

Thank you.


Don Slater
Alice Team
Carnegie Mellon University
   
Reply With Quote
Use while mouse is clicked on something
Old
djslater107
Administrator
 
Status: Offline
Posts: 190
Join Date: Jan 2007
Default Use while mouse is clicked on something - 10-13-2020, 07:37 AM

You have set this up well, actually, but another response pointed out that Alice 2 puts every event into a queue and will process them one after another no matter how long the wait is. (This is an issue that we have fixed in Alice 3, where you are able to use a setting to ignore multiple mouse-clicks)

Try this in Alice 2.
1) Right click on the "When mouse is clicked on... " tile
2) Select "Change to..."
3) Select "While mouse the mouse is pressed on something"
4) The tile will change so that you now have a Begin, a During, and End option.
5) Put your method call in either Begin or End, not During.

Begin and End execute the method one time either when you start to press the mouse or when you release the mouse. During will execute the method continuously as long as the mouse button is held.

This should work for you. I have attached a sample project as an illustration. Let m know if you have any other questions.

Don Slater
Alice Project



Quote:
Originally Posted by facup94 View Post
I have a problem whit mouse events.
When i click multiple times, the method run multiple times too. But i want the method activates only when is not working at this time.
Sorry for my english.
I looking something like:
if (method is running = true)
do nothing
else
do something

But when i click multiple times this method continues running after i stop click (number of times i click).
Attached Files
File Type: a2w bunnyhop.a2w (313.2 KB, 0 views)


Don Slater
Alice Team
Carnegie Mellon University
   
Reply With Quote
Use the while mouse is pressed on something event
Old
djslater107
Administrator
 
Status: Offline
Posts: 190
Join Date: Jan 2007
Default Use the while mouse is pressed on something event - 10-13-2020, 07:50 AM

You have done a good job trying to solve this problem, but as was pointed out, Alice 2 puts events into a Queue and will still fire them in sequence no matter how long you Wait. (Alice 3 addresses this problem with an option to ignore multiple clicks on mouse events, but that does not help you here.)

However, it is possible to convert the "When mouse is clicked on..." event to a "while the mouse is pressed..." event, which will solve the problem.

1) Right-click on the "When mouse is clicked on... " tile
2) Select "change to..."
3) Select "While the mouse is pressed on..."
4) Select your mouse-press target
5) You now have three options Begin, During, and End. Add your method call to either Begin or End, not During. Your gun should now only fire once either when you click the mouse, or when you release the mouse (depending on which option you chose.

Begin responds to the mouse-press one time when you start to press the mouse button

End responds to the mouse-press one time when you release the mouse button

During continually responds to the mouse-press as long as you are holding the mouse button.

I have attached a demo world "bunnyhop.a2w" that illustrates this event.

Please let me know if you have any questions.

Don Slater
Alice Project
Attached Files
File Type: a2w bunnyhop.a2w (313.2 KB, 0 views)


Don Slater
Alice Team
Carnegie Mellon University
   
Reply With Quote
Reply

Tags
method, mouse, multiple times

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



Copyright ©2024, Carnegie Mellon University
Alice 2.x © 1999-2012, Alice 3.x © 2008-2012, Carnegie Mellon University. All rights reserved.