Si può scrivere un file di testo direttamente con action script, senza utilizzare asp o qualsiasi altra tecnologia server?
Si può scrivere un file di testo direttamente con action script, senza utilizzare asp o qualsiasi altra tecnologia server?
Puoi vedere per esempio questo:
http://www.flashkit.com/movies/Scrip...8036/index.php
Ovviamente va solo in locale e probabilmente solo con IE.
ah, se ti può interessare, c'è anche questa ...
http://www.flashguru.co.uk/000757.php
Bhe è javascrpit richiamata da flash, perchè in AS dal 5 in su non esiste una cosa simile, o sbaglio ??
se non sbaglio tutto è nella pagina html
<SCRIPT LANGUAGE=JScript>
<!--
function writeToDisk(writeString) {
var fso = new ActiveXObject("Scripting.FileSystemObject");
var a = fso.CreateTextFile("c:\\testFile.txt", true);
a.WriteLine(writeString);
a.Close();
}
//-->
</SCRIPT>
<SCRIPT LANGUAGE=JavaScript>
<!--
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Handle all the the FSCommand messages in a Flash movie
function Movie1_DoFSCommand(command, args) {
var Movie1Obj = InternetExplorer ? Movie1 : document.Movie1;
//
// Place your code here...
//
if ( command == "writeToDisk" )
writeToDisk(args);
else
document.writeln("did not work fool");
}
// Hook for Internet Explorer
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 &&
navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
document.write('<SCRIPT LANGUAGE=VBScript\> \n');
document.write('on error resume next \n');
document.write('Sub Movie1_FSCommand(ByVal command, ByVal args)\n');
document.write(' call Movie1_DoFSCommand(command, args)\n');
document.write('end sub\n');
document.write('</SCRIPT\> \n');
}
//-->
</SCRIPT>
Flash MX Esempi da scaricare -
Team www.BeatFly.com - render,photo,ecc.. Elements01.net - Beat Fly official Blog-
fra le altre cose, il primo link, scaricato e provato in locale, mi viene intercettato lo scrip da Norton come Azione Altamente Dannosa,
attivata da HTML.
???![]()
Flash MX Esempi da scaricare -
Team www.BeatFly.com - render,photo,ecc.. Elements01.net - Beat Fly official Blog-
Il secondo è veramente fico. Grazie 7vite
Flash MX Esempi da scaricare -
Team www.BeatFly.com - render,photo,ecc.. Elements01.net - Beat Fly official Blog-