brn2ski00 macrumors 68020 Original poster Aug 16, 2007 2,243 16 MA Aug 12, 2008 #1 Does anyone know how to explicitly print out to the Run Log in Dashcode? I am creating a webapp in Javascript and want to dump out a few variables. How can I achieve this?
Does anyone know how to explicitly print out to the Run Log in Dashcode? I am creating a webapp in Javascript and want to dump out a few variables. How can I achieve this?
T tedsmith3rd macrumors member Aug 30, 2006 54 0 US Aug 12, 2008 #2 window.console.log("I like cheese"); should do the trick. If you want something more complicated check this out: http://www.alistapart.com/articles/jslogging
window.console.log("I like cheese"); should do the trick. If you want something more complicated check this out: http://www.alistapart.com/articles/jslogging
brn2ski00 macrumors 68020 Original poster Aug 16, 2007 2,243 16 MA Aug 13, 2008 #3 Perfect, that worked... Thanks!