Just wondering

imamy
11 Aug 2013, 12:09
Is there a way to insert ASL script to the Web Version make the script work?

I generate an internal error when I cut and paste the code directly. Is there something I need to wrap the script in so that the Web Version knows it's ASL script?

Thanks.

jaynabonne
11 Aug 2013, 13:10
I had just tried a test that got the same problem you did. I hoped/assumed that Quest internally would take the function script from the code view and stick it inside a function like:

<function name="test">
// Code view code would be inserted here.
</function>


So I tried having my code view code be:

</function>

<function name="test2">

in the hopes that it would become this:

<function name="test">
</function>

<function name="test2">
</function>

giving us a place to insert arbitrary code thereafter. But it just crashed the web editor... :(