<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title><![CDATA[Flash Kit Community Forums - Newbies & General flash questions]]></title>
		<link>http://board.flashkit.com/board/</link>
		<description>This is a forum for very new users to flash, there is no such thing as a stupid question in here.</description>
		<language>en</language>
		<lastBuildDate>Thu, 23 May 2013 04:49:34 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://board.flashkit.com/board/images/misc/rss.png</url>
			<title><![CDATA[Flash Kit Community Forums - Newbies & General flash questions]]></title>
			<link>http://board.flashkit.com/board/</link>
		</image>
		<item>
			<title>Flash8 Action scripting  and external data</title>
			<link>http://board.flashkit.com/board/showthread.php?830559-Action-scripting-and-external-data&amp;goto=newpost</link>
			<pubDate>Wed, 22 May 2013 15:23:07 GMT</pubDate>
			<description>Here is my question to anyone ...

Is there a way using AS2 to read a external text file and use it in create an animated text ?</description>
			<content:encoded><![CDATA[<div>Here is my question to anyone ...<br />
<br />
Is there a way using AS2 to read a external text file and use it in create an animated text ?</div>

 ]]></content:encoded>
			<category domain="http://board.flashkit.com/board/forumdisplay.php?29-Newbies-amp-General-flash-questions"><![CDATA[Newbies & General flash questions]]></category>
			<dc:creator>a_pluss</dc:creator>
			<guid isPermaLink="true">http://board.flashkit.com/board/showthread.php?830559-Action-scripting-and-external-data</guid>
		</item>
		<item>
			<title>hittest make movieclip inside movieclip display</title>
			<link>http://board.flashkit.com/board/showthread.php?830555-hittest-make-movieclip-inside-movieclip-display&amp;goto=newpost</link>
			<pubDate>Wed, 22 May 2013 01:33:39 GMT</pubDate>
			<description><![CDATA[Hi. My name is Chris and i am having a problem with hittest and really don't know where to go from here. I was wondering if anyone could help :)

Basically i have a rocket mc, instance called Rocket1. I then have a shape which i converted to a mc called symbol2 and then inside that mc made another mc with an instance name of firstpoint1945. When Rocket1 comes into contact with symbol2 i want firstpoint1945 to appear on screen with the text in it and when the Rocket1 navigates away for the text to disappear. 
Inside the movieclip symbol i made a second frame on the timeline and inserted the firstpoint1945 mc. I then named that frame  firstpointtext.
I tried this but i fear this is totally wrong. All that happens is that firstpoint1945 (the text) just flashes on screen constantly. 

onEnterFrame = function ()
{
    if (_root.symbol2.hitTest(_root.Rocket1))
    {
        _root.firstpointtext.gotoAndPlay("firstpointtext");
    }
};

Any help would be much appreciated as i am pulling my hair out. Thanks.]]></description>
			<content:encoded><![CDATA[<div>Hi. My name is Chris and i am having a problem with hittest and really don't know where to go from here. I was wondering if anyone could help :)<br />
<br />
Basically i have a rocket mc, instance called Rocket1. I then have a shape which i converted to a mc called symbol2 and then inside that mc made another mc with an instance name of firstpoint1945. When Rocket1 comes into contact with symbol2 i want firstpoint1945 to appear on screen with the text in it and when the Rocket1 navigates away for the text to disappear. <br />
Inside the movieclip symbol i made a second frame on the timeline and inserted the firstpoint1945 mc. I then named that frame  firstpointtext.<br />
I tried this but i fear this is totally wrong. All that happens is that firstpoint1945 (the text) just flashes on screen constantly. <br />
<br />
onEnterFrame = function ()<br />
{<br />
    if (_root.symbol2.hitTest(_root.Rocket1))<br />
    {<br />
        _root.firstpointtext.gotoAndPlay(&quot;firstpointtext&quot;)  ;<br />
    }<br />
};<br />
<br />
Any help would be much appreciated as i am pulling my hair out. Thanks.</div>

 ]]></content:encoded>
			<category domain="http://board.flashkit.com/board/forumdisplay.php?29-Newbies-amp-General-flash-questions"><![CDATA[Newbies & General flash questions]]></category>
			<dc:creator>chris1992</dc:creator>
			<guid isPermaLink="true">http://board.flashkit.com/board/showthread.php?830555-hittest-make-movieclip-inside-movieclip-display</guid>
		</item>
		<item>
			<title>Flash5 Problem with button linking to external SWF file.</title>
			<link>http://board.flashkit.com/board/showthread.php?830551-Problem-with-button-linking-to-external-SWF-file.&amp;goto=newpost</link>
			<pubDate>Tue, 21 May 2013 20:13:36 GMT</pubDate>
			<description><![CDATA[Okay, Im sort of new at flash so dont judge if I start tossing wrong statements or something. Anyhow, heres the problem. Me and some pals are making a game for school in flash. 

My friends have completed the game itself and its up to me to fix the menu. So this is the problem, when I simply open the game SWF file the game works just fine. But when I open it from my menu, the following problem appears: 

TypeError: Error #1009: Can not access a property or method of a null object reference.
	at SpriteSheet()[C:\Users\nti\Desktop\copy58\SpriteSheet.as:34]
	at racing()[C:\Users\nti\Desktop\copy58\racing.as:45]

It says that the problem is supposed to be in the games as files, but it doesnt occur when I simply open the games swf. 
Heres the code I used for the button in menu linking to the game:

btnGame.addEventListener(MouseEvent.CLICK, start)
	function start(Event: MouseEvent){
		var newMedia:Loader = new Loader();
		var cont:MovieClip = new MovieClip();
		newMedia.load(new URLRequest("racing.swf"));
		cont.x = 400;
		
		stage.addChild(cont);
		cont.addChild(newMedia);
	}]]></description>
			<content:encoded><![CDATA[<div>Okay, Im sort of new at flash so dont judge if I start tossing wrong statements or something. Anyhow, heres the problem. Me and some pals are making a game for school in flash. <br />
<br />
My friends have completed the game itself and its up to me to fix the menu. So this is the problem, when I simply open the game SWF file the game works just fine. But when I open it from my menu, the following problem appears: <br />
<br />
TypeError: Error #1009: Can not access a property or method of a null object reference.<br />
	at SpriteSheet()[C:\Users\nti\Desktop\copy58\SpriteSheet.as:34]<br />
	at racing()[C:\Users\nti\Desktop\copy58\racing.as:45]<br />
<br />
It says that the problem is supposed to be in the games as files, but it doesnt occur when I simply open the games swf. <br />
Heres the code I used for the button in menu linking to the game:<br />
<br />
btnGame.addEventListener(MouseEvent.CLICK, start)<br />
	function start(Event: MouseEvent){<br />
		var newMedia:Loader = new Loader();<br />
		var cont:MovieClip = new MovieClip();<br />
		newMedia.load(new URLRequest(&quot;racing.swf&quot;));<br />
		cont.x = 400;<br />
		<br />
		stage.addChild(cont);<br />
		cont.addChild(newMedia);<br />
	}</div>

 ]]></content:encoded>
			<category domain="http://board.flashkit.com/board/forumdisplay.php?29-Newbies-amp-General-flash-questions"><![CDATA[Newbies & General flash questions]]></category>
			<dc:creator>EN123</dc:creator>
			<guid isPermaLink="true">http://board.flashkit.com/board/showthread.php?830551-Problem-with-button-linking-to-external-SWF-file.</guid>
		</item>
		<item>
			<title>Extracting flash assests</title>
			<link>http://board.flashkit.com/board/showthread.php?830543-Extracting-flash-assests&amp;goto=newpost</link>
			<pubDate>Tue, 21 May 2013 12:15:40 GMT</pubDate>
			<description>Hi guys,
I wana convert a flash game to ios. A client has given me a fla file. However i am not a flash developer and have no idea about how to extract images and sound from game.
I opened the file in a flash prof and i can see some assests which i was able to save it.
However game still contains many images and sounds which i cant find anywhere.
So can any1 tell me how to extract all images and sound from fla file.</description>
			<content:encoded><![CDATA[<div>Hi guys,<br />
I wana convert a flash game to ios. A client has given me a fla file. However i am not a flash developer and have no idea about how to extract images and sound from game.<br />
I opened the file in a flash prof and i can see some assests which i was able to save it.<br />
However game still contains many images and sounds which i cant find anywhere.<br />
So can any1 tell me how to extract all images and sound from fla file.</div>

 ]]></content:encoded>
			<category domain="http://board.flashkit.com/board/forumdisplay.php?29-Newbies-amp-General-flash-questions"><![CDATA[Newbies & General flash questions]]></category>
			<dc:creator>sandy234</dc:creator>
			<guid isPermaLink="true">http://board.flashkit.com/board/showthread.php?830543-Extracting-flash-assests</guid>
		</item>
		<item>
			<title>Flash 8 pop up?</title>
			<link>http://board.flashkit.com/board/showthread.php?830541-Flash-8-pop-up&amp;goto=newpost</link>
			<pubDate>Tue, 21 May 2013 12:11:05 GMT</pubDate>
			<description><![CDATA[Hi all - Thank you in advance for any help.

I've done some googling/ searching the forum but cant seem to grasp what I want to do (complete noob)

I have imported an image to the stage and converted it to a button and named the instance info_btn

I am hoping there is a way that when pressed - I can make a pop up appear that will literally just contain some contact details.

Ive had a look at Geturl and others but I just cant get it right.

Is this even possible?

Just to add - Im working in Flash 8 AS 2.0...

Many thanks]]></description>
			<content:encoded><![CDATA[<div>Hi all - Thank you in advance for any help.<br />
<br />
I've done some googling/ searching the forum but cant seem to grasp what I want to do (complete noob)<br />
<br />
I have imported an image to the stage and converted it to a button and named the instance info_btn<br />
<br />
I am hoping there is a way that when pressed - I can make a pop up appear that will literally just contain some contact details.<br />
<br />
Ive had a look at Geturl and others but I just cant get it right.<br />
<br />
Is this even possible?<br />
<br />
Just to add - Im working in Flash 8 AS 2.0...<br />
<br />
Many thanks</div>

 ]]></content:encoded>
			<category domain="http://board.flashkit.com/board/forumdisplay.php?29-Newbies-amp-General-flash-questions"><![CDATA[Newbies & General flash questions]]></category>
			<dc:creator>adamc</dc:creator>
			<guid isPermaLink="true">http://board.flashkit.com/board/showthread.php?830541-Flash-8-pop-up</guid>
		</item>
		<item>
			<title>Looking for direction on how to produce rotating image on mouse over for website</title>
			<link>http://board.flashkit.com/board/showthread.php?830535-Looking-for-direction-on-how-to-produce-rotating-image-on-mouse-over-for-website&amp;goto=newpost</link>
			<pubDate>Tue, 21 May 2013 07:02:57 GMT</pubDate>
			<description>I am having a hard time finding this information. I have seen sites in the past where there would be multiple images in a circular arrangement. As you mouse over the the center image it will pop out slightly indicating that it can be clicked. Alternatively you can scroll through the other surrounding images. When clicking on one of the surrounding images that images will then rotate to center and slightly pop out just as the original. Obviously I am new to all this. What I am looking for is a tutorial or a template so that I can attempt to build my website with this animation. I am attaching a photo that will help explain my visualization. In the attached photo I would like to get each item to rotate to center when clicked. In addition to a tutorial I would also like to know what this sort of animation is commonly referred to?

Attachment 74267 (http://board.flashkit.com/board/attachment.php?attachmentid=74267)</description>
			<content:encoded><![CDATA[<div>I am having a hard time finding this information. I have seen sites in the past where there would be multiple images in a circular arrangement. As you mouse over the the center image it will pop out slightly indicating that it can be clicked. Alternatively you can scroll through the other surrounding images. When clicking on one of the surrounding images that images will then rotate to center and slightly pop out just as the original. Obviously I am new to all this. What I am looking for is a tutorial or a template so that I can attempt to build my website with this animation. I am attaching a photo that will help explain my visualization. In the attached photo I would like to get each item to rotate to center when clicked. In addition to a tutorial I would also like to know what this sort of animation is commonly referred to?<br />
<br />
<a href="http://board.flashkit.com/board/attachment.php?attachmentid=74267"  title="Name:  
Views: 
Size:  ">Attachment 74267</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/png.gif" alt="File Type: png" />
	<a href="http://board.flashkit.com/board/attachment.php?attachmentid=74267&amp;d=1369119650" target="_blank">Untitled.png&lrm;</a> 
(119.5 KB)
</li> 
			</ul>
			</fieldset>
	

	

	</div>
 ]]></content:encoded>
			<category domain="http://board.flashkit.com/board/forumdisplay.php?29-Newbies-amp-General-flash-questions"><![CDATA[Newbies & General flash questions]]></category>
			<dc:creator>sincityharley</dc:creator>
			<guid isPermaLink="true">http://board.flashkit.com/board/showthread.php?830535-Looking-for-direction-on-how-to-produce-rotating-image-on-mouse-over-for-website</guid>
		</item>
		<item>
			<title>Help Starting Project</title>
			<link>http://board.flashkit.com/board/showthread.php?830529-Help-Starting-Project&amp;goto=newpost</link>
			<pubDate>Mon, 20 May 2013 00:22:56 GMT</pubDate>
			<description>Hi Guys,

I am new to flash and application development in general, and was wondering how to go about creating an application like the following:

http://carolinacarportsinc.com/configurator/index

I want to build a tool exactly like this.  What tools would I need to get started?

Thanks!</description>
			<content:encoded><![CDATA[<div>Hi Guys,<br />
<br />
I am new to flash and application development in general, and was wondering how to go about creating an application like the following:<br />
<br />
<a rel="nofollow" href="http://carolinacarportsinc.com/configurator/index" target="_blank">http://carolinacarportsinc.com/configurator/index</a><br />
<br />
I want to build a tool exactly like this.  What tools would I need to get started?<br />
<br />
Thanks!</div>

 ]]></content:encoded>
			<category domain="http://board.flashkit.com/board/forumdisplay.php?29-Newbies-amp-General-flash-questions"><![CDATA[Newbies & General flash questions]]></category>
			<dc:creator>ineedsumhelp</dc:creator>
			<guid isPermaLink="true">http://board.flashkit.com/board/showthread.php?830529-Help-Starting-Project</guid>
		</item>
		<item>
			<title><![CDATA[CS3 Adding an integer to a variable & getURL question (AS2/AS3)]]></title>
			<link>http://board.flashkit.com/board/showthread.php?830513-Adding-an-integer-to-a-variable-amp-getURL-question-(AS2-AS3)&amp;goto=newpost</link>
			<pubDate>Fri, 17 May 2013 10:08:18 GMT</pubDate>
			<description><![CDATA[I have been stuck on AS2 for a long, long time, and I want to learn AS3 but I don't really know where to start with things that should be relatively simple.  I'll start, actually, with my getURL question.  

I have an old, Flash MX file that attempts to load URLs based on a "while" command, and so what that file does is add strings to form a URL which is then opened in a browser.  The "while" works until the "counter" variable reaches 0.  For example, this forum is located at: <http://board.flashkit.com/board/forumdisplay.php?29>.  My old Flash MX file would take that address then add one to the number 29 for as long as the "counter" had value, so if you started with "5," the file would load URL <http://board.flashkit.com/board/forumdisplay.php?29>, then <http://board.flashkit.com/board/forumdisplay.php?30>, then <http://board.flashkit.com/board/forumdisplay.php?31>, and so on and so forth until <http://board.flashkit.com/board/forumdisplay.php?33>.

Back when I made the file everything worked in sequential order (29, 30, 31), but now when I run it modern browsers respond seemingly random (30, 29, 31, 33, 34).

on (release) {
	while (countdown > 0) {
		countdown = eval("countdown") - 1;
		full = eval("front") + eval("middle") + eval("end");
		getURL(eval("full"), "_blank");
		middle = number(middle) + 1;
	}
	countdown = eval("countdown") + 5;
}

Front is the beginning of the URL, like <http://board.flashkit.com/board/forumdisplay.php?>, middle is the number, like 29, and end is anything that needs to go after.  Now, the above is AS2.  Anyone know why the URL would be loading in random order?

The second part should be a much easier question.  In AS3, how do I add an integer to a variable for display in a text field?  What I want to do is click a button to have a text field increase + 1.

MyTextField.text = "10";
One.addEventListener(
  MouseEvent.CLICK,
  function(evt:MouseEvent):void {
	MyTextField.text = MyTextField + 1;
  }
);

The above formula turns MyTextField into "[object TextField]1," whereas I want it to evaluate the value of MyTextField then add 1 every time I click on the button One (so the first click would yield 11).

Thanks!]]></description>
			<content:encoded><![CDATA[<div>I have been stuck on AS2 for a long, long time, and I want to learn AS3 but I don't really know where to start with things that should be relatively simple.  I'll start, actually, with my getURL question.  <br />
<br />
I have an old, Flash MX file that attempts to load URLs based on a &quot;while&quot; command, and so what that file does is add strings to form a URL which is then opened in a browser.  The &quot;while&quot; works until the &quot;counter&quot; variable reaches 0.  For example, this forum is located at: &lt;http://board.flashkit.com/board/forumdisplay.php?29&gt;.  My old Flash MX file would take that address then add one to the number 29 for as long as the &quot;counter&quot; had value, so if you started with &quot;5,&quot; the file would load URL &lt;http://board.flashkit.com/board/forumdisplay.php?29&gt;, then &lt;http://board.flashkit.com/board/forumdisplay.php?30&gt;, then &lt;http://board.flashkit.com/board/forumdisplay.php?31&gt;, and so on and so forth until &lt;http://board.flashkit.com/board/forumdisplay.php?33&gt;.<br />
<br />
Back when I made the file everything worked in sequential order (29, 30, 31), but now when I run it modern browsers respond seemingly random (30, 29, 31, 33, 34).<br />
<br />
on (release) {<br />
	while (countdown &gt; 0) {<br />
		countdown = eval(&quot;countdown&quot;) - 1;<br />
		full = eval(&quot;front&quot;) + eval(&quot;middle&quot;) + eval(&quot;end&quot;);<br />
		getURL(eval(&quot;full&quot;), &quot;_blank&quot;);<br />
		middle = number(middle) + 1;<br />
	}<br />
	countdown = eval(&quot;countdown&quot;) + 5;<br />
}<br />
<br />
Front is the beginning of the URL, like &lt;http://board.flashkit.com/board/forumdisplay.php?&gt;, middle is the number, like 29, and end is anything that needs to go after.  Now, the above is AS2.  Anyone know why the URL would be loading in random order?<br />
<br />
The second part should be a much easier question.  In AS3, how do I add an integer to a variable for display in a text field?  What I want to do is click a button to have a text field increase + 1.<br />
<br />
MyTextField.text = &quot;10&quot;;<br />
One.addEventListener(<br />
  MouseEvent.CLICK,<br />
  function(evt:MouseEvent):void {<br />
	MyTextField.text = MyTextField + 1;<br />
  }<br />
);<br />
<br />
The above formula turns MyTextField into &quot;[object TextField]1,&quot; whereas I want it to evaluate the value of MyTextField then add 1 every time I click on the button One (so the first click would yield 11).<br />
<br />
Thanks!</div>

 ]]></content:encoded>
			<category domain="http://board.flashkit.com/board/forumdisplay.php?29-Newbies-amp-General-flash-questions"><![CDATA[Newbies & General flash questions]]></category>
			<dc:creator>G.v.P</dc:creator>
			<guid isPermaLink="true">http://board.flashkit.com/board/showthread.php?830513-Adding-an-integer-to-a-variable-amp-getURL-question-(AS2-AS3)</guid>
		</item>
		<item>
			<title>Flash5 Dynamyc flash and image background</title>
			<link>http://board.flashkit.com/board/showthread.php?830509-Dynamyc-flash-and-image-background&amp;goto=newpost</link>
			<pubDate>Fri, 17 May 2013 05:55:12 GMT</pubDate>
			<description><![CDATA[Hello everyone. Do's and must be on the main page to make the background of successive flash movies and pictures, and to have the advanced settings, such as transition effects, transition time, etc. Prompt paid or free module, or where to look. Thank you.]]></description>
			<content:encoded><![CDATA[<div>Hello everyone. Do's and must be on the main page to make the background of successive flash movies and pictures, and to have the advanced settings, such as transition effects, transition time, etc. Prompt paid or free module, or where to look. Thank you.</div>

 ]]></content:encoded>
			<category domain="http://board.flashkit.com/board/forumdisplay.php?29-Newbies-amp-General-flash-questions"><![CDATA[Newbies & General flash questions]]></category>
			<dc:creator>jleito</dc:creator>
			<guid isPermaLink="true">http://board.flashkit.com/board/showthread.php?830509-Dynamyc-flash-and-image-background</guid>
		</item>
		<item>
			<title>Create Youtube player look a like</title>
			<link>http://board.flashkit.com/board/showthread.php?830505-Create-Youtube-player-look-a-like&amp;goto=newpost</link>
			<pubDate>Fri, 17 May 2013 00:03:58 GMT</pubDate>
			<description><![CDATA[Hi all!
For my final thesis I'm doing some research on Youtube, and I need to recreate a Youtube page on flash.

I know a little bit of flash, but not enough I think.

I need a player that looks the same of the Youtube one, with the chance to put a pre-roll (for ads) with skip botton and stuff..
But the most important thing is that it looks like the real thing... I've tried to just put the video on the photo, but then the buffering doesn't move...
So I was wondering if there is some database where I can find it.
I can't believe nobody ever though or needed to use a player that looked like YT... i mean, maybe for some exercise or stuff!

Thanks to anybody who can help!

PS
The thesis is not even on flash itself. I just need a flash platform to do some tests on people and after that analyze data...]]></description>
			<content:encoded><![CDATA[<div>Hi all!<br />
For my final thesis I'm doing some research on Youtube, and I need to recreate a Youtube page on flash.<br />
<br />
I know a little bit of flash, but not enough I think.<br />
<br />
I need a player that looks the same of the Youtube one, with the chance to put a pre-roll (for ads) with skip botton and stuff..<br />
But the most important thing is that it looks like the real thing... I've tried to just put the video on the photo, but then the buffering doesn't move...<br />
So I was wondering if there is some database where I can find it.<br />
I can't believe nobody ever though or needed to use a player that looked like YT... i mean, maybe for some exercise or stuff!<br />
<br />
Thanks to anybody who can help!<br />
<br />
PS<br />
The thesis is not even on flash itself. I just need a flash platform to do some tests on people and after that analyze data...</div>

 ]]></content:encoded>
			<category domain="http://board.flashkit.com/board/forumdisplay.php?29-Newbies-amp-General-flash-questions"><![CDATA[Newbies & General flash questions]]></category>
			<dc:creator>MiticoMarci</dc:creator>
			<guid isPermaLink="true">http://board.flashkit.com/board/showthread.php?830505-Create-Youtube-player-look-a-like</guid>
		</item>
		<item>
			<title>Error message help</title>
			<link>http://board.flashkit.com/board/showthread.php?830495-Error-message-help&amp;goto=newpost</link>
			<pubDate>Wed, 15 May 2013 20:27:20 GMT</pubDate>
			<description><![CDATA[HI, can anyone help me? I am new to using AS3, so I have a feeling that this will be an easily solved problem. I'm trying to play an flv. when I press the number 1 key. 

The code I have used is:

sunvid.flvPlayer.stop();
var ispaused = 0;
stage.addEventListener(KeyboardEvent.KEY_UP, playfile);
function playfile(e:KeyboardEvent):void {
    if (e.keyCode==Keyboard.(1) ){
        sunvid.flvPlayer.gotoAndPlay(2);
    }
}

the code apparently contains no errors but I keep getting this error message and I have no idea how to fix it!

TypeError: Error #1123: Filter operator not supported on type class flash.ui.Keyboard. 

Any advice would be greatly appreciated!]]></description>
			<content:encoded><![CDATA[<div>HI, can anyone help me? I am new to using AS3, so I have a feeling that this will be an easily solved problem. I'm trying to play an flv. when I press the number 1 key. <br />
<br />
The code I have used is:<br />
<br />
sunvid.flvPlayer.stop();<br />
var ispaused = 0;<br />
stage.addEventListener(KeyboardEvent.KEY_UP, playfile);<br />
function playfile(e:KeyboardEvent):void {<br />
    if (e.keyCode==Keyboard.(1) ){<br />
        sunvid.flvPlayer.gotoAndPlay(2);<br />
    }<br />
}<br />
<br />
the code apparently contains no errors but I keep getting this error message and I have no idea how to fix it!<br />
<br />
TypeError: Error #1123: Filter operator not supported on type class flash.ui.Keyboard. <br />
<br />
Any advice would be greatly appreciated!</div>

 ]]></content:encoded>
			<category domain="http://board.flashkit.com/board/forumdisplay.php?29-Newbies-amp-General-flash-questions"><![CDATA[Newbies & General flash questions]]></category>
			<dc:creator>RachelA11</dc:creator>
			<guid isPermaLink="true">http://board.flashkit.com/board/showthread.php?830495-Error-message-help</guid>
		</item>
		<item>
			<title>Scripting help</title>
			<link>http://board.flashkit.com/board/showthread.php?830485-Scripting-help&amp;goto=newpost</link>
			<pubDate>Wed, 15 May 2013 09:22:29 GMT</pubDate>
			<description><![CDATA[Hi guys,

I hope you can help me. These flash files were originally created by someone who no longer works here and I am being asked to continue working on these with very little flash knowledge and this problem is doing my head in!

Basically the attached banners, 1 works and 1 doesn't and I can't see what the difference is. the 24+loans works and the powerhouse one doesn't. They work fine when testing from flash but then once uploaded onto our website they don't work

take a look here

http://www.themanchestercollege.ac.uk

They should automatically scroll onto the next one. It works on the second banner but none of the others and they all have the same code. I have tried everything, from creating it again from scratch, creating it from within the one that works and removing all images and just using text. I am literally pulling my hair out with his one, I hope someone can help.

Thanks in advance for any help given!!]]></description>
			<content:encoded><![CDATA[<div>Hi guys,<br />
<br />
I hope you can help me. These flash files were originally created by someone who no longer works here and I am being asked to continue working on these with very little flash knowledge and this problem is doing my head in!<br />
<br />
Basically the attached banners, 1 works and 1 doesn't and I can't see what the difference is. the 24+loans works and the powerhouse one doesn't. They work fine when testing from flash but then once uploaded onto our website they don't work<br />
<br />
take a look here<br />
<br />
<a rel="nofollow" href="http://www.themanchestercollege.ac.uk" target="_blank">http://www.themanchestercollege.ac.uk</a><br />
<br />
They should automatically scroll onto the next one. It works on the second banner but none of the others and they all have the same code. I have tried everything, from creating it again from scratch, creating it from within the one that works and removing all images and just using text. I am literally pulling my hair out with his one, I hope someone can help.<br />
<br />
Thanks in advance for any help given!!</div>


	<div style="padding:10px">

	

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Files</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/fla.gif" alt="File Type: fla" />
	<a href="http://board.flashkit.com/board/attachment.php?attachmentid=74259&amp;d=1368609426">23-1427 powerhouse.fla&lrm;</a> 
(69.8 KB)
</li> <li>
	<img class="inlineimg" src="/fla.gif" alt="File Type: fla" />
	<a href="http://board.flashkit.com/board/attachment.php?attachmentid=74261&amp;d=1368609428">23-1439 ALL 24 loans.fla&lrm;</a> 
(25.2 KB)
</li> 
			</ul>
		</fieldset>
	

	</div>
 ]]></content:encoded>
			<category domain="http://board.flashkit.com/board/forumdisplay.php?29-Newbies-amp-General-flash-questions"><![CDATA[Newbies & General flash questions]]></category>
			<dc:creator>5uperfly</dc:creator>
			<guid isPermaLink="true">http://board.flashkit.com/board/showthread.php?830485-Scripting-help</guid>
		</item>
		<item>
			<title>Import/embed XML file for export?</title>
			<link>http://board.flashkit.com/board/showthread.php?830453-Import-embed-XML-file-for-export&amp;goto=newpost</link>
			<pubDate>Mon, 13 May 2013 05:16:03 GMT</pubDate>
			<description>How do I import or embed an XML file so I can export a 100% independent SWF? My project reads an external XML file for text fields and images. When I export the SWF, none of the images/text will show unless I have the XML file in the same directory. I want a 100% independent SWF without the need for the XML.

Thanks.</description>
			<content:encoded><![CDATA[<div>How do I import or embed an XML file so I can export a 100% independent SWF? My project reads an external XML file for text fields and images. When I export the SWF, none of the images/text will show unless I have the XML file in the same directory. I want a 100% independent SWF without the need for the XML.<br />
<br />
Thanks.</div>

 ]]></content:encoded>
			<category domain="http://board.flashkit.com/board/forumdisplay.php?29-Newbies-amp-General-flash-questions"><![CDATA[Newbies & General flash questions]]></category>
			<dc:creator>Rubyx</dc:creator>
			<guid isPermaLink="true">http://board.flashkit.com/board/showthread.php?830453-Import-embed-XML-file-for-export</guid>
		</item>
		<item>
			<title><![CDATA[CS3 [AS2] Wheel of fortune spinner - need help, please!]]></title>
			<link>http://board.flashkit.com/board/showthread.php?830447-AS2-Wheel-of-fortune-spinner-need-help-please!&amp;goto=newpost</link>
			<pubDate>Sun, 12 May 2013 18:35:03 GMT</pubDate>
			<description><![CDATA[Recently I've found Spinner_v3.fla created by the member Nig 13 and I've changed it to the purpose of the new math game I'm creating... Since I've done the rotation within onEnterFrame function - the spinner itself is the event handler - I have no idea how to detect the chosen number: meaning on which number is the spinner stopped after each rotation - in other words: which part of the spinner is under the pointer...

I thought to create a separate mc for each slice of the spinner (inside spinner) and somehow to "read" above which slice of the spinner (number) is the pointer after each rotation ...??? But I don't have the slightest idea how to achieve it...

I really really hope that someone will be able to help me and thank you very much in advance!]]></description>
			<content:encoded><![CDATA[<div>Recently I've found Spinner_v3.fla created by the member Nig 13 and I've changed it to the purpose of the new math game I'm creating... Since I've done the rotation within onEnterFrame function - the spinner itself is the event handler - I have no idea how to detect the chosen number: meaning on which number is the spinner stopped after each rotation - in other words: which part of the spinner is under the pointer...<br />
<br />
I thought to create a separate mc for each slice of the spinner (inside spinner) and somehow to &quot;read&quot; above which slice of the spinner (number) is the pointer after each rotation ...??? But I don't have the slightest idea how to achieve it...<br />
<br />
I really really hope that someone will be able to help me and thank you very much in advance!</div>


	<div style="padding:10px">

	

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Files</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/fla.gif" alt="File Type: fla" />
	<a href="http://board.flashkit.com/board/attachment.php?attachmentid=74245&amp;d=1368383673">Moj_wheel_of_fortune.fla&lrm;</a> 
(12.5 KB)
</li> 
			</ul>
		</fieldset>
	

	</div>
 ]]></content:encoded>
			<category domain="http://board.flashkit.com/board/forumdisplay.php?29-Newbies-amp-General-flash-questions"><![CDATA[Newbies & General flash questions]]></category>
			<dc:creator>avukovi4</dc:creator>
			<guid isPermaLink="true">http://board.flashkit.com/board/showthread.php?830447-AS2-Wheel-of-fortune-spinner-need-help-please!</guid>
		</item>
		<item>
			<title>I need help with how to display info on mouseover in a different  place?</title>
			<link>http://board.flashkit.com/board/showthread.php?830441-I-need-help-with-how-to-display-info-on-mouseover-in-a-different-place&amp;goto=newpost</link>
			<pubDate>Sun, 12 May 2013 09:49:16 GMT</pubDate>
			<description><![CDATA[Hi and thanks for taking the time to look at my enquire. First of all I wanna say that I'm a beginner in working with flash. What I would like to do:
 I volunteered with a friend to make  an website for a Red Cross branch in Romania, and we would like to make on the contact page something nice. We thought to make to show the contact details from all the branches in Romania  in the middle of a red cross and  the county where  are branches on the external parts of the cross. Practically we would like, on the centre of the cross when there is no mouse action to be wrote Romanian Red Cross and when we roll over on a county button the name of the county to increase in font(make it more visible) and when pressed to show in the centre of the cross  the contact details.( address, phone mail). I would really appreciate any help. Thanks a lot!]]></description>
			<content:encoded><![CDATA[<div>Hi and thanks for taking the time to look at my enquire. First of all I wanna say that I'm a beginner in working with flash. What I would like to do:<br />
 I volunteered with a friend to make  an website for a Red Cross branch in Romania, and we would like to make on the contact page something nice. We thought to make to show the contact details from all the branches in Romania  in the middle of a red cross and  the county where  are branches on the external parts of the cross. Practically we would like, on the centre of the cross when there is no mouse action to be wrote Romanian Red Cross and when we roll over on a county button the name of the county to increase in font(make it more visible) and when pressed to show in the centre of the cross  the contact details.( address, phone mail). I would really appreciate any help. Thanks a lot!</div>

 ]]></content:encoded>
			<category domain="http://board.flashkit.com/board/forumdisplay.php?29-Newbies-amp-General-flash-questions"><![CDATA[Newbies & General flash questions]]></category>
			<dc:creator>danielbotezatu</dc:creator>
			<guid isPermaLink="true">http://board.flashkit.com/board/showthread.php?830441-I-need-help-with-how-to-display-info-on-mouseover-in-a-different-place</guid>
		</item>
	</channel>
</rss>
