vote up 0 vote down star

I've been trying to build my own (small) framework in JavaScript for an AIR application and I've run into a peculiar problem: I can't find a way for a JavaScript file to load another. It seems the only way to load JavaScript is for an HTML file to load it.

Is this correct? Is there really no way for a JavaScript file to load another?

flag

2 Answers

vote up 1 vote down check

The security restrictions in Application Sandbox mode do not allow instantiating any new JavaScript code after the load event (during that event you can still load and evaluate JS).

As for the loading data, you should be able to use XHR to retrieve any text data you want at any moment of time without any restrictions.

link|flag
vote up 1 vote down

Have you tried creating a script element, setting the src attribute, and adding it to the document body? I don't think the usual document.write() trickery works but I'm pretty sure adding a script element should.

(I believe all paths are relative to the root of the Air application itself.)

link|flag
Haven't tried that one. Seems very roundabout, though. (I was actually looking for an @import statement or something.) – staticsan Apr 27 at 4:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.