Maxscript: Rollouts and LOCAL variables

My beginner problems & solutions

Moderator: Falk

Antworten
Simon
Site Admin
Beiträge: 1678
Registriert: 10.10.2006, 16:41

Maxscript: Rollouts and LOCAL variables

Beitrag von Simon »

Code: Alles auswählen

(
		local testVar = 999

		rci = rolloutCreator "myRollout" "My Rollout"
		rci.begin()
		rci.addText ("fn lulu = ( testVar -= 1; print testVar )")
		rci.addcontrol #timer #searchTimer "Search Timer" paramStr:("interval:1000 active:true")
		rci.addHandler #searchTimer #tick codeStr:"lulu()"

		rci.end()
		createDialog rci.def width:100 height:100
)
This doesn't work because the variable testVar is defined local but the rollout is always created on a global scope! The variable testVar has to be global too!
{o,o}
|)__)
-"-"-
O RLY?
Antworten