News Examples Documentation Download Buy Forum Contact

Documentation

Plugins

XML Extensions

Tools


Third Party Software
for krpano

NOTE: This page is from an older version, see the latest version here.

krpano Actions / Scripting Reference Version 1.20.4

krpano has a small and simple dynamic scripting language. With it krpano can be customized in many ways. A command or function is called 'action' in krpano. It's possible to use existing actions and also to define new ones. The scripting language is dynamic and untyped by default, only some predefined variables are typed, but that is normally not relevant because inside the scripts all type conversions will be done automatically.

About this documentation

This documentation is about global krpano variables and objects, about the actions calling syntax and about all pre-defined krpano actions / functions.

Documentation topics:
For the documentation about the static xml code and object attributes have a look at the:
krpano XML Reference

krpano Global-Variables Reference

Version / Build information Screen information / settings Device informations Mouse / Keyboard Timing / Random values Math constants Keyboard / Button moving Multiresolution information Loading information XML / Scene Programming / Debugging / Error handling

krpano Actions / Functions Reference

Programming logic / Flow control Math operators and functions Number / String formating Animations / Animated value changing Dynamic loading of other panos / tours Viewing animations / Camera control Automatic rotation Coordinate transformation Text visualization View / Pano updates Dynamic adding or removing of screen elements Layer / Plugin / Hotspot Actions External / Javascript Interface Debugging

Syntax and Usage

The syntax and calling conventions of krpano actions / functions:
actionname(parameters); ...
  • Where actionname can be either:
    • the name of a build-in krpano action or...
    • the name of an <action> element that was defined anywhere in the xml or...
    • the name of a krpano variable / attribute that contains krpano action code or is linking to an Actionscript3 (Flash) or a Javascript (HTML5) function.
  • Whitespace characters (like space, tab, new-lines) will be ignored as long they are not inside quotes (single or double quote characters).
  • If there is more than one action call, the calls should be ended with a semicolon.
  • The action calls will be processed in sequence one after the other.
  • The parameters that could be or should be passed to the action depends on the particular action itself. See here the documentation of that action for more.
  • When passing more than one parameter, then the parameters need to be separated by commas.
  • All parameters will be passed as they are written as text to the action. When the parameter is a variable, then only the name of the variable will be passed - but not the value of the variable! To pass the value of a variable the get(variable) action need to be used.
    Note - some actions are resolving variables automatically to their value, but this depends on the particular action itself!
  • To be able to use whitespace characters and commas inside a parameter value, the parameter must be enclosed by single ' or double quotes ".


Expressions

The expression syntax will be used in if checks, in conditional loops (for, loop) and in the calc action. It can be used to evaluate logical conditions, calculate mathematical expressions or to concatenate strings.

The basic syntax is:
a OPERATOR b
  • Where the a or b terms can be either:
    • variables,
    • values,
    • strings (inside single-quotes ' or double-quotes "),
    • nested expressions (in parenthesis),
    • or inline functions.
  • The OPERATOR can be one of the operators listed below.
  • The resolving order depends on the operator, but withhin equivalent operators the resolving order is from left to right.
  • Use parenthesis / nesting for a custom resolving orders - e.g.:
    (a OPERATOR b) OPERATOR (c OPERATOR d)
  • Textual operators like AND or OR are only supported in UPPERCASE notation!

Comparison operators:
==is equal (non-strict)
!=is not equal (non-strict)
<  or  LTis lower than *
>  or  GTis greater than *
<=  or  LEis lower or equal than *
>=  or  GEis greater or equal than *
=== is equal (strict)
!==is not equal (strict)
Logical operators:
||  or  OR the left OR the right expression need to be true *
&&  or  ANDthe left AND the right expression need to be true *
!NOT operator - invert a boolean value
Type operator:
$variableForce using that variable as it is, skip any type detection / conversion (e.g. for Strings that contain a Number as value).
Ternary operators:
if ? then : elseTernary operator
Nesting operators:
( ... )Nesting operator
Mathematical operators:
+plus - add numbers or concatenate strings
-minus
*multiple
/divide
^power of
Binary operators:
<<  or  LSHTleft bit shift *
>>  or  RSHTright bit shift *
BORbitwise OR
BANDbitwise AND
XORbitwise XOR
Inline functions:
isNaN(v)Returns true or false depending if v is Not-a-Number.
int(v)Converts the given value to an Integer. Returns 0 if the conversion was not possible.
number(v)Converts the given value to a Number. Returns NaN (Not-a-Number) if the conversion was not possible.
string(v)Converts the given value to a String.
boolean(v)Converts the given value to a Boolean (true or false).
parseint(v)Parses the given value and converts all valid characters to an Integer. Returns 0 if the conversion was not possible.
parsefloat(v)Parses the given value and converts all valid characters to a Number. Returns NaN (Not-a-Number) if the conversion was not possible.
tolower(v)Converts the given value to a lower-case String.
toupper(v)Converts the given value to a upper-case String.
fromcharcode(v)Returns a string created from the given character code.
charat(s,i)Returns the character from a string at the given index.
charcodeat(s,i)Returns the character code from a string at the given index.
indexof(a,b)Returns the index of the string b inside a.
lastindexof(a,b)Returns the last index of the string b inside a.
slice(s,a,b)Returns a part of the string s from index a to b.
substr(s,i,l)Returns a part of the string s from index i with length l.
trim(s)Returns a string with removed whitespaces around.
tohex(v)Returns a string with a hexadecimal converted value (low case, no prefix).
fromhex(s)Returns a Number from a parsed hexadecimal string (# and 0x prefixes are possible).
rgb(r,g,b)Returns a 32bit Integer-color-value build from the red, green, blue color values (0-255).
rgba(r,g,b,a)Returns 32bit Integer-color-value build from the red, green, blue color (0-255) and alpha (0.0-1.0) values.
escape(v)Returns a string in which certain characters have been replaced by a hexadecimal escape sequence.
unescape(v)Returns a string in which hexadecimal escape sequences are replaced with the character that it represents.
parsepath(s)Parses the given string for url-placeholders.
abs(v)Returns the absolute value of a number.
acos(v)Returns the arccosine of a number.
asin(v)Returns the arcsine of a number.
atan(v)Returns the arctangent of a number.
atan2(a,b)Returns the arctangent of the quotient of its arguments.
ceil(v)Returns the smallest integer greater than or equal to a number.
clamp(v,min,max)Limits/clamps the value to be between min and max.
cos(v)Returns the cosine of a number.
exp(v)Returns the exponential function of a number.
floor(v)Returns the largest integer less than or equal to a number.
log(v)Returns the natural logarithm (also ln) of a number.
max(...)Returns the largest of the given values.
min(...)Returns the smallest of the given values.
pow(a,b)Returns base to the exponent power.
round(v)Returns the value of a number rounded to the nearest integer.
roundval(v,dp)Returns a string of a number rounded to given decimalplaces.
sin(v)Returns the sine of a number.
sqrt(v)Returns the positive square root of a number.
tan(v)Returns the tangent of a number.

Strict / non-strict comparisons

When using non-strict comparisons (by using == or != when the strict mode setting is false) then it will be assumed that the given values are either variables or strings. That means when a variable with the given name exists, then the value of that variable will be used in the comparison. But when the variable doesn't exists, then the given name will be used as string.
In strict comparisons the strings must be explicitly marked by quotes. Variables will resolve either to their value or to null if they don't exists.


* Note - due of xml syntax limitations, the usage of the characters <, >, & might be not possible (e.g. inside xml attributes or inside xml elements without CDATA tag). Therefore it's recommended to use the alternative syntax.



Arrays

Basic principles:
  • Every xml element with a name attribute is an element / item of an Array.
  • The name of the xml element is the name of the Array and the name attribute defines the name of the Array element / item.
  • An Array in krpano is always an Array of objects.
  • Such Array-item object can contain any kind of custom properties / attributes.
  • Arrays can be predefined or defined dynamically at runtime by setting an Array item value - when setting an item value the first time, then automatically an Array will be created.

Static XML Syntax: (when defining in the xml structure)
<array_name name="item_name" value="..." />

Dynamic Actions Syntax: (when accessing or setting at runtime)
array_name[item_name].value

Properties and Actions from Array objects:
  • count
    • Get the current number of items in the array.
    • An Array can be cleared by setting count to 0.
  • sortby(attribute, parameters*)
    • Sort all array items by the value of the given attribute.
    • By default the sorting order will depend on the type of the attribute (e.g. 'numeric vs. string' sorting).
    • parameters (optionally) - a string that can contain one or more of the following values (e.g. separated by a pipe | character):
      • caseinsensitive - case insensitive string sorting.
      • descending - use a descending sorting order.
      • numeric - parse the values as numbers and sort accordingly.
  • createarrayitem(name or index)
    • Create / add a new array item.
  • removearrayitem(name or index)
    • Remove an array item.
    • The items following the removed item will rank / move up.

Default properties from Array-Item objects:
  • index
    • The 0-based index of the current Array-Item (read-only).
  • name
    • The name of the current Array-Item.
    • It's also possible to delete an Array-Item by setting its name to null.

Value-Arrays
Different to the normal krpano-Arrays there are also these special Value-Arrays:
  • Value-Arrays are simple Arrays with an integer index and a value.
  • Dynamically creating Value-Arrays is possible by def(test, array).
  • The access to the items is possible by array[index].
  • The current number of items in the Array can be get via array.length.
  • Value-Arrays are only available in actions code.
  • Internally these are native Arrays from Javascript (HTML5) or Actionscript 3 (Flash). Their usage itself is the same in both cases.


Global Variables

All default build-in global krpano variables:
Variable nametypedefault value
global
local
Object
Object
The global object allows directly accessing the global variable scope.
The usage of global can be necessary inside local- or layer/hotspot scope code to be able to access a global variable when a variable with the same name is already defined the current scope.

The local object is only available inside local-scope actions and allows directly accessing the current local variable scope. This can be used to ensure defining new variables at the local scope when there might be already global variables with the same names.
Variable name (read only)typedefault value
version String "1.20.4"
The krpano version string.
Variable name (read only)typedefault value
xmlversion String
The version setting from the xml.
When not set, this will be the same as the krpano version string.
Variable name (read only)typedefault value
build String "2020-02-04"
The krpano build date string in the format YYYY-MM-DD.
Variable names (read only)typedefault value
mouse.x
mouse.y
mouse.stagex
mouse.stagey
mouse.downx
mouse.downy
mouse.clickx
mouse.clicky
int
int
int
int
int
int
int
int
The mouse position.

The mouse.x and mouse.y coordinates are relative to the left top edge of the area.

The mouse.stagex and mouse.stagey coordinates are relative to the left top edge of the whole stage / screen / window.

The mouse.downx and mouse.downy variables store the position where the mouse button was last pressed down (for left and right buttons). The coordinates itself are relative to the left top edge of the area.

The mouse.clickx and mouse.clicky variables are special case ones - they store the position where the click from onsingleclick or ondoubleclick events had happend. The coordinates itself are relative to the left top edge of the area.
Variable name (read only)typedefault value
keycode int 0
The keycode of the last pressed or released key.

The keycode value will be set in the onkeydown and onkeyup events.

Here a small code snippet to find out the keycode of the pressed key:
<events onkeydown="showlog(); trace('keycode=',keycode);" />
Variable names (read only)typedefault value
wheeldelta
wheeldelta_raw
wheeldelta_touchscale
int
Number
Number
0
Number.NaN
0.0
The roll-delta of the mouse wheel rotation.

These variables will be set in the onmousewheel event.

  • wheeldelta
    • The wheel roll delta as normalized value.
    • Typically +3 or -3 on the most systems.
  • wheeldelta_raw
    • The 'raw' unscaled and non-rounded delta values of the mouse wheel rotation. The normal wheeldelta values are limited to integer values and can be too inaccurate for some usages (plugins).
    • Note - in the krpano Flash viewer, the raw values are only available when using the default krpano embedding script and only in windowed-mode (not in Fullscreen mode)! In the krpano HTML5 viewer, the raw values are always available.
  • wheeldelta_touchscale
    • On touch devices there is no mouse-wheel, but the onmousewheel event will be also called on 2-finger zooming gestures.
    • The wheeldelta_touchscale variable will provide detailed information about the relative touch scale / zoom.
    • Note - only available on touch devices!
      On other devices the value will be always 0.0.
Variable nametypedefault value
fullscreen Boolean false
The fullscreen variable can be used to check or to change the current state of the fullscreen mode. When the variable will be changed, then also the fullscreen mode will be changed.

Example - switch to fullscreen mode:
onclick="set(fullscreen,true);"
Example - switch between fullscreen and windowed mode:
onclick="toggle(fullscreen);"

Notes:
  • Before using the fullscreen setting, it should be verified if the current browser / device actually supports the fullscreen mode. This can be done with the xml fullscreensupport devices setting and the device.fullscreensupport variable.
  • Due Flashplayer and HTML5 security limitations the switching to the fullscreen mode will be only possible as reaction to an user input like a mouse click or a keypress! That means it's only possible switch to fullscreen mode in an onclick or onkeydown event!
  • When the HTML5 fullscreen mode is not supported by the browser (like on iOS), then the fullscreen setting will only change the size of the viewer html element to match the size of the full browser window. Due technical limitations this will not work from inside an <iframe> and can be problematic in nested html structures.
  • When trying to use the HTML5 fullscreen mode from within an <iframe>, it is necessary to add the allowfullscreen parameter (and the non-standard browser versions of it) to the <iframe> declaration. This tells the browser that this iframe is allowed to switch to Fullscreen mode.

    Example:
    <iframe ... allowfullscreen="true" mozallowfullscreen="true" webkitallowfullscreen="true"></iframe>
Variable names (read only)typedefault value
stagewidth
stageheight
int
int
The sizes of the current viewer window in pixels.
Get the these sizes in the onresize event.
Variable name (HTML5 only)typedefault value
stagescale Number 1.0
A global overall scaling setting.
The stagescale setting will scale all krpano elements and sizes.

By scaling all elements, the krpano stage-size (screen-size / resolution) itself will be scaled inversely by this value - e.g. a value of 0.5 will scale-down all elements by 50% while increasing the internal stage-sizes by 200% at the same time.

The default stagescale value depends on the device, the browser, the Javascript window.devicePixelRatio value.
Variable name (read only)typedefault value
browser.useragent
browser.platform
browser.location
browser.domain
browser.protocol
String
String
String
String
String
Information about the browser.
Flash notes - in the Flash viewer these information will be only available when using the krpano embedding script. When directly embedding the swf file, then these information aren't available.
Variable names (read only)type
device.flash Boolean
device.flashversionNumber
device.html5 Boolean
device.desktop Boolean
device.tablet Boolean
device.mobile Boolean
device.handheld Boolean
device.mobilevr Boolean
device.css3d Boolean
device.webgl Boolean
device.multiressupport Boolean
device.panovideosupport Boolean
device.fullscreensupport Boolean
device.depthmapsupport Boolean
device.pixelratio Number
device.fractionalscaling Boolean
device.mouse Boolean
device.touch Boolean
device.ios Boolean
device.iosversion Number
device.iosdesktop Boolean
device.iphone Boolean
device.ipod Boolean
device.ipad Boolean
device.android Boolean
device.androidversion Number
device.androidstock Boolean
device.chrome Boolean
device.chromemobile Boolean
device.chromeversion Number
device.firefox Boolean
device.firefoxversion Number
device.ie Boolean
device.ieversion Number
device.edge Boolean
device.newedge Boolean
device.safari Boolean
device.safariversion Number
device.opera Boolean
device.operaversion Number
device.iframe Boolean
device.standalone Boolean
device.windows Boolean
device.mac Boolean
device.linux Boolean
The device object provides information about the current device/system. It's the dynamic/scripting equivalent to the xml devices attribute.
The attributes/properties of the device object can be checked anytime by scripting code, e.g. by the if() action.

The device object has these properties:
  • flash - true only in the krpano Flash viewer
  • flashversion - version of the Flashplayer
  • html5 - true only in the krpano HTML5 viewer
  • desktop - true only on Desktop
  • tablet - true only on Tablets
  • mobile - true only on Mobiles
  • Note - desktop, mobile and tablet are exclusive to each other, they can never be set at the same time, only one of these can be set to true.
  • normal - true only on Desktop and Tablets (as opposite to mobile)
  • handheld - true only on Mobiles and Tablets (as opposite to desktop)
  • mobilevr - true only in dedicated VR browsers (browsers that are itself also running in VR, e.g. the Oculus Browser or Firefox Reality)
  • css3d - true when CSS3D-Transforms are available (HTML5 only)
  • webgl - true when WebGL is available (HTML5 only)
  • multiressupport - true when the browser is capable for multires
  • panovideosupport - true when the browser is capable for panoramic video
  • fullscreensupport - true only when the Fullscreen-mode is supported
  • depthmapsupport - true only when the Depthmaps are supported
  • pixelratio - the pixelratio of the device/browser
  • fractionalscaling - true when a fractional page-scale or pixelratio is set
  • mouse - true only on devices with mouse support
  • touch - true only on devices with Multi-Touch support
  • Note - mouse and touch can be set at the same time when the device is supporting both (e.g. desktop devices with touch-screens).
  • ios - true only on iOS devices (iPhone, iPod, iPad)
  • iosversion - the iOS version of the device (iPhone,iPad,iPod only)
  • iosdesktop - true when using the iOS desktop mode
  • iphone - true only on the iPhone (and iPod Touch)
  • ipod - true only on the iPod Touch
  • ipad - true only on the iPad
  • android - true only on Android devices
  • androidversion - the Android version (HTML5 only)
  • androidstock - true only in 'stock' (=WebView-based) Android browsers
  • chrome - true only in the Chrome browser (HTML5 only)
  • chromemobile - true only in the Mobile Chrome browser (HTML5 only)
  • chromeversion - version of the Chrome browser (HTML5 only)
  • firefox - true only in the Firefox browser (HTML5 only)
  • firefoxversion - version of the Firefox browser (HTML5 only)
  • ie - true only in the Internet Explorer browser (HTML5 only)
  • ieversion - version of the Internet Explorer browser (HTML5 only)
  • edge - true only in the Microsoft Edge browser (HTML5 only)
  • newedge - true only in the New Chrome-based Edge browser (HTML5 only)
  • safari - true only in the Safari browser (HTML5 only)
  • safariversion - version of the Safari browser (HTML5 only)
  • opera - true only in the (Presto-based) Opera browser (HTML5 only)
  • operaversion - version of the Opera browser (HTML5 only)
  • iframe - true only when inside an iFrame
  • standalone - true only in the Standalone Flashplayer
  • windows - true only on Windows systems
  • mac - true only on Mac OSX systems
  • linux - true only on Linux systems

Examples
if(device.html5, ...);
if(device.flash, ...);
if(device.android, if(device.flash, ...); );
if(device.iOSversion GT 5.1, ...);
Variable name (read only)typedefault value
timertick int
The timertick variable returns the number of milliseconds that have elapsed since the viewer was started (1000 milliseconds = 1 second).
Variable name (read only)typedefault value
random Number 0.0 - 1.0
The random variable returns a random number in the range 0.0 to 1.0.

Example - how to get an integer random value in the range 1 - 10:
mul(val, random, 9);
add(val, 1);
roundval(val);
trace('random value=',val);
Variable namestypedefault value
hlookat_moveforce
vlookat_moveforce
fov_moveforce
Number
Number
Number
0.0
0.0
0.0
These variables can be used to set a force to move the view / the pano.
Their main usage is for keyboard or button movement control.

When they will be set to a value other than 0.0, the view will start slowly accelerating (controlled by control.keybaccelerate) and then move with a maximum speed (controlled by control.keybspeed) until they will be set back to 0.0, then the movement will slow down (controlled by control.keybfriction).
Variable name (read only)typedefault value
multireslevel int
The multireslevel variable returns the current multi-resolution level
(0 - image.level.count).
Variable nametypedefault value
lockmultireslevel String -1
Lock the automatic multi-resolution level selection to a fixed level.
Set lockmultireslevel to "current" to lock the level to the current level. To release the level locking set lockmultireslevel back to "-1".
Variable nametypedefault value
downloadlockedlevel Boolean false
When set to true, the currently locked level will be downloaded completely.
Variable nametypedefault value
progress.progress Number 0.0
The current loading progress as linear value from 0.0 to 1.0.

It could be used to create custom loading animations - e.g. use the onxmlcomplete event for starting the loading animation, and the onloadcomplete event for stopping it.
Variable nametypedefault value
network.viewerpath
network.htmlpath
network.firstxmlpath
network.currentxmlpath
String
String
String
String
Path to several locations (the path only, without filename):
  • viewerpath - path to the krpano viewer file.
  • htmlpath - path to html file.
  • firstxmlpath - path to first loaded xml file.
  • currentxmlpath - path to current xml file.
If the paths will be absolute or relative paths depends on the paths used in the embedding and on the Browser and Flashplayer environment.
Variable name (read only)typedefault value
xml.url String
The xml.url variable contains the path/url of the currently loaded xml file.
Variable name (read only)typedefault value
xml.content String
The xml.content variable contains the whole content of the currently loaded xml file as string. After loading a <scene> with the loadscene() action, the xml.content variable will contain only the content of the <scene> element.
Variable name (read only)typedefault value
xml.scene String
The xml.scene variable contains the name of currently loaded scene.
Variable name (read only)typedefault value
xml.view Object
A backup of the values from the initial <view> element defined in the current xml or scene. E.g. get the initial view.hlookat value via xml.view.hlookat.

Note - only the values that were defined in the xml are stored here, no default values. That means before using a value from that object, it would be necessary to check if these variables actually exists - e.g. via if(xml.view.fov !== null, ...);.
Variable name (read only)typedefault value
lasterror String
The lasterror variable contains the last error message when an error had happened. To get this variable the onloaderror event must be used.
Variable nametypedefault value
inlinefunctions Object
The inlinefunctions variable is a Javascript Object that stores all functions that are available as as Inline Functions inside krpano expressions.

With the object it is possible to extend krpano with additional inline functions by adding them to that object.

Example:
<action name="extendkrpano" type="Javascript" autorun="preinit">
  krpano.inlinefunctions.capitalize = function(s)
  {
    return s.charAt(0).toUpperCase() + s.slice(1);
  }
</action>

<action name="test" autorun="onstart">
  // Outputs: 'Test'
  trace(calc( capitalize('test') ));
</action>


Action Documentations

def(variable, type, value*)
Define a new variable with a specific type and optionally set it to the given value.

When no value will be given and the variable already exists, then the variable with its current value will be converted to the given type.

Parameters:
  • variable
    • The variable name.
    • The variable will be created when it doesn't exists.
  • type
    • The type of the variable.
    • Available types:
      • boolean - true or false
      • number - a numeric value
      • integer or int - an integer value
      • uint - an unsigned integer value
      • string - text characters
      • object - an object with custom properties
      • array - a value-array
  • value (optionally)
    • The new value for this variable.
    • When no value will be given and the variable already exsits, then the variable with its current value will be converted to the given type.
    • When no value will be given and the variable doesn't exsits, then these the default values are used: boolean=false, number=NaN (Not a Number), integer=0, string=null.
    • When the type is object or array, no value can be set.
Examples
def(b, boolean, true);
def(n, number, 123.456);
def(s, string, 'text');
def(obj, object);
def(obj.x, number, 0.0);
def(obj.y, number, 0.0);
set(variable, value)
set(object, variable:type=value, variable:type=value, ...)
Set a variable to the a value.

The set() action was two calling / usage possibilities:
  • When called with two arguments:
    • This is a normal set of one variable to a value.
  • When called with three or more arguments:
    • This is a multiple-set of several variables at once.
    • Here the variables will be set or added to an object.
    • Optionally it will be also possible to specify the type of the variable.

Parameters:
  • object (optionally - for the three or more arguments call)
    • The object for the multiple set call - at this object the variables will be set.
    • When the object doesn't exists, it will be created.
    • To define variables at a specific scope, it would be e.g. possible to use the global or local objects here.
  • variable
    • The variable name.
    • The variable will be created when it doesn't exists.
  • type (optionally - for the three or more arguments call)
    • The type of the variable.
    • Available types:
      • boolean - true or false
      • number - a numeric value
      • integer or int - an integer value
      • uint - an unsigned integer value
      • string - text characters
  • value
    • The new value for this variable.
    • When the variable already exists, then the value will be converted to the type of that variable (when no explicit type was be defined).
    • Note - to get the value of other variables use the get(variable) or calc(expression) actions.
Examples
Normal set:
set(var1, 'hello');
set(var2, get(var1));
set(fullscreen, true);
set(layer[p1].visible, false);
set(hotspot[h1].scale, 2.5);
set(contextmenu.item[0].caption, 'hello item');
set(events.onxmlcomplete, null);
Multiple set:
set(layer[p1], visible=false, alpha=0.5);
set(hotspot[hs1],
    type='text',
    ath=0.0,
    atv=0.0,
    html='Test Text',
    css='text-align:center',
    bg=false
);
set(global,
    test='Test text',
    havesomething:boolean=true,
    var2:string=get(var1),
    value:number=calc(1 + 2*3)
);
action( get(variable), ... )
array[ get(variable) ]
<xmlelement attribute="get:variable" ... />
Resolves the variable to its value.

The get(var) action is a special action that can be only used as parameter when calling other actions or when accessing array elements.

Parameters:
  • variable
    • Any variable.
    • When the variable doesn't exists, get() will return null.

Note - some actions are automatically trying to resolve their given parameters to their values. For these actions using get(var) would be not necessary.
Examples
set(dstvar, get(srcvar));
looktohotspot(get(name));
lookto(get(h), get(v), get(f));
showtext(get(msg));
tween(var,get(dstval));
set(pic, spot1);
set(hotspot[get(pic)].visible, false);
trace('xyz=', xyz, ' get(xyz)=', get(xyz));
txtadd(msg, 'fov=', get(view.fov));
calc(variable, expression)
action( calc(expression), ... )
array[ calc(expression) ]
<xmlelement attribute="calc:expression" ... />
Calculate / evaluate / resolve the expression to its value.

The calc(expression) action is a special action that can be only used as parameter when calling other actions or when accessing array elements.

Parameters:
  • variable
    • The variable where the result will be stored.
    • The variable will be created when it doesn't exists.
  • expression
Examples
set(y_new, calc(y_old - offset1 + offset2));
set(animationtime, calc('%1' == 'instant' ? 0.0 : 0.5));
<layer url="calc:'%CURRENTXML%/skin/' + settings.image1" />
copy(destination, source, typeconversion*)
The copy() action copies the content from one variable to the other one.

By default this is the same as: set(destination, get(source)).

Parameters:
  • destination
    • The destination variable.
    • When the variable doesn't exists, it will be created.
  • source
    • The source variable.
    • When the variable doesn't exists, null will be set to the destination variable.
  • typeconversion (optionally)
    • When set to true (the default):
      When both variables have different types, then the value of the source variable will be converted to the type of the destination variable.
    • When set to false:
      Copy the value and the type of the source variable to the destination variable.
Examples
copy(dstvar, srcvar);
copy(cur_hlookat, view.hlookat);
copy(layer[text].x, mouse.x);
copy(layer[text].y, mouse.y);
delete(variable, ...)
Delete and remove the given variables.

Parameters:
  • variables
    • Any variable name.
    • It's possible to delete several variables at once - just pass several variables names (separated by a comma).
Examples
set(tmp1, ...);
set(tmp2, ...);
... do something ...
delete(tmp1, tmp2);
2 or 3 parameter call:
if(condition, then-actions, else-actions*)
4 or more parameter call:
if(
   condition, then-actions,
   else-if-condition, then-actions,
   else-if-condition, then-actions,
   ...
   else-actions
)
The if() action allows conditional execution of code.

Parameters:
  • condition
  • then-actions
    • The actions that will be executed when the evaluation of the condition will be true.
  • else-actions (optionally)
    • The actions that will be executed when the evaluation of the condition will be false.
Examples
if(fullscreen, fullscreensetup(), windowsetup() );
if(fullscreen, set(layer[controls].visible, false) );
if(i LT 10, loop(next) );
if(var === null, set(var,0));
if(hotspot[spot1] === null, trace(there is no spot1 hotspot));
if((varA GT 5) AND (varA LT 10),
    trace('varA is between 5 and 10')
  );
if(varA AND varB AND varC, trace('all vars are true') );
if(var1 GT var2,
    trace('condition is true');
    lookto(100,20,50);
  ,
    trace('condition is false');
    lookto(0,0,100);
  );
if(a*2+b GT (c+3)*1.5 OR teststring == '123', ...);
if(
    test == 1, trace('test is 1'),
    test == 2, trace('test is 2'),
    test == 3, trace('test is 3'),
    trace('test is someting else')
);
delayedcall(delay, actions)
delayedcall(id, delay, actions)
Calls / executes the given actions after a given time.

Parameters:
  • id (optionally)
    • An optional unique id for the delayedcall.
    • This id can be used to stop the delayedcall by calling stopdelayedcall(id).
  • delay
    • The number of seconds to wait before executing the actions.
  • actions
    • The actions to call after the delay.
Examples
delayedcall(5.0, hidelogo() );
delayedcall(10, looktohotspot(spot1);loadpano(pano2.xml); );
delayedcall(1, showtext('hello');       );
delayedcall(4, showtext('to the pano'); );
<action name="updatemousepos">
  copy(layer[cursor].x, mouse.x);
  copy(layer[cursor].y, mouse.y);
  delayedcall(0.02, updatemousepos() );
</action>
stopdelayedcall(id)
Stop the delayedcall with the given id.

Parameters:
  • id
    • The id of the delayedcall that should be stopped.
Examples
<events name="introimage_events"
        onnewpano="delayedcall(introimage, 5.0, hide_introimage() );"
        onremovepano="stopdelayedcall(introimage);"
        />
nexttick(actions)
Calls / executes the given actions in the next processing tick - that means after the current actions, but as soon as possible.

Parameters:
  • actions
    • The actions to call.
callwhen(condition, actions)
callwhen(id, condition, actions)
Calls the given actions when the condition is true or when it will become true.
When the condition is currently not true, then the callwhen() action will wait as long until the condition will become true.

Parameters:
  • id (optionally)
    • An optional unique id for the callwhen.
    • This id can be used to stop a waiting callwhen by calling stopcallwhen(id).
  • condition
    • A logical expression.
    • The callwhen() action will check this condition constantly every frame until it will become true.
  • actions
    • The actions to call when the condition is true.
Examples
callwhen(plugin[video].loaded, plugin[video].playvideo(...); );
callwhen(plugin[maps].loaded, plugin[maps].setcenter(...); );
stopcallwhen(id)
Stop a still waiting callwhen with the given id.

Parameters:
  • id
    • The id of the callwhen that should be stopped.
for(startactions, condition, nextactions, loopactions)
For loops.

First the startactions will be called, then the condition be checked and when it is true - then the loopactions will be called, then the nextactions and then it starts checking the condition and the loop again.

Parameters:
  • startactions
    • The actions that will be called / executed before the for loop starts.
  • condition
  • nextactions
    • The actions that will be called / executed after one loop (after the loopaction).
  • loopactions
    • The actions that will be repeatedly called / executed as long as the condition is true.
Examples
for(set(i,0), i LT 10, inc(i), trace('i=',i) );.
for(set(i,0), i LT layer.count, inc(i), 
  trace('layer[',i,'].name=',layer[get(i)].name);
);  
loop(condition, loopactions)
asyncloop(condition, loopactions, doneactions*)
As long as the condition is true the loopactions will be called repeatedly.

The normal loop() action will continue with the following actions when the loop itself is done. The asyncloop() will continue intermediately with the following actions and execute the loopactions once per frame. When the async looping is finally done, then the doneactions will be called.

Parameters:
  • condition
  • loopactions
    • The actions that will be repeatedly called / executed as long as the condition is true.
  • doneactions (optionally, asyncloop only)
    • The actions that will be called when the condition becomes false and the looping stops.
Examples
ondown="asyncloop(pressed, layer[scrollarea].scrollby(+2,0) );"
onover="asyncloop(hovering, updatemousepos(), hideinfo() );"
asyncloop(true, framehandler() );
renderloop(loopactions)
stoprenderloop()
The renderloop() action will execute the loopactions once every frame.
To stop the loop the stoprenderloop() action need to be called inside the loopactions.

Parameters:
  • loopactions
    • The actions that will be repeatedly called / executed every frame.
    • Can be a krpano action-code string or a Javascript function.
Examples
krpano-Action-Code Example:
renderloop(
    ...
    if(...done with rendering...,
      stoprenderloop();
    );
);
Javascript-Code Example:
krpano.actions.renderloop(function(){
    ...
    if(...done with rendering...){
      krpano.actions.stoprenderloop();
    }
});
setinterval(id, delay, actions)
clearinterval(id)
Calls / executes the given actions repeatedly with a delay time interval between them.

Parameters:
  • id (optionally)
    • An unique id for the interval.
    • This id can be used to stop the interval by calling clearinterval(id).
  • delay
    • The number of seconds to wait between the actions calls.
    • When using 0 as delay, the actions will be called once every frame.
  • actions
    • The actions to call every delay seconds.
Examples
setinterval(time, 1.0, 
    jsget(time, (new Date()).toLocaleTimeString(); );
    trace('time=',time);
  );
<events onkeydown="setinterval(get(keycode), 0.1, trace(keycode); );"
        onkeyup="clearinterval(get(keycode));"
        />
toggle(variable)
The toggle action toggles the value of the given (boolean) variable between true and false.

Parameters:
  • variable
    • The boolean variable that should be toggled.
Examples
toggle(fullscreen);
toggle(layer[button1].visible);
switch(variable)
switch(variable, value1, value2, ...)
The switch action switches the value of the given variable between / through several states. Everytime when the switch action will be called the value will be switched / changed.

When only the variable itself without value parameters will be given, then the variable will be switched between true and false.

When there are two or more values given as parameters then the variable will switch through all of these values (from left to right).

Parameters:
  • variable
    • The variable that should be switched / changed.
  • value1, value2, ... (optionally)
    • The switch-through values for this variable.
Examples
switch(fullscreen);
switch(layer[button1].visible);
switch(layer[button1].alpha, 1.0, 0.5);
switch(layer[child].parent, button1, button2, button3);
switch(destpos, -100, 0, +100); tween(y,get(destpos));
break()
  • Break / stop the execution of action calls from the current flow and the also the action calls from one nesting level up (e.g. when called inside an if() call then also the flow outside that if will be stopped).
  • When used inside a for() or loop() loop, the break() call will also stop that loop.
exitcall()
  • Directly exit / stop the current actions 'call'.
  • A 'call' is either a call to an <action> or the calling of a variable that contains action code or the calling of action code from events.
callwith(caller, actions)
Call krpano action code with using a specific plugin / layer or hotspot element as caller. This can be used for direct property access or to simulate event calls on these elements.

Parameters:
  • caller
    • The element that should be used as caller.
    • Can be only a <plugin> / <layer> or <hotspot> element.
  • actions
    • Any krpano action code.
    • The code will be executed in the 'context' of the caller - that means 'direct' access to its properties.
Examples
callwith(layer[test], onclick);
callwith(layer[test], trace('test pos=',x,'/',y); );
callwith(layer[test], tween(alpha, 0.0); );
scope(scope, actions)
Call krpano action code within a specific scope.

Parameters:
  • scope
    • The scope for the actions code.
    • Available scopes:
      • global
      • local
      • localonly
      • parent
      • private:NAME
      Details about the scopes here: actions scope.
  • actions
    • Any krpano action code.
Examples
scope(localonly, for(set(i,0), i LT 10, inc(i), trace(i)); );
scope(private:my_xml_plugin, trace(internal_var); );
parentscopeset(variable, value)
Set a variable to the a value - like a set() call - but in the scope of the parent action.
This could be used to return / pass back a result from an inner local scope action to an outer one.

Parameters:
  • variable
    • The variable name.
    • The variable will be created when it doesn't exists.
  • value
    • The new value for this variable.
    • When the variable already exists, then the value will be converted to the type of that variable.
linkeventscope(element)
Link the current local scope to the events of the given element.

When an event of that element (e.g. onclick) will be called, then the same scope will be used in the event code. By default events are always using the global scope.

Note - when having linked to a scope, it is necessary to use caller to address the element scope itself!

Parameters:
  • element
    • A layer or hotspot element.
assignstyle(elementname, styles)
Copy the attributes from one or more <style> elements to a custom element.

Parameters:
  • elementname
    • The name of the element where the style attributes should be copied to.
      E.g. layer[test] or myelement[name].
  • styles
    • The name of a <style> element.
    • Several style names can be to combined by a | character.
Examples
assignstyle(layer[test], 'teststyle');
assignstyle(layer[test], 'style1|style2');
copyattributes(destobject, srcobject)
Copy all attributes from one object to another one.

Note - the parameters of the copyattributes() action need to be the objects, not the names/paths of the objects! That means it might be necessary to use the get() action to resolve the names/paths.

Parameters:
  • destobject
    • The destination object - the object where the attributes will be copied to. Existing attributes will be overwritten.
  • srcobject
    • The source object - all attributes from that object will be copied to the destination object.
Examples
copyattributes(get(layer[test]), get(style[style1]));
events.dispatch(eventname, instantly*)
Dispatches / calls the given event from all <events> elements.

Parameters:
  • eventname
    • The name of the event.
  • instantly (optionally)
    • A Boolean setting (true or false, false by default).
    • When set to true, the events will be called and executed instantly, when not set or set to false, the events will be called after the current actions calls.
Examples
<events name="events1" myevent="trace(events1...);" />
<events name="events2" myevent="trace(events2...);" />
...
events.dispatch(myevent);
add(variable, valueA, valueB*)
sub(variable, valueA, valueB*)
mul(variable, valueA, valueB*)
div(variable, valueA, valueB*)
mod(variable, valueA, valueB*)
pow(variable, valueA, valueB*)
Actions for mathematical calculations.
These actions can be used with 2 or 3 parameters:

  • with 2 parameters:
    • add(dst,val1)  ⇒  dst = dst + val1 (like +=)
    • sub(dst,val1)  ⇒  dst = dst - val1 (like -=)
    • mul(dst,val1)  ⇒  dst = dst * val1 (like *=)
    • div(dst,val1)  ⇒  dst = dst / val1 (like /=)
    • mod(dst,val1)  ⇒  dst = dst % val1 (modulate)
    • pow(dst,val1)  ⇒  dst = dst ^ val1
  • with 3 parameters:
    • add(dst,val1,val2)  ⇒  dst = val1 + val2
    • sub(dst,val1,val2)  ⇒  dst = val1 - val2
    • mul(dst,val1,val2)  ⇒  dst = val1 * val2
    • div(dst,val1,val2)  ⇒  dst = val1 / val2
    • mod(dst,val1,val2)  ⇒  dst = val1 % val2 (modulate)
    • pow(dst,val1,val2)  ⇒  dst = val1 ^ val2

Note - val1 and val2 can be values or variables. When val1 or val2 is a variable then automatically the content of the variable will be used!

Parameters:
  • variable
    • The variable where the result of the calculation will be stored.
    • When the variable doesn't exists, it will be created.
  • valueA / valueB (optionally)
    • The values or variables for the calculation.
Examples
set(val, 1);
add(val, 1);
trace('val should be 2: val=',val);
mul(doublewidth, width, 2.0);
mul(scale, 0.5);
div(result, vala, valb);
add(dst,rotate,360); tween(rotate,get(dst),5);
add(xpos, mouse.x, mouse_x_offset);
sub(destx, stagewidth,  destwidth);
div(aspect,16,9);
mod(cur_hlookat,cur_hlookat,360);
pow(sqrt,val,0.5);
inc(variable, byvalue*, max*, min*)
dec(variable, byvalue*, min*, max*)
These actions increase or decrease variable (with saturation or limiting).

Parameters:
  • variable
    • The variable to increase or decrease.
  • byvalue (optionally)
    • Increase or decrease the variable by this value.
    • When not set, the variable will be increased or decreased by 1.
  • max / min (optionally)
    • Defines maximum and minimum values.
    • When one limit will be reached then the value will be set back to the other limit value. This can be used to let the varibale either wrap around a defined range or to clip at at specific limit (with min=max).

Note - The inc() and dec() actions will convert the variable type to 'integer'!
Examples
inc(i);
inc(frame,1,get(lastframe),0);
inc(ypos,30);
inc(view.hlookat, 2, 90, 90);
clamp(variable, min, max)
Limit the value of the variable to be between the given min and max values.

Parameters:
  • variable
    • The variable to clamp / to limit.
  • min
    • The minimum value - when value of the variable is below that value, it will be set to this min value.
  • max
    • The maximum value - when value of the variable is above that value, it will be set to this max value.
Examples
clamp(percent, 0, 100);
screentolayer(bar, mouse.stagex,mouse.stagey, lx,ly);
div(fill, lx, layer[bar].pixelwidth);
mul(fill, 100);
clamp(fill, 0, 100);
txtadd(layer[barfill].width, get(fill), '%');
Math.*
The Math object provides constants and actions for mathematical calculations.

The most Math actions can be called in two ways - either by just passing the name of the variable - then variable will be used as parameter and the result of the calculation will be stored back to the variable, or by specifying an additionally parameter where the result should be stored.

roundval(variable, decimalplaces*)
roundval(destinationvariable, variable, decimalplaces)
Rounds the value of the variable to given decimal places.

Note - the variable will be a string internally after rounding!

Parameters:
  • destinationvariable (optionally)
    • The variable where the result will be stored.
    • Only when called with 3 parameters!
  • variable
    • The variable to be rounded.
    • When called with 1 or 2 parameters, the result will be stored also in that variable.
  • decimalplaces (optionally)
    • The number of decimal places - 0 when not set.
Examples
roundval(val);
roundval(val, 2);
roundval(hlookat_print, view.hlookat, 2);
copy(cur_hlookat,view.hlookat);
mod(cur_hlookat,360);
roundval(cur_hlookat,2);
copy(cur_vlookat,view.vlookat);
roundval(cur_vlookat,2);
txtadd(msg,'looking at ',get(cur_hlookat),'/',get(cur_vlookat));
tohex(variable, prefix*, length*)
tohex(destinationvariable, variable, prefix, length)
Convert the content of the given variable to a hexadecimal string.
Can be used to create html/css color strings.

Parameters:
  • destinationvariable (optionally)
    • The variable where the result will be stored.
    • Only when called with 4 parameters!
  • variable
    • The variable to be converted to a hexadecimal string.
    • When called with less than 4 parameters, the result will be stored also in that variable.
  • prefix (optionally)
    • A prefix (like '0x' or '#') for the string.
  • length (optionally)
    • A fixed length for the result.
Examples
tohex(color,'#',6);
set(color, ...an_external_integer_input...);
tohex(color,'#',6);
txtadd(layer[text1].css,'color:',get(color),';');
tolower(variable)
toupper(variable)
tolower(destinationvariable, sourcevariable)
toupper(destinationvariable, sourcevariable)
Convert the content of the given variable to a lower or upper case.

Parameters:
  • destinationvariable (optionally)
    • The variable where the case conversion result will be stored.
    • Only when called with 2 parameters!
  • variable / sourcevariable
    • The variable to be converted to a lower or upper case.
txtadd(destination, txt1, txt2*, txt3*, ...)
The txtadd action can be used to add/connect several texts / values together.
The action can be used with 2 or more parameters. When using only two parameters (destination and a text) then the text will be added to current value of the destination variable.

Parameters:
  • destination
    • The destination variable where the connected text will be stored.
    • The variable will be created when it doesn't exists.
  • txt1, txt2, txt3, ... (optionally)
    • The texts that will be connected together.
    • When using only one txt parameter then this text will be added to the content of current destination variable.
    • Note - when the content of a variable should be used - then the get() action must be used to resolve the variable!
Examples
txtadd(picfilename,'%CURRENTXML%/pic_',get(pic),'.jpg');
txtadd(crop,'0|',get(ypos),'|333|285');
txtadd(pname, 'thumbbar_image_', get(i));
txtadd(layer[text].html,'[p]',get(data[txt1].content),'[/p]');
txtadd(msg,get(view.fovtype),'=',get(fov),'Ā°');
subtxt(dstvar, srcvar, startpos, len)
The subtxt action extracts a part of an other text.

Parameters:
  • dstvar
    • The destination variable where the extracted text will be stored.
    • The variable will be created when it doesn't exists.
  • srcvar
    • The variable or text with the source text.
  • startpos
    • The starting position from where the text should be extracted.
  • len
    • The length of the text to extract.
indexoftxt(index, txt, searchtxt, startindex*)
The indexoftxt action gives the position of the first occurrence of the 'searchtxt' value in the 'txt' string.

Parameters:
  • index
    • A variable that will store the index of first occurrence of 'searchtxt'.
    • Or -1 if 'searchtxt' never occurs.
    • The variable will be created when it doesn't exists.
  • txt
    • The text in which it should be searched.
  • searchtxt
    • The text to searched for.
  • startindex (optionally)
    • The starting startindex / position where to start searching for the text (0 by default).
txtreplace(var, searchtext, replacetext)
txtreplace(dstvar, srcvar, searchtext, replacetext)
The txtreplace action searches in 'var/srcvar' for all occurrences of 'searchtext' and replaces them with 'replacetext'.

Parameters:
  • var / srcvar / dstvar
    • The variable where to search for (var, srcvar) and where the result will be stored (var, dstvar).
    • The variable will be created when it doesn't exists.
  • searchtxt
    • The text that should be searched for.
  • replacetext
    • The text that will replace the 'searchtxt' occurrences.
txtsplit(string, separator, resultingarray)
txtsplit(string, separator, var1, var2, ...)
The txtsplit action searches in 'var/srcvar' for all occurrences of 'searchtext' and replaces them with 'replacetext'.

Parameters:
  • string
    • The string to split, can be either a text or a variable.
  • separator
    • The separator character or string.
  • resultingarray (when calling the txtsplit() action with 3 arguments)
    • Name of an array variable that will contain the split parts as 'value' properties.
  • var1, var2, ... (when calling the txtsplit() action with 4 or more arguments)
    • The results of the spliting will be directly assigned to the given variables.
    • When using null as variable, that value will ignored/skipped (could be used to extract only some specific values).
Examples
Split into separate variables:
txtsplit('1|2|3', '|', a, b, c);
trace('a=',get(a), ' b=',get(b), ' c=',get(c));
Result:
a=1 b=2 c=3
Split into an array:
txtsplit('x|y|z', '|', arr);
for(set(i,0), i LT arr.count, inc(i),
trace('arr[',get(i),'].value=',arr[get(i)].value);
);
Result:
arr[0].value=x
arr[1].value=y
arr[2].value=z
txtjoin(var, separator, array)
txtjoin(var, separator, var1, var2, ...)
The txtjoin action concates all of the elements in the given array or the given variables and inserts the specified separator string between them.

Parameters:
  • var
    • The variable where the result will be stored.
    • The variable will be created when it doesn't exists.
  • separator
    • The separator character or string that will be insert between the elements.
  • array (when calling the txtjoin() action with 3 arguments)
    • Name of an array variable.
  • var1, var2, ... (when calling the txtjoin() action with 4 or more arguments)
    • The variables or values to join.
Examples
Split into separate variables, modify and then join again:
txtsplit(image.prealign, '|', rx, ry, rz);
add(ry,90);
txtjoin(image.prealign, '|', rx, ry, rz);
Split into an array:
txtsplit('x|y|z', '|', arr);
for(set(i,0), i LT arr.count, inc(i),
trace('arr[',get(i),'].value=',arr[get(i)].value);
);
Result:
arr[0].value=x
arr[1].value=y
arr[2].value=z
fromcharcode(var, charcode)
The fromcharcode action converts the given character code to a string and stores in the given variable.

Parameters:
  • var
    • The variable where to store the character.
    • The variable will be created when it doesn't exists.
  • charcode
    • The Unicode character code as number.
escape(var)
escape(var, text)
unescape(var)
unescape(var, text)
The escape and unescape actions are escaping the content of the given variable or the given text and then storing the result in the given variable.

Parameters:
  • var
    • Without text parameter - the variable which will be escaped/unescaped.
    • With text parameter - the variable where the escaped/unescaped text will be stored.
  • text (optionally)
    • The text that that will be escaped/unescaped.
tween(variable, value, time*, tweentype*, donecall*, updatecall*)
The tween action can be used for a time-controlled animation / change of a variable.
The action will dynamically change the current value of the variable to the given value.

Color support: When tweening a variable with a name that contains the word 'color', then the values will be automatically interpreted as 32bit ARGB colors and each color channel will be processed individually.

Multiple variable support: It is possible to tween several variables together at once. Therefore specify several variables, values and tweentypes separated by | characters. When several variables were specified, but only one value and/or only one tweentype, then all variables will tween to the same value and/or use the same tweentype. The time and the done- and updatecalls will be always the same for all given variables.

Parameters:
  • variable
    • The variable that should be changed.
    • Use the | character to specify several variables.
    • When the variable name contains the word 'color', then process the variable value as 32bit ARGB color value.
  • value
    • The destination value for this variable.
    • When tweening percent values - add a '%' character to the value.
    • Use the | character to specify several values for several variables.
    • Note - to tween to the value of another variable use the get() action to get the value of the other variable!
  • time (optionally)
    • The time in seconds for the change from the current value to the destination value (0.5 seconds by default).
    • Instead of using a fixed time for the change it is possible to define the maximum moving distance for the value and a time for that distance (not supported when tweening multiple variables). This allows to use a short time for a short distance and long time for a long distance.
      This can be done by using the distance function:
      • distance(maxdistance,maxtime)
        • maxdistance - the maximum distance between the start and the destination value
        • maxtime - the time in seconds for this maximum distance

  • tweentype (optionally)
    • The tweening / interpolation type (easeOutQuad by default).
    • See here for all available tween types: tweentypes.
  • donecall (optionally)
    • The action commands that should be executed when the tween is done and the destination value has been reached.
    • Instead of normal actions, it is also possible to use the special keyword WAIT here. In this case the user interface and the execution of the following actions will be blocked until the destination value has been reached.
  • updatecall (optionally)
    • These action will be called every time (=every frame!) when the value will be updated / changed!
    • WARNING - use with care! When heavly used this can reduce the framerate!

Some information about the origin of the name "tween" - Wikipedia about Tweening.
Examples
tween(scale,2);
tween(rotate,90);
tween(width,50%);
onover="tween(alpha,0.7,distance(0.3,0.2));"
onout="tween(alpha,1.0,distance(0.3,0.2));"
set(alpha,0);
set(visible,true);
tween(alpha, 1.0 ,0.3);
tween(layer[logo].width, get(destwidth));
set(layer[image].enabled,false);
tween(layer[image].alpha,0.0,0.5,default,removeplugin(image));
set(view.stereographic,true);
tween(view.vlookat, 90.0, 2.0);				
tween(view.fisheye, 1.0, 2.0);
tween(view.fov, 150.0, 2.0);
stoptween(variable, ...)
The stoptween action stops a currently running tween action.

Parameters:
  • variable
    • The name of the variable which is currently tweening and should be stopped.
  • ... variable, variable, ... (optionally)
    • Addtional variables that should stop tweening.
Examples
ondown="tween(layer[text].y, 10, distance(400,0.7), linear);"
onup="stoptween(layer[text].y);"
tweentypes
All available tween types for the tween action:
linear
easeinquad
easeoutquad
easeinoutquad
easeinback
easeoutback
easeinoutback
easeincubic
easeoutcubic
easeinquart
easeoutquart
easeinquint
easeoutquint
easeinsine
easeoutsine
easeinexpo
easeoutexpo
easeincirc
easeoutcirc
easeinbounce
easeoutbounce
easeoutinquad
easeinoutcubic
easeoutincubic
easeinoutquart
easeoutinquart
easeinoutquint
easeoutinquint
easeinoutsine
easeoutinsine
easeoutinexpo
easeinoutexpo
easeinoutcirc
easeoutincirc
easeinoutbounce
easeoutinbounce
loadpano(xmlpath, vars*, flags*, blend*)
loadscene(scenename, vars*, flags*, blend*)
loadpanoscene(xmlpath, scenename, vars*, flags*, blend*)
loadxml(xmlstring, vars*, flags*, blend*)
Actions to load a new panos.

Note - only the layer, plugin, hotspot and event elements with keep="true" will be kept when loading new panos!

Parameters:
  • xmlpath (for loadpano)
    • The path/url of the new pano xml file to be loaded (use null for none).
    • When a relative path will be used then the file will be loaded from the basedir folder, which is %FIRSTXML% by default. That means that the paths in all loadpano calls are relative to the first loaded xml file.
  • xmlstring (for loadxml)
    • The content of a xml file as string / text to be loaded (should be escaped).
  • scenename (for loadscene)
    • The name of the <scene> element that should to be loaded.
  • vars (optionally)
    • Custom variables to set (use null for none).
    • These variables will be set after parsing / resolving the xml but before starting to load the pano images. This way these variables can be used either to overwrite settings from the xml or to set addtional ones.
    • Variables can be defined as var1=val1 pairs separated by &amp;.
  • flags (optionally)
    • Addtional flags for loading (use null for none).
    • Several flags can be combined by a | character.
    • Available flags:
      • MERGE (the recommended flag)
        • Merges all settings from the current and the next pano.
        • If there are layers, plugins or hotspots in the new panorama with the same name as the kept ones, the new elements will not be loaded.
        • This is the recommended setting for virtual tours.
      • PRELOAD
        • Preload the full resolution of the next pano for the current viewing range before blending to it.
        • Without that flag the blending will start as soon ANY content (e.g. the preview-pano, low-res tiles, ...) has fully filled the view.
        • Without PRELOAD flag the switching from one pano to the next pano can be much faster, so this flag should be only used in certain cases.
      • KEEPIMAGE
        • Keep the current pano-image.
        • Ignores the <image> element from the next pano.
      • KEEPVIEW
        • Keep the current view settings.
        • Except the viewing range limitations as they are more related to the pano image.
      • KEEPMOVING
        • Keep the current view and allow moving during the blending.
      • KEEPSCENES
        • Keep the current scenes (loadpano only).
      • KEEPPLUGINS
        • Keep the current loaded layers / plugins.
      • KEEPHOTSPOTS
        • Keep the current loaded hotspots.
      • NOPREVIEW
        • Skip / ignore the <preview> element of the new pano.
      • REMOVESCENES
        • Remove all current scenes.
      • IGNOREKEEP
        • Ignore the keep="true" setting and remove also these elements.
      • IMAGEONLY
        • Load only the pano-image (and the preview).
        • Can not be used with the loadpanoscene() action.
  • blend (optionally)
    • Blend / fade to next panoroma - transition animation.
    • Available blending modes:
      NOBLEND
      No blending, just switch directly to the next panorama (the default).

      BLEND(time, tweentype)
      Blend / Cross-fade from current panorama to next one.

      Parameters:
      • time - The blending time in seconds (default=2.0).
      • tweentype - The blending curve / motion shape, type of the blending animation (default=easeInCubic) - see tweentypes.

      (WebGL only)COLORBLEND(time, color, tweentype)
      Blend to a color and then from that color to the next panorama.

      Parameters:
      • time - The blending time in seconds (default=2.0).
      • color - The in-between color in hex format (default=0x000000 = black).
      • tweentype - The blending curve / motion shape, type of the blending animation (default=easeOutSine) - see tweentypes.

      (WebGL only)LIGHTBLEND(time, color, colorscale, tweentype)
      Add or subtract a color and then cross-fade to the next panorama.

      Parameters:
      • time - The blending time in seconds (default=2.0).
      • color - The color to add in hex format (default=0xFFFFFF = white).
      • colorscale - The scaling factor of the color, use negative values for subtracting (default=2.0).
      • tweentype - The blending curve / motion shape, type of the blending animation (default=easeInCubic) - see tweentypes.

      (WebGL only)SLIDEBLEND(time, angle, smooth, tweentype)
      A slide animation between the current and the next panorama.

      Parameters:
      • time - The blending time in seconds (default=2.0).
      • angle - The angle / direction of the slide in degrees (default=0.0).
      • smooth - The smoothing / blurring of the transition line (0.0 to 1.0, default=0.2).
      • tweentype - The blending curve / motion shape, type of the blending animation (default=linear) - see tweentypes.

      (WebGL only)OPENBLEND(time, shape, smooth, zoom, tweentype)
      An opening animation between the current and the next panorama.

      Parameters:
      • time - The blending time in seconds (default=2.0).
      • shape - A factor that defines the opening shape (-1.0 to +1.0) - 0.0=circle opening, -1.0=vertical opening, +1.0=horizontal opening (default=0.0).
      • smooth - The smoothing / blurring of the transition line (0.0 to 1.0, default=0.2).
      • zoom - Additionally zoom-out the old panorama (0.0 to 1.0, default=0.0).
      • tweentype - The blending curve / motion shape, type of the blending animation (default=linear) - see tweentypes.

      (Flash or WebGL only)ZOOMBLEND(time, zoom, tweentype)
      Zoom into the current view and cross-fade to the next panorama.

      Parameters:
      • time - The blending time in seconds (default=2.0).
      • zoom - The zoom factor (default=2.0).
      • tweentype - The blending curve / motion shape, type of the blending animation (default=easeInOutSine) - see tweentypes.

      DEMO: Pano Blending Demo

      Note - When the selected blending mode will be not supported (e.g. when using a 'WebGL only' mode and only Flash or CSS3D is available), then it will automatically fallback to the default blending mode.
Examples
loadpano(pano2.xml);
loadpano(pano2.xml, null, MERGE, BLEND(1));
loadscene(scene1);
loadscene(scene1, null, MERGE, BLEND(1));
loadxml('<krpano><image><sphere url="pano.jpg"/></image></krpano>');
loadxml(get(data[xml].content), null, KEEPALL);
loadpano('%VIEWER%/pano.xml', null, MERGE, BLEND(2));
loadpano(sphere.xml, image.hfov=1.0&view.limitview=fullrange);
openurl(url, target*)
Open an url / link.

Parameters:
  • url
    • The url to open.
  • target (optionally)
    • The target where the url should be opened.
    • Possible settings:
      • _blank - open the url in a new window (the default)
      • _self - open the url in the current frame in the current window
      • _parent - open the url in the parent of the current frame
      • _top - open the url in the top-level frame in the current window
Examples
openurl('https://krpano.com',_self);
openurl('help.html');
lookat(h, v, fov*, distortion*, architectural*, pannini*)
Look at this panorama position.

Parameters:
  • h
    • The horizontal looking direction (view.hlookat) in spherical coordinates in degrees (-180 to +180).
  • v
    • The vertical looking direction (view.vlookat) in spherical coordinates in degrees (-90 to +90).
  • fov (optionally)
    • The field of view (view.fov) in degrees (0 - 179).
  • distortion (optionally)
  • architectural (optionally)
  • pannini (optionally)
Examples
lookat(0,0);
lookat(0,0,90);
loadpano(pano.xml);
lookat(45.1, -20.2, 110.0);
lookto(toH,toV,fov*,motiontype*,shortestway*,nonblocking*,donecall*)
looktohotspot(hotspotname*, fov*, motiontype*, shortestway*)
moveto(toH, toV, motiontype*)
zoomto(fov, motiontype*)
Move the view from current looking position to the given position.

Note - the user interface and all other actions are blocked during the movement. That means the next action will be executed when the current action was done. The oninterrupt action can be used to make these actions interrupt able by the user.

Parameters:
  • toH
    • Horizontal destination looking direction (-180 to +180, wraparound possible).
  • toV
    • Vertical destination looking direction (-90 to +90).
  • hotspotname (for looktohotspot, optionally)
    • The name of the hotspot.
    • This will be use the hotspot position (ath/atv) as destination position.
    • When no name will be defined and looktohotspot() will be called from a hotspot element then that hotspot itself will be used.
  • fov (optionally)
    • The destination fov (0 to 179).
    • The looktohotspot action will use automatically the size of the hotspot as destination fov when the fov was not set. The other actions keep the current fov when not set.
  • motiontype (optionally)
    • The type of the motion.
    • Possible settings:
      • linear(speed) - a linear motion
        • speed = moving speed in degrees/second
      • smooth(accel,break,maxspeed) - accelerated smooth movement (=default)
        • accel = acceleration in degrees/secondĀ² (default=720)
        • break = negative acceleration in degrees/secondĀ² (default=-720)
        • maxspeed = maximum moving speed in degrees/second (default=720)
      • tween(tweentype,time) - tween animation curve
        • tweentype = one of the tween types
        • time = time in seconds for the movement
  • shortestway (optionally)
    • The use the shortest possible way from the current to the destination position.
    • Possible settings: true or false (default=true).
  • nonblocking (optionally, lookto only)
    • When set to true, then the lookto action will not wait for completing the movement before continue executing the the following actions. The user-interface will also be not blocked.
    • When the lookto movement is done then the donecall action will be called (when defined).
  • donecall (optionally, lookto only, only when nonblocking is true)
    • This action will be called when the nonblocking lookto movement is done.
Examples
moveto(100.0,5,linear(10));
zoomto(130,smooth());
lookto(33,-22,30,smooth(100,50,20));
looktohotspot(hotspot1);
looktohotspot(hotspot2, 40);
looktohotspot(hotspot3, 25, smooth(100,50,20));
looktohotspot(get(name));
adjusthlookat(desthlookat)
Adjusts the view.hlookat value for manual tweening.
It fixes the 360 wrap around for the shortest way to desthlookat.

Parameters:
  • desthlookat
    • The intended destination hlookat value.
    • When desthlookat is the name of a variable, then automatically the value of that variable will be used.
    • The current view.hlookat variable will be adjusted (without changing the current view) to be next to this value.
Examples
adjusthlookat(140);
tween(view.hlookat, 140);
adjust360(source_ath, target_ath)
Adjusts the source_ath variable to be shortest 360-horizontal-around way to target_ath variable.

Parameters:
  • source_ath
    • The source/start ath value.
    • source_ath needs to be the name of a variable.
  • target_ath
    • The intended target/destination ath value.
    • When desthlookat is the name of a variable, then automatically the value of that variable will be used.
Examples
Move a hotspot to the current horizontal viewing position:
adjust360(hotspot[test].ath, view.hlookat);
tween(hotspot[test].ath, get(view.hlookat), 1.0);
getlooktodistance(result, toH, toV, fromH*, fromV*)
Get the spherical distance between the fromH / fromV and toH / toV lookto points (in degrees). The result will be always between 0.0 and 180.0 (more than 180 degree distance is not possible on a sphere).

Parameters:
  • result
    • The name of the variable where the distance value will be stored.
    • The variable will be created when it doesn't exists.
    • When calling this function directly by Javascript, the result parameter can be null, the result will be returned as Javascript return value in this case.
  • toH
    • Horizontal looking-to position (-180 to +180, wraparound possible).
    • Can be a variable name or a value.
  • toV
    • Vertical looking-to position (-90 to +90).
    • Can be a variable name or a value.
  • fromH (optionally)
    • Horizontal looking-from position (-180 to +180, wraparound possible).
    • Can be a variable name or a value.
    • When not defined, the current horizontal looking direction (view.hlookat) will be used by default.
  • fromV (optionally)
    • Vertical looking-from position (-90 to +90).
    • Can be a variable name or a value.
    • When not defined, the current vertical looking direction (view.vlookat) will be used by default.
stoplookto()
Stop a non-blocking lookto / looktohotspot / moveto / zoomto action.
stopmovements()
Instantly stop all user-driven (by mouse, keyboard or touch) panning and zooming movements.
wait(parameter)
Wait a number of seconds or wait for an event.

Note - The user interface and all following actions will be blocked during the waiting. That means the next action in the current call will be executed when the current wait action is done. The oninterrupt action can be used to make this action interruptable by the user.

Parameters:
  • parameter
    • any number - this the time the action will wait in seconds
    • LOAD - wait until loading is finished
    • BLEND - wait until loading and blending are finished
Examples
oninterrupt(break);
lookto(150,30,70);
wait(3);
lookto(242,0,150);
lookto(280,-10,50);
wait(3);
loadpano(pano2.xml,null,MERGE,BLEND(2));
lookat(100,50,5);
wait(BLEND);
lookto(100,50,150);
oninterrupt(actions)
This action can be used before starting a set of actions (like lookto, looktohotspot, moveto, zoomto, wait and tween with WAIT as donecall) that are blocking the user interface.
When any of these actions will be interrupted by the user (e.g. by a click) then the these actions will be stopped and the in the oninterrupt action defined actions be executed.

Parameters:
  • actions
    • The action commands to call on a user interrupt.
    • Addtionally there is a special command possible here:
      break - this will just break the current actions.
Examples
oninterrupt(break);
lookto(150,30,70);
wait(3);
lookto(242,0,150);
lookto(280,-10,50);
wait(3);
oninterrupt( trace(user interrupt); );
lookto(0,0,90);			
lookto(90,0,90);
lookto(180,0,90);
lookto(270,0,90);
lookto(0,0,90);
screentosphere(x,y, h,v)
spheretoscreen(h,v, x,y, stereoside*)
Actions for converting between screen and spherical coordinates.

The screentosphere action will convert the x/y variables to the h/v variables and the spheretoscreen action the h/v variables to the x/y variables.

Parameters:
  • x / y
    • Variables with screen coordinates in the pixels from the left top edge.
  • h / v
    • Variables with spherical coordinates in the degrees (360x180).
  • stereoside (optionally)
      For stereo rendering - define to which screen side the coordinates should be mapped. Possible settings: l for the left side or r for right side or not-set/undefined for normal non-stereo screen coordinates.
Notes:
  • The x,y,h,v parameters must be variable names, using values is not possible!
  • When a variable doesn't exist, it will be created.
Examples
screentosphere(mouse.x, mouse.y, toh, tov);
screentolayer(layer, screenx,screeny, layerx,layery)
layertoscreen(layer, layerx,layery, screenx,screeny)
Actions for converting between screen / stage and relative <layer> coordinates.

Parameters:
  • layer
  • screenx / screenx
    • Variables with screen / stage coordinates in the pixels from the left top edge.
  • layerx / layery
    • Variables with layer coordinates from the left top layer edge.
Notes:
  • The screen /stage coordinates are based on the krpano coordinate system (from left-top 0 / 0 to right-bottom stagewidth / stageheight).
  • The layer coordinates will be scaled when scalechildren is enabled.
  • Rotated layers are not supported!
  • All parameters must be variables, using values is not possible!
  • When a variable doesn't exist, it will be created.
Examples
screentolayer(bar, mouse.stagex,mouse.stagey, lx,ly);
div(fill, lx, layer[bar].pixelwidth);
mul(fill, 100);
clamp(fill, 0, 100);
txtadd(layer[barfill].width, get(fill), '%');
spheretospace(h,v,depth, x,y,z)
spacetosphere(x,y,z, h,v,depth)
Actions for converting between spherical and XYZ 3D space coordinates.

Parameters:
  • h / v
    • Spherical coordinates in degrees.
  • depth
    • Distance from spherical center (1000.0 by default).
  • x / y / z
    • 3D space coordinates.
Notes:
  • All parameters must be variables, using values is not possible!
  • When a variable doesn't exist, it will be created.
Examples
Convert the hotspot position from spherical to space coordinates:
spheretospace(ath,atv,depth, tx,ty,tz);
set(ath,0);
set(atv,0);
set(depth,0);
and back:
spacetosphere(tx,ty,tz, ath,atv,depth);
set(tx,0);
set(ty,0);
set(tz,0);
remapfovtype(fov, srcfovtype, dstfovtype)
remapfovtype(fov, srcfovtype, dstfovtype, width, height)
Remap a fov value from one fovtype to another.

When changing the viewing fovtype and at the same time, remapping the viewing fov, then the resulting pano zoom will keep the same.

Parameters:
  • fov
    • A variable with the fov value that should be changed.
    • The result will be stored in the same variable.
  • srcfovtype
    • The current fovtype.
    • Can be: HFOV, VFOV, DFOV or MFOV.
  • dstfovtype
    • The new fovtype.
    • Can be: HFOV, VFOV, DFOV or MFOV.
  • width (optionally)
    • The width of the fov area/frame in pixels.
    • By default the current screen/area size will be used.
  • height (optionally)
    • The height of the fov area/frame in pixels.
    • By default the current screen/area size will be used.
Examples
set(view.fovtype, HFOV);
set(view.fov, 90);
...
set(view.fovtype, VFOV);
remapfovtype(view.fov, HFOV, VFOV);
showtext(text, textstyle*)
Deprecated - use the new and extended showtext.xml plugin instead!
This one works basically the same, but it works for Flash and for HTML5.
updateobject(updateall*, updatefov*)
Updates / rebuilds the internal 3D model of the pano object.

This must be called after changes of the display.details and display.tessmode settings.
When changing of the image.hfov, image.vfov or image.voffset settings interactivly, this action must be called with updatefov=true to get an updated pano object!

Note - the rebuilding of the internal 3D model is a heavy process! This action should be used carefully!

Parameters:
  • updateall (optionally)
    • For multi-resolution pano - should all levels be updated?
    • Possible settings: true or false (default=false).
  • updatefov (optionally)
Examples
set(image.hfov,1);
updateobject(true,true);
updatescreen()
  • Forces a redraw of the screen.
invalidatescreen()
  • Forces a redraw of the screen.
  • And resets also the idletime counter (the time without user interaction).
addlayer(name, varname*)
addplugin(name, varname*)
addhotspot(name, varname*)
Dynamically create and add a new layer, plugin or hotspot element.

Parameters:
  • name
    • Name of the new layer/plugin or hotspot element.
    • When not setting a name or using 'auto' as name, an automatic-generated name will be used.
  • varname (optionally)
    • Create a variable with the given name linked to the new added element.

Javascript-Notes: When directly calling from Javascript the new element will be additionally also given back as return-value.
Examples
addlayer(button);
set(layer[button].url,button.jpg);
set(layer[button].align,bottom);
set(layer[button].x,10);
set(layer[button].y,20);
set(layer[button].onhover,showtext('hovering the new button'));
set(layer[button].onclick, removelayer(button) );
addhotspot(newspot);
set(hotspot[newspot].url,spot.png);
set(hotspot[newspot].ath,150);
set(hotspot[newspot].atv,30);
set(hotspot[newspot].scale,0.7);
set(hotspot[newspot].zoom,true);
set(hotspot[newspot].onclick, removehotspot(newspot) );
addhotspot(polyspot);
set(hotspot[polyspot].fillalpha, 0.25);
set(hotspot[polyspot].borderalpha, 0.50);
set(hotspot[polyspot].onclick, removehotspot(polyspot) );
set(hotspot[polyspot].point[0].ath,-10);
set(hotspot[polyspot].point[0].atv,-10);
set(hotspot[polyspot].point[1].ath,-10);
set(hotspot[polyspot].point[1].atv,+10);
set(hotspot[polyspot].point[2].ath,+10);
set(hotspot[polyspot].point[2].atv,+10);
set(hotspot[polyspot].point[3].ath,+10);
set(hotspot[polyspot].point[3].atv,-10);
addlayer('background_layer', bg);
bg.loadstyle('design1');
set(bg.bgcolor, 0x777777);
removelayer(name, removechildren*)
removeplugin(name, removechildren*)
removehotspot(name)
Dynamically remove and destroy a layer, plugin or hotspot element.

Parameters:
  • name
    • Name of the layer/plugin or hotspot element that should be removed.
  • removechildren (optionally)
    • When set to true, all children elements will be removed too.
js( JavascriptFunction(parameters) )
Call a Javascript function.

The parameters will be parsed by krpano before calling the Javascript code. Use get(var) in the parameters to resolve krpano variables.
Examples
Code in the .html or .js file:
function test(p1, p2, p3)
{
  alert(p1 + ": " + p2 + " / " + p3);
}
Code in the xml file:
js( test('Lookat', get(view.hlookat), get(view.vlookat)) );
jscall( ...any Javascript code... )
Directly call any kind of Javascript code.

Inside the Javascript code these objects are available for a two-way communication:
  • krpano
  • caller - the object of the <layer>, <plugin> or <hotspot> element that has called that action (HTML5 only).
Examples
Change the style of a html element:
jscall('document.getElementById("test").style.display="none";');
Use the calc() action to build the Javascript call and pass krpano variables:
jscall(calc('console.log("krpano version: ' + version + '")'));
Go back to the previous webpage:
jscall('history.back()');
jsget(variable, ...Javascript code... )
Get the value of a Javascript variable or the return value of a Javascript function.

Inside the Javascript code these objects are available for a two-way communication:
  • krpano
  • caller - the object of the <layer>, <plugin> or <hotspot> element that has called that action (HTML5 only).

Parameters:
  • variable
    • The name of krpano variable where the returned value will be stored.
    • The variable will be created when it doesn't exist.
Examples
Get the address of the current webpage:
jsget(ret, 'location.href');
trace('location=', get(ret));
Let the user enter something:
jsget(passwort, 'prompt("Enter Password")');
if(password == 'hidden', ...);
Get the current date in the format YYYY-MM-DD:
jsget(date, 'new Date().toISOString().slice(0,10);');
trace('date=', get(date));
showlog(state*, position*)
Show or hide the trace output log.

Parameters:
  • state (optionally)
    • true - Show the log window (default).
    • false - Hide the log window.
  • position (optionally, HTML5-only)
    • top - Show the log at the top of the viewer window.
    • bottom - Show the log at the bottom of the viewer window (default).
debugvar(varname)
Show / trace details (value and type) about a variable in the output log.
When the variable is an object, then also all object properties will be shown.

Notes:
  • Debug messages will be only shown when the debugmode setting is enabled.
  • Consider enabling the consolelog setting in the html file to see these messages also in the browser console.
  • Doing many traces is affecting the rendering performance! Especially avoid constantly tracing messages every frame!
debug(...)
trace(...)
warning(...)
error(...)
Traces texts or the content of variables to the output log.

  • debug() will trace DEBUG: messages.
    These messages will be only shown when the debugmode setting is enabled.
  • trace() will trace INFO: messages.
  • warning() will trace WARNING: messages.
  • error() will trace ERROR: messages and additionally also open the log (only when showerrors is enabled).

Parameters:
  • ....
    • Any text or variable.
    • When passing a variable, then that variable will be automatically resolved to its value.
  • Special parameter values: (HTML5 only)
    • [HTML] ...
      When the text starts with [HTML] then the following text can be HTML-code, but where the < and > characters need to be replaced with [ and ].
    • [OW] ...
      The line will be 'overwriteable' - that means the next trace will overwrite / replace that line.
    • [CLEARLOG]
      Clears the log.
    • [MAXLINES=NN]
      Defines the maximum lines to log, the default is 100.

Notes:
  • Debug messages will be only shown when the debugmode setting is enabled.
  • Consider enabling the consolelog setting in the html file to see these messages also in the browser console.
  • Doing many traces is affecting the rendering performance! Especially avoid constantly tracing messages every frame!
Examples
trace('view.maxpixelzoom=', view.maxpixelzoom);
<events onkeydown="trace('keycode=',keycode);" />
onresize="trace('size=',stagewidth,'x',stageheight);"
onclick="trace('mouse clicked at ', mouse.x, ' / ', mouse.y);"
trace('xyz=',xyz,' get(xyz)=',get(xyz));
fatalerror(errormessage)
Show an error message and stop the user interaction.

Parameters:
  • errormessage
    • The error message to show.