Hi I'm new here and new in the industry, I'm focused in designing right now... but still interested in developing dynamic websites.

I just want to ask if there is an available script that writes a text file in a FTP server then show in a scrolling text in FLASH.

I don't know IF I MAKE SENSE at all... ehe : )

like in uploading images they put the image in an FTP SERVER right, then
display it in front like a scrolling sponsors.;)

THANKS

GOOD DAY

Recommended Answers

All 3 Replies

I'm not aware of any scripts to do this.

You're looking to create your text file.
Create a socket to your FTP server.
Send the appropriate FTP commands to Login + change DIR + upload file.

Then you will want to use actionscript to
grab the file contents from FTP server, and display them.

Thats one solution to your problem.

Cheers.

ei, thanks,

actually I have scripting for how to get the contents of the text file
my only main prob is how can I make a text file.

I try the uploading of a text file made outside the system that I am making but I want to make it more dynamic.

for convenience sake!
thanks anyways

$ourFileName = "testFile.txt";
$ourFileHandle = fopen($ourFileName, 'w') or die("can't open file");
fclose($ourFileHandle);

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.