<?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>Sat, 07 Nov 2009 06:06:02 -0800</lastBuildDate>
				<item>
			<dc:creator>FlyHigh5</dc:creator>
			<pubDate>Sat, 07 Nov 2009 01:14:24 -0800</pubDate>
			<guid>http://www.ozzu.com/flash-forum/scrolling-thumbnail-panel-how-access-the-thumbnail-t100915.html</guid>
			<link>http://www.ozzu.com/flash-forum/scrolling-thumbnail-panel-how-access-the-thumbnail-t100915.html</link>
			<title>Scrolling Thumbnail Panel - How to access the thumbnail???</title>
			<description><![CDATA[Hi,<br /><br />I have used this tutorial to create a <span style="font-weight: bold">scrolling thumbnail panel</span>, and it works fine. But now I need to display the image for the thumbnail being clicked. I thought by naming the instance of my thumbnail button on my panel, I could determine which thumbnail is clicked and display its corresponding image. <br /><br />I am getting the following error:<br />1120: Access of undefined property thumb1Btn.<br /><br />I am new using AS3, and most likely am not doing the right thing. <br />Could you please help?<br /><br />Thanks<br /><br />Heres the code:<br /><br />panel.addEventListener(MouseEvent.MOUSE_OVER, panelOver);<br /><br />function panelOver(event:MouseEvent):void {<br />    panel.removeEventListener(MouseEvent.MOUSE_OVER, panelOver);<br />    panel.addEventListener(Event.ENTER_FRAME, scrollPanel);<br />    <br />}<br /><br />var b:Rectangle = stroke.getBounds(this);<br /><br />function scrollPanel(event:Event):void {<br />    if(mouseX &lt; b.left || mouseX &gt; b.right || mouseY &lt; b.top || mouseY &gt; b.bottom) {<br />        panel.removeEventListener(Event.ENTER_FRAME, scrollPanel);<br />        panel.addEventListener(MouseEvent.MOUSE_OVER, panelOver);<br />    }<br />       <br />    if(panel.x &gt; 25.1) {<br />        panel.x = 25.1;<br />    }<br />    if(panel.x &lt; -2181) {<br />        panel.x = -2181;<br />    }<br />    var xdist = mouseX - stage.stageWidth / 2;<br />    panel.x += -(xdist / 10);<br />}<br /><br />import flash.events.MouseEvent;<br />// onRelease<br />thumb1Btn.addEventListener(MouseEvent.CLICK,onReleaseMyButton);<br />function onReleaseMyButton(event:MouseEvent):void {<br />    var loader:Loader = new Loader();<br />    loader.load(new URLRequest(&quot;image1.swf&quot;)); 	<br />}]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 0</description>
		</item>
				<item>
			<dc:creator>mtolgao</dc:creator>
			<pubDate>Fri, 06 Nov 2009 06:50:47 -0800</pubDate>
			<guid>http://www.ozzu.com/flash-forum/dimensions-100-disappears-the-movie-t100900.html</guid>
			<link>http://www.ozzu.com/flash-forum/dimensions-100-disappears-the-movie-t100900.html</link>
			<title>Dimensions: 100% disappears the movie</title>
			<description><![CDATA[Hello,<br /><br />In my HTML file a Flash movie exists. However, when I set the width and height of the movie to 100%, it simply disappears. Why is that?<br /><br />Best regards,]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 0</description>
		</item>
				<item>
			<dc:creator>seekthat</dc:creator>
			<pubDate>Thu, 05 Nov 2009 09:38:12 -0800</pubDate>
			<guid>http://www.ozzu.com/flash-forum/wsdl-free-translation-file-and-website-needed-please-help-t100882.html</guid>
			<link>http://www.ozzu.com/flash-forum/wsdl-free-translation-file-and-website-needed-please-help-t100882.html</link>
			<title>.WSDL free translation file and website needed - Please help</title>
			<description><![CDATA[Hello, Im doing this language translation tutorial now with actionscript in Flash and it tells me to use this .WSDL URL /sd/2001/BabelFishService.wsdl at xmethods dot net but it doesnt exist or doesnt work anymore, so I tried using this one instead /TranslateService.asmx?WSDL at webservicex dot com but this one gives me an error message in the output text area where the translated text should be showing.<br />Im thinking the second one doesnt work because it is a .asmx and not .wsdl<br />???<br />anyone know where I could get a free .wsdl that will work for my little project?<br />thank you for your time <img src="./images/smilies/icon_smile.gif" alt=":)" title="Smile">]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 0</description>
		</item>
				<item>
			<dc:creator>designer09</dc:creator>
			<pubDate>Mon, 02 Nov 2009 15:47:17 -0800</pubDate>
			<guid>http://www.ozzu.com/flash-forum/cs4-as3-error-codes-1120-and-1061-solution-has-worked-t100838.html</guid>
			<link>http://www.ozzu.com/flash-forum/cs4-as3-error-codes-1120-and-1061-solution-has-worked-t100838.html</link>
			<title>CS4, AS3 error codes 1120 and 1061- no solution has worked</title>
			<description><![CDATA[Im making a flash intro for my Web Site for my senior project (its a must, despite the inconvenience to users). Im using Flash CS4, Actionscript 3. I am making links for the intro, and there is an error for each link. Most of them have the error &quot;1120: Access of Undefined Property&quot; and one link has the error &quot;1061:Call to a possibly undefined method.&quot;<br /><br />Ive looked into these errors on forums and have not found a solution. Most people have ideas of what it might be, but it appears that my errors are being caused by something else. <br /><br />things Ive tried...<br />1- putting actionscript in each of the link layers.<br />2- When Im in the actions window, I have no errors. But when I debug the movie, an error for each link pops up.<br />3- button clickhandler and others have been used. neither works.<br />4- adding actionscript for each button where each button begins to appear<br /><br /><br />None of these solutions seem to fix my problem. Not even my professor can help me find a solution (she is unfamiliar with CS4.)<br /><br /><br />Here is my code:<br /><br /><p>code:</p><pre style="border:1px solid #000000; background-color:#eeeeee;"><br />photography.addEventListener(MouseEvent.CLICK, buttonClickHandler);<br />function buttonClickHandler3(event:MouseEvent):void{ <br />navigateToURL (new URLRequest(&quot;&quot;));}<br /><br /><br />resume.addEventListener(MouseEvent.CLICK, buttonClickHandler);<br />function buttonClickHandler4(event:MouseEvent):void{ <br />navigateToURL (new URLRequest(&quot;&quot;));<br />}<br /><br /><br />contact.addEventListener(MouseEvent.CLICK, buttonClickHandler);<br />function buttonClickHandler5(event:MouseEvent):void{ <br />navigateToURL (new URLRequest(&quot;&quot;));<br />}<br /><br /><br />home.addEventListener(MouseEvent.CLICK, buttonClickHandler);<br />function buttonClickHandler(event:MouseEvent):void{ <br />navigateToURL (new URLRequest(&quot;&quot;));<br />}<br /><br /><br />graphics.addEventListener(MouseEvent.CLICK, buttonClickHandler);<br />function buttonClickHandler2(event:MouseEvent):void{ <br />navigateToURL (new URLRequest(&quot;&quot;));<br />}<br /></pre><br /><br /><br /><br />Note: ignore that new URLRequest is empty. The forum wouldnt let me post the links. &quot;graphics.addEventListener&quot; has error 1061. All of the others have error 1120.<br /><br />Thanks again, hope someone can help me!]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 1</description>
		</item>
				<item>
			<dc:creator>san_sa_rocky</dc:creator>
			<pubDate>Fri, 30 Oct 2009 10:07:59 -0700</pubDate>
			<guid>http://www.ozzu.com/flash-forum/making-loading-bar-using-swishmax-t100787.html</guid>
			<link>http://www.ozzu.com/flash-forum/making-loading-bar-using-swishmax-t100787.html</link>
			<title>making loading bar using swishmax 2 [need help]</title>
			<description><![CDATA[hey! i am using swishmax 2 instead of flash to create quick flash animations. am not very good with action script also.<br />is there any simple tutorial about how to make loading bar using swish max 2?<br /><br />arksylhet[ctrl+enter]<br />in this site[/url]i used a trick!  <img src="./images/smilies/icon_biggrin.gif" alt=":D" title="Very Happy"> <br />i put a loading gif image as a background image and made the animation with red background.<br />but I think this is not much.<br />so can anyone help me?  <img src="./images/smilies/icon_biggrin.gif" alt=":D" title="Very Happy">]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 0</description>
		</item>
				<item>
			<dc:creator>The_torst</dc:creator>
			<pubDate>Fri, 30 Oct 2009 01:02:41 -0700</pubDate>
			<guid>http://www.ozzu.com/flash-forum/extracting-text-from-swf-command-line-t100777.html</guid>
			<link>http://www.ozzu.com/flash-forum/extracting-text-from-swf-command-line-t100777.html</link>
			<title>Extracting text from swf, command line?</title>
			<description><![CDATA[Hi guys<br /><br />Im doing a project that requires me to - in an automated process - extract some numbers from a swf file.<br /><br />To me it sounds like Ill need a command line decompiler, thatll save the output somewhere; does anyone have a better idea, or a hint to some software thatll decompile from command line, and save the different items somewhere?<br /><br />Thanks guys.]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 0</description>
		</item>
				<item>
			<dc:creator>love247_jo</dc:creator>
			<pubDate>Wed, 28 Oct 2009 06:35:35 -0700</pubDate>
			<guid>http://www.ozzu.com/flash-forum/please-help-actionscript-geturl-t100758.html</guid>
			<link>http://www.ozzu.com/flash-forum/please-help-actionscript-geturl-t100758.html</link>
			<title>Please help: actionscript (?) in geturl</title>
			<description><![CDATA[Hello.<br /><br />I have a text input, and a search button that when clicked will go to URL that contains a question mark (?), when i write the code<br /><br />getURL.....etc<br /><br />and when i write ? or chr(63) [which is the ASCII code for ?] everything after it gets omitted.<br />what can i do?]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 1</description>
		</item>
				<item>
			<dc:creator>i_am_dhaval</dc:creator>
			<pubDate>Tue, 27 Oct 2009 04:37:03 -0700</pubDate>
			<guid>http://www.ozzu.com/flash-forum/how-make-html-link-with-swf-object-t100740.html</guid>
			<link>http://www.ozzu.com/flash-forum/how-make-html-link-with-swf-object-t100740.html</link>
			<title>how to make HTML link with swf object?</title>
			<description><![CDATA[here is my code..<br /><br />i need to add link in .swf file<br /><br />what is the error in my code?<br /><br /><p>code:</p><pre style="border:1px solid #000000; background-color:#eeeeee;">&lt;object classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000 codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0 id=simplemovie1 ALIGN= style=&quot;width: 187px; height: 69px&quot;&gt; &lt;param name=movie value=home_add/1-1.jpg&gt; &lt;param name=quality value=medium&gt; &lt;param name=bgcolor value=#FFFFFF&gt; &lt;param name=wmode value=transparent /&gt; &lt;embed src=../home_add/1-1.jpg quality=medium swliveconnect=true bgcolor=#FFFFFF name=simplemovie1 align= TYPE=application/x-shockwave-flash pluginspage=http://www.macromedia.com/go/getflashplayer&gt; &lt;/embed&gt;&lt;/OBJECT&gt;</pre>]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 7</description>
		</item>
				<item>
			<dc:creator>mad_a_22</dc:creator>
			<pubDate>Sun, 25 Oct 2009 08:37:31 -0700</pubDate>
			<guid>http://www.ozzu.com/flash-forum/flash-proxy-servers-about-games-t100712.html</guid>
			<link>http://www.ozzu.com/flash-forum/flash-proxy-servers-about-games-t100712.html</link>
			<title>flash on proxy servers.....? about games.</title>
			<description><![CDATA[my computer internet here block some websites. i use proxy server to access it. the problem is that when i open a game on that site it cant access. is it the adobe flash not working or it is just not possible to play games using proxies? <br /><br />i just recently update my flash but it still dont work.Im using adobe flash.<br /><br />is it possible to play games using proxies?]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 4</description>
		</item>
				<item>
			<dc:creator>kosmos17</dc:creator>
			<pubDate>Sun, 25 Oct 2009 01:07:39 -0700</pubDate>
			<guid>http://www.ozzu.com/flash-forum/prob-quality-audio-microphone-t100708.html</guid>
			<link>http://www.ozzu.com/flash-forum/prob-quality-audio-microphone-t100708.html</link>
			<title>[RED 5] Prob quality audio microphone</title>
			<description><![CDATA[Hello,<br />Jutilise RED5 to broadcast my live webcam but laudio is just rotten<br />It is intermittent and of poor sound quality.<br />I put my 2 scripts using the mailing of my live cam.<br /><br />My config is good because she tried jai damliorer quality video and laudio?<br /><br />The 1st is to publish it.<br /><p>code:</p><pre style="border:1px solid #000000; background-color:#eeeeee;">public class CameraBroadcast{<br />                private var cam : Camera;<br />                private var nc : NetConnection;<br />                private var ns : NetStream;<br />                private var mic:Microphone;<br />                private var monUrl : URLRequest;<br />                <br />                public var expediteur :String;<br />                public var code :String;<br />                <br />                public function CameraBroadcast(){<br />                        //Constructeur<br />                }<br /> <br />                public function initNC() : void {<br />                        // Pour indiquer au serveur qui doit tre le client (peut tre tout objet ActionScript)<br />                        nc = new NetConnection();<br />                        nc.client = this;<br />                        // Red5 ne supporte que AMF0<br />                        nc.objectEncoding = ObjectEncoding.AMF0;<br />                        // Connection au serveur Red5 sur le port RTMP 1935<br />                        nc.connect(&quot;rtmp://xxxxxxxxxxxxxxxxxxxx&quot;);<br />                        // On coute les vnements de la couche transport<br />                        nc.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);<br />                        nc.addEventListener(AsyncErrorEvent.ASYNC_ERROR, asyncErrorHandler);<br />                }<br /> <br />                private function netStatusHandler (event : NetStatusEvent) : void{<br />                        switch (event******.code){<br />                                case &quot;NetConnection.Connect.Success&quot;: {<br />                                        this.cam = Camera.getCamera();<br />                                        this.ns = new NetStream (nc);<br />                                        <br />                                        //-------- PARAMETRES MICROPHONE --------------<br />                                        this.mic = Microphone.getMicrophone();<br />                                        //Supprime le probleme ECHO<br />                                        this.mic.setUseEchoSuppression(true);<br />                                        //Amliore la diffusion du son entre chaque utilisation temps en millisecondes<br />                                        this.mic.setSilenceLevel(10,1000);<br />                                        <br />                                        //--------- PARAMETRES CAMERA -----------------<br />                                        //Amliore la qualit de limage<br />                                        this.cam.setQuality(40000,80);<br />                                        //Amliore la capture de limage<br />                                        this.cam.setMotionLevel(30,500);<br />                                        //Definir les dimensions de la cam diffuse<br />                                        this.cam.setMode(407,307,25,true);<br />                                        <br />                                        this.ns.attachCamera(this.cam);<br />                                        this.ns.attachAudio(this.mic);<br />                                        <br />                                        try{<br />                                                this.ns.client = this;<br />                                                this.ns.publish(this.expediteur,&quot;live&quot;);<br />                                        }<br />                                        catch (e:Error) {<br />                                                trace (e.message);<br />                                        }<br />                                        break;  <br />                                } <br />                                default:<br />                                alert.show(&quot;Attention...Assurez-vous que votre webcam soit branche !&quot;);<br />                                break;<br />                        }<br />                }<br />                <br />                public function onBWDone():void {<br />                        // Appel par RED5 au moment de la connexion<br />                }<br />                                <br />                public function onMetaData (data : Object) : void{<br />                        // Appel par RED5 au moment de la connexion<br />                }<br />         <br />                public function onPlayStatus (data : Object) : void     {<br />                        // Appel par RED5 au moment de la connexion<br />                }<br />                <br />                public function asyncErrorHandler(event:AsyncErrorEvent):void {<br />                        // Appel par RED5 au moment de la connexion<br />                }<br />                <br />                public function stopperCamera():void{<br />                        this.ns.close();<br />                        this.monUrl = new URLRequest(&quot;http://xxxxxxxxxxxxxx/index.php?do=maj&amp;cs=&quot;+this.code);<br />                        navigateToURL(this.monUrl,&quot;_self&quot;);<br />                }<br />        }</pre><br /><br />The 2nd to read. <br /><p>code:</p><pre style="border:1px solid #000000; background-color:#eeeeee;">public function initNC () : void{<br />                                // Pour indiquer au serveur qui doit tre le client (peut tre tout objet ActionScript)<br />                                nc = new NetConnection();<br />                                nc.client = this;<br />                                // Red5 ne supporte que AMF0<br />                                nc.objectEncoding = ObjectEncoding.AMF0;<br />                                // Connection au serveur Red5 sur le port RTMP 1935<br />                                nc.connect(&quot;rtmp://xxxxxxxxxxxxxxxxxxxxxxxxxxx&quot;);<br />                                // On coute les vnements de la couche transport<br />                                nc.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);<br />                                nc.addEventListener(AsyncErrorEvent.ASYNC_ERROR, asyncErrorHandler);<br />                        }<br />                        <br />                        private function netStatusHandler (event : NetStatusEvent) : void{<br />                                switch (event******.code){<br />                                        case &quot;NetConnection.Connect.Success&quot;: {<br />                                                this.ns = new NetStream(nc);<br />                                                this.video = new Video();<br />                                                this.video.attachNetStream(this.ns);<br />                                                this.video.width = 407;<br />                                                this.video.height = 307;<br />                                                slr.addChild(this.video);<br />                                                try{<br />                                                        this.ns.client = this;<br />                                                        this.ns.play(this.destinataire);<br />                                                }<br />                                                catch (e:Error) {<br />                                                        trace (e.message);<br />                                                }<br />                                                break;  <br />                                        } <br />                                        default:<br />                                        break;<br />                                }<br />                        }<br /> <br />                        public function onBWDone():void {<br />                                // Appel par RED5 au moment de la connexion<br />                        }<br />                                <br />                        public function onMetaData (data : Object) : void{<br />                                // Appel par RED5 au moment de la connexion<br />                        }<br />         <br />                        public function onPlayStatus (data : Object) : void     {<br />                                // Appel par RED5 au moment de la connexion<br />                        }<br />                        public function asyncErrorHandler(event:AsyncErrorEvent):void {<br />                                // Appel par RED5 au moment de la connexion<br />                        }</pre><br /><br />Thank you for your help <img src="./images/smilies/icon_wink.gif" alt=";)" title="Wink">]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 0</description>
		</item>
			</channel>
</rss>