Groups | Blog | Home


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 > march 2004 > threads for saturday march 6

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

Mouse Tracking
Posted by gerkintrigg at 3/6/2004 11:57:00 PM
I need a movie clip to move vertically when the mouse moves. I used a script before which didn't work at all (I'll not include it because I'd like new ideas, but can if requested). Can anyone help? ...more >>

text from external txt file
Posted by malspach at 3/6/2004 10:26:23 PM
when my page is opened, it opens a second page as an interface on level 100, therefore it is always above everything else, that page loads up another swf file at level 2, in the correct spot and all, but the problem is this, it has a dynamic text box that i cant get it to load the text into, t...more >>

Do you have to insert a layer before...
Posted by trints at 3/6/2004 9:23:24 PM
Do you have to insert a layer before you insert a frame? When I go to the timeline and insert a frame, I can't find where to put the second frames code. Thanks, Trint...more >>

How can I do this every 2 seconds?
Posted by trints at 3/6/2004 8:09:43 PM
var dateVars = new LoadVars(); dateVars.onLoad = function(ok) { if (ok) { date_txt.text = "High Bid $"+dateVars.day+" Bidder: "+dateVars.month; } }; dateVars.load("http://trinity/tribidz/highbid.txt"); Any help is appreciated. Thanks, Trint ...more >>

A little help please...
Posted by Don P Productions at 3/6/2004 8:06:32 PM
Hi, I'm creating a flash website. I've come across many problems because I'm like some...first-time user on this. Alright, I'm stuck right now with 2 problems: 1. I've been trying to add navigation ability to the creation but I'm really stuck on it. I've tried writing scripts for the na...more >>

MX Slide Show
Posted by kobobot at 3/6/2004 7:59:13 PM
Want a simple slide show with fade transitions between images want buttons: play - images fade in and out automaticaly stop - easy enough ( no help needed) forward - fades to the next image backward - fades to previous image as simple as possible thanks ...more >>

Preloader
Posted by Oceanrock at 3/6/2004 7:40:06 PM
Is it possible to reuse a preloader and if so, how would you get the information for one movie level to the next to control the bar movement. I can control the movie and send data to multiple levels, but I can not control the tween for the bar movement. I have three levels: main movie (_r...more >>

Help fix this error please...
Posted by trints at 3/6/2004 7:37:23 PM
I want this text file to load every two seconds, it works fine until I try to get it to load every two seconds: onClipEvent(load) { _global.time = getSeconds(); } onClipEvent(enterFrame) { if (_global.time == time + 2) { _global.time = getSeconds(); // this is where the script woul...more >>



LoadVariables problem
Posted by Dinghus at 3/6/2004 7:28:00 PM
I took this right from the tutorials on this site but it doesn't work for some reason. I have a text file (test.txt) with a string (myData=this,is,test,data) I then created a blank MC and put an instance on the main timeline (dataConverter1). Just for testing purposes I put a dynamic te...more >>

button to open a image file out of flash
Posted by carloscarvalhar at 3/6/2004 6:52:13 PM
HI. I need a button that opens a image file with it own software (like photoshop). how does i do it? It can't open in IE ' cause it will be CMYK 300dpi image files and that kind of JPG doesn't open in web brower. Can i open the image or at least use a "save as" window? any comments...more >>

how to load and play the movie one by one?
Posted by wedmaster at 3/6/2004 6:51:06 PM
the qustion is: i want to load and play 12 swf file. but the will be load and play one by one .how can i do that? //--------- onLoad = function () { loadMovie("love1.swf", 5); }; onEnterFrame = function () { _level5._x = 0; if (_level5._currentfra...more >>

createObject()
Posted by N[e]RD at 3/6/2004 6:30:03 PM
How come this code only creates one object "D)"? radioButton1 = createObject("RadioButton", radioButton1, 0); radioButton2 = createObject("RadioButton", radioButton2, 0); radioButton3 = createObject("RadioButton", radioButton3, 0); radioButton4 = createObject("RadioButton", radioButton4, 0...more >>

help with loading a text file....
Posted by trints at 3/6/2004 6:01:37 PM
I need an fla that will load two strings of text and check every 2secondes for a change in the file. It needs to look like this when playing: $124.00 AngieP and if the text file changes, to load that new text in: $131.00 TomS Is that hard? I'm a .net programmer and a newb...more >>

Passing Variables
Posted by Blazing_Ice666 at 3/6/2004 5:51:46 PM
Is there a way to have the clients browser pass variable to Flash Player and vice versa? To my best knowledge, flash cookies can only be accessed by flash...more >>

duplicateMovieClip doesn't work for loadMovie?
Posted by KwokFai at 3/6/2004 5:46:20 PM
I use "loadMovie" to load jpeg files. And then try to duplicate the movie clip. But it doesn't work. Do I do anything wrong? createEmptyMovieClip("p1", 1); loadMovie("picture.jpg", p1); p1.duplicateMovieClip( "p2",2); // try to make p1 and p2 located diferently p1._x=0; p2._x=10; ...more >>

why this function.apply() can't work?
Posted by liangbowen at 3/6/2004 5:36:48 PM
product= function(name, value) { this.name = name; if (value>1000) { this.value = 999; } else { this.value = value; } } prod_dept = function(name, value, dept) { this.dept = dept; product.apply(product, arguments); } prod_dept.prototype = new product(); car = ne...more >>

how do i slow down image sequence???
Posted by Kay Poe at 3/6/2004 4:29:57 PM
I imported an image to the stage (i have tried this various ways but my skills are beginner still). It asked if I wanted to import it as a sequence; I said yes. I love the way it looks, but at 12fps, it zips through the images. I could change it to 1fps, but I am going to have other things ...more >>

Components leave their frame ? no solution?
Posted by Batanga at 3/6/2004 4:24:17 PM
The Text Area has always a blue frame? Can?t get read of it. When I click the scrollbar in the TEXT AREA, all text is selected. When I click the scrollbar in the Combo Box, the combo immediately closes, no chance to make any selection ? wired - the closed combo leaves a blue frame for the o...more >>

loadMovie
Posted by ginoxl at 3/6/2004 4:17:50 PM
I'm at a loss... I've been trying to load an swf into a mc as soon as the mc appears in the timeline...do I use the attachMovie method or loadMovie, or onClipEvent(load), onClipEvent(enterframe)...I've tried all and haven't had any luck (I do not want to use the loadMovieNum method becau...more >>

Problems with using the video.smoothing parameter
Posted by m_schriewer at 3/6/2004 12:50:16 PM
Hi, I get a camera image over a TV-Tunercard. See following code: // Here we initialize the camera class var my_cam = camera.get(); // Here we attach the video stream to the placeholder movie clip this.videoIn.attachVideo(my_cam); The camera image has a resolution of 376 x 291px. I...more >>

changing text size within the text field
Posted by Ivanek at 3/6/2004 11:08:31 AM
HI, is there a way to change a text size of each letter in a text field. or change a shape of a a text fiel from rectangle to a trapezoid ( to get something like a perspective view) in flash? Thanks a lot Ivanek ...more >>

XML not Refreshed
Posted by shava304 at 3/6/2004 10:48:17 AM
There are 2 frames in my flash file. First frame has movieclips which containg buttons and dynamic text. I am loading the Button labels and text color from XML file. On playing the movie, everything works fine in the first frame. Now when I go to the second frame and comeback to the first fram...more >>

html text
Posted by LEK0621 at 3/6/2004 6:45:32 AM
hi need some help here i m doin a forum which let user to enter the msg in a msg_txt input text field, then send to be displayed in a forum _txt dynamic text field, since i wanna use the <br> html tag, i made the forum_txt rendered as html text, how ever then i noticed that, after doing tht,...more >>

URGENT! - Loading external arrays
Posted by ming jie at 3/6/2004 6:05:09 AM
i've been working on this for 2 days and i'm about to pull all my hair out.~ argh~ i'm trying to load an array from a .txt file and use it in flash to browse through a set of images whose filenames correspond to the value in the arrays. i've attached the file i've been working on, with c...more >>

I found it! Arrays in custom class
Posted by Pea at 3/6/2004 2:03:29 AM
This pretends to work, but doesnt. DONT declare an array in a class like this! if you do it like this, ALL instances of your class will share the same array! class testObject{ var arr = new Array; // Init the object function testObject(){ } } This is the way to declare an...more >>


DevelopmentNow Blog