Groups | Blog | Home


Archived Months
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
January 2008
June 2008
all groups > flash actionscript > august 2006 > threads for monday august 14

Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

external links
Posted by cdm23 at 8/14/2006 10:40:12 PM
ok I make flash banners for a comapny sometimes. I have the banners go to an external link for tracking purposes. I use this action script on (release) { getURL(clickTAG, "_blank"); } no I need it to forward to an external link the same way, but I need it to do it when it hits a new...more >>


How do i stop my flash movie from looping?
Posted by maxy_ at 8/14/2006 10:00:05 PM
How do i stop my flash movie from looping when it gets to the end? for example, i want it to have navigation from frame to frame purely with my buttons instead of automatically going from frame one to two, but when it gets to the end of the timeline it goes back to the first scene and frame. ...more >>

xml elements into text fields
Posted by phield at 8/14/2006 9:03:08 PM
Hi there -- Doing something that sounds like it shouldn't be too difficult, but...(using Flash pro 8, pc) I have created a UI list that includes links that have been pulled from elements in an XML file. Seem to have loaded the XML file OK, and the list is populated with my links, which ...more >>

Flash If Instance exists
Posted by nathanc NO[at]SPAM crossfields.com.au at 8/14/2006 8:33:03 PM
Hello all, I want to be able to say on a flash script if a button is clicked and an instance isset then do another action, what is the best way to script this. I am more familiar with php rather than flash scripting as you can probably tell. eg.. if($instance == "Test1") { gotoA...more >>

What's The Correct Syntax On This?
Posted by Josh Pratt at 8/14/2006 8:27:02 PM
I've got a _global variable that is assigned somewhere by this: _global.currentLoaded = "pic1" I've got some buttons that need to use this variable in an onRelease function and the code should ultimately function like this: _parent.pic1.gotoAndPlay(16); But if I use this it doesn't...more >>

Setting a buttons aplha in actionscript
Posted by RSHerhuth at 8/14/2006 8:26:17 PM
I have a situation where I have 5 buttons on stage. I want to change 4 buttons Alpha properties to 50% when I mouseover one of the buttons. I had success in changing the alpha of everything when I use: on (rollOver) { _root._alpha=50; } on (rollOut) { _root._alpha=100; } ...more >>

gotoAndPlay Question
Posted by Josh Pratt at 8/14/2006 8:18:50 PM
I've got a movieclip that has a 'stop();' action on frame 16. If I send a gotoAndPlay(16); to it, will it play, or will the 'stop();' stop it still on 16, in which case I'd have to do a gotoAndStop(17);? ...more >>

How I do to see MovieClip with action script
Posted by rochribre1 at 8/14/2006 7:58:28 PM
How I do to see MovieClip, there are in my film and What your names. with action script...more >>



Re: Search an Array
Posted by sbryner at 8/14/2006 7:50:31 PM
Thanks Dave, The thing is I'd like to know what this means? in english //for the variable i equals 0; i is less than myArr.length(the length of characters in the array? ; i++ (means add one to i(i=0 +1))?? for(var i = 0; i < a.length; i++){ // if myArr is equal to myNum then: if(...more >>

Spectrum analyzer
Posted by tahadaf at 8/14/2006 6:36:34 PM
Hi, Check this file (open it with flash 8) http://emstris.com/sample/blurmicrophonespeaker.fla export the .swf and run it and you'll see that the speaker icon will have a blur effet while we are speaking through our microphone. I need to know how we can have the same effect to have th...more >>

demo code error
Posted by berniepack at 8/14/2006 6:27:41 PM
:confused; I am stepping through the beginners tutorial of Flash 8. In placing the action script on a button, exactly as defined in the tutorial:- inv_btn.onRelease = function(){ getURL("http://gnome.deseloper.com", "_blank"); }; then the script assist reports the following errors:...more >>

How MovieClip there are in my film
Posted by rochribre1 at 8/14/2006 5:03:16 PM
How I do to know MovieClip, there are in my film and What your names....more >>

Search Engine in Flash 8
Posted by layerburn at 8/14/2006 4:55:37 PM
I have 700 pdfs that are divided into 6 different catalogues. I need to create a search engine that can search within selected catalogues or throughout all 6. Could someone point me in the right direction? ...more >>

Stop Command not having any effect
Posted by RSHerhuth at 8/14/2006 4:49:28 PM
I am new to Flash 8. I have built a simple movie that has a button symbol. I dragged that onto Scene 1. Now what I would like to do is to stop the movie on frame 5. If the button is clicked I want to continue to frame 10. In following along with the tutorial I enter a Keyframe on frame ...more >>

Re: Search an Array
Posted by sbryner at 8/14/2006 4:39:31 PM
Now it works. I don't know what I did to screw up your code. But I recopied it and it works. Thank you, Off to learn more array stuff. If anybody could comment out this code so I can understand it that would be great, function testF(a,n){ var noMatch=true; for(var i=0;i<a.le...more >>

Question about custom components
Posted by everynewday at 8/14/2006 4:20:37 PM
Hey, I'm relatively new to Flash,a nd completely new to creating custom components. I found tutorials on how to make them, and they all worked fine. I got custom components to appear in my components list, and I can add them to the stage directly. However, I need to create them using actionscr...more >>

Make object fall when released?
Posted by VaporAction at 8/14/2006 3:06:34 PM
I want an object (ElementFe_mc) to fall to a table top (_y = 412.4) when released. I thought this would be simple, but have been frustrated...here's what I've tried... ElementFe_mc.onRelease = function(): Void { this.stopDrag(); if (ElementFe_mc._y < 412.4) { this._y++ } }...more >>

Re: button to scene
Posted by kglad at 8/14/2006 2:45:57 PM
i recommend you not do what Darr_darshan suggests. label the frame (the first?) in scene 10g and use that label in the goto method. check the sample fla i provided. _root.gotoAndPlay("scene10g_frame1"); // if your frame is labelled scene10g_frame1. ...more >>

Austin, next month
Posted by aniebel at 8/14/2006 2:23:47 PM
I am sure I may need to post this in the General forum but I know some of you guys only read this one. I'm planning on going to the conference next month in Austin and would like to shake hands with a few of you who have helped me out. Amy ...more >>

Create a flutter effect with AS
Posted by aniebel at 8/14/2006 2:20:15 PM
I am trying to write a class file that extends the mc class and I'm trying to figure out how to rotate the mc back and forth to simulate a flutter whenever it's "hit" by another mc. So far, I've created public functions that will occur with hittest but I can't figure out how to do the action. ...more >>

If you can solve this your a genius!
Posted by FirstNforthFinger at 8/14/2006 12:32:32 PM
Hello, I have a simple single frame Movie with one MovieClip on stage (and nothing else) the movieclip has some AS on it and 3 lines of AS on the first frame too. Theres nothing else in this movie. [b]BUT,[/b] when i goto dublicate this movie in a new document by copy and pasting the MC an...more >>

Who's going to Flashforward?
Posted by David Stiller at 8/14/2006 11:22:01 AM
Gang, Plenty of the regulars here have been contributors for years. I'd love to put a face with the name, after all this time. Who's headed for Austin in a month for Flashfoward? I'll be there. David Stiller Adobe Community Expert Dev blog, http://www.quip.net/blog/ "Luck is th...more >>

PrintJob function help urgently required please....
Posted by russell at 8/14/2006 10:01:15 AM
hey, i tested my code below on Friday and everything worked a treat! Now it isn't working this morning..... I have rebooted this machine and the printer 3 times so far and still it will not enter the "myPJ.start() method!!!! .... arrrggghhh.... Anyone any idea's?? Thank you -------------...more >>

_global refer to instance
Posted by robertson NO[at]SPAM cruxmedia.ca at 8/14/2006 9:19:31 AM
I am having trouble using a global variable to refer to an instance, is this possible? Here is my situation : I have a series of moviclip buttons with the following actionscript : this.onRelease = function(){ _root.mcloader.displayed.gotoAndStop(1); _global.displayed = "redballs"; } basic...more >>

convert the player's version from 6 to 7
Posted by tahadaf at 8/14/2006 4:49:04 AM
Hi, Check the file... http://emstris.com/sample/flash8_player6_ac2.zip it's saved in flash 8 and in publish setting, the player version is chosed as V6 and actionScript V2. It's working fine with this setting but I need to change the player version from 6 to 7. When I do that, the slid...more >>

TextField Help!
Posted by Daniel Leonard at 8/14/2006 3:52:46 AM
Hey, I'm still new to action script in Flash 8. I want to be able to add a paragraph of text to an empty text field via action script. Heres what I'm typing in the action panel. News_txt is the instance name on the stage. this.Recent_mc.onPress = function() { News_txt.text = "This...more >>

motion sequence
Posted by microes at 8/14/2006 12:00:00 AM
when would you use a looping array to create a motion sequence when would use otherwise to create a sequence. how would it be written?...more >>

Interactive image panning
Posted by purple_am at 8/14/2006 12:00:00 AM
ello guys I need some help with creating a panning image system as in this http://www.cactusadvert.be/help/panning.rar Its something simple i suppose but cant manage to figure out the scripts. Any tutorial or script is most welcome. thx in advance ...more >>


DevelopmentNow Blog