ActionScript 3.0 :: Combine Alpha And Visibility?

Oct 5, 2011

I have this website with a white fade in / fade out menu. I'm trying to get the menu to be a little more visible.  Because the  menu is in white font, and the images it pops over occasionally have a white background, this creates a bit of a problem.

I created a large movie clip that fits the stage width and height. I'm calling it 'bg'.  The idea is when one rolls over the 'projects' menu, the bg movieclip fades in to dim the whole file except for the menu. I'm setting the alpha of bg to 0 intially, so that it can fade in using TweenLite when the projects mc is rolled over, and fade out when projects is rolled off.  I would just do this all using alpha if I could, but here's the problem:  in order for the screening to work over the entire file, it has to also work over my externally loaded swf and it's gallery buttons.  When the bg mc fades in and tints everything, it gets infront of the buttons and you cannot access them. So... I need to combine the alpha fade thing with turning the bg visible on and off. Is there anyway to do this both at the same time?  Right now I either get nice fades, and the visibility not doing anything, or nice fade ins of the bg, and then an abrupt change when visibilty goes to nothing on roll over. [code]...

View 1 Replies


Similar Posts:


ActionScript 2.0 :: Scripting Visibility Instead Of Alpha?

Apr 16, 2006

I'm developing an intro for a site, its 10 seconds long and has streaming sound in the background...I streamed it, because it has an image flash onto the screen in unison with a drumbeat.

I want to get the file size as low as possible, because they are not looking for a loader in the beginning. [URL].. I'm using Alpha's to fade the images in and out, and I know alpha %'s can kill file size.

I understand there is a _visibility function that can be applied, can you help me out on the syntax for calling it?

View 9 Replies

ActionScript 2.0 :: Setting Alpha/visibility Of Multiple Movieclips?

Apr 3, 2011

What I am trying to do I think is pretty simple.

Consider this code:

ActionScript Code:
var imageContainter:String;
var fileName:String;

[Code]....

This code appears to be working. I'm dynamically creating a bunch of movieclips that each contain an image. The also code stacks each clip on top of each other.

I'd like to be able to now set the alpha or visibility of all of those movieclips to 0 or false, except for the first one. I have other code that will set specific movieclips to display based on mouseEvents.

How do I refer to all of them? And should I be using arrays as well?

View 7 Replies

ActionScript 2.0 :: String / Variable - Get The Visibility Button On The First Swf To Affect The Visibility For The Column On The Second Swf

Jul 12, 2010

I have created a timeline with visibility button against each column. The timeline.swf is loaded into two empty movieclips to create a two-screen operation. Everything works fine except, I cannot for the life of me get the visibility button on the first swf to affect the visibility for the column on the second swf.

[Code]...

View 5 Replies

ActionScript 3.0 :: Setting The Alpha Of MovieClip With Objects Changes The Alpha Separately For Each Object

Oct 23, 2010

[URL] i want the object to fade out but in the object there's a lot of overlapping pictures and each becomes half transparent. how to make the movieclip to change the alpha as it was without objects?

[Code]....

View 2 Replies

ActionScript 3.0 :: Curious Tip: Flipping Sprite.alpha=0 To Alpha=1 Back And Forth With No Logic?

Dec 15, 2011

just spotted this curious trick. If you want to flip something to go invisible on a click, and then reappear on another click (etc etc), try this:

create the sprite, setting alpha to either to 1 OR -1
mySprite.alpha=1; //OR
mySprite.aplha=-1;

[code]....

View 9 Replies

ActionScript 2.0 :: Loading A Movie A Solid Shape Is There With Alpha At 100% Then Over A Period Of 5 Secs Its Alpha Is Reduced To 0?

Jun 27, 2003

using AS, on loading a movie a solid shape is there with alpha at 100% then over a period of 5 secs its alpha is reduced to 0.

i'm new to this......please help if you want to if you don't have a good weekend but think of me struggling onwards and upwards...

View 14 Replies

Set Alpha For Whole Stage Down But Have 1 Mc Full Alpha?

Aug 2, 2011

I want to do aplpha = .5 for the whole app, but then have a MC display at full alpha, is there any way to do this?

View 6 Replies

Combine Several Swf Files Into One?

Jul 9, 2009

I created 2 separate swf files. One is a slideshow and the other is an interactive tool. I have have also converted these two files into a flash projector so as not to worry about plug ins that customer may or maynot have.I have another file right now which is the menu flash file that has buttons pointing it to the flash projector individual files. Since these are exe files, once the customer clicks on it, it will warn that it is potentially harmful and they have to click "run" in order for it to show.

View 7 Replies

IDE :: How To Combine 2 Fla File

Sep 11, 2009

Anyone can tell me the way to combine 2 fla files together. It mean in the 1st fla file I'll make a button and when I click the button it will run the content of 2nd fla file.

View 3 Replies

Professional :: Set Visibility To 0 Is Not Working?

Aug 11, 2010

I have button to set the visability property to a movie symbol called spec2 to 1

which is outside of the movie on the main stage in its own layer.

on (release) {setProperty("spec2", _visible, "1");}

That part works. I am trying to nest a button inside the spec2 movie to set its own property

[Code]...

View 3 Replies

Flex :: Can Set Labels Visibility

Apr 18, 2010

Can I set label visibility in Flex ?

[Code]...

View 1 Replies

Boolean - Using Visibility With Conditionals

Apr 30, 2010

Is there a better way to do use a use a boolean with visible? I'm setting up animations that have conditions for visibility, and I don't want to use something that performs poorly. This animation blinks 30 times and stops. It works without error, but takes a moment to load. I would like to learn other ways of using visibility with conditionals.

This is what I used 'waits before playing'
if(condition=5){
box.visible = !box.visible;
This works fine 'no pause'
if(condition<6){
box.visible = !box.visible;
[Code] .....

View 1 Replies

Flash :: Get My Swf To Respond To Visibility?

May 13, 2010

I'm using external XML to set flash vars. Alpha works, but not Visibility. How do I get my swf to respond to visibility?

XML

<?xml version="1.0" encoding="utf-8"?>
<SESSION>
<BGv TITLE="visible true">false</BGv>[code]...

View 2 Replies

ActionScript 3.0 :: One Movieclip's Visibility From Another?

Dec 17, 2009

I have recently started using AS3 and can't seem to get to grips with some basic syntax for parent/root navigation. My problem is, I have an intro movieclip on the stage that plays first, when that is done i want some code on the last frame that navigates to another movieclip on the main stage to set its visibility to true. i have tried mMovieclip(root).mOther.visible = true; and a lot of other variations. Do i need to set them up as children? or something else.

View 3 Replies

ActionScript 2.0 :: Change Each One's Visibility?

Nov 13, 2005

How would I write a loop that cycled through all the movieclips within a container clip and did something to each one?

For example say i have 6 movielcips in holder_mc, and I want to change each one's visibility? I need it to be dynamic so it will still loop through all clips whether 2 are in there or 20.

View 3 Replies

IDE :: DIV Visibility Controlled From Flash?

Feb 13, 2009

I'm currently working on a site that is a mixture of Dreamweaver and Flash. I have some Flash movies that are in DIVs in DW. I need to have some links in those Flash movies that can control visibility of other DIVs. In other words I need a link in the Flash movie to work like DWs Show-Hide Elements feature. Is this even possible? I'm using DW CS3 but Flash MX 2004.

View 2 Replies

CS3 Combine Many Fla Files In One Site

Apr 29, 2009

I have multiple .fla file (small online invitations etc) and I am trying to combine them as part of an online portfolio.

IS there a quick way of simply placing a .fla movie into another or do I have to use the swf.

And am I being silly - should this be done using Dreamweaver as the 'container"

View 2 Replies

Way To Combine Library Items

Aug 21, 2009

Say I create a symbol, and then another inside the symbol. In the library I now have 2 symbols. Is there a way to combine these into just one library item?

View 1 Replies

Professional :: Combine .flv Files?

Mar 15, 2011

I have 2 .flv files that I'd like to combine, no editing other than I want a sigle file so what were 2 sequences runs continuously as 1. Is there a way to do this (quickly) without having to re-encde? Easiest method: premiere or flash? or other utility that would join segments only?

View 2 Replies

Combine Symbols In Timeline?

Jul 11, 2011

I'm new user which is trying to developing simple game..I'm using template to create the game..I just wondering how to insert the symbols within existing timeline..meaning that, i'm trying to create new layer and convert it to symbol but I didn't how to combine it with existing timeline.

View 6 Replies

ActionScript 2.0 :: Combine Two Lines Into One?

Jan 27, 2009

just going through my code and I want to reduce it where possible. is there a way to combine these two lines into one?

ActionScript Code:
this.mainClip_mc.item0.percentage_txt.setTextFormat(perTextFormat);
this.mainClip_mc.item1.percentage_txt.setTextFormat(perTextFormat);

View 3 Replies

ActionScript 3.0 :: Combine 2 Variable?

Jan 14, 2010

i need some data in my variable so i use this

Variable_name1 = Data1
Variable_name2 = Data2

but the datas are from database, so i need to change it depends on CurrentRecord

so when CurrentRecord is 1
Variable_name1 = Data1

View 5 Replies

ActionScript 3.0 :: Combine 2 Codes Together

Sep 13, 2011

We are trying to build a game in flash with AS3 (Im no pro with this)I've got 7 Movieclips and 7 Buttons.none of the 7 Movieclips should be on stage, they only appear when you've clicked 3 of the 7 buttons. once these 3 are clicked 1 of the 7 Movieclips should appear.Now I've got the code to make 3 selections and make it show 1 movieclip.and I've gotten the code to make a random movieclip appear.My question: How do I combine these two to make them do what's supposed to for the game.[code]

View 1 Replies

ActionScript 2.0 :: Combine 3 Movies Into One?

Jun 9, 2003

I have 3 flash movies. Each has its own music. Now i want to combine those 3 movies into one flash file. How do I do that? It is a wedding flash movie for my sister. i have 3 separate movies because i want the music to synchronize with the each of the movie.

View 3 Replies

ActionScript 2.0 :: Combine PHP/SQL And Flash?

Jul 28, 2007

I'm trying to combine PHP/SQL and Flash. I've got a problem now. I want to load a variable that contains an url to an image. so the variable is like this:

[URL]

Now I want flash to load the image, not the text. The variable is called 'img1' but the loadmovie function doesn't work when I put it in.

View 1 Replies

ActionScript 3.0 :: How To Combine XML And SWFAddress

Jan 23, 2009

I am using swfaddress for the moment but I am using it on the timeline which is not as dynamic as I would like it to be. How to combine xml and swfaddress? I would like swfadress to get the adress from an xml file and than do whatever its supposed to do.

View 2 Replies

IDE :: Unable To Combine 2 Animations

Jul 27, 2009

I made an animation. I made a seccond animation that was suposed to go right after the first. I made a scene 2 and when I copy the frames over it says: Resolve liprary conflict, One or more library items already exist in the document. Replace existing items or dont replace.

If I replace the one works right but the first doesnt. If I dont replace the first one works but everythings all messed up in the other one. Is there a way to combine the 2 animations together?

View 3 Replies

ActionScript 2.0 :: Combine Two Effects?

Jul 15, 2002

I'm trying to create an effect which actually is combination of two effects explained in two tutorials on Kirupa website namely (1). ActionScript Text Animation and (2). Random Letter Cycling.The Text Animation part is working fine. but the random letter cycling part is not working fine.i'm not able to recall the corresponding Ist letter of the word i want. In current example the text is "Ritesh".

View 2 Replies

ActionScript 3.0 :: Visibility Button Code?

Feb 18, 2009

i have button which open specfic movie clips from my library and locate them on the stage.This all works well and good, but i would also now like a button to remove all of them except one when the user is finished playing around.i got the follwong code working, but it only works on movieclips that are already present on stage. when i export the file i get errors because the movie clip im trying to hide isnt currently on stage i think. i identify the hidden movieclips by their class name.

startover.addEventListener(MouseEvent.CLICK, removeallFunction);
function removeallFunction (event:MouseEvent):void
{

[code]....

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved