Ask a Question related to Macromedia Flash Flashcom, Design and Development.
-
abeall #1
Write to text file?
The age old question has been "how do you use Flash to write to a file", and
the answer has and likely will always be "you can't. You have to use a server
side script". Well, hello, Server Side ActionScript. Can you use SSAS to write
to a text or xml file?
abeall Guest
-
write text file to the server
What I am trying to do is get query results then use the results mixed with a little bit of simple HTML and then save that as a .txt file in a... -
write a text file to a server
hi is it possible to open, change and save a simple txt file on a remote server with flash mx without php or cfm? the idea is to have a very simple... -
Write in a text file ?!
Is there a way to write and read in a text file ? I know how to read from a textfile, but I was wondering is there's any function or action to print... -
How can I write to text file.(ftp)
I want to write to text file, the follow text " My Name Is mike" Now, I have used the following sysntax: dim strFilePath as string = "C:\" dim... -
How To write to a text file.
Hello! Do the following (this will work, I promise :-): C# using HelpMePlease; class GetHelp { -
ManMachine #2
Re: Write to text file?
var myFile = new File("myTextFile.txt");
if(file.exists) file.open("text", "append");
else file.open("text", "create");
file.writeln("Hello world!");
file.close();
myFile = new File("myXmlFile.xml");
file.open("text", "create");
var myXml = new XML();
//build xml document
file.write(myXml);
file.close();
The text can be sent to the server via a NetStream or via a remote method call.
/Johan
[url]http://www.man-machine.se[/url]
ManMachine Guest
-
abeall #3
Re: Write to text file?
Beautiful.
However, I looked into the mentioned File class, and it looks like it was added in FMS, is there any way to do this in FCS?
abeall Guest
-
ekameleon #4
Re: Write to text file?
Hello :)
in FCS you can use remoting service (AMFPHP for example) and a HTTP
server script to write your file in a server... to receive the content
of this file you must create a new service...
EKA+ :)
> Beautiful.
>
> However, I looked into the mentioned File class, and it looks like it was added in FMS, is there any way to do this in FCS?ekameleon Guest



Reply With Quote

