ActionScript 2.0 :: Setting Values To Movieclips?
Jan 13, 2010
I have 6 movie clip objects and I want to assign them all a value for when the user clicks on them. This value is to be hidden from the user but I will later use it with an additional software to capture the value. I assume this will be done by using a dynamic text field for when the movie clip is pressed.
View 6 Replies
Similar Posts:
Dec 10, 2007
how to set the objectives of a SCO within the LMS reporting of SCORM?
Here is what I have so far:
ActionScript Code:
var theScore = 10;
var theStatus = "c";
var intData = theStatus+";"+"mytestobj"+";"+theScore;
fscommand("MM_cmiSendObjectiveInfo",intData);
The only thing tracking in the LMS is "mytestobj" which is reporting as the objective name.
View 2 Replies
Jun 7, 2004
I'm moving this little red box along the x axis. It just moves w/ the mouse but it moves off the movie clip area, i want to be able to set the left and right boundries. Heres my code.
mc_movingBox.onEnterFrame = function() {
var xMouse = _root._xmouse;
f(Math.abs(xMouse - this._x) < 1) {
[code].....
View 1 Replies
Oct 5, 2004
I'm moving this little red box along the x axis. It just moves w/ the mouse but it moves off the movie clip area, I want to be able to set the left and right boundaries.
Heres my code.
mc_movingBox.onEnterFrame = function() {
var xMouse = _root._xmouse;
if(Math.abs(xMouse - this._x) < 1) {
this._x = xMouse;
} else {
this._x -= (this._x-xMouse) / 6;
}}
View 6 Replies
Jul 24, 2009
I�m calling a ColdFusion page that generates output in the form of a text file to be used in a scrolling dynamic text field.So, Instead of calling a text file like so:
//calls a static text file
loadText.load("StaticTextFile.txt");
Im calling a ColdFusion page like so:
[code].....
View 1 Replies
Oct 5, 2004
I'm moving this little red box along the x axis. It just moves w/ the mouse but it moves off the movie clip area, i want to be able to set the left and right boundries. Heres my code..
mc_movingBox.onEnterFrame = function() {
var xMouse = _root._xmouse;
if(Math.abs(xMouse - this._x) < 1) {
[Code].....
View 6 Replies
Oct 8, 2010
I have Flex 4 DataGrid, what I would like to do is when an cell has been edited, I would then like to walk through the values of that column and preform math on the values, e.g., I want to total up certain values.
1) How do I reference individual values of a specific column so that I may set them.
2) How do I then set those values or should I create a new column array and pop it in place of that column.
View 3 Replies
Dec 28, 2010
how to set default property values for objects that are being created in a loop.
In the example below, these propeties are the same for each object created in the loop: titleTextField.selectable, titleTextField.wordWrap, titleTextField.x
If you pull these properties out of the loop, they are null because the TextField objects have not been created, but it seems silly to have to set them each time.
var titleTextFormat:TextFormat = new TextFormat();
titleTextFormat.size = 10;
titleTextFormat.font = "Arial";
[Code]....
View 4 Replies
Jul 24, 2007
'm trying to do: I have a number of buttons on stage. When you rollover, a movie clip is attached. If you roll out, it disappears; if you click, it stays. Then you can drag it around. I'm using a boolean for the rollout disappearing trick. I've set these up in named functions.
[code]function attachBar(word) {
var showIt=false;
i++;
[code].....
View 2 Replies
Oct 19, 2010
I have a custom component as an item renderer.In this renderer there is an item called dlFirstChoice.Now when I add more items to this list and force the list to rebuild itself something odd happens.Part of the creation of the renderer I set a default selection for the DropDownlist as follows: dlFirstChoice.selectedIndex=0The problem is once I have more than one item to render from my dataset this property stops working. So if my dataset has only 1 item to render the drop downlist sets itseld up properly, the momment I need to render more than 1 copy of my item renderer, all of a sudden nothing gets set fo
View 1 Replies
Feb 3, 2011
Is there a way to do this? I have a bunch of photos scrolling left and right and I need to reduce the jerkiness of the scrolling motion somehow (so it works well on slower machines). Is there another way to do this via AS3?
View 1 Replies
Apr 21, 2003
Is there anyway to make a certain MC in a movie with low quality while the rest are all high quality? Like, I got this movie right, but I used a pixel font for the body text, and no matter what I try the text is ALWAYS antialiased.. I need to be Aliased and the only way to do that is to make the movie low quality.. but that messes up everything else...Is there a setting to keep the text low quality? I am using (fonts for flash).
View 13 Replies
Sep 19, 2007
I already have an array set up with a navigation and tween on the MC's when the navigation is pressed. My question is, how would I apply a simple automated play to it. The functions are already there that make the navigation bring up my corresponding MC, i just need some autoplay to it.
Here is my source:
Code:
this.scrollIcons = function(p_offset:Number) {
// Scrolls the icon list
this.setIcon(this.currentIcon + p_offset);
[Code] .....
View 4 Replies
Jan 18, 2008
I have been hacking together two different tutorials to create a menu with changing images, and some animating text. Everything looks great, except the menuitems, which i try to resize dynamically depending on the menuitem-movieclip-contained dynamictext. When i resize this movieclip, the whole movieclip scales, and everything looks odd.
this is my first flash project on my own, so be nice :-)
fla file can be found at: [URL]
View 2 Replies
Dec 9, 2010
I'm working on a Flash game (AS3) and have come to a point where I need to change the value of a global boolean variable from within a movieclip. After searching all over I have yet to find a solution. Essentially, the problem is that I have a movieclip that contains a section of animation for my game. When this movieclip is told to begin its animation, it checks these global variables to see which of six animations to play. When it finishes any of these animations, I need to set the associated variable and increase the score.
View 2 Replies
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
Apr 12, 2007
i have a movie clip on the stage, and i need its depth to always be higher than everything, but other movieclips are being duplicated constantly. How do i do this?
View 2 Replies
Nov 6, 2010
In the project I'm working on, there are towers the user can place. However, it you place a tower higher then another one, it appears infront of that one, which looks weird.I want to be able to arrange all the towers so that that does not happen.There is an sprite called towerHolder holding, which all the towers are children of, and an array called towerArray, which the towers get pushed to when they are created.I tried clearing towerHolder, then running the sortOn() function on the array, and then adding each tower back to the towerHolder, but the towers just seem to be randomly placing themselves irrelevent to their height.Here's my code for the relevant parts:
Actionscript Code:
function clearTowers():void { while (towerHolder.numChildren > 0) { towerHolder.removeChildAt(0); }}function orderTowers():void { clearTowers();
[code]....
View 3 Replies
Dec 24, 2010
I'm just wondering if it is possible to use a string values as a way to use the addEventlistener function.[code]...
View 5 Replies
Oct 29, 2009
is there a setting for sprites/movieclips to get that pixelated edge on the circles? how are they doing that?
View 1 Replies
May 11, 2010
for each (var link:XML in settingsXML.links.link) {
menuItem = new MenuItem();
menuItem.menuLabel.text = link.@name;
[code]......
View 1 Replies
Apr 13, 2006
is it possible to set the quality of individual movieclips or is _quality only a global setting?
View 2 Replies
Mar 29, 2007
Im writing an application that parses xml to display a menu system in Flash. The same loop that grabs the xml creates a new movie clip for each node(menuitem). I need to set a delay between the duplicated movie clips so they appear one after another rather than all at the same time. Ive tried a few different things (interval and timer) but havent got it to work.
Code:
var item_spacing = 60;
var item_count = 0;
var item_count_next = 0;
var newy = 0;
_global.itemNumber = "";
function CreateMenu(menu_xml){
[Code] .....
View 2 Replies
Oct 21, 2009
point in the right direction if there's been a post previously on this, I did a search but didn't find anything. So my problem is that I'm creating objects dynamically and adding them to a movieclip container. I.e. click button -> generate new instance of Item class -> container.addChild(item).
[Code].....
What on earth am I missing?! I've googled and found working examples of that, but it just does not do the trick for me. I'm compiling the project as an Adobe AIR file, but as far as I'm concerned, it should not intervene with the x and y values of the movie clips. I also tried getting the values by methods in the Item class, but with no luck.
View 9 Replies
Mar 1, 2010
I have an MC on stage containing user interface elements.Within that MC, I have another MC with an onRelease event that calls to a function.The function it's calling sets/toggles a variable.
The problem is this: It's setting the variable in a scope that's available for the function and the MC within the user interface container, but I also need to make it available to _level0 (to be written to a file via an existing CGI script we have). I've tried setting this from within the function, having a loop that copies all the values from that scope to _level0, but I haven't gotten it to work.
The existing software I'm creating this for is convoluted, and we're stuck with it, so the goal is really just getting those variables into _level0, and not something that might be cleaner or make more sense.
View 1 Replies
Jul 9, 2011
I am creating a card game application in that dynamic movieclips created on stage and inside those movieclips different cards can drop, which have some values.
If one movieclip contains one card and another movieclip contained two cards and all the other movieclips 3rd,4th,5th.. etc contains some cards then, if i want to go back and want to drop another card at the top of the old one, than how i can do this, because when i go back and drop a new card inside movieclip than it replaces the old one. i don't want to create a new array for each movieclip.
View 1 Replies
Dec 11, 2007
I have some variables created on the main timeline and a mc called options which will be where those variables can be manipulated. A way I've tried to this is by creating a first array(array1) and populating it will all the variable names found on the main timeline, and another array(array2) containing the values of the variables the user has changed(which are displayed on some dynamic text fields). To make these changes, an "apply" button is pressed which will set the values found in array2 to the variables in array1.[code]How would you do this so that var1, var2... are updated properly according to the values found in array2?And because array2 contains strings(read from dynamic textfields), how do you deal with that since var1 and var2 are numbers?
View 6 Replies
Dec 6, 2010
I've gotten these sliders to work but can't get the output values to add up. For instance, depending on the values for slider 1, 2 and 3, I need the total to show up in a separate text box. I keep getting a NaN message in the text box.Here's the code I have so far:
//item 1
sliderOne.width = 600;
sliderOne.value = 0;[code].....
View 3 Replies
May 18, 2010
I need to save email-id in my login form through the cookies. if I use shared object I am able to save but my requirement is need to save in cookies. How can I save? I got sample code from net. Attaching that code `package com {
import flash.external.ExternalInterface;
/**
* The Cookie class provides a simple way to create or access
* cookies in the embedding HTML document of the application.
[Code].....
View 1 Replies
Sep 4, 2011
I need to be able to compare the number of whole days between two dates in ActionScript, is this possible? I'd like to test if one date is 7 days or less after today, and if so is it one day or less (if it's before today this also counts).The workaround I have in place is using the .time part of the date field:
// Get the diffence between the current date and the due date
var dateDiff:Date = new Date();
dateDiff.setTime (dueDate.time - currentDate.time);[code].....
As I say - this is only a workaround, I'd like a permanent solution to allow me to check the number of whole days between 2 dates. Is this possible?
View 1 Replies