Question : Enter key issue

How can I get the movie to advance to a frame label (batVolt2) when the Enter key is pressed? With the code below, the movie plays when the Enter key is pressed instead of going to the frame with the label "batVolt2".
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
keyListener3 = new Object();
 
keyListener3.onKeyDown = function() {
	if(Key.isDown(Key.ENTER)) {
		gotoAndStop("batVolt2");
	}
};
Key.addListener(keyListener3);
Open in New Window Select All

Answer : Enter key issue

OK, the problem is the SWF needs to receive  focus from the HTML page.

I found an aswer here : Q_21587924

And THE ANSWER here :

http://groups.google.com/group/swfobject/tree/browse_frm/month/2007-12/95cc9fa7c7335170?rnum=31&_done=%2Fgroup%2Fswfobject%2Fbrowse_frm%2Fmonth%2F2007-12%3F

Man, this has been one hell off a ride, but very interesting !
I'll look into your other question after a good cup off coffee ...

regards,

dreamMonkey
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:


	
		SWFObject 2 dynamic publishing example page
				
		
		
	
	
		

Alternative content

Get Adobe Flash player

Open in New Window Select All
Random Solutions  
 
programming4us programming4us