all groups > flash actionscript > june 2006 > threads for sunday june 11
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
Instance Jumping
Posted by squeegie1 at 6/11/2006 9:28:51 PM
I have movie clip that I want to play as it exits a scene. However I need it to
go to a new scene when it ends. It is somewhat like a transition, but it is
driven by a button. I have 4 other buttons in the scene that I would like to
use this same movie clip, but send the user to a different sc... more >>
changing the font color with the radio button from the Flash UI Components Sets 2
Posted by gwu630 at 6/11/2006 9:10:22 PM
I am using the radio buttons from the Flash UI Components Sets 2, but I don't know where/how to change the text color to the color I want to use. Does any one know how I can change it?
Thanks.... more >>
myMCL.loadClip issue
Posted by Decker at 6/11/2006 8:42:03 PM
I have a problem with the following actionscript:
var myMCL:MovieClipLoader = new MovieClipLoader();
var myListener:Object = new Object();
myMCL.addListener(myListener);
myMCL.loadClip("rain.swf", 5);
Basically, I have a movie named rain.swf which is loaded into a Flash Document
to... more >>
Custom scrollers
Posted by gwu630 at 6/11/2006 8:30:09 PM
I've created a custom scrollers for a dynamic text box; However, I have no idea how to make it work with actionscript. Can someone assist me please?
Thank you!... more >>
error
Posted by _gary_ at 6/11/2006 8:10:21 PM
why the error?
actionScript on button
on (release) = function() {
_imageLoader.main_03.startFrame = _imageLoader.main_03._currentframe;
_imageLoader.main_03.gotoAndPlay(_imageLoader.main_03._currentframe+1)
_imageLoader.main_03.onEnterFrame = function() {
if(this._currentframe == ... more >>
Dynamic Border around image
Posted by Adman at 6/11/2006 5:31:01 PM
hi there,
i have a main flash movie (main.fla) which has images placed on the screen.
Each image has an invisible button placed on it.. (ie: the button has only
the hitarea defined and no rollover, down etc.)
NOTE: that the images are different in sizes. hence they have different
width and he... more >>
buttons, swfs and layers
Posted by bB_ at 6/11/2006 3:33:52 PM
hi. why can't i load a swf into layer 1 and when the user clicks on a button
the loaded swf plays from, say, frames 50-60 and then unloads and then another
swf is loaded separately into that layer? why can't i do this? vcan anyone help?
... more >>
Linking Buttons
Posted by eegvt at 6/11/2006 2:12:57 PM
Hi: I'm trying to link a project to others within the same class folder and
then directly to the school server.
The code I am putting in the action script isn't working.
button1.onRelease = function () {
getURL("http:// etc...", _blank");
};
Is this correct?
Thanks...
eeg... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Flashing Buttons on windows toolbar
Posted by Jim Esteban at 6/11/2006 1:21:57 PM
Is it possible to flash(change background color or blink) the buttons on my
windows toolbar when the flash application does not currently have focus. If
you ever used AOL messenger, it changes the background color on the button on
the windows tool bar to let you know that you have received a... more >>
How to let search engine search my full flash website?
Posted by lustAufDesigns at 6/11/2006 3:45:23 AM
Hi...
I am learning to create a full flash website. After it's done, I uploaded to
the webserver...search it on google...but can't find the site, even when I type
the site in details.....I thought...wow...then I realized perhaps that search
engines don't read .swf files.
I was wonderin... more >>
_width with a var not working
Posted by LSNsaltlamp at 6/11/2006 3:41:29 AM
Ok. This makes no sense to me:
//this works
bar1._width = 170;
//this works
value4.text = myVar.votes4;
//this doesn't work
bar1._width = myVar.votes4;
myVar.votes returns "10" so why isn't this working??
... more >>
Myspace
Posted by homegrownideas at 6/11/2006 1:26:47 AM
I'm currently running a Flash Myspace profile (check it out)
http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendID=454967
0
I'm having an issue with the top banner ads obviously executing a
stopAllSounds command. any ideas on a fix?
anyone know how to kill those top ba... more >>
Changind html background from Flash
Posted by Henri at 6/11/2006 1:07:48 AM
Hello,
I have a centered Flash website(table align center), and I would like to
have the html background to change on certain event.. Is there a way to
do this without having to reload a new html?
Thanks
Henri... more >>
Scope of variable in event handler
Posted by doug777 at 6/11/2006 12:00:00 AM
function showAlert(num):Boolean {
var ret:Boolean;
var myClickHandler = function (evt) {
if (evt.detail == mx.controls.Alert.OK){
ret = true;
} else {
ret = false;
}
}
alert("Only " + num + " of this item are available. Click OK to buy
these.", "Av... more >>
Storing variables remotely
Posted by LSNsaltlamp at 6/11/2006 12:00:00 AM
How can I store and edit variables in a remote location so that their values
are saved even when the user leaves the page? I?d prefer to not use a database
or PHP files. I just want to setup a txt file that looks something like this:
Var1=10
Var2=4
Var3=502
And then be able to update... more >>
Projector loading swf
Posted by drek3463 at 6/11/2006 12:00:00 AM
I have a simple problem
I want to load a swf in a projector (Flash 8). The code I use is:
container1.loadMovie("vid.swf");
It works if I publish it in a swf, but not in a projector file
What should I do
What is wrong,
Thanks
... more >>
Can't detect control-a
Posted by David Fostor at 6/11/2006 12:00:00 AM
Is there any way to detect when control-a or control-c is pressed (that is,
hold down control key, press A key). The following code to detect a control-7
works fine:
function myOnKeyDown() {
// 55 is key code for 7
if (Key.isDown(Key.CONTROL) && Key.getCode() == 55) {
Sel... more >>
Loading a dynamic text in html format
Posted by gwu630 at 6/11/2006 12:00:00 AM
I got this code from the support page:
loadVarsText = new loadVars();
loadVarsText.load("test.txt");
loadVarsText.onLoad = function(success) {
if (success) {
trace("done loading");
scroller.html = true;
scroller.htmlText = this.var1;
} else {
trace("not loaded");
}
... more >>
|