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 > september 2005 > threads for saturday september 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

Bulding a flash app and need help.
Posted by krl at 9/10/2005 10:59:03 PM
I am in the proccess of building a flash app for my youth group that will display our current Bible reading plan. What I want to do is read the information from an xml document and populate the apporpriate text fields. This is the structure tat I'm using in my xml file: <ReadingPlan> <E...more >>


Component buttons in movieclips
Posted by Ed NO[at]SPAM Home at 9/10/2005 10:29:53 PM
:confused;I have drug a button component (instance name: myButton_btn) onto a movie clip in the library. I have set the library movieclip linkage for exporting. I now use the this.attachMovieClip(xx, xx, xx) on a frame in the root timeline to place a copy of the library movieclip on the sta...more >>

hide player window bar
Posted by reuv at 9/10/2005 6:13:18 PM
Is it a way to hide the flash player window bar when running movie ? Is it a way to change the icon of the flash files i create?...more >>

Need Help Using flash + PHP to send email!
Posted by seanhaddy at 9/10/2005 5:49:11 PM
Ok, the topic pretty much explains what I need help with... I have an email form with a bunch of fields, and I want, when a person presses the submit button, for it to post to php file, then php file to then send the mail to email. Thanks very much! Here is the code I have: // in ...more >>

Error trying to pass javascript variable
Posted by karma-lab at 9/10/2005 5:34:25 PM
I've been trying to pass a javascript variable to my swf using the methods explained in this technote: http://www.macromedia.com/cfusion/knowledgebase/index.cfm?event=view&id=KC.tn_15 683&extid=tn_15683&dialogID=62708134&iterationID=1&sessionID=9630e42f1a202c581d2 9&stateID=0+0+15103487&mo...more >>

Using tab stops
Posted by icarusdown at 9/10/2005 3:30:24 PM
I am loading data from a text file. Is it posible to use tab stops in loaded html formated data? And if yes, how? Thank you in advance!!!...more >>

use of CPU resources
Posted by yker30 at 9/10/2005 3:12:45 PM
:Q Hello. I have a big problem. I have building a flash MX 2004 movie about 20 MB, I have turned it into an standalone application (.exe) using a third party software -such MDM zinc V2 or SWF Studio- resulting in an .exe 5 MB application. It runs good, as I have expecting, but the use of my ...more >>

Can I hide my actionscript from decompilers
Posted by wieniecomponents at 9/10/2005 2:57:37 PM
Hi, I am tried out many methods in an attempt to hide actionscript from the swf decompilers. I think there is no fool proof method to hide it. Is there any way to hide some actionscript?...more >>



affecting duplicates one by one
Posted by Anth2003 at 9/10/2005 2:43:02 PM
Hi guys, I have a very simple problem. I am making a little fading slide show and have placed all my images in frames on a single movie clip and then have the following code in the root timeline that duplicates the movie clip and puts it on the right keyframe for each image. theOne = ...more >>

check url file avaiable
Posted by 123lionel at 9/10/2005 2:20:34 PM
Hi, I use picture.loadMovie(image, 1) and sometime got error: Error opening URL xxx How to do: 1. check the url(file) is valid 2. track the error in actionscript v1.0 Thanks. ...more >>

reccurection function
Posted by kleva82 at 9/10/2005 2:10:33 PM
Hi! What such function will print? function r(rec_count) { for(j = 0; j < 3; j++) { trace("rec_count = " + rec_count + ", j = " + j); if (rec_count != 0) { if (j == 1) {rec_count--; r(rec_count); trace("return, rec_count = " + rec_count + ", j = " + j);} } ...more >>

Double-click event in components
Posted by Filo at 9/10/2005 1:44:03 PM
Hi guys, is there a workaround to detect the double-click ...for example on a item in a List component? Thanks in advance. Filippo ...more >>

Alerts
Posted by xertzux at 9/10/2005 1:43:10 PM
I have created a contact form for my website that also contains an error box. Instead of putting short for errors into the error box that people might not understand, I decided just to name them all "Error 1, Error 2, etc." and then when someone click on one of the errors in the error box, it ...more >>

array.push.splice
Posted by pickle jar at 9/10/2005 1:32:48 PM
This is a problem i have highlighted earlier but thought I may as well break it down a bit simpler (look on previous post for my attempt so far). I want to have an array of images, whether images on seperate keyframe on a _mc (ideal for this project) or imported from a folder. This array of...more >>

how can I do this effect
Posted by bedchi at 9/10/2005 10:47:33 AM
hi , Since long on the net I am trying to look for a tut to do this effect http://www.la-bagagerie.com/bagagerie.htm Anyone knows a good tut? or anything... People at Kirupa has the tut but its left to right not diagonal..and I am not able to to do it. thanks ...more >>

HELP PLEASE!
Posted by worrier34 at 9/10/2005 8:58:06 AM
I created a swf named index.swf.I load other swf files those contain menus into this main movie(index).The menu buttons are working properly after loading when i test to the movie on flash.But these buttons are not working when i loaded files on a html page.What can be the reason? ...more >>

Clicking on a movie clip
Posted by Dinghus at 9/10/2005 6:44:10 AM
Maybe I'm just tired, but this one is actually whupping on me. I load a movie clip onto the main timeline using attachMovie Now I want to click on it and have something happen. So which do I use? So far I have tried MC.onPress MC.onRelase even MC.onSetFocus I have trie...more >>

target main timeline from externat nav.swf
Posted by squidz at 9/10/2005 12:00:00 AM
loaded external nav.swf into main movie. from the buttons in nav.swf I need to jump to a frame label on the main movie timeline. What is the proper on(release) gotoandplay() syntax to place on the buttons in the nav.swf? ...more >>


DevelopmentNow Blog