Ok, that is something I didn't find either. Where is that? (press o for console)
So apparently the actions are not being triggered because if I link to an events code like
|
Source code
|
1
|
<events onkeydown="showlog(); trace('keycode=',keycode); trace('fovmin=',view.fovmin); trace('fovmax=',view.fovmax); trace('fov=',view.fov); main();" />
|
the actions are triggered and main calls hello. What are the ways to call an action?
|
Source code
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<action name="hello">
showlog();
trace('view.maxpixelzoom=', view.maxpixelzoom);
trace("hello ",%1);
</action>
<action name="main">
hello(world);
hello(kitty);
hello(Klaus);
hello();
</action>
|