I found a strange way to make the text disappear even in Explorer. Just use this bit of CSS for the submit button.
{
color: transparent;
text-transform: capitalize;
}
That should do the trick!
on (release) {And frame 2 has this:
nextFrame();
this._parent.mute();
}
on(release) {
prevFrame();
this._parent.unmute();
}
level = 100;
globalSound = new Sound();
globalSound.setVolume(level);
function mute() {
trace("mute");
//previewaudio.stop();
globalSound.setVolume(0);
}
function unmute() {
trace("unmute");
globalSound.setVolume(100);
}
Here is some simple code for parsing RSS 2 in PHP. It's so easy, I can't believe it.
<?php
$doc = new DOMDocument();
$doc->load('http://www.softarea51.com/rss/windows/Web_Development/XML_CSS_Utilities.xml');$arrFeeds = array();
foreach ($doc->getElementsByTagName('item') as $node) {$itemRSS = array (
'title' => $node->getElementsByTagName('title')->item(0)->nodeValue, 'desc' => $node->getElementsByTagName('description')->item(0)->nodeValue, 'link' => $node->getElementsByTagName('link')->item(0)->nodeValue, 'date' => $node->getElementsByTagName('pubDate')->item(0)->nodeValue);
array_push($arrFeeds, $itemRSS);
}
?>
Thanks to: How to parse RSS feeds with PHP