Dynamic Gradients With Multiple Colors
Hi.
I'm trying to create a gradient background for a small swf, where the details for each gradient is gathered from an XML-file. I know the colors, and how big they're supposed to be (in percent), but I'm having a little trouble converting the percentages into valid values for the ratio-array sent to beginGradientFill().
ActionScript.org Forums > ActionScript Forums Group > ActionScript 3.0
Posted on: 07-22-2008, 02:34 PM
View Complete Forum Thread with Replies
Sponsored Links:
Costom Colors (Gradients)
Hey,
Ya know the colors in flash... at the bottom of the fill color selection... the whole bottom row is what i'm looking for, the circle that fade from black to blue/red/green... or there is the strait one that has black going to white..
Is there any way you can change the colors of those? I wana use thw one that goes from black to white... with with two different colors, like dark blue to light blue..
Any ideas?
Ian
View Replies !
View Related
How Do I Change A Gradients Colors?
I have some gradients that need to be changed in flash. The files were originally created in Illustrator. It would be a real pain in the ass to have to go back and create a new .ai file, is there any way to change the gradient colors inside of Flash?
View Replies !
View Related
How To Apply Multiple Colors To Dynamic Textfield?
Hello,
I have to buttons on my stage called: button1_btn and button2_btn.
When you press on it, the color parameter is passed to the makeText function.
What i would like it to do, is when you press on button 1, a text is added to the dynamic
textfield debug_txt with the color that is passed. And when you press the button 2, the
text that was added in the first place stay's this color. And another sentence is added with
the color that is passed trough button2.
But what i created does not work.. Does anybody have experience with this?
This is the code i have so far:
function makeText(inputColor) {
var fmt:TextFormat = new TextFormat();
fmt.color = inputColor;
debug_txt.text += "this text should be changed to the input color?"+newline;
debug_txt.setTextFormat(fmt);
}
button1_btn.onPress = function() {
makeText("0xFF0000");
}
button2_btn.onPress = function() {
makeText("0xCCCCCC");
}
Regards,
View Replies !
View Related
Multiple Colors On Dynamic Text Field?
is there a way to apply a different color (and other things) to a word i'm loading into a dynamic text field through a variable? i'm using this code:
Code:
myformat = new TextFormat();
myformat.color = 0x000000;
myformat.bold = true;
myformat.font = "Arial";
format2.color = 0xFF0000;
format2.bold = true;
format2.font = "Tahoma";
format2 = "dynamic";
textbox2.text = "This is a " + format2 +" text field";
textbox2.setTextFormat(myformat);
this is returning an all black line of text that says "This is a dynamic text field"
i'm trying to make the word "dynamic" be a different color, preferably without the use of an external css file since the client would like to only receive one swf), but if that's the only way i'll try it.
thanks!
View Replies !
View Related
Dynamic Gradients - Whats It All About
Hi
Trying to make a background box that is a simple top down linear gradient fill, black on top with say colour X at the bottom.
I have looked at the code to build this box but I cant seem to find any code that will change the colour X over a period of time (like a tween but dynamically) to make it go from red to blue.
Does anyone know of any tutorials or any way to do this?
Any help much appreciated
Cheers
View Replies !
View Related
Dynamic Text With Gradients?
I have a dynamic text field I'd like to apply a gradient to. The only think I could think that would work would be to have the text act as a mask for a gradient square beneath.
When I attempt this in a small, two layer MC it previews perfectly in the library, yet when exported to a swf displays as just the underlying gradient, unmasked. Does anyone know why?
View Replies !
View Related
Multiple Text Colors
I am wondering if I can have different colors in one text field. Whenever I change the color in the properties panel it changes all of the words in the text. I want to have most of the text black, but have some of the words in the text different colors. Can this be done, and if so how can I do it?
View Replies !
View Related
Multiple Colors In Textfield With Textformat
How would you enable color overrides to text in inside a textfield with a textformat applied to it? My textformat has a text color property, but how would I make things like links inside the text a specific color?
I tried putting inline styles in the links and it doesn't work. How would you do something like this?
View Replies !
View Related
Changing Multiple Mc Colors Individually
I have a number of different movie clips that I want to be able to change to color of. I have found plenty of examples where there is a color pallet changes the color of one specific movie. I want to be able to have one color pallet that is always on the stage. Using that pallet, I want to be able to click on a mc, click on a color, and have the color of that particular movieclip, and not the others, change.
Can anyone lead me in the right direction?
View Replies !
View Related
Dynamic Colors...
I need to make a flash that is all one file, but the colors of it change depending on the page you are viewing. For different sections of the site, there are different colors, and I would like the flash logo to be one file, but change to those colors... how could I do this using Javascript or PHP (and actionscript, of course!)
the site is http://nrebellion.dynamic-site.net (the server may not be up, try around 7 PM or so EST)
the logo Im talkign about is the one at hte top with the spining globe thing.. how could I acheive the effect of dynamic colors?
View Replies !
View Related
Dynamic Colors
I'm trying to make a flash file that has a box whose color can be changed by different users. Is this possible? I know there is a function similar to php's "include" but I've been told it only works at the time of the creation of the swf file.
Is it possible to create an swf file that refers to an external file for a color variable of a box? If so, how would I go about doing this?
View Replies !
View Related
[F8] Dynamic US Map Colors
I am working on an XML driven US map. My movie library has a button object for each state. The up, over and down states have a different graphic object. I can use an xml file to easily hide certain states and set the url for the link. However, each time the client wants to change the color of the states I have to manually re-color 150 objects, not exactly fun. Is there a way to dynamically re-color the button objects on load? Here is an example of what I would ideally pass in.
PHP Code:
<states>
<state id="OH" normal="0xFF0000" over="0x00FF00" down="0x0000FF" link="test.aspx?st=OH" label="Ohio"/>
<state id="FL" normal="0xFF0000" over="0x00FF00" down="0x0000FF" link="test.aspx?st=FL" label="Florida"/>
<state id="TX" normal="0xFF0000" over="0x00FF00" down="0x0000FF" link="test.aspx?st=TX" label="Texas"/>
</states>
Showing those buttons, setting up the label and making the link are certainly easy enough. However, I haven't found a way to make the button states do what I need them to do.
Any help would be great.
Thanks!
EDIT: Just in case the tag wasn't clear, I am using Flash 8 Pro.
View Replies !
View Related
Dynamic Colors--Why Won't This Work?
OK, so I want to change the color of a movie clip ("box") with a button. I want to call a function from the button which will execute the color change. It seems I'm having trouble passing the variable into the function. But when I trace the variable (color) it shows up. Here is the code on the first frame:
red = 0xFF0000;
function colorizer (color) {
boxColor = new Color ("box");
boxColor.setRGB (color);
trace (color);
}
And here is the code on the button:
on (release) {
colorizer(red);
}
In Flash's language, the hex number FF0000 converts to 16711680....When I trace *color* this is the number that shows up. And if I hard code that number in the setRGB statement, it will work. So I can't figure out why it won't work with the variable instead......??
Any help is greatly appreciated...TIA
View Replies !
View Related
Dynamic Text And Colors
I have build a simple application that loads in various variables from a text file and assigns them to dynamic text boxes.
These dynamic boxes act as buttons (I have inserted an invisible button underneath the text).
However, in order to get a full button effect, I would like the ability to change the color of the dynamic text when the button is clicked, and/or on a mouseover.
How would I go about doing this?
Thanks for the help,
Bryan
View Replies !
View Related
Dynamic Button Colors
I want to be able to click a button in my navigation and change its color after being clicked. I have a function that I will be calling to change the color. The thing is, I want to be able to set the "Instance Name" of the button dynamically when I click the button because I have approximately 20 links. UGH....i dont want to repeat code over and over so i created a function.
I cant see to get the variable to work in the fucntion though. Below is the code:
Button Code:
Code:
on(release){
buttonName = "about";
loadMovie("about.swf", "_root.MAINGUTS");
colorFunction();
}
Color Function Code:
Code:
function colorFunction(){
NewColor= new Color('+buttonName+');
NewColor.setRGB(0x6699FF);
}
Another thing that I want to do is to change the color back to the previously selected button when another navigational link is selected, and change the button being clicked as well.
Is there a way to call/refer to all buttons in a single line of code? That way I could change all of the navigation back to the initial color and not have to singularly see which one is already clicked.
man, i hope that made sense.
Thanks for listening and hoefully responding.
peace.
4ZERO4
View Replies !
View Related
Dynamic Button Colors
I want to be able to click a button in my navigation and change its color after being clicked. I have a function that I will be calling to change the color. The thing is, I want to be able to set the "Instance Name" of the button dynamically when I click the button because I have approximately 20 links. UGH....i dont want to repeat code over and over so i created a function.
I cant see to get the variable to work in the fucntion though. Below is the code:
Button Code:
Code:
on(release){
buttonName = "about";
loadMovie("about.swf", "_root.MAINGUTS");
colorFunction();
}
Color Function Code:
Code:
function colorFunction(){
NewColor= new Color('+buttonName+');
NewColor.setRGB(0x6699FF);
}
Another thing that I want to do is to change the color back to the previously selected button when another navigational link is selected, and change the button being clicked as well.
Is there a way to call/refer to all buttons in a single line of code? That way I could change all of the navigation back to the initial color and not have to singularly see which one is already clicked.
man, i hope that made sense.
Thanks for listening and hoefully responding.
peace.
4ZERO4
View Replies !
View Related
Parsing HEX Colors From Dynamic Variables
Hi there,
Ok I have a little logo swoop animation. Our company has 4 different colors of our logo for each division. Here is what i want to do:
Set the color of the logos in a text file and have them display in a SWF based on the color set in the .txt file.
So the variable in the text file (colorset.txt) looks like this:
&color=0x330000
Then on the first frame in Flash to change the color I have:
loadVariablesNum ("colorset.txt", 0);
var logocolor = new Color("mainswoop");
logocolor.setRGB(color);
So that brins in the variable called "color", but sets it as a string. So when I export it can't grab the color because it treats it as a string.
I have tried parseInt to no avail. Cause when I do that it says it expects a HEX color after 0x.
Any help would be appreciated!
I just want to set the HEX color I want in a text file and have the logo change to that color in Flash.
Thanks!
View Replies !
View Related
Changing Dynamic Text Colors ?
In Flash 8, the dynamic text field instance name is energyLevel, as is the variable name associated with it. This field's text color was originally set to gold (outside of ActionScript). In the code, I'm trying to change it to red (without a condition at this point, just to see if it will work).
In the code prior to the init function:
energyLevel = 10;
I've tried Option 1: >>>>>>>>>>
newTextStyle = new TextFormat();
newTextStyle.color = "0xFF0000";
//
actor.onEnterFrame = function() {
energyLevel.setTextFormat(newTextStyle);
I've tried Option 2: >>>>>>>>>>>>>
actor.onEnterFrame = function() {
energyLevel.textColor = 0xFF0000;
And, I've tried Option 3: >>>>>>>>>>>>
actor.onEnterFrame = function() {
_root.energyLevel.textColor = 0xFF0000;
BUT, none work. This should be easy to do. Can anyone tell me what is wrong??
Thanks!
View Replies !
View Related
Dynamic Text With CSS (Link Colors)
Getting together the info for my first dynamic flash site and I am looking for a tutorial or FLA that will show me how to make links a different color than the regular dynamic text. For example, The text will be blue and the links will be red.
Any ideas?
Thanks,
TR
View Replies !
View Related
[F8] Can Define More Colors In One Dynamic Text Box Through Actionscript?
Code:
curItem.title.text=nodes[i].attributes.artist + " - " + nodes[i].attributes.title + " (" + nodes[i].attributes.duration + ")";
Can I make the nodes[i].attributes.duration have a different color in the dynamic text box? The dynamic text box is white, but can I add a code there that makes that little data turn blue in the same dynamic text box... its just I want the duration to be RIGHT next to the title.. but I've already been told that there is no way to check the textbox's size so I believe this is the only way.. So, can I change color inside the same dynamic text box?
View Replies !
View Related
One Dynamic Textfield And Two Colors Or Embedded Fonts?
I am loading Text into my swf.
Works fine so far, but i would need to have two different fonts in one dynamic textfield or use two colors (hopfully easier then fonts) in one dynamic text filed.
I am filling the dynamic field like this:
info_info1 = menu_cfg_xml.firstChild.childNodes[kindProduktzahl].attributes.info1 + menu_cfg_xml.firstChild.childNodes[kindProduktzahl].attributes.info2;
I would like the first part from the xml to be one font or color and the second part (after the +) to be a different font or color.
Thanks in advance!
dex
View Replies !
View Related
Help Changing A Dynamic Text Scrollbar's Colors
I have been struggling with this for a couple of days now and I really need the help from someone who knows flash mx (not 2004) better than I do.
I need to make a scrolling text window that loads text from a text file. it needs to be a movie symbol so it can be used on many different pages and obey's its own timeline, and i must be able to change the scrollbar's colors using action script. Can anyone at all help me with this?? Please i have been stuck on this for over 2 days. Thanks!
View Replies !
View Related
Data Grid Dynamic Cell Colors
I would like to create a Data Grid where the individual cell colors change based on the number in the cell.
For example, numbers between 0 and 1 would be green, between 1 and 2 would be yellow, and between 3 and 4 would be red.
I am wondering if this is even possible, or if I am going to have to find another solution other than the data grid component.
Not looking for a complete answer (but I'd be happy to have one!) but any pointing in the right direction would be great.
I have a lot of data and coloring the cells by hand is not an option. I don't even know if I can change individual cell colors in the data grid- if it isn't possible I'd be willing to change the text color instead.
Any suggestions?
Thanks!
View Replies !
View Related
Changing Font Colors In A Dynamic Text Field?
Hello,
I have a text field that is getting its content from a text file. I have looked at the Flash documentation and it says that it will suppert the FONTCOLOR html tag. I have tried to no avail to change the color of a particular word in my text field. Has anyone gotten this to work? If so, how?
Thanks,
Damien
View Replies !
View Related
Masking With Colors (as Opposed To Alpha) On Dynamic Bitmap
Hi everyone. I have been methodically learning flash and I have hit a roadblock on an effect I wanted to accomplish.
How do I use dynamic bitmaps as a mask? and or how do I use color data as alpha values? (i'd like black to white to mean 0 to 1 alpha)
Here is an example of what I'm doing:
Code:
var bitmapdata:BitmapData = new BitmapData(900, 400, true, 0xFFFFFF);
var bitmap:Bitmap = new Bitmap(bitmapdata);
addChild(bitmap);
throw in some moving objects (squares, or anything!)
addEventListener(Event.ENTER_FRAME, onEnter);
function onEnter(e:Event):void {
bitmapdata.draw(this);
and a blur filter;
}
Is there a way to use this bitmap as a mask (without using its alpha channel)?
I say no to the alpha channel because the infinite blurring makes the entire bitmap alpha = 1
I love the patterns it generates and how super resource friendly it is. I've tried to do an alternative where I generate fading MCs with blur filters applied but it spawns hundreds of objects and never is clean/fast enough.
I want the bitmap thats generated per frame to be the mask, with white = alpha 1, black = alpha 0.
I'm very new to flash so I'm looking for any solution! Thank you.
-Yuji
View Replies !
View Related
Controlling Multiple Fill Colors Frame By Frame...
I have multiple instances of Movie Clips, which contain frame by frame animations of a person, the animations consisting of outlines, and color fills for the shirt, pants, and skin. I want to have the color fills for the shirt, pants, and skin be different colors, generated randomly for each instance of the movie clip.
So far, I've been been separating the shirt fill, pant fill, and skin fill in their own separate MC's, layered beneath the frame by frame outline. This process is really tedious, as the color fills themselves change form frame by frame with the outline, and it's a hassle to properly align all the color fill MCs with the outline. I'm wondering if there is an easier way to control the separate colors with actionscript.
I'm fairly adept with actionscript, but for some reason, the solution isn't quite emerging to me...
Does this make sense? Something like this:
http://www.radiolights.com/chase/pants.htm
View Replies !
View Related
AS3: Load Multiple Variables Into Multiple Dynamic Text Fields
I have a php file that makes this list
Code:
Cid1=3
&Lid1=22
&Title1=amazing
&Date1=1212128413
&Ext1=jpg
&Hits1=129
&Rate1=9.5000
&Cid2=1
&Lid2=22
&Title2=cool
&Date2=1212128413
&Ext2=jpg
&Hits2=129
&Rate2=8.5000
Now, I want to load the 7 bits of data into 7 dynamic text boxes.
I have to code to load a movieclip as a button onto the stage.
When I click that button I want the data to load.
I can kind of load all the data as a string into one dynamic field but don't know how to get each variable into a different text box. Any help would be great.
Regards,
Glen Charles Rowell
This is some working code for loading one variable but I need help with the rest please.
Code:
var url:String = "http://www.secretcanttellsorry.php?cid=3&orderby=ratingD&guid=on";
var Cid1:URLLoader = new URLLoader();
Cid1.addEventListener(Event.COMPLETE, completeHandler);
Cid1.load(new URLRequest(url));
function completeHandler(event:Event):void {
poptext.text = event.target.data as String;
}
View Replies !
View Related
Flash Colors Vs. HTML Colors
I'm having a issue with the colors on a client site we created matching up. I think this is a pretty unique problem. Here is the url: URL I created the flash to appear as if it was under the swoosh, but to give the masking effect of the images are appearing from under the swoosh I had to include part of the swoosh in my flash movie. By doing that I have a color issuse on monitors using 16 bit color. My boss is getting on my case to try and find an answer for this problem and he is the type that doesn't take no for an answer. He wants it fixed and that's the way it is! If anyone could ge me an advice that would be greatly appreciated!
View Replies !
View Related
Dynamic Multiple Choice Quiz - How To Make It Dynamic
Hi all,
I'm a programming-in-Flash-other-than-basic-stuff-newbie and would appreciate any help on a project I need done this week. I've been using the multiple choice quiz template. It's for an online pop trivia game using covers. Here's the basics:
You see three pictures and pick one of them. You are taken to a question about the cover. You answer it and your right or wrong choice tally starts. You are then taken to the "choose a cover from the 3 pics" screen again. Only this time the picture you have chosen is replaced by another picture so that there are the two pics that were up already that you didn't choose and 1 new one. You choose one of the 3 and answer it. The process continues for around 10 questions.
I'm thinking of a data pool of about 20 pics with each pic attached to one question which I can use the multiple choice componant for.
Any suggestions?
Please look here: http://www.sircuss.com/test/otcquiztest.swf
sircuss
View Replies !
View Related
Formatting Dynamic Text In A Text Box Can There Be Two Different Colors/styles ?
In the code below im loading variables from php that are pulled from a mysql db and printing them out. there is one From: Name then a newline with the message. they both go to the same dynamic text feild as you can see i set the color to black .. is there anyway i can make the from:name one color and the message another ? or maybe just have the from: name in bold ? if i set the textcolor to one color before the from line and another afterwards it changes the color of everything ?
Code:
myVars.load("testiflash.php");
myVars.onLoad = function( ){
trace("variables loaded");
}
myVars.onLoad = function( success ){
if(success){
testi.textColor = 0x000000;
i=0;
while (i<myVars.endmsg){
testi.text +="From:" +myVars["testiname" + i];
testi.text +="
" + myVars["testimsg" + i] +"
";
i++;}
}
}
any ideas ?
thanks in advance !
View Replies !
View Related
Colors In JPG And Colors In Flash
Hi, I recently made a website and I have images that I want to transfer seemlessly from JPG to Flash. My website is http://www.Sergprotector.com/2. However you will notice that the JPGs along the borders are not the same as the flash image. Is there any way I can avoid this? Flash blunder? Thanks
View Replies !
View Related
How To Get The Inbetween Colors Between Two Colors?
Howdy...
I was just wondering if anybody know effective ways to get the inbetween values between two color values... I am trying to create a function that changes the backgroundColor of the text field from one color to another, for example...
For example, 0x000000 and 0xFFFFFF... Say I want 4 inbetween colors... Then it will be 0x333333, 0x666666, 0x999999, 0xCCCCCC, right???
What about 0xFF0000 and 0x0000FF??? Or, what about 0x000000 and 0x0000FF??? What would be the logic behind it??? I just can't get my brain working... What would be the logic behind it???
View Replies !
View Related
Need Your Help Loading Multiple External Text Into Multiple Dynamic Text Fields
Hi all,
I can't seem to get the external tex file loaded into a dynamic text field.
I am trying to display an external text file into a dynamic text field using a next page button. The layout is this I have 80 frames. Frames 1-10 with a static text field with text & a next page button and Frames 11-20 with a dynamic text field with a previous button. I want to onRelease of the next page button in the first set of 10 frames to load the external text file into the dynamic text field of the next set of 10 frames. Also, being able to jump back and forth from next page to next.
Below I layed out all the contents in my test.fla file.
Hope this will give you an understanding of what I am trying to do.
I need to be able to click a next page button and loading an external text file into a dynamic text field, vice versa.
I have set the variable in the text file.
I used this code to try and load the text file into a dynamic text field, using actinscript. Which frame or frames do I need to include this script in? I know it has got to be multiple ones.
var styles = new TextField.StyleSheet();
styles.load("cssdocName.css");
textfieldName.html = true;
textfieldName.styleSheet = styles;
var lv:LoadVars = new LoadVars();
lv.onData = function(content) {
textfieldName.text = content;
}
lv.load("htmldocName.html");
Thanks for your time!
I have 6 different layers with 80 frames:
Layer titles:
- labels
- actions
- next_prev buttons
- contents
- tabs
- outline
Now in each layer:
- outline layer: just an outline border [displayed in Frames 1-80]
- tabs layer: movie clips tab1, tab2, tab3 within each tab is a movie clip
called bottomline [displayed in Frames 1-80]
- contents layer: Static Text Field [displaying text in Frames 1-10]
Frame 1 ActionScript
stop();
Dynamic Text Field instance name dpmoreinfo_txt
[displayed in Frames 11-20]
Frame 11 ActionScript
stop();
Dynamic Text Field instance name dpmoreinfo2_txt
[displayed in Frames 21-30]
Frame 21 ActionScript
stop();
Static Text Field [displaying text in Frames 31-40]
Frame 31 ActionScript
stop();
Dynamic Text Field instance name spmoreinfo_txt
[displayed in Frames 41-50]
Frame 41 ActionScript
stop();
Static Text Field [displayed text in Frames 51-60]
Frame 51 ActionScript
stop();
Dynamic Text Field instance name cmoreinfo_txt
[displayed in Frames 61-70]
Frame 61 ActionScript
stop();
Dynamic Text Field instance name cmoreinfo2_txt
[displayed in Frames 71-80]
Frame 71 ActionScript
stop();
next_prev buttons
layers: dpmoreinfonext_btn [Frames 1-10]
Frame 1 ActionScript
dpmoreinfonext_btn.onRelease = function() {
gotoAndStop("dpmoreinfo");
};
dpprev_btn & dpmoreinfo2next_btn [Frames 11-20]
Frame 11 ActionScript
dpprev_btn.onRelease = function () {
gotoAndStop("DataPulse");
};
dpmoreinfo2next_btn.onRelease = function () {
gotoAndStop("dpmoreinfo2");
};
dpmoreinfoprev_btn [Frames 21-30]
Frame 21 ActionScript
dpmoreinfoprev_btn.onRelease = function () {
gotoAndStop("dpmoreinfo");
};
spmoreinfonext_btn [Frames 31-40]
Frame 31 ActionScript
spmoreinfonext_btn.onRelease = function () {
gotoAndStop("spmoreinfo");
};
spprev_btn [Frames 41-50]
Frame 41 ActionScript
spprev_btn.onRelease = function () {
gotoAndStop("StructurePulse");
};
cmoreinfonext_btn [Frames 51-60]
Frame 51 ActionScript
cmoreinfonext_btn.onRelease = function () {
gotoAndStop("cmoreinfo");
};
cprev_btn & cmoreinfo2next_btn [Frames 61-70]
Frame 61 ActionScript
cprev_btn.onRelease = function () {
gotoAndStop("Courses");
};
cmoreinfo2next_btn.onRelease = function () {
gotoAndStop("cmoreinfo2");
};
cmoreinfoprev_btn [Frames 71-80]
Frame 71 ActionScript
cmoreinfoprev_btn.onRelease = function () {
gotoAndStop("cmoreinfo");
};
labels layer: Frame name is DataPulse [Frame 1-10]
Frame name is dpmoreinfo [Frame 11-20]
Frame name is dpmoreinfo2 [Frame 21-30]
Frame name is StructurePulse [Frame 31-40]
Frame name is spmoreinfo [Frame 41-50]
Frame name is Courses [Frame 51-60]
Frame name is cmoreinfo [Frame 61-70]
Frame name is cmoreinfo2 [Frame 71-80]
Actions layer: Frame 1 ActionScript
contents.stop();
numberOfTabs = 3;
for (i=1; i<=numberOfTabs; i++) {
line = eval("tab"+i);
line.onRelease = function() {
for (i=1; i<=numberofTabs; i++) {
otherTabs =
eval("this._parent.tab"+i);
otherTabs.bottomLine._visible =
true;
}
this.bottomLine._visible = false;
contentFrame = Number (this._name.substr(3,
1));
this._parent.contents.gotoAndStop(contentFrame);
}
}
tab1.bottomLine._visible = false;
tab1.onPress = function() {
gotoAndStop("DataPulse");
};
tab2.onPress = function() {
gotoAndStop("StructurePulse");
};
tab3.onPress = function() {
gotoAndStop("Courses");
};
View Replies !
View Related
Gradients
I have read tutorials in which a fading gradient was explained, but it was for flash 4. But I got confused with Flash 5, could anybody explain please, how I can make a gradient fill which fades into nothing, not to a colour, I want it just to fade into transparency.
Thanks
`U
View Replies !
View Related
Gradients
Why doesnt the selection change when clicking from one cirlce to another. If I have two layers with a circle on each and I click between them the gradients in the color mixer do not change, why is this so?
To make it more clear:-
What ever the color of a shape is :solid,linear,radial etc is not shown by the color mixer. In fact once you have created a shape it is impossible to go back and edit it. That is rediculous.
View Replies !
View Related
Gradients
Hey Peeps,
I have a shape that I drew, for a cartoon shadow, and I want it to have a gtradient fill. I have Flash MX, how can I make a gradient, that I can rotate to a certain angle?
Please help me
Thanks in advance
- Luke
View Replies !
View Related
Gradients
I got some reviews for http://nickmcdoz.tripod.com
and I was wondering why everyone says it's pretty good but would be better with gradients... from my knowledge i DO have gradients in http://nickmcdoz.tripod.com, but maybe there is something i'm not getting...
View Replies !
View Related
Gradients Gradients Gradients
Ok either i dont have a tool option open on flash mx pro 2004 or im over looking it, but i m trying to make a gradient and nothings working!
any help? im just trying to go from this blue (5E7891) to Black.
in dimension 560 x 306
any help woul be appreciated
View Replies !
View Related
|