<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title>Webmaster Forum</title>
		<description>Webmaster discussion on numerous topics including Website design, programming, scripting, hosting, server administration, search engines, and operating systems</description>
		<link>http://www.ozzu.com</link>
		<lastBuildDate>Fri, 09 May 2008 19:06:03 -0700</lastBuildDate>
				<item>
			<dc:creator>semsem203</dc:creator>
			<pubDate>Fri, 09 May 2008 14:43:46 -0700</pubDate>
			<guid>http://www.ozzu.com/flash-forum/need-some-help-t88108.html</guid>
			<link>http://www.ozzu.com/flash-forum/need-some-help-t88108.html</link>
			<title>need some help</title>
			<description><![CDATA[hi , <br /><br />i use swichmax and wanna to <br /><br /> make hyperlink to webpage in my pc , <br /><br />for example:<br />----------<br />when i press on button goto &quot; d:site21.html&quot; and run it <br /><br />thanks for help.]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 0</description>
		</item>
				<item>
			<dc:creator>bmcc81</dc:creator>
			<pubDate>Thu, 08 May 2008 13:16:40 -0700</pubDate>
			<guid>http://www.ozzu.com/flash-forum/how-many-characters-text-field-scrollingtext-t88079.html</guid>
			<link>http://www.ozzu.com/flash-forum/how-many-characters-text-field-scrollingtext-t88079.html</link>
			<title>How many characters in my text Field - In my scrollingText</title>
			<description><![CDATA[Hi,<br /><br />Im trying to learn out how to find how many characters are in a text field and then make an if statement out of it.<br /><br />I looked up <span style="color: #FF0000">TextField.textWidth </span> and its says indicates the width of the text.<br />Well Im not sure if thats what I want.<br /><br />Basically I want to use it for finding out how many characters in my text field so that I can stop a scrolling text.<br /><br /><p>CODE:</p><blockquote style="border:1px solid #000000; padding:5px; background-color:#eeeeee;"><p><div id="cb58587" style="font-family: monospace;">function resetPosition() {<br />&nbsp; &nbsp; if (trackInfo._width&gt;=15) {<br />&nbsp; &nbsp; &nbsp; &nbsp; if (_root.firstload == true) {<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; trackInfo._x = 50;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; _root.firstload = false;<br />&nbsp; &nbsp; &nbsp; &nbsp; }<br />&nbsp; &nbsp; } else {<br />&nbsp; &nbsp; &nbsp; &nbsp; trackInfo._x = 112-(trackInfo._width/2);<br />&nbsp; &nbsp; }<br />}<br />&nbsp;<br />this.onEnterFrame = function() {<br />&nbsp; &nbsp; if (this.trackInfo._width&gt;=15) {<br />&nbsp; &nbsp; &nbsp; &nbsp; if ((this.trackInfo._x+this.trackInfo._width)&lt;0) {<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; this.trackInfo._x = 145;<br />&nbsp; &nbsp; &nbsp; &nbsp; } else {<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; this.trackInfo._x--;<br />&nbsp; &nbsp; &nbsp; &nbsp; }<br />&nbsp; &nbsp; }<br />};<br /></div></p></blockquote><br /><br />What would be the right way of going about finding out how many characters in the textField?<br />Thanks]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 1</description>
		</item>
				<item>
			<dc:creator>fmike13</dc:creator>
			<pubDate>Thu, 08 May 2008 08:31:19 -0700</pubDate>
			<guid>http://www.ozzu.com/flash-forum/flash-xml-playlist-t88071.html</guid>
			<link>http://www.ozzu.com/flash-forum/flash-xml-playlist-t88071.html</link>
			<title>flash xml playlist</title>
			<description><![CDATA[I am new to flash and I have a questions that I think should be pretty simple but I cant seem to figure it out. Im creating a flash page with an xml video player, and my actionscript works fine, but I would like to add thumbnails to the playlist. Can anyone help me with that. Below is the actionscript that I am using.<br /><br /><br /><p>CODE:</p><blockquote style="border:1px solid #000000; padding:5px; background-color:#eeeeee;"><p><div id="cb79751" style="font-family: monospace;">import fl.video.FLVPlayback;<br />var loader:URLLoader = new URLLoader();<br />loader.addEventListener(Event.COMPLETE, onLoaded);<br />&nbsp;<br />myList.addEventListener(Event.CHANGE, itemChange);<br />&nbsp;<br />function itemChange(e:Event):void {<br />&nbsp; &nbsp; //myPlayer.load(myList.selectedItem.data);<br />&nbsp; &nbsp; myPlayer.play(&quot;&quot;+myList.selectedItem.data);<br />}<br />&nbsp;<br />var xml:XML;<br />&nbsp;<br />function onLoaded(e:Event):void {<br />&nbsp;<br />&nbsp; &nbsp; xml = new XML(e.target.data);<br />&nbsp; &nbsp; var il:XMLList = xml.channel.item;<br />&nbsp; &nbsp; for (var i:uint=0; i&lt;il.length(); i++) {<br />&nbsp; &nbsp; &nbsp; &nbsp; myList.addItem({label:il.description.text()[i],<br />&nbsp; &nbsp; &nbsp; &nbsp; data:il.title.text()[i]});<br />&nbsp; &nbsp; }<br />}<br />&nbsp;<br />loader.load(new URLRequest(&quot;VideoPlayerData.xml&quot;));<br />myPlayer.addEventListener(Event.COMPLETE, nextFLV);<br />function nextFLV(e:Event):void {<br />&nbsp;<br />&nbsp; &nbsp; var ds = myList.selectedIndex;<br />&nbsp; &nbsp; var dsl = myList.length;<br />&nbsp; &nbsp; if (myList.selectedIndex == 0) {<br />&nbsp; &nbsp; &nbsp; &nbsp; trace(&quot;if = yes: &quot;+dsl);<br />&nbsp; &nbsp; &nbsp; &nbsp; myList.selectedIndex = (+1);<br />&nbsp; &nbsp; &nbsp; &nbsp; myPlayer.play(&quot;&quot;+myList.selectedItem.data);<br />&nbsp; &nbsp; } else {<br />&nbsp; &nbsp; &nbsp; &nbsp; if ((ds+1) == dsl) {<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; myList.selectedIndex = 0;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; myPlayer.play(&quot;&quot;+myList.selectedItem.data);<br />&nbsp; &nbsp; &nbsp; &nbsp; } else {<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; trace(&quot;if = else&quot;);<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; myList.selectedIndex = (ds+1);<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; myPlayer.play(&quot;&quot;+myList.selectedItem.data);<br />&nbsp; &nbsp; &nbsp; &nbsp; }<br />&nbsp; &nbsp; }<br />}<br /></div></p></blockquote>]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 1</description>
		</item>
				<item>
			<dc:creator>bmcc81</dc:creator>
			<pubDate>Thu, 08 May 2008 07:21:53 -0700</pubDate>
			<guid>http://www.ozzu.com/flash-forum/how-make-play-again-again-again-again-t88068.html</guid>
			<link>http://www.ozzu.com/flash-forum/how-make-play-again-again-again-again-t88068.html</link>
			<title>How do I make it Play Again &amp; Again &amp; Again &amp; Again</title>
			<description><![CDATA[I just want to make this loop or start over. <img src="http://www.ozzu.com/images/smilies/icon_arrow.gif" alt=":arrow:" title="Arrow"> <br /><br />What happens is the Function Do Random goes through the slideTo content_mc[&quot;section_&quot;+i]._x; that moves along the _X axis<br /><br /><br />but once it gets to the end the It says<br /><p>CODE:</p><blockquote style="border:1px solid #000000; padding:5px; background-color:#eeeeee;"><p><div id="cb77540" style="font-family: monospace;">if(i==6) var target_x = home_x-content_mc.section_0._x;<br />&nbsp; &nbsp; content_mc.slideTo(target_x,&quot;0&quot;,2);<br /></div></p></blockquote>I just wanna make this thing start over and play again &amp; again &amp; again.<br /><br /><p>CODE:</p><blockquote style="border:1px solid #000000; padding:5px; background-color:#eeeeee;"><p><div id="cb6507" style="font-family: monospace;">var i:Number = 1;<br />&nbsp;<br />function DoRandom() {<br />var target_x = home_x - content_mc[&quot;section_&quot;+i]._x;<br />content_mc.slideTo( target_x, &quot;0&quot;, 2 );<br />i++;<br />&nbsp;<br />if(i==6) var target_x = home_x-content_mc.section_0._x;<br />&nbsp; &nbsp; content_mc.slideTo(target_x,&quot;0&quot;,2);<br />} &nbsp;<br />&nbsp;<br />var intervalID = setInterval(DoRandom, 4000);<br /></div></p></blockquote>Much appreciated for any help,]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 4</description>
		</item>
				<item>
			<dc:creator>bmcc81</dc:creator>
			<pubDate>Wed, 07 May 2008 12:33:42 -0700</pubDate>
			<guid>http://www.ozzu.com/flash-forum/wanna-make-this-code-better-t88030.html</guid>
			<link>http://www.ozzu.com/flash-forum/wanna-make-this-code-better-t88030.html</link>
			<title>I wanna make this code better</title>
			<description><![CDATA[Hi,<br /><br />I just wrote this and it seems a little long. As if you could make it shorter. Anywayif anyone can help shorten this code, Id like to learn.<br /><br /><p>CODE:</p><blockquote style="border:1px solid #000000; padding:5px; background-color:#eeeeee;"><p><div id="cb71669" style="font-family: monospace;">&nbsp;<br />var i:Number = 1; <br />&nbsp;<br />function DoRandom() { <br />var target_x = home_x - content_mc[&quot;section_&quot;+i]._x; <br />content_mc.slideTo( target_x, &quot;0&quot;, 2 ); <br />i++; <br />if(i==6) clearInterval(intervalID);<br />if(i==6) var target_x = home_x-content_mc.section_0._x;<br />&nbsp; &nbsp; content_mc.slideTo(target_x,&quot;0&quot;,2);<br />&nbsp; &nbsp; if(i==1) var alphaT:Tween = new Tween(b_0, &quot;_alpha&quot;, Regular.easeOut, 50, 70, 1, true);<br />&nbsp; &nbsp; if(i==2) var alphaT:Tween = new Tween(b_0, &quot;_alpha&quot;, Regular.easeOut, 50, 50, 1, true);<br />&nbsp; &nbsp; if(i==2) var alphaT:Tween = new Tween(b_1, &quot;_alpha&quot;, Regular.easeOut, 50, 70, 1, true);<br />&nbsp; &nbsp; if(i==3) var alphaT:Tween = new Tween(b_1, &quot;_alpha&quot;, Regular.easeOut, 50, 50, 1, true);<br />&nbsp; &nbsp; if(i==3) var alphaT:Tween = new Tween(b_2, &quot;_alpha&quot;, Regular.easeOut, 50, 70, 1, true);<br />&nbsp; &nbsp; if(i==4) var alphaT:Tween = new Tween(b_3, &quot;_alpha&quot;, Regular.easeOut, 50, 70, 1, true);<br />&nbsp; &nbsp; if(i==4) var alphaT:Tween = new Tween(b_2, &quot;_alpha&quot;, Regular.easeOut, 50, 50, 1, true);<br />&nbsp; &nbsp; if(i==5) var alphaT:Tween = new Tween(b_4, &quot;_alpha&quot;, Regular.easeOut, 50, 70, 1, true);<br />&nbsp; &nbsp; if(i==5) var alphaT:Tween = new Tween(b_3, &quot;_alpha&quot;, Regular.easeOut, 50, 50, 1, true);<br />&nbsp; &nbsp; if(i==6) var alphaT:Tween = new Tween(b_4, &quot;_alpha&quot;, Regular.easeOut, 50, 50, 1, true);<br />&nbsp; &nbsp; if(i==6) var alphaT:Tween = new Tween(b_0, &quot;_alpha&quot;, Regular.easeOut, 50, 70, 1, true);<br />} &nbsp; <br />&nbsp;<br />var intervalID = setInterval(DoRandom, 4000);<br /></div></p></blockquote><br /><br /><br />Thanks,]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 1</description>
		</item>
				<item>
			<dc:creator>swanniebroo</dc:creator>
			<pubDate>Tue, 06 May 2008 23:57:29 -0700</pubDate>
			<guid>http://www.ozzu.com/flash-forum/your-favourite-flash-tutorial-t88005.html</guid>
			<link>http://www.ozzu.com/flash-forum/your-favourite-flash-tutorial-t88005.html</link>
			<title>Your Favourite Flash Tutorial</title>
			<description><![CDATA[I would Love to[EDIT: added space] learn flash. <br />It looks to be one of the simplest languages, but also a VERY useful one.<br />So, everyone, post your favourite tutorial/site.<br />Have fun.]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 1</description>
		</item>
				<item>
			<dc:creator>swanniebroo</dc:creator>
			<pubDate>Tue, 06 May 2008 05:01:10 -0700</pubDate>
			<guid>http://www.ozzu.com/flash-forum/fairly-basic-think-actionscript-help-t87985.html</guid>
			<link>http://www.ozzu.com/flash-forum/fairly-basic-think-actionscript-help-t87985.html</link>
			<title>Fairly Basic (I think) ActionScript help</title>
			<description><![CDATA[Hey,<br />I was wondering if any of you guys new an ActionScript code, something like the flash document attached.  I want to make a timetable for school, and when i hover over each subject it tells me the Name of my teacher, what classroom im in, when my next assignment is due, etc etc.  So yeah, if anybody can help, would be GREATLY appreciated.<br /><br />EDIT: I cant attach stuff, so here is a link.<br /><a class="postlink" href="http://www.touchspin.com/chem/SWFs/pt2k61012.swf" rel="nofollow" target="_blank">http://www.touchspin.com/chem/SWFs/pt2k61012.swf</a><br />This sort of thing would be GREAT, but even if it was like one of those hover pop-ups if you know what i mean.  I just appears when you hover, and is gone when you dont hover.<br /><br />Once Again,<br />THANKS]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 5</description>
		</item>
				<item>
			<dc:creator>semsem203</dc:creator>
			<pubDate>Mon, 05 May 2008 16:11:26 -0700</pubDate>
			<guid>http://www.ozzu.com/flash-forum/wanna-help-please-t87967.html</guid>
			<link>http://www.ozzu.com/flash-forum/wanna-help-please-t87967.html</link>
			<title>i wanna help please!!</title>
			<description><![CDATA[i have problem in my flash , and i wanna some scripts to resolve it i work with swishmax and i just beginer in it <br /><br />if any one can help me please contact to me on site or my e-mails : <br /><br /><!-- e --><a href="mailto:sniperkillu@yahoo.com">sniperkillu@yahoo.com</a><!-- e --><br /><br /><!-- e --><a href="mailto:brokenheart_withmylove@hotmail.com">brokenheart_withmylove@hotmail.com</a><!-- e --> <br /><br /><br /><br />thanks]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 4</description>
		</item>
				<item>
			<dc:creator>activa</dc:creator>
			<pubDate>Thu, 01 May 2008 12:20:44 -0700</pubDate>
			<guid>http://www.ozzu.com/flash-forum/script-crashes-ide-and-flash-player-but-works-browsers-t87865.html</guid>
			<link>http://www.ozzu.com/flash-forum/script-crashes-ide-and-flash-player-but-works-browsers-t87865.html</link>
			<title>Script crashes IDE and Flash Player but works in browsers</title>
			<description><![CDATA[Im building a game program and Ive got a script that loads an external swf, and then duplicates the clip for the user to play. It worked until a few days ago when I reinstalled my OS (Mac OS 10.4.11) to fix an unrelated problem. The strange thing is that I had reinstalled the browser plugin to fix a related problem. Now the code works in the browser, but crashes the IDE and the Flash Player every time. I called Adobe Support but they were no help since its &quot;project related.&quot; Ive reinstalled CS3 and Flash itself, but nothing helps.<br /><br />Heres the code that crashes:<br /><br /><p>CODE:</p><blockquote style="border:1px solid #000000; padding:5px; background-color:#eeeeee;"><p><div id="cb60392" style="font-family: monospace;">// INITIALIZE LOADER AND ADD TO STAGE<br />var myLoader:Loader = new Loader;<br />addChild (myLoader);<br />myLoader.contentLoaderInfo.addEventListener (Event.COMPLETE, isLoaded);<br />// DUPLICATE CLIP WHEN LOADED <br />function isLoaded (event:Event):void {<br />&nbsp; &nbsp; event.target.content.width = 100;<br />&nbsp; &nbsp; event.target.content.height= 200;<br />&nbsp; &nbsp; // THIS IS THE LINE THAT CRASHES<br />&nbsp; &nbsp; var copyClass:Class = Object(event.target.content).constructor;<br />&nbsp; &nbsp; var newThing:DisplayObject = new (copyClass);<br />&nbsp; &nbsp; addChild (newThing);<br />&nbsp; &nbsp; newThing.x +=50;<br />}<br />myLoader.load (new URLRequest(coloring/coloring1.swf));<br /></div></p></blockquote>]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 0</description>
		</item>
				<item>
			<dc:creator>Stephen08x</dc:creator>
			<pubDate>Thu, 01 May 2008 09:21:13 -0700</pubDate>
			<guid>http://www.ozzu.com/flash-forum/suggestions-for-starting-off-t87857.html</guid>
			<link>http://www.ozzu.com/flash-forum/suggestions-for-starting-off-t87857.html</link>
			<title>Suggestions for starting off.</title>
			<description><![CDATA[Hey guys Im new, I really joined this forum as I really want to start making flash websites...<br /><br />I am <span style="font-weight: bold">COMPLETELY CLUELESS</span>about flash and... I really would love for you guys to give me some suggestions.<br /><br />1) How long will it take me to... make a website like <a class="postlink" href="http://www.destill.net/" rel="nofollow" target="_blank">this</a><br /><br />2) Do you think a 13 year old could do it.<br /><br />3) Whats the best sites to start off.]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 2</description>
		</item>
			</channel>
</rss>