Quartz Composer JavaScript Reference © Cybero Designs  

sticky

Type Method
Format
Commentary

Supposedly only supported in Firefox, perhaps due to the JS engine QC uses being Mozilla compliant, does work in QC too. Non standard.
Sample code - QC 3 JavaScript
function (__string output) main ()
{
var result = new Object();
var supports_sticky;
try { RegExp('','y'); supports_sticky = true; }
catch(e) { supports_sticky = false; }
result.output = "supports_sticky";
return result;
}

Return to the Start Page