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


all groups > flash actionscript > january 2005 > threads for wednesday january 12

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

Multiline text in a List component
Posted by maulia at 1/12/2005 11:34:05 PM
I want to build something like Outlook 2003, where you show the title in bold at firstline, and a bit of summary in the lines after,..etc So basically putting a multiline in a List box...more >>

loadMovieNum & attachMovie for Dynamic Library Access
Posted by AlexMaghen at 1/12/2005 11:22:58 PM
Hi. I have two movies. One I'll call 'MAIN.swf' and the other I'll call 'DYNLOADED.swf'. DYNLOADED.swf is a movie which has a bunch of MovieClips in its library that are all marked for actionscript export. The idea is that I load this movie dynamically using loadMovieNum() and then I can inst...more >>

gotoandplay in a
Posted by Borndesign at 1/12/2005 10:42:44 PM
on(release){ gotoandplay("map"); }...more >>

Can't insert new symbol into movie
Posted by Goalie35 at 1/12/2005 9:49:09 PM
I downloaded a movie from the internet to use on my site and everything works fine however now I want to add an additional symbol to the scene (the symbol is just a simple fade in of an image) but for some reason, this new symbol never shows up no matter what I try(I know very little actionsci...more >>

Is it possible to pass multiple identifier/variable names into [ ] square brackets.
Posted by B at 1/12/2005 8:10:10 PM
Let's say you have some code where you're duplicating several movie clips and you want to be able to pass the new name of each movie clip into one line of code that will determine the 'speed' of the duplicated clips. So here's what the code looks like: for (i=0; i<15; i++) { carNameA = 'car...more >>

scrollbar w/o Components
Posted by JF213 at 1/12/2005 7:56:21 PM
is there any way to create a scroll bar without using components in flash mx 2004? I just want to use the vertical slider and arrows for a text box. I noticed that the components in flash mx 2004 use a lot of file space making it longer to d/l. I also noticed that since the movieclip needs...more >>

Frame TBox
Posted by GhettoFabFlah at 1/12/2005 7:22:36 PM
I have been wondering if there was any solution to my problem. In one of my flash documents, i have a button that does play and pause and there are subtitles on the bottom (which are a movie clip). My problem is is that whenever i pause the document, the subtitles keep going and get out of syn...more >>

Variable >> Movieclip
Posted by animee at 1/12/2005 7:04:29 PM
Hi all, i got a problem. I want to tell a movieclip to go to a specific frame. But the name of the movieclip should be evaluated using a value stored inside a variable. Like this btCage.onPress = function() { btColor.setRGB(cStatic); MYTARGET.gotoAndPlay(vFrame); }; 'MYTARGET' is the ...more >>



another preloader question
Posted by sniggles at 1/12/2005 6:57:32 PM
is it possible to create one swf file that acts as a preloader for a second one?...more >>

actionscript command from within a text file?
Posted by olidax at 1/12/2005 6:31:41 PM
I have a dynamic text file being loaded into a text field using loadVariables. This file contains a list of topics. When you click on that topic, I would like to swap the current text file for another. This would be easy to do if the topics were buttons in the Flash document, but I don't kn...more >>

It looks like its time to give up tell target
Posted by starwind at 1/12/2005 6:22:41 PM
This is the actionscript I need to rewrite without the use of tell target: for (i=1; i<10; i++) { tellTarget ('movie' + i) { play(); } } It sets 10 movies on the stage in motion. How do I rewrite it without using: movie1.play(); movie2.play() . . movie9.play() Jeff ...more >>

Getting to grips with Local shared object
Posted by bexlhoward1 at 1/12/2005 6:13:46 PM
Hi, I need the access a local shared object from a range of swf's (the same SO). The purpose is to stop a screen showing e.g. when the user first opens the movie a screen telling them about the application is shown. There is a button to 'do not show this screen again'. I want to store values...more >>

Going to a frame label in a movieclip?
Posted by lancotae at 1/12/2005 5:53:43 PM
How do you write actionscript on a button within one movie clip, to go to a frame label in another movieclip? I've tried this: on (release) { _root.mainmenu.gotoAndPlay("intro); } But it doesn't work. All the instances of my movieclips are named properly. The only think I can get ...more >>

ComboBox Component - Setting Default
Posted by BillG-Chicago at 1/12/2005 5:35:23 PM
How can I set the default selection in a combobox component? In other words, when the combobox first displays on the screen, I'd like to be able to read a variable in to determine which value should be the defaulted highlighted value in the combobox. Thanks! Bill ...more >>

Unload MovieClip Problem
Posted by mquach at 1/12/2005 5:34:56 PM
Hi, I have a blank movieclip on the scene and I use movieclip.loadMovie('source.swf') to load an external swf file into the movieclip. In the source.swf file, It links to a flv file which plays a 29 second clip with sound. My problem: I have a close window button that when clicked I w...more >>

Class scope
Posted by btalltheway at 1/12/2005 5:26:22 PM
i have an xml loader class class xmlLoader{ public function loadXml(){ xmlData.onLoad = function(success){ parseXMLFile(); } xmlData.load(...); } public function parseXMLFile(){ trace("here"); } } but when i call loadXm...more >>

Is my file corrupted?
Posted by Ross Franks at 1/12/2005 5:14:04 PM
Is my file corrupted if it can't follow a simple action like gotoAndStop(189); on a keyframe? ...more >>

Detecting when the main movie was unloaded?
Posted by vkhavin at 1/12/2005 5:03:00 PM
Perhaps someone here has done this before or know how it can be done. I have a Flash application that connects to my back end system through an XMLSocket. When the user finishes what they were doing, they need to log out so that the system does not think that they are still eligible to recei...more >>

controlling external player from another player
Posted by phoztech at 1/12/2005 4:49:53 PM
I am trying to figure out if it is possible to control what happens in one player from a different player on the same page. I have one movie loaded in a player at the top of the page then i have another plaver with another movie in the middle of the page. I want to control the middle playe...more >>

help with easing
Posted by Sourabhkothari at 1/12/2005 4:49:16 PM
i have 3 boxes which are connected to a 4th box. now i want that whenever i drag any of the box the other boxes follow with easing. i have wrote the code but is hangs as soon as it renders the movie. plz help ...more >>

Global classpaths
Posted by Peo at 1/12/2005 4:48:52 PM
Just getting into AS2 and i am having problems figuring out were the different Classes reside on my machines (win XP, english language) and (win XP, danish language). The helpfiles state that the global path to the build in classes is: \Documents and Settings\user\Local Settings\ Application...more >>

fscommand() "exec" - PC/Mac question
Posted by redivider at 1/12/2005 4:44:56 PM
I am creating a CD-ROM interface for a series of Flash games. All the games are standalone apps, so there are mac and pc versions of each game. The CD-ROM will be cross-platform. My original plan was to just create two separate interfaces, but now I'm wondering if I can just have one. Just ...more >>

Deleting Shared Objects
Posted by amyh59 at 1/12/2005 4:31:42 PM
Is there a way to remove flash shared objects when a user either exits there browser window or leaves our site? I need a movie to play completely if it is the first page they visit on the site otherwise the movie skips to the end. But the process needs to repeat each time they return to t...more >>

INTERESTING QUESTION ?
Posted by bobrun at 1/12/2005 4:27:45 PM
;) In English fraction numbers displaed with dot 0.657 while in Russian with comma 0,657. Flash doesn't understand comma in fractions while Russians are inputing comma! Can somebody suggest best way to communicate with Russians in Russian number covention and make Flash understand and trea...more >>

my loadVars objects are just too keen! what gives?
Posted by dubya at 1/12/2005 4:26:01 PM
hey everybody! :) most annoying! i downloaded a simple tutorial that takes some data from flash, passes it across to php via loadVars which then whacks that into a mysql database before responding via php's 'echo' method to the flash, which changes itself accordingly. i've tested the php and...more >>

Streaming mp3, please help
Posted by robotpanic at 1/12/2005 4:03:13 PM
I want to be able to stop a streaming mp3 from loading if the user chooses a different track (a common thing I?m sure?) How can I tell if my delete sound object script is working? (is that the best way to do it?) When I do a simulate download in flash each time I push a track it begins a new...more >>

Chaining swf files
Posted by lou222 at 1/12/2005 3:43:23 PM
I am going to try to keep this as simple as possible. I have several swf files that contain embedded audio and load an external swf movie using loadMovie(). I am trying to create a full video version of the several swf files that will simply play one after the other. I have tried severa...more >>

How can i pass PHP URL variables to getURL in flash?
Posted by joe meca at 1/12/2005 3:39:18 PM
Hello can anyone help me i am trying to pass php variables from a url to get url in flash Example i do http://www.mysite.com/?dyndir=blah In flash i want to have getURL('http://www.mysite.com/$dyndir/'); which should print http://www.mysite.com/blah/ when its running The variable defined in...more >>

Affecting all instances of a class at once
Posted by GifBoy111 at 1/12/2005 3:10:24 PM
I have created a class that extends MovieClip. Basically one of the methods in this class 'highlights' the instance by drawing a rectangle around it. At the moment, when someone clicks the instance, it 'highlights'. What I would like to do is this: when someone clicks a particular instance, a...more >>

close the flashplayer
Posted by Mike7222 at 1/12/2005 2:38:09 PM
Hi, I will be using a projector exe file in full screen and want to give the user an option to close the flashplayer completely from a button when they have finishede. Is there any actionscript code that does it? Cheers Mike ...more >>

SWF navigation possible in PDF ????
Posted by Marion B at 1/12/2005 2:17:54 PM
:confused; I have really searched through the whole web but could not find it anywhere. Is it possible to let a swf file navigate the PDF?...more >>

fscommand exec & c written program
Posted by majkel_pl at 1/12/2005 2:08:27 PM
Hi, I'm wondering if there is any way I can start my own aplication writen in C with parametrs from Flash Projector . For example: fscommand("exec","programm.exe parametr"); I knwo I can't use spaces when using fscommand exec but is there any way I can execute sth like this "open.exe para...more >>

Line Break in Text Box
Posted by GladLock at 1/12/2005 2:02:04 PM
I'm creating a textbox which inputs multiple sentences. How do I create a line break so that every time my textbox inputs a new sentence it creates a lines break between sentences? This is what I got so far...But can't figure out the line break command. _root.Comment = _root.Comment + ...more >>

HELP ME, basic actionscript (I Think?)
Posted by G H at 1/12/2005 1:28:13 PM
hi there, I am stuck on a bit of actionscript navigation and i need your help. Basically my Movie consists of one Scene named "One" and within this scene it has nested Movie clips (symbols). I am at the last frame of one of my movie clips (symbols) and I want to navigate back to the first ...more >>

mouse down state getting reset when key board key is pressed
Posted by pandey at 1/12/2005 1:12:18 PM
Hi Guys, I'm doing certain action while my mouse is down, in one of the frame while mouse is down i need to press spacebar to continue to the next frame, but what happen is as soon as i press the spacebar the mouse state is getting reset. how can i solve this problem? for key press i'...more >>

Two clips the same name - Is that a problem ? Duhhh
Posted by GmR at 1/12/2005 1:11:21 PM
I have a movie with heap of movie clips. I just discovered that I had duplicate names of movie clips, however, these clips were in different areas of the timeline (& on the same track/layer). Do you know if that would cause a problem? For some reason the Flash is hanging when playing on ...more >>

event release dinamicly
Posted by Edwin Santos at 1/12/2005 12:43:59 PM
I want to instance a movieclip dinamicly. In this instance of movieclip, there is a button(symbol and not component). I must add code in the "release" event. near this->> eval("this.mcrespostatexto")._onRelease{trace("abc...");} thanks. sorry my bad english. ...more >>

Calling MPEG Movie clip dynamically
Posted by amalenduhajraa123 at 1/12/2005 12:01:58 PM
Is it possible to call MPEG Movie clips dynamically in flash using XML or something like that without importing the mpeg movie in Flash. I'm working in a site developed in CGI perl. The mpeg movie will randomly change on every refresh. can anybody help? thanks in advance.. :-) -Amalendu ...more >>

Displaying html in Flash files?
Posted by Brian at 1/12/2005 11:13:57 AM
Is it possible to display a already existing html page in a flash file? I want my client to be able to update a certain part of a flash page I am building for them? Thank you. Brian...more >>

Opening a mc from the library, attachMovie object right?
Posted by complexity at 1/12/2005 10:37:36 AM
Hey all, I am trying to a grab a movie from my Library and then load a movie into that mc. attachMovie('picHolder', 'picHolder_mc', 1); Movie in the library is called picHolder and linakge is set to export for actionscript, the movie I load in always loads but for some reason it looks like ...more >>

how to swap text files from within a dynamic text box
Posted by Olivier D'Arceaux at 1/12/2005 10:18:43 AM
I have a dynamic text file being loaded into a text field using loadVariables. This file contains a list of topics. When you click on that topic, I would like to swap the current text file for another. This would be easy to do if the topics were buttons in the Flash document, but I don't kno...more >>

Change size of dynamic text box
Posted by George Webb at 1/12/2005 9:27:46 AM
How can you make a dynamic text box change in length to match the length of a new word being fed into it? Thanks....more >>

Change size of dynamic text box
Posted by George Webb at 1/12/2005 9:27:38 AM
How can you make a dynamic text box change in length to match the length of a new word being fed into it? Thanks....more >>

Linking Text to an external document
Posted by jaimie_rodd at 1/12/2005 3:02:31 AM
I cant link text in flash to an external document does someone know how to?...more >>

Change Characters
Posted by olace* at 1/12/2005 2:40:47 AM
basically i want to do this but i can't find the appropriate actionscript anywhere, thanks in advance if (variable contains '_') { change the '_' to ' '; }...more >>

hitTest not working, please help!!!!!
Posted by bso_71 at 1/12/2005 1:16:22 AM
I am using the hitTest but if I put my object on _root it works perfect, but when I have it inside a movie clip it doesn't work! I'm using the next script: hit_mc.onEnterFrame = function(){ if(hit_mc.hitTest(_xmouse,_ymouse, true)){ trace('inside') } } When I have my hit_mc movie clip ...more >>

global animation
Posted by doremitea at 1/12/2005 1:00:44 AM
hi, i have a globe picture, how can i make it rotate around? Thanks...more >>

Need help building basic Thumnail to Large Photo Viewer
Posted by complexity at 1/12/2005 12:52:40 AM
Hi all, Trying to build a basic click Thumnail to load in external jpg, with preloader. I have a thumnail movie, screen movie (that contains a progress bar) with the screen pointing to a fadein.swf which is holding a loader. (I am loading this fadein.swf as I want to have a transisition fade ...more >>

GotoAndPlay - scene problems
Posted by STU! at 1/12/2005 12:03:27 AM
:confused; Hi, i'm having trouble using the gotoAndPlay script to link to a particular scene... Keep getting errors when i enter it in this format gotoAndPlay([scene,] frame) could someone pls explain exactly what I am not doing right here? its killing me! cheers, STU! ...more >>


DevelopmentNow Blog