Forum Moderators: open
we have developed a flashmx site and are using a content management system which changes the appropraite text in the .txt file for the flash movie.. It all works fine in flash but we are wondering if it is possible to target the same text fields within that text file for the html version of the site...
The text file we are using for flash is pretty strait forward.. say.
text 1 = "this is text field one"
&rtext2 = "this is text field two"
etc..
does this make sense, is this possible to target these tags from a html page. & if so, what is the easiest way to do it.. your help is much appreciated...
cheers
mark
Personally, I recommend using XML for content management, as that is what it is particularly structured for, and it's already been standardized by the W3C (thus making it a portable solution).
For what you're doing, you'd either want to use either a server-side language for your website (look into PHP, ColdFusion, or ASP) that loads up the content from file onto your page (though I would recommend using a database rather than a flatfile), or you could have a regularly running script (say by using a crontab on a Unix server for PHP, or by running scheduled tasks in ColdFusion or ASP on Windows servers) checks the flatfile with the content and rewrites the .HTM(L) files whenever the content changes.
I recommend XML and a database for overall portability, but if that's not a concern, use either of the last two methods (the first of which I recommend most).