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 > december 2006 > threads for wednesday december 20

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

iTunes record album covers
Posted by spacetony at 12/20/2006 9:09:20 PM
Has anyone seen a tutorial to create a image selector like the one on iTunes 7.0. It looks like a jukebox and you can scroll through the different albums. I would like to work it into a database with latest images. Thanks ...more >>


Dotted Lines as outline for dynamically created shapes?
Posted by nickadtrain at 12/20/2006 8:32:39 PM
Hey all, I'm building a site whose flat, vector shapes need an outline of a dotted line. The majority of these shapes are simply rectangles with rounded corners. All are created dynamically. I could do each shape's lines by hand and attach them, but I'd much rather use a script. Anyone...more >>

Text Bounding Box
Posted by oddys at 12/20/2006 8:25:33 PM
Hello, I am having a problem with founding out the x and y position of dynamic text. I have a flash movie which allows users to type out some text, change font, size, bold, italic etc and then move it around within a restricted area. The users then save their design which saves all the inf...more >>

Shift + click on a button
Posted by joemama7570 at 12/20/2006 8:01:27 PM
I am just trying to set up a button where if you hold down the "Shift" key and click it, it will take you to a specific frame. I tried a few ideas like: onKeyDown = function() { if(Key.isDown(Key.SHIFT)){ gotoAndPlay (2); } } But thats not working. Any ideas would be greatly appreciat...more >>

passing parameter to swf being loaded?
Posted by aa at 12/20/2006 7:42:36 PM
A.swf contains code loadMovieNum("Z.swf",0); B.swf contains same code loadMovieNum("Z.swf",0); When Z.swf is loaded into A.swf or B.swf I need on Escape Key Down to return to the original swf, i.e. if Z.swf is loaded into A.swf then Escape Key Down I need to load A.swf Z.swf is load...more >>

LoadVars
Posted by TroyK at 12/20/2006 6:30:38 PM
Does anyone know if this should cause a problem? I have a my flash page at http://subdomain.mydomain.com/flash.html and the page I load data from is at http://subdomain.mydomain.com/flashdata.aspx. Then when I do my loadvars it doesn't even get to the page; success always equals false. I...more >>

Need help setting up an interactive portfolio
Posted by Ravuun at 12/20/2006 5:38:54 PM
I have my portfolio images set up in a masked layer so that they won't show when off the stage, but I don't know how to set up the ActionScripting/movie clips so that when a user selects an image, the image will move to the center of the stage and enlarge. Also, the user needs to be able t...more >>

Preloader Woes
Posted by Jesse-WPNI at 12/20/2006 5:34:40 PM
I have building a flash video player app and have pretty much completed it and wanted to add a preloader. I added a new scene in front of the 'main' one called it 'loader'. I put some code that checks for bytes loaded and and waits for an XML to load with setInterval. The loader works fine ...more >>



detecting when sound has finished
Posted by windsurf88 at 12/20/2006 5:33:26 PM
Looking for a method or statement or methodology ? that detects / knows when a sound is finished playing. here is a sound object for an remote mp3 var mp3_sound:Sound = new Sound(); mp3_sound.loadSound("http://blablabla... thisfile.mp3", true); mp3_sound.stop(); soundIsPlaying = false...more >>

movie as background
Posted by nav_nav2000 at 12/20/2006 5:05:04 PM
Hi, I have a flash movie which basically has around 10 frames and I am moving between the frames by pressing the down and up arrow keys from the keyboard by adding an action listener. Now what i want is that when i am moving i always want a flash movie to play in the background. I trie...more >>

random location for a random movie clip
Posted by badhams at 12/20/2006 5:04:41 PM
I have various movie clips which I need to appear in one of four locations randomly. I need the movie clip to also be random. I also need more than one movie clip on stage at the same time. I believe the following needs to be used: Math.random duplicateMovieClip I also believ that the...more >>

Web Browser in SWF?
Posted by drej27 at 12/20/2006 4:44:01 PM
Can you build a web browser that is contained within an SWF file? Here's what I'm shooting for: 1. Building a scavenger hunt that asks learners to answer a question by browsing the company Intranet. 2. The first approach was to use frames - Question and answers in top frame, web page na...more >>

input text field validation - design advice request
Posted by SPGAnne at 12/20/2006 4:30:14 PM
Newbie here, so please be gentle. I want to have some automatic validation of 2 input fields. One will allow integers only and another will allow decimals. I will also want to check that the numbers entered fall within a particular range. So a couple questions. First, I am trying to ...more >>

Random MCs appearing within a boundary.
Posted by DIY_Lobotomy at 12/20/2006 3:49:41 PM
Okay - here's what I'd like to do, but not sure how to code this... I have four MCs (names q1, q2, q3, & q4), all exported for actionscript. They are simply different colored questionmarks. I'd like for a set number of them (to be determined by a variable) to fade into the stage and then f...more >>

_root._currentframe + 1
Posted by rc3rdmd at 12/20/2006 3:39:42 PM
My movie structure is: Scene 1 -> movieClip -> button. When I click on the button, I want to move the playhead in Scene 1. I've tried gotoAndStop(_root._currentframe + 1); but it doesn't do the jump. What am I doing wrong? Thanks. Rob Childress ...more >>

delay..
Posted by Kill Bill at 12/20/2006 12:13:59 PM
I'm needing to place small delays into my actionscript. I'm loading a MC onto the screen.. I only want it to be there for about 1/2 sec, then remove it, placing it to another random part of the screen. Obviously, my code is something to this extent.. (not the actual code, this is just a de...more >>

FLV Preloader for Streaming Server (k)
Posted by W. Kirk Lutz at 12/20/2006 12:08:07 PM
I have a big video, 18 minutes long. I am going to be delivering it via a Streaming server(rtmp://...). I can get the video into my FLA file using File Import Video and selecting the second choice (Already deployed...) and entering the URL of the video. Applied stock controls. I chang...more >>

Hiring Flash Developers - Fulltime positions
Posted by RM at 12/20/2006 6:04:05 AM
We are currently looking for Mid to Senior Flash Developers for multiple positions. The Flash Technology Group would be a group with focused expertise in developing Flash technology various product platforms. Particularly in the development of content and their related tools for those platform...more >>

button click object appear on stage
Posted by spysum at 12/20/2006 4:33:24 AM
how can i able to click on the button and the object will appear onto the stage? Can anyone show me or direct me to any tutorial which can guide me? thanks!...more >>

Scroll Bar
Posted by TylerBullock at 12/20/2006 3:16:12 AM
I am using the scroll bar component for a dynamci text field. I only want it to show up if the text loaded into it is long enough to require scrolling. This would be similiar to how a broswer works. Any ideas? ...more >>

Vanishing Alert Icon
Posted by 16x9 at 12/20/2006 12:59:24 AM
Hiya! [b]The Quirk:[/b] I'm using an icon in my ([i]mx.controls.Alert.show()[/i]) Alerts and when playing back the compiled movie the icon shows up just as expected. However, when I load that same '.swf' via a preloader, the icon doesn't show up at all. As a matter of fact the alert wind...more >>

ExternalInterface
Posted by flashway at 12/20/2006 12:31:24 AM
Here is a simple Flex sample. It complied fine and display fine. When I click the button, It suppose to give me the alert message. But it give me nothing. Can anyone help? Thanks, <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006...more >>

Can I Send&Load Variables at the same time using php?
Posted by ac1982 at 12/20/2006 12:00:00 AM
Hi I have a php file that is using $_GET method to get the "id" of an item and then a query will search the database and return the results back. I am using the following code but there is something wrong. Can anyone help me with this? myVar = new LoadVars(); myVar.id = "1"; myVar.Send...more >>

Flash Html Help (image tag)
Posted by send2srinu at 12/20/2006 12:00:00 AM
Hi, I am working with the Image tag in the textfield. when i load the image it always take the left or right alignment. i want the image tag where exactelty i place the image tag . In Html it shows fine but the same code i added in flash it dosent work . Please let me know if any solutions ...more >>

Radio buttons in contact form
Posted by Dave.Hollings at 12/20/2006 12:00:00 AM
Hi all, I was wondering if someone could shed some light on this issue I am having. I have a contact form with 5 radio buttons labelled: mr_rb mrs_rb ms_rb dr_rb other_rb Next to the other radio button I have a textInput fields labelled other_txt. I am trying to write some A...more >>

attachMovie adds library item twice?
Posted by Andra Veraart at 12/20/2006 12:00:00 AM
Hi everyone! I've come across this problem for the second time now, and I'm still not sure what solved it the first time. I have a timeline that contains the clip "contentMC". On the same timeline the following AS appears: _root.contentMC.attachMovie("home", "contentHolder", _root....more >>

leftover VolumeBar handle component
Posted by into_fx at 12/20/2006 12:00:00 AM
Playing a flv the volume bar works fine and all that, but after the video is finished playing, i want the timeline to goto frame 2 and for some reason, the VolumeBare handle (triangle) that you drag along, is still on the screen. Placing the mouse over the triangle it changes to a hand. I ...more >>

Scrolling Text
Posted by alzan at 12/20/2006 12:00:00 AM
I want to make scrolling text using action script. I have too much text for 1 page, so I need to have a text scroll. I want to know how to do it??? Thank you!...more >>

World map drag/zoom
Posted by batmanbury at 12/20/2006 12:00:00 AM
I've created a world map with clickable countries and two buttons for zooming in and out. The clip is also draggable when clicked but there are a few aspects I want that I have no idea how to start... First of all, when the "zoom in" button is clicked, the movie clip simply increases in si...more >>

Right click, Save as...
Posted by rc3rdmd at 12/20/2006 12:00:00 AM
I have a couple of .tiff files on my site and I want the user to be able to right-click and Save As to their hard drive, etc. I can't seem to find code for this. Thanks. Rob Childress...more >>

Update .txt File
Posted by artotem at 12/20/2006 12:00:00 AM
I'm using loadVar to load a .txt file into a dynamic text field. (data is a number) I can't seem to get the send part down. I want to update the .txt file with the new info thats in a dynamic text field. (again just one number.) Any Hints???? ...more >>


DevelopmentNow Blog