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 > march 2007 > threads for sunday march 18

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

Creating a changing level to load too
Posted by BushyMark at 3/18/2007 11:51:10 PM
Hey everyone, I am creating a navigation system that is comprised of multiple swf's, and I am trying to create a transition. My goal is to have the currently loaded swf play an outro while the new swf plays it's intro. My idea was to do this by rotating the levels that each of the swf's l...more >>


Paint program with save function
Posted by samhai at 3/18/2007 11:34:29 PM
Anyone know a way to make a paint program in flash 8 with save function? The paint area should be quite large so the current jpg saving methods don't seem to work. Any solutions for this?...more >>

array movieloader?
Posted by jagguy99 at 3/18/2007 11:07:43 PM
This program works with a rotating image with 3 pictures. q) How can I use an array for declaring this variable for 'X' number of these var this["mLoad"+2]:MovieClipLoader= new MovieClipLoader(); q0 Is there an easier way to load an 'X' number of pictures like i have done? //import...more >>

Draggable Movie Clips
Posted by Social Psyence at 3/18/2007 9:59:13 PM
hey there, is it possible to make a draggable text box that can later have input text entered into it. You can't enter type in the box when the movie clip it resides in becomes draggable. I've pinned the ._x and ._y values of the text box to a draggable move clip so it sort of "follows" it...more >>

format of a dynamic text field lost when the value is changed
Posted by aa at 3/18/2007 9:53:38 PM
I have a text filed created using createTextField() and ist properties set this way: ..type = "dynamic"; ..html = true; ..text = some_variable; var TextFormat = new TextFormat(); set some formats ..setTextFormat(TextFormat) It works fine - it shows the initial value of some_variable (which...more >>

Play SOUND and the go to URL
Posted by rowby at 3/18/2007 9:44:41 PM
Hi All, I want the visitor to click on a button. First a sound is heard and then they are taken to a url. I'm using this script: on (release) { var your_sound:Sound = new Sound(); your_sound.attachSound("store"); your_sound.onSoundComplete = function() { ...more >>

setting getting manipulating focus
Posted by ahref at 3/18/2007 9:33:10 PM
hi again, ive decided to do my menus for a game of mine using the list component. I have come across a problem. the player's character is controlled with the arrow keys but i also wish for the menu to be controlled this way. The problem is that when the list component or menu has focus the...more >>

Submit Button and New Pages
Posted by lmonique at 3/18/2007 7:14:26 PM
Hello all~ The questions i have may be too complicated for this forum, but as I'm struggling desperately, I thought I'd give it a try. I bought a premade site almost a year ago, and I managed to update it myself, but I've never been able to get the submit button on the contact form to wo...more >>



timeline reverse 2
Posted by ToffeeCrisp at 3/18/2007 6:36:38 PM
ok, got this code of some good chap earlier on for reversing the timeline and it works. stop(); BackButton.onRelease = function() { onEnterFrame = function() { gotoAndStop(this.prevFrame()); } } ForwardButton.onRelease = function() { onEnterFrame = function() { goto...more >>

Scrolling Help
Posted by Tailsnake at 3/18/2007 5:38:54 PM
I've been trying to make an interactive timeline on a historical figure for th past few hours and I'm wondering if anyone can help with the scripting. I wanted mouse based scrolling like the one in the link below. if that's not possible could some one tell me how to make buttons that could hav...more >>

Exporting to AS automatically
Posted by eric76 at 3/18/2007 4:13:08 PM
I have imported several hundred small gif bitmaps into my FLA, wich I want to export to AS. But manually right clicking each bitmap in the library and click export seems very tedious. Anyone know if there is some easier way or some way to automate it? In fact there are many situations whe...more >>

Novice Starting Point
Posted by EasyEdE at 3/18/2007 2:53:31 PM
Two questions - first, can anybody recommend a good NOVICE PRIMER on Actionscript. I don't expect to become an Actionscript genius but want to be resonably versed in it so I can work with various Flash components such as drop down menus, accordian menus, slide show controls and slide show navi...more >>

Time line reverse
Posted by ToffeeCrisp at 3/18/2007 1:40:44 PM
all i want to do is have two buttons. one that goes left and one that goes right. the left button on release i want it to play the timeline in reverse! is this possible? and can some one show me how!, cheers in advance! im using flash mx pro ...more >>

onLoadError
Posted by charlie656 at 3/18/2007 1:40:06 PM
Hi there Im building an application that loads a list of other swfs into it. Im using a class to handle all the loading and to allow the user to switch between swfs. Ive created an empty movieclip on the stage for each swf to load into ( ib code ), each clip has seperate MovieClipLoaders ...more >>

onData problem
Posted by rusew at 3/18/2007 5:39:29 AM
Dear list, I have a class which opens an XMLSocket. I would like my onData function to access other functions in my class, but it is not working. I attached an approximation of my code. So, when I instantiate an object, I get this output when my server sends data: Connection Status: tr...more >>

Random Shuffe Array
Posted by Script Newbie at 3/18/2007 12:00:00 AM
Hello Action Script Writers, I am new to action script although understand the basic programming principals and have worked from template scripts in the past. I would like to place a piece of script within 1 cell which will then request 1 of 5 files on a random basis (named 1.swf - 5.sw...more >>

mc in timeinterval fails?
Posted by jagguy99 at 3/18/2007 12:00:00 AM
Hi, I can't access the properties of a MC in a function using array notation. eg this works when using mc2 but fails when using this["mc"+2]._x? I need array notation for mc but I can't get it to work in a function called by a timer. It works for a function not called by a timer. [...more >>

How to detect the content of a Loader?
Posted by Bencwai at 3/18/2007 12:00:00 AM
I would like to create a text field for the user to input the img URL which will be put into the contentPath of a Loader. I have a question that how to detect when the user entered a invalid URL and the loader will load the default image?? Thanks so much ...more >>

recovering two-weeks old messages from this NG
Posted by aa at 3/18/2007 12:00:00 AM
on 6/3/07 I posted a question with the subject "adding a text field to a number of FLA files" and received useful advices. Unfortunately I did not save them to my local disk and now for some reason this subject does not show up in my Outlook Express which I use to read NGs. Neither helps search. ...more >>


DevelopmentNow Blog