ActionScript 2.0 :: CreateTextField And _alpha?
Jan 7, 2008
I'm not having luck setting alpha values with _parents that contain child textFields created dynamically. The text filed doesn't change its _alpha with the other objects in the movie clip.
View 3 Replies
Similar Posts:
Feb 25, 2004
I have a movie clip (dnk) 7 (not key!)frames long, with 7 different objects (mc's) inside, named dnk0-dnk6.Then, on the mc (dnk) I have:
onClipEvent (enterFrame) {
strDnk = "dnk"+(_currentframe-1);
alpha = getProperty(strDnk, _alpha);[code]...
So, the idea is, to have this mc's (dnk0-dnk6) fading one after the other in a sequence. Which happens as it is supposed to, but what I am trying to do now, is reverse it. With no luck, as you can see from the top script .I was thinking about a solution in a way of telling when _alpha is below 0, than the _alpha would start to rise, until it reaches a hundred, then it would start to fall again.
View 2 Replies
Apr 22, 2003
I have 2 movieClips that I want to fade.mc 1 fades out while mc2 fades in. I want to do it in AS to keep my file size down, 'cause I will be having quite a few of this happing.I know how to have one mc fade in using:(I know this is a fade in and I can fadein/out individually)
speed = 10;
bigCalendar_mc.onEnterFrame = function() {
if (this._alpha<100) {[code]......
View 4 Replies
Feb 13, 2004
I have this code. It works fine when i press a button.
if (_root.mc._alpha == 100) {
this.onEnterFrame = function() {
speed = 50;[code]....
I need to know how can I trace the _alpha value of the mc and when the value is 0 a movie clip is loading in the same mc.
View 3 Replies
Aug 3, 2010
Does setting _alpha levels to values less than 0 or greater than 100 cause problems?I know I can program these out but I am trying to make some code as efficient as possible.
View 9 Replies
Aug 20, 2010
I'm trying to do something fairly simple. I have a movieclip that when clicked with change it's alpha = 0.This is the script I'm using for the movie clip:
ActionScript Code:
onClipEvent (mouseUp) {
_alpha = 0;
[code].....
View 4 Replies
Oct 30, 2006
how to have a MC have _alpha = 0 when clicked anywhere outside the mc
View 9 Replies
Jan 19, 2004
im using the current code on an mc to fade in
[AS]onClipEvent(load){
this._alpha = 0
fadespeed = 15;
}
onClipEvent(enterFrame){
_alpha += fadespeed;
} [/AS]
how can i make this increment until it reaches 75% instead of 100?
View 5 Replies
Jan 5, 2010
I'm using AS2 (Flash 8), and I created a subclass of MovieClip - Card and attached an instance to the stage using attachMovie. However, I can't seem to make it invisible using _visible. Using _alpha works, however, but I would like to use _visible instead. where the problem might be? Here's the relevant code:
[Code]....
One more thing, what are the events for when the mouse cursor enters or leaves a MovieClip? I've tried onRollOver and onRollOut, but those are apparently not the correct events...
View 2 Replies
Jan 13, 2009
I have created a movieClip and placed two dynamically created text fields within it. These fields use embedded fonts and work when I first add text and the format to themThe issue I'm having happens when I change the _alpha of the containing movieClip to 0. After that I can not get the text to appear again, even though the _alpha on the containing clip traces out to 100.I am not using the tween class on the textFields or containing clip to achieve the _alpha. I am however using the tween class elsewhere.
View 9 Replies
Jan 7, 2011
I was trying to make a menu for a game, (and I succeded, it works fine) when I noticed that if I store a clip name in a string var I can't I acess it's alpha with varName._alpha (?) or some other ways I tried.
Is there anything wrong in my code, or is there a way to do it that isn't the one I'm trying?
The way I'm doing it, I have a MovieClip for each screen, that in turn contains all the MovieClips and Buttons, etc, that each screen must contain. So sometimes I must specify the path to things with "_root.MovieClipName.thatThing._blah". Although I think this has nothing to do with my problem there, since the vars are all declared in the stage's timeline...
If you don't quite understand how the functions work, here's a call swapScreen function example: swapScreen("overlap", "OptionsScreen", "options");
If "swap", it removes the screen I'm in, and attaches another one in place. If "overlap" it overlaps the current screen with an overlaper screen (like opening the Options menu ingame). restoreScreen() restores to the previous screen that has been overlapped.
ActionScript Code:
function swapScreen(swapType:String, ID:String, screen:String):Void
{
if (swapType == "swap")
{
[Code].....
View 2 Replies
Jul 8, 2011
I'm trying to fade a piece of text that I'm loading via XML in and out (as well as moving it's location in and out).* The fade out part is working fine, and as long as I have a _alpha.100 command where I'm currently calling my "slidein" function (really the fade in function) it works fine. No idea why! I've tried about 100 different placements and I'm stumped.. It's very perplexing.*
ActionScript Code:
function loadXML(loaded) {
if (loaded) {
[code].....
View 2 Replies
Apr 4, 2006
I have a dynamic text box and i want to mask it but its not working. i remember once someone was showing me something that had to be done to a dynamic text box to get _alpha effects on them and I wonder if its the same thing. Problem is, I don't know what that "thing" is.
View 4 Replies
Nov 13, 2006
I have a slideshow that loads images fia xml.
I have a caption in the middle of stage, that fade in with image.
my problem is that it blinks all the time. I don't know what should I do this is my code that fade image:
ActionScript:
this["image_dropzone" + _root.currentImage]._alpha = 100 * (_root.counter / (_root.fade * _root.second));
[Code]....
I have this Slideshow. http://www.flashkit.com/movies/Scrip...8470/index.php
How to make _root.caption Fade in and fade out with Image. Without Blink.
View 3 Replies
Jun 20, 2007
In my app I fade a movieclip, and when that movieclip reaches _alpha=0, I want it to send out a signal to let another movie clip begin to fade in.
How do I do this? Is it something even remotely like:
Code:
firstMC.on(_alpha==0) = secondMC.beginFade;
???
EDIT: I don't want to put any code on movie clips -- my code all runs from the root/main timeline.
View 6 Replies
Dec 12, 2007
On frame 1 i have
Code:
var mc_top:MovieClip;
mc_top._alpha = 68;
And after our hero dies i have this code in frame labeled "die"
Code:
gotoAndPlay(1);
also tried
Code:
gotoAndStop(1);
But now the _alpha setting isn't shown??
View 1 Replies
Apr 27, 2011
have a big Flash (AS2) book, with a small button that, on zoom, disappears (_alpha = 0)This is working either when i run the swf directly, in Firefox 4 and Chrome.
View 2 Replies
Nov 12, 2004
I have an actionscript that controls the movieclips _alpha through instance names. The problem is: I habe a lot of movieClips and I will use the same action in all of them. The same action, just changing the instance name.
View 4 Replies
Jan 13, 2006
I have eight images in a MC that I would like to sequentially fade in, display for a few seconds and fade out using _alpha function. So far I can fade one in with this AS:
img1._alpha=0
img1.onEnterFrame = function() {
this._alpha +=10;
}
Assuming my instances are img1, img2, img3, etc, etc... how would I go about sequentially fading each instance from 0 to 100, letting it display on the stage for a few seconds and then fade out (like a slideshow)?
View 7 Replies
Aug 20, 2007
It's a simple site with five sections, each one containing an XML slideshow that was created with modified code from the Photo Slideshow Using XML and Flash tut.The in-progress site is temporarily hosted here: http:[url]....everything works fine on the initial load. But if you navigate to one of the other sections (which are not yet complete), then try to get back to the first page (clicking on Home is supposed to work), all that is shown is a black box (used on the site to transition from one section to another).
As you can also see, this problem does not occur when navigating back and forth between sections 2-5.I think I have the problem isolated to a conflict between the _alpha controls on the blackFader and picture_SEC1...
Code:
stop();
//define and set current section variable
var w:Number = 1;[code].....
View 3 Replies
Oct 22, 2002
[Code]...
why this makes all the created movieClips have an _alpha = to 20, instead of just the one I RollOver?
View 14 Replies
Mar 4, 2010
mainBar.onRollOver = function()
{
mainBar._alpha = 100;
}
mainBar.onRollOut = function()
{
mainBar._alpha = 0;
}
My mainBar(movieClip type) consists of several buttons. If i don't put the codes above, the buttons would work as per normal. but if i put these codes, the buttons do not respond when i click on them. I want to make the mainBar, which is some sort of a control bar, transparent when the mouse cursor is not over it. when the mouse cursor is over it, then it will re-appear. but the buttons on the control bar doesn't seem to work when i try to use this feature.
View 1 Replies
Mar 27, 2004
In the library, I have a movie clip - DraggableButton that has OnPress with StartDrag with parameters and OnRelase with StopDrag. I have a slider with this Draggable button and a bar to slide the button on. I also have two movie clips Clip1 and Clip2. In my main movie I have two instances MC1 and MC2 of Clip1 an Clip2. I have an instance of the Slider. I want to set the _alpha property of MC1 and MC2 depending on the location of the button on the slider.
I think I need to save the location (_x) of the button on the slider in a variable in the OnRelease even of DraggableButton and use this variable in the SetProperty method. I need to know in which event and which object's event should I use the SetProperty method. Or if what I am thinking is not correct what do I need to do?
View 4 Replies
Jul 13, 2004
Code:
for (var i:Number=0; i <= 7; i++){
// create 7 text fields
[code]....
View 3 Replies
Oct 26, 2007
I'm working with a flash program that dynamically creates a user-specified amount of text fields in an MC using the createTextField function. However, it seems only one of the text fields will show up.
I've done some testing, and I found that when you create multiple text fields in an MC using this method, only the most recent one shows up. Is there any way to avoid this?
View 1 Replies
Dec 24, 2011
how to change the volume, asking how to detect the actual volume (not the set 100 volume) of music/sounds. does flash even detect the actual volume output? So when the volume is 0 (e.g. maybe at the end of a song) the ._alpha is 0, so all I need is a variable for the output volume of a song.
View 1 Replies
Oct 14, 2009
With the code below how can I add to it to make it a link to an internal movie clip.So when someone clicks on this text it tells another move clip to play.Do I need to create an empty MC and Add this text feild inside that MC?
Code:
_root.createTextField("mytext",1,585,20,200,100);
mytext.multiline = true;
[code].....
View 1 Replies
Aug 25, 2011
I'm creating a text field dynmaically and it works great however when I test the movie I can't seem to change any text (like a typical input box on a webpage for example), it appears to be only readonly.
[Code]...
View 1 Replies
Jun 19, 2009
I'm coding a dynamic menu in flash which involves creating a text field for each item in an array (forloop).
but i want to create the text field with no set width so that each text field is set to the width of the space that the text inside it takes up..i thought something like
createTextField("name", depth); would do but it doesnt seem to work without all of the parameters
createTextField("name", depth, x, y, width, height);
View 1 Replies
Mar 19, 2005
When I load an external text file it takes two clicks of the button to get the text to loadThe first click is blank the second click loads the text.
Here is the function:
// Create TextField and load text
function makeTxtBox(txtFile, textVar) {
[code].....
View 6 Replies