using Flash with a presentation remote
- Started
- Last post
- 7 Responses
- frankosonik
Has anyone used a presentation remote with Flash?
I've designed a presentation in Flash to be shown on a large screen LCD. It needs to be controlled with a presentation remote. The Flash file currently advances with a keyPress (Right). It works with the keyboard, but not with the remote. Any suggestions?
- ********0
hmmm, it might be a hardware issue here, find out what triggers go to next with that controller and then your flash with follow
- Mimio0
Yeah remap the controller or do what JazX said.
- ********0
on (keyPress "") {
nextScene();
}
on (release) {
nextScene();
}
on that level
- ********0
it might be generalized, I've developed kiosks this way with touch screens. can't remember the code for it
- ********0
you might want to command it to PAUSE as well with something like this: on(keyPress ""){
if(pauseFlag == null){
pauseFlag = 1;
};
pauseMe();}
on(press){
if(pauseFlag == null){
pauseFlag = 1;
};
pauseMe();
}
- frankosonik0
I talked with tech support at the remote vendor, and they said the keystroke should be Pageup/Pagedown and not Right/Left. I'm going through and changing it now, we'll see if it works.
Thanks for your help
- frankosonik0
PageUp/PageDown works instead of Right/Left keypresses.
Thanks again