Question
Hide Import URL
My flash document loads audio via an external php document
with mp3 and no-store headers.
Firefox is displaying the location of the file being loaded in it's "Memory cache device" listings.
I'd like to keep the url from being accessible.
Is there a workaround? An actionscript method? Anything?
My actionscript:
mySound = new Sound();
mySound.loadSound("audio.php?track=" + track + "&bandwidth=" + bandwidth, true);
mySound.start();
mySound.onSoundComplete = function() {javascript("GetUpdate();");};
audio = "on";
lower_nav.audio.slash._visible = true;
Thanks in advance.
Firefox is displaying the location of the file being loaded in it's "Memory cache device" listings.
I'd like to keep the url from being accessible.
Is there a workaround? An actionscript method? Anything?
My actionscript:
mySound = new Sound();
mySound.loadSound("audio.php?track=" + track + "&bandwidth=" + bandwidth, true);
mySound.start();
mySound.onSoundComplete = function() {javascript("GetUpdate();");};
audio = "on";
lower_nav.audio.slash._visible = true;
Thanks in advance.