x6bb
"Bulletin Board" object that lets you "stick" values on it
and "grab" them from elsewhere.
x6bb methods should be used instead of global variables
because they allow you to avoid collisions with framework
globals. The framework uses the methods x6bb.fwGet
and x6bb.fwSet, and your application should use x6bb.appGet
and x6bb.appSet.
EXAMPLE: Example usage:
x6bb.appSet('myvar','value');
var myvar = x6bb.appGet('myvar','acceptableDefault');