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 > june 2005 > threads for friday june 10

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

Assigning a class to a movie clip symbol
Posted by Rowan at 6/10/2005 11:32:20 PM
Hi there -- I am in need of some help with this one.. I have am using createEmptyMovieClip to create a blank MC in _level0, and I would like to assign the following to its onEnterFrame and onLoad event... onClipEvent(load){ //set the value of newX equal to its current x position //ne...more >>

Form execution in actionscript
Posted by caskater at 6/10/2005 11:17:26 PM
I'm trying to create a basic login with my flash app. For some reason I cant seem to get it to pass in POST data. Heres what I have for my actionscript this.createEmptyMovieClip("submit_mc", this.getNextHighestDepth()); var submit_mc.username:String = username_txt; var submit_mc.passwd:Str...more >>

clean out a movieClip
Posted by Sam at 6/10/2005 9:26:50 PM
is there a way to kill all the children of a movieclip using actionscript? I have a movieClip holding all the shots I fire and when all the enemies have been killed, I want all the bullets to disappear too. sam...more >>

modifying script to work when swf is nested
Posted by macron at 6/10/2005 8:51:17 PM
hi all, i have a swf called 'weddings' that loads thumbs into a holder mc, and it works fine on its own. but when the 'weddings' swf is loaded into a holder in my index.swf, the thumb loading scripts stop working. i am guessing it has something to do with the heirarchy of the swfs. h...more >>

resetting a holder mc to its original position
Posted by macron at 6/10/2005 8:14:29 PM
i'm having trouble getting a holder mc to return to its original x and y positions when i load new mcs into it. kglad recommended the following onClipEvent(load){ // <-- attached to thumbholder initX=this._x; initY=this._y; } and any time you use thumbholder.loadMovie(); also execu...more >>

Remove Arrow Clicking in Tree
Posted by Ankur Arora at 6/10/2005 8:10:30 PM
Hi All, I'm working on tree component & created a menu by loading a xml file into it. Also I've given the open folder functionality onclicking of any parent node. and I want to remove the node opening functionality from the black arrow, how to do that, please help ...more >>

creating xml
Posted by dfe1 at 6/10/2005 8:08:47 PM
Hi, Is there a way to have a proper indentation for the XML files created by Actionscript. I use XML class; createElement, createTextNode, etc. However, I could not find a way to create a XML like <a> <b> <c/> </b> </a> What it does is <a><b><c/><...more >>

Visited button not allowing revisit to frame
Posted by queensryche_05 at 6/10/2005 8:01:54 PM
I have the following actionscript on a button: on (press) {gotoAndPlay("two"); } on (release) { _root.button_visited_video.gotoAndPlay("visited_videoinfo"); } Basically what happens is that the blue button whe pressed goes to frame label "two" and then changes to grey, which is e...more >>



cant remove a duplicated movieclip :(
Posted by Nickholl at 6/10/2005 1:59:47 PM
Hi - Im fining it impossible to remove a duplicated movie clip. Ive placed the small fla at the link below if someone would be so kind as to take a look www.contrastmedia.co.uk/test.fla at the end of the shot animation (the black circle) I want it to delete itself many thanks for your ...more >>

_x & _y of mc relative to stage and not parent mc
Posted by BadMoonRising at 6/10/2005 1:26:05 PM
Good Morning all, I?m trying to get the _x and _y of a movieclip relative to the stage where said movieclip is nested inside several others, which have been dynamically rotated. I?m hoping there is an easy way to get this rather then taking the route of reverse engineering the positio...more >>

XML In flash
Posted by pixelphreak at 6/10/2005 12:49:21 PM
Good morning all, What I am trying to accomplish is a Drop down Menu in flash powered by XML. I want to it be fully customizable from a xml text file. can anyone help. thank you...more >>

Dynamic text
Posted by Ineedsleep at 6/10/2005 12:46:27 PM
I have a dynamic text field that gets the mouse location to sisplay on screen but it comes back undefined onClipEvent (enterFrame){ xval=_root.xmouse; yval=_root.ymouse; } this is the code that am using does any one know wha tis wrong or a better way of doing it?? ...more >>

Scrollpane
Posted by Denis at 6/10/2005 12:41:54 PM
Hi I'm trying to use scrollpane component Do you know how to make its background transparent using actionscript? Thanks ...more >>

Disable actionscript
Posted by myke_mla at 6/10/2005 12:00:16 PM
I am importing a number of swf's which have been created by other people. Obviously I don't want anyone to include code which might interfere with my movie, so I was wondering if there is an effective way to disable actionscript in an imported clip. Ideally I'd like to disable buttons, cod...more >>

XML Related Issue.
Posted by bluesquid at 6/10/2005 11:58:59 AM
Problem, I have a text editor in flash just like this which i typed my message. User can format the text ( Bold, I,etc).After that user can save the page.When other users logs in they should see the changed contents.The Applications are running in a server and ASP is my server side ...more >>

Stop a frame?
Posted by rdsx667 at 6/10/2005 10:29:44 AM
Is is possible to make it so itplays the first frame but not the second?...more >>

PHP Problem
Posted by Gaz H at 6/10/2005 9:44:29 AM
Hello, When creating an e mail form in flash, where do you writ the PHP script? I know its probably something simple, but I can't figure it out! Cheers....more >>

Dynamic Function Variable Modality Problem!
Posted by logosNotMythos at 6/10/2005 8:20:13 AM
Okay, so I'm calling an actionscript function from an HTML file, that I called displayImage (guess what it does!). here is the function: function displayImage(imageName){ _root.introMovie.siteMovie.imageName._visible=1; } and I call it from the HTML using this code: <a HREF="asfu...more >>

AS2 error
Posted by FlashAmit at 6/10/2005 7:43:55 AM
I added an mc with identifier "GraphCom" and wrote following code on its first frame. but its drawGraph method is not executing.. GraphClass = function () { }; GraphClass = new MovieClip(); //================================ GraphClass.prototype.drawGraph = function() { trace("call...more >>

Passing parameters to an application
Posted by jahanzaib at 6/10/2005 1:07:44 AM
Hi .I had a problem but my last forum solved it.Now i want to open mplayer2.exe and parameter avseq01.dat. In Flash Mx ,how can be it possible? ===========AGE LEAVES YOU SOON ============================= ...more >>

creating captions with ActionScript and XML
Posted by Papa Rabbit at 6/10/2005 12:00:00 AM
I'm looking for examples, tutorials or samples of how to creating captions with ActionScript and XML like what you would see in Macromedia Captivate. I've made some attempt at this myself with noluck... What I had tried was to create a dynamic text box and place it inside a movieclip, i...more >>

ComboBox - No 'onPress' // onSelect Event?
Posted by ManinBlaq at 6/10/2005 12:00:00 AM
So far, the most reliable means of using the combobox, has been to make it editable -- but restrict the box to just 'enter' ..and then I can reliably listen to the 'Enter' event. The RollOver // RollOut events are too sensitive. They trigger far too often ...and unfortunately the 'change'...more >>

Movie with Movie Buttons - Rollover Control
Posted by Neshenti at 6/10/2005 12:00:00 AM
Red Newbie Alert! Here?s what I have wrought thus far: 1. I have a Flash menu file. It contains four buttons that serve as hyperlinked icons. 2. The rollover state for each button is an imported Flash movie. (The reason for this is that I have created ?magnification? effects for each ...more >>

Dynamically adding TextField
Posted by Markol at 6/10/2005 12:00:00 AM
Hello, I have created a small app to allow the user to add a textfield to their preferred position on the screen. At the moment I can't workout how to give each textfield added a new name, and the code only allows one textfield to be added. Is it possible to use a variable name instead o...more >>

PHP script oddity
Posted by ivanko_98 at 6/10/2005 12:00:00 AM
I?m importing some data from a PHP script, and with onData handler the raw string is initServerSideSiteData=&reformatingOfOriginalImagesComplete=&initServerSideSiteD ataStarted= In the PHP these three variables hold boolean values, in this case 'false', indicates by empty strings... Whe...more >>

Rotation...
Posted by davidprovost at 6/10/2005 12:00:00 AM
Im trying to get a mc to rotate towards another mc. Kinda like when a mc rotates towards your mouse. But I want the mc to rotate towards another mc instead. The code to have a mc rotate towards your mouse is... _global.radiansToDegrees = function(radians) { return (radians/Math.PI)*180; }...more >>

attachMovie reference not working
Posted by sneskid at 6/10/2005 12:00:00 AM
Hey, when i use attachMovie function or duplicateMovieClip i get the reference and change the custom properties that i added to the MC, however the changes never take effect. Why is this? Am I only causing properties with the same name to be created for the temporary pointer object? this is ...more >>

Animated Buttons?
Posted by zummodesigns at 6/10/2005 12:00:00 AM
I took a class in flash MX when it first came out but my teacher was a programmer not a designer so most of what he taught was directed toward programmers. Im not at all programmer literate but i have been a designer for 10 years now and i have a problem. The only way i know how to make an ani...more >>

How to make window component at a fix position?
Posted by Amcasperforu at 6/10/2005 12:00:00 AM
Hi all, I dragged and dropped a window component to my Flash stage, and its curently moveable, my quesiton is how can I make this window component sticks to my desired position, making it unmoveable? Is this possible? Thanks a lot. ...more >>

ScrollPane content control from root
Posted by Burden705 at 6/10/2005 12:00:00 AM
I need to control the content movie clip of a scroll pane with buttons on the root time line. ex. scrollPane instance = my_sp scrollpane content MC = my_mc (do i need to give this MC an instance name? and if so, where do i do that at?) script on button on the root timeline. ...more >>

instance name
Posted by SkidOvidiu at 6/10/2005 12:00:00 AM
can I set up a instance name for an item that is only in the library? for example , a sound, I cant put it on stage and I want to use : instanceName.attachSound()...more >>

Getting Flash to generate the "Save As" dialogue from a button
Posted by Paradigm at 6/10/2005 12:00:00 AM
I'm trying to put together a Product Photo Library which will be distributed on CDROM only. I had the idea to use the scroll pane component to display a long list of thumbnails of the various products, which I can do. Each thumbnail will in fact be a button with which I would like to be able...more >>

RemovingclipEvent
Posted by animee at 6/10/2005 12:00:00 AM
Hey all, I have a problem ocncerning the onEnterFrame events. I have several onEnterFrame events running (preloader, animations etc.) and this slows down my movie's framerate. My quaestion is.: Is it possible to remove onEnterFrame events when its not needed anymore and if how does thi...more >>

incorporating pdf file from flash
Posted by josh_on_creek at 6/10/2005 12:00:00 AM
would someone here knows how can i incorporating pdf file from flash. i mean opening pdf files through flash... i used the getURL() but silly me, it doesn't work.... how can i do it?:confused;...more >>


DevelopmentNow Blog