What can I use for ((keyPress "<Space>")) ?
===========================
<<Action Script 1.0>>
on (release, keyPress "<Space>") {
gotoAndStop(10);
tellTarget ("_root") {
play();
}
}
===========================
In Animate 2020, What can I use for ((keyPress "<Space>")) ?
===========================
var _this = this;
_this.stop();
var _this = this;
_this.PlayMovie.on('click', function(){
_this.gotoAndPlay(50);
});
===========
In this script, what can I add for keyPress(space bar) event?
I hope anyone will help me for this problem.
