A flash coding problem or resolume bug?

Post your questions here and we'll all try to help.
Post Reply
edwin
Team Resolume
Posts: 1207
Joined: Thu Oct 07, 2004 10:40

Post by edwin »

Hi dker,
resolume does not broadcast the keyboard iput to the flash movie.
A lot of keys are allready taken by resolume, so it you qould press the 'A' key for instance clip 'A' will be selected. Right now flash in resolume will not listen to keyboard or mouse input i'm afraid.

Cheers
Edwin

mfo
Posts: 350
Joined: Fri Oct 08, 2004 11:48

Post by mfo »

the variables created by resolume sit in the _root
in movieclips, you need to access them as _root.rparameter1, _root.raudioX ....

I.e. in your test file, in movieclip wow_ replace the scripts in frame 2 by this:
if (_root.rparameter1>50) {
_root.ensemble.carre._yscale = Math.random()*100;
}
if (_root.rparameter2>50) {
_root.ensemble.rond._xscale = Math.random()*100;
}

Post Reply