Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

exportRoot How to use it so javascript works on all frames

Participant ,
Oct 17, 2021 Oct 17, 2021

Hi. I have all my javascript on one frame.

I want it to be accessible on any frame ie: so I don't have o copy and paste the same code a hundred times.

I know I have to use exportRoot but I'm not too sure where to put it.

ie: on every variable and every function.

 

This is some of my code for example.

 

 

this.stop();

createjs.Touch.enable(stage);

///////////////////////////////////////////////////////////////////
//Play music

var musicHandler = playMusic.bind(this);
this.btn_playMusic.addEventListener("click", musicHandler);

function playMusic() {
	var bgMusic;
	bgMusic = createjs.Sound.play("bgMusic"); //in library probably.
	bgMusic.play();
	this.btn_playMusic.removeEventListener("click", musicHandler);
}
///////////////////////////////////////////////////////////////////
// drag code

var roundItems = [this.ducky, this.doggy, this.froggy, this.helicopter,  this.monkey, this.sunny, this.tania, this.flower];

for(var i = 0; i<roundItems.length; i++){	
	roundItems[i].on("mousedown", onMouseDown.bind(this));
	roundItems[i].on("pressmove", onMouseMove.bind(this));
	roundItems[i].on("pressup", onMouseUp.bind(this));
	roundItems[i].originX = roundItems[i].x;
	roundItems[i].originY = roundItems[i].y;
}
///////////////////////////////////////////////////////////////////

var nextHandler = nextFunction.bind(this);
this.btn.addEventListener("click", nextHandler);

function nextFunction() {
	this.btn.removeEventListener("click", nextHandler);
	this.gotoAndPlay("ducky");
}

 

558
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Oct 17, 2021 Oct 17, 2021

OK - so I suppose I need to add that I want to access that code from another frame.

So a more exact question would be how do I do that?

Pseudo code

exportRoot."call function nextHandler"

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Oct 17, 2021 Oct 17, 2021
LATEST

So I tried this from another frame to try and access a function from frame 1

 

exportRoot.btn.addEventListener("click", nextHandler);

exportRoot.btn.removeEventListener("click", nextHandler); //to remove the listener afterwards

 

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines