ActionScript 2.0 :: Make A Variable That Will Store The Color?
Mar 21, 2007
The fill function that I made works as long as you only need one color. How do I make a variable that will store the color? flash keeps giving me an error for trying to do it the way I am doing it.
Code:
fillit = function (d, e, f, g, color) {
color2 = "0x"+color
_root.lineStyle(1, 0x666666)
[Code]...
View 3 Replies
Similar Posts:
Dec 11, 2009
I would like to store a hex colorPicker value in a variable and then cast the value of the var backout to a textInput. The textInput is just to see witch hexcolor i have choosen.
thus meaning seeing 0x000000 in the textInput.
what i've done now is pretty simple i have bound the flex colorPicker directly to my textInput. but i want to store the value from the colorPicker in a var first and than spit it backout to the textInput to see the value that i have picked.
When i pick a color value that begins with the number 0 it drops the 0's at the beginning of the number and only spits out the numbers greater than 0. (000033 becomes 33, FF0000 stays FF0000). I want to catch the whole value or write some kind a function to figure out how many 0's got dropped and concatenate it together with 0x. Store that all into a var and bind it to the flex TextInput.
This is what i've got.
<?xml version="1.0" encoding="utf-8"?>
<mx:Module xmlns:mx="http://www.adobe.com/2006/mxml"
layout="vertical"
[Code].....
View 1 Replies
May 12, 2011
I'm getting back into AS after a few years, and it's taking a bit to get used to the syntax of AS 3.0.
Anyway, I don't know the answer to the following in AS 2.0, so I wonder if it's even possible.
Basically, I want to know if there is a way to call a variable, the name of which is stored in another variable.
How would I write something like "NextToDisappear.alpha = 0;" and have it interpreted as "MC4.alpha = 0" instead of giving an error message complaining that variables don't have alpha properties?
In other words, is there a way to make it interpret a variable as its contents and not as itself when on the left side of an equals sign? Similar to the difference between quotes and no quotes when working with the contents of text variables.
View 5 Replies
Jul 5, 2010
I want to store the name of an xml node in a static var like so:[code]but when then i go and wrtie for example:myxmlList:XMLList = myXml.NODENAME;it is non working.what kind of variable do I need to use??
View 2 Replies
Aug 3, 2011
Is it possible to store multiple variables of different types inside 1 object. It would be ideal to have a separate property for each variable, but not required. Is there a way to do this?
View 2 Replies
Jan 22, 2008
Code:
for (var i:Number = 0; i<numOfItems; i++) {
var t:MovieClip = "item"+i;
t.onRelease = activator;
}
This returns an error saying that there is a type mismatch because "item"+i is a string. It is a string, but it's also the instance name of an MC on the stage.
Let's say I have 30 MC's on the stage named item1, item2, item3, etc. Instead of assigning an onRelease statement to each of these manually I thought I could just run them through a for loop. They are not dynamic clips though, not at this point anyway.
View 2 Replies
May 4, 2010
i also has another problem here is the senario .first i select the square (there are too many object one of is square )then click the button now my event target is button previous one is square so i need to change the square(object) using that button.
View 10 Replies
May 16, 2010
I have a AS2 netstream instance, in which I am loading various flv's into. The 'main' video has links to other visble when its playing. I want to be able to store the position of the flv (in seconds) so that when the user comes back to the 'main' video it remembers where it was and contiues to play. This is the code I have written so far regarding this (its probably massively wrong).
var remember:Number;
if(ns.play == ("flvs/reel.flv")) { ns.time = remember; trace ("stored"); }
[code]....
View 1 Replies
Dec 13, 2011
I am new to ActionScript 3.0, I am facing a problem in storing the data from one frame to another whenever the button is clicked to switch between the frames. The original frame content is set to default.
View 1 Replies
Jul 14, 2009
I have a variable (array) in my ActionScript 2 file, called webshop.Is this possible to store in a cookie (or PHP session) so if a user visit my shop and add items to the basket (the variable webshop) and leaves the page, but then returns later on it will create the variable with the users already stored items?I think it would be most intuitive if it only stores the variable for the browser session, so if you close the browser and open it again it will reset the variable. But if you just leave the page it should save it.
View 1 Replies
Oct 18, 2003
How would I make a dynamic text boxes border a certain color, along with background color.
View 1 Replies
Jan 31, 2004
How can I make the color from a mc, a square with a flat fill, fade from one color to another (by using actionscript only) ?
View 4 Replies
Oct 15, 2011
I'am working with Adobe AIR application and i have a registration form which contains a combobox which consist of 2 values...i want to store the selected value to a variable..
[Code]....
View 1 Replies
Dec 26, 2010
exactly as the title says, or is there a way to call up its original x,y coordinates like box_MC.originalX or something?
View 5 Replies
Nov 11, 2005
I ve a bit of missunderstood about functions: as i read the functions works:
basically 2 types:
named (can be lonely)
unamed (need and object)
- can i define a function wherever i want? ( _root, MC...) and call it from everywhere?, before or after i created it?
- if the variables of a function are local variables of that function. How can i store the result of a calculation of the function, in a variable outside it?
View 9 Replies
Feb 14, 2006
im creating 100 movie clips through duplicate movie and assigning each MC an instance name of eh_1, eh_2, eh_3 etc... on rollover i would like to have have them store in a variable which button number they are.to detect rollovers and presses, im just using
Code:
for (i=1; i<101; i++) {
_root["eh_"+i].onRollOver = function () {
};
}
is there anyway i can detect which button was pressed and store into a variable the number?
View 3 Replies
Jun 7, 2007
make a 4 color gradient, a separate color on each corner?
View 2 Replies
Jun 14, 2005
I was wondering how to store a DATE value, selected from the DATEFIELD component into a variable.I.e. so that the user will enter a date (Sept. 12, 2005), and on subsequent frame, that date will be written as text. Thus, how can I store a selected date into a variable?
View 1 Replies
Jun 27, 2010
I am having problem to recall the copied bitmap data to show on another private function which is difference from the private function which copy the bitmap process. I am new in AS3 so have no idea how do I make the copied bitmap data into a global variable..
Heres my snippet of code:-
private function export():void {
var bmd:BitmapData = new BitmapData(216.2, 468.29);
var a_matrix : Matrix = new Matrix() ;
a_matrix.translate(-242,-130);
bmd.draw(stage,a_matrix);
[Code] .....
This is the problem I am facing, I need to separate the copying process and showing process because I want my flash to show the copied image later on...
View 2 Replies
Jun 17, 2003
i want to make a discussion/message board. but a very very simple one. no username, password.. just a board where people can wite one or two lines. thats all.its very hard to find one out there. i think if i can manipulate a guestbook files, i can make a simple discussion board. The problem is that i dont understand how to make flash 'communicate' with notepad file to store information like how they did in guestbook. this is link to one of flash message board i found, but it has too many section - like kirupa forum. i dont have any ideas to make it as simple as i want. i dont understand the AS
View 2 Replies
Jul 12, 2009
I am looking for a class that functions similar to JPEGEncoder from as3corlib, but instead of encoding a JPEG, I want to take a dynamic drawing the user has made (with animation) and output an SWF file that the user can download and playback on his/her computer.I understand how to create an SWF and store user variables that control the playback, but I want to make it all contained in a single SWF file.
View 1 Replies
Apr 27, 2010
Is there any way to concatenate E4X expressions? If I store "half" a path in a variable, can I concatenate the way I do with Strings?
View 3 Replies
Aug 17, 2011
I have two classes (Main, URLFactory)
[Code]...
What I want to do is pretty simple but I must not know how to do it. I want the URLFactory to create the Array and store it in the variable "dataArray" and use the Array in the Main class by calling the GetList() of the URLFactory class. What I have returns nothing.
View 2 Replies
Jul 22, 2011
I have a problem with SharedObject. I created SharedObject using AS2.0 it's working fine.... my question is can it possible to store the variable values in an .txt file where the flash file is saved... basically the SharedObject will store the vallues in localdrive with file extention. not only using SharedObject if any other way to store the vaules in .txt file will be helpfull for me... my requirement is to store the the position of the swf file and when the time it reopen, it should start from previous position.
View 2 Replies
Dec 23, 2004
how can i get the value of a color from a variable. if i click the button, some rgb value should be stored in a variable and through some function i should get it. i wrote the function something like this:
------
on (press) {
var colorful = new Color("_root.shapes");
colorful.setRGB(myVariable);
}
-------
but it's not working.
View 1 Replies
Dec 23, 2004
I read the tutorial on this site about changing the color values of an object, or of a movie clip. My question is: How can I get the value of a color from a variable. If I click the button, some rgb value should be stored in a variable and through some function I should get it. I wrote the function something like this:
on (press) {
var colorful = new Color("_root.shapes");
colorful.setRGB(myVariable);
}
But it's not working.
View 1 Replies
Aug 1, 2009
I want to use a variable to set the color of text and graphics input by the user. I use the following code to set the variable:
var setColor:String;setColor = "0xff0000";
strokeColorBtn_mc.addEventListener(MouseEvent.MOUSE_UP, setStrokeColor);
function setStrokeColor(event:MouseEvent):void { setColor = "0xCCCCCC"; trace ("the new color is " + setColor);}
This works, and I am able to use the variable to set the color of type in a text field:
textFormat.color = setColor;
But when I try and use the variable to set the color of a graphic element:
designContainer.graphics.beginFill(setColor, 0.1);
I get the following error:
1067: Implicit coercion of a value of type String to and unrelated type uint.
So I thought that I might have to cast the String as a uint, so I tried the following:
designContainer.graphics.beginFill(setColor as uint, 0.1);
That eliminated the error message, but it does not change the color.
View 13 Replies
Nov 23, 2010
I have two variables:
var defaultMainHexidec:Number = 0xFFFFFF;
var mainHexidec:Number;
If a value isn't assigned to mainHexidec I assign the default value as follows:
mainHexidec = defaultMainHexidec;
trace("mainHexidec = " + mainHexidec);
The trace returns the same value as the value returned when tracing the defualt value. But if I use mainHexidec as the fill for a rectangle, the color is black while the default value is white (or any other color). If I set the color using the default variable the fill appears correctly. If I set the number using the number traced in either defaultMainHexidec or mainHexidec (it traces the same number) the color is correct.
View 5 Replies
Oct 31, 2008
I have an XML file that is passing the color that is needed on a movie clip.I can make the color variable in the XML the actual HEX number and that works fine.Example:
Code:
//XML
<ColorData>
[code].....
View 2 Replies
Oct 16, 2010
The Idea is i want to make avariable that stores his value after i close the swf and open ti again,
an example:
i make acounter
var i:int = 0;
var timer:Timer = new Timer(1000);
timer.start();
[Code]....
the value of i will increase but after i close the application and open it again the value will return to 0 , keep the variable stores his value after closing the application ?
View 3 Replies