ActionScript 2.0 :: [Flash 8] OnRelease In A FOR LOOP
May 8, 2007
I am making a few drag and drop games that work great when I hard code them. When I use a FOR loop and name = eval("something"+i+"_mc") everything works great. I can assign startDrag to all MCs, I can make it stop drag, and so on. But when I try to do a hitTest, it only works for the highest value of [i] in the FOR loop. It will still assign text to all the dynamic text boxes in each MC, and do the dragging stuff, but it won't do a hitTest for anything other than the highest value.
I've searched several sites and have found things about Delegate.create, using [this.i] rather than just [i], and much more. The problem is it always partially or half works. It won't just break, it will either let both drag and only acknowledge one hitTest, or ignore the stopDrag or whatever else. Either they both partially work, or only the highest [i] value is acknowledged.
View 1 Replies
Similar Posts:
Jul 14, 2010
I have another question about my For loop. I am designing and coding a navigation menu at the moment, and so far I have got the button instances to duplicate for each of the menu items, and set widths, positioning values and RollOver/RollOut functions. However, I would ideally like to include the onRelease button functions in the for loop too - as they are all the same apart from the variable "i". Here is the code snippet:
[Code]...
View 2 Replies
Aug 31, 2006
I'm tring to add a onRelease event into every button I have, code like
for(var i = 1; i <= totalPage; i++){
_root['button'+i].onRelease = function(){gotoPage(i-1)};
}
why its doesnt work. I have to do like following
button1.onRelease = function(){gotoPage(0)};
button2.onRelease = function(){gotoPage(1)};
button3.onRelease = function(){gotoPage(2)};
[Code].....
View 5 Replies
Jun 30, 2010
I have set up the XML as follows:
[Code]...
View 5 Replies
Jul 14, 2010
I am designing and coding a navigation menu at the moment, and so far I have got the button instances to duplicate for each of the menu items, and set widths, positioning values and RollOver/RollOut functions. However, I would ideally like to include the onRelease button functions in the for loop too - as they are all the same apart from the variable "i". Here is the code snippet:
ActionScript Code:
for (i=1;i<(_root.noofmenuitems+1);i++){
duplicateMovieClip("mc", "mc"+i, i);
[code]...
Now my problem is that by the time the onRelease function is called, the for loop has been completed and the value of i returned is the last i value from the loop (_root.noofmenuitems+1). The this["mc"+i] part obviously works, because the trace function is called when I click any of the menu items.The problem is that I have 6 menu items, and when I click any of them, the trace function returns "test 7" - not the corresponding i values for each button.
View 9 Replies
Aug 1, 2011
I am having a hard time trying to use an onRelease event handler inside a for loop. Basically, I am developping a custom player for articulate presenter using flash and AS2.This code is generating a movie clip in a for loop for each line in the sidebar, with slide title and slide number parsed from a XML.Until here, all works fine.But when I try to generate the onRelease event handler to play the wanted slide when I click on the line, the value inside the onRelease is always the highest value of i.Looks like the onRelease evaluates i only when I click on the line, after all the clips have been generated.[code]I have to find a way to capture the value of i for each clip.
View 2 Replies
Mar 7, 2005
I'm trying to have a bunch of buttons generated in a for loop, and I want the onRelease function defined so that each button has a unique e-mail address attached to it.As it stands now, all the buttons are being assigned the last e-mail address in the XML file. I've got more code in my actual file that creates text fields on top of the buttons, and they're displaying the correct info, so it's only the onRelease function that isn't working...Here's the abridged code:
var xmlPeopleList:XML = new XML();
xmlPeopleList.ignoreWhite = true;
xmlPeopleList.onLoad = function(bSuccess:Boolean) {
if (bSuccess) {
[code]....
View 1 Replies
Sep 1, 2005
I have a loop to create clip buttons w/jpg images on face && load same jpgs into main viewer clip. Problem is, the mc buttons won't respond to onRelease.
for(i=1;i<3;++i)
{
var mc = "mc"+i; // button mc clip names
[code]......
View 14 Replies
Mar 7, 2005
So I'm trying to have a bunch of buttons generated in a for loop, and I want the onRelease function defined so that each button has a unique e-mail address attached to it.As it stands now, all the buttons are being assigned the last e-mail address in the XML file. I've got more code in my actual file that creates text fields on top of the buttons, and they're displaying the correct info, so it's only the onRelease function that isn't working.[code]
View 1 Replies
Oct 7, 2009
I'm trying to display thumbnails with a for loop but i would like that each thumbnail have an onrelease action.
here is my scriptnote: i use trace() for look if my loop works aswith the onrelease function)
HTML Code:
var posX = 163;//1st position
var posY = 103;//1st position
var Dec = 0;// var for the space between thumbnails set to 0
[Code].,...
View 3 Replies
May 8, 2006
Here my attempt at creating the Kirupa's Spinning Images gallery. I'm so damn close it somewhat works, I'm still having trouble with the rotational calculations. Not sure, but I think I might be passing the wrong values from the onRelease to the enterFrame loop?
spin3a.fla
var world:Array = [];
var rotate = 0;
var fl = 1000;
var clip;
function spin() {
[Code] .....
View 1 Replies
May 19, 2009
I want to loop through an array of mc's, and assign each a onRelease function. I have the following code but the trace inside the function doesn't seem to find the array.I understand why but what is the correct way of doing this?
ActionScript Code:
var theArray:Array = new Array();
var j:Array = new Array();[code].......
View 1 Replies
Feb 10, 2010
Is there a way to ADD onRelease method on movieclip that already has a onRelease method? Without replacing the first one.
ActionScript Code:
mc.onRelease = function(){
trace('1');
}
I was thinking this, but it doesn't work
[Code]...
View 1 Replies
May 5, 2011
using this as my actionscript for preloader:
[Code]....
Scene 1, Layer 'Actions', Frame 3, Line 2 1119: Access of possibly undefined property onRelease through a reference with static type fl.controls:Button. id like to get my website working. what im i doin wrong? id like to use the latest actionscript.
View 1 Replies
Jan 17, 2011
Sure this will be a simple fix, and I'm just not seeing the wood for the trees. I have a movie with a movieclip called scroller_mov. Inside it are 15 movieclips named pic1 thru pic15.
My code is on one frame, on the same level as scroller_mov. Just want to dynamically assign a click action to the pic1 - pic15 movieclips! have tried hardcoded links and dynamic, but no joy! Everything else works fine.
[Code]...
View 1 Replies
Oct 9, 2007
the seven dots u see on the stage are 7 emptymovieclips. i've coded the action script to load the thumbnails in 6 emptymovieclips on left side arranged in grid.script is working fine till 6 thumbnails are loaded in the grid.(from externel xml file as i've coded)as logically u can guess that, when we click on a thumbnail, it's bigger copy should be loaded in the black square on he stage. but it is not happening ; i;ve coded for it also ;in the following script u can see that the last command is:
_root.thumb0.onRelease = function() {
trace ("clicked");
}
it should dispaly "clicked" on output window when thumb0 is clicked but it isn't showing anything. not any error even. the above line is in firstframe's action script; and it must should work from here only, not under the AS of thumb0 movieclip.
//////////////////////////////////////////////////////actionscript for the first frame of layer1///////////////////////////////////
xmlData = new XML();
xmlData.ignoreWhite = true;
[code]...
View 1 Replies
Oct 24, 2009
How combine write a script to pass a value from flash to php and load xml results with the onRelease command?
1
sender.onRelease = function () {senderLoad.fin = fin.text;senderLoad.sendAndLoad("www.abc.com/myphp.php",receiveLoad);}receiveLoad.onData = function (src) {tf.text=src}
[code]....
View 13 Replies
Dec 3, 2006
I have a movie clip, circle_mc, and in it is embed another movie clip, point_mc. I made the circle draggable with this:
Code:
circle_mc.onPress = function() {
startDrag(this);
[code]....
View 3 Replies
Aug 9, 2010
I was trying to execute my thickbox on click of the button with id btnInfo. the code below works, ive seen it work in another flash file. i guess there is a deceleration on the top that i missed. Error: Scene 1, Layer 'Layer 1', Frame 1, Line 41119: Access of possibly undefined property onRelease through a reference with static type fl.controls:Button.
[Code]....
View 4 Replies
Feb 14, 2012
I have a "onRelease function"
CODE:
btn_4.onRelease = function () {
var yTween = new mx.transitions.Tween(slider, "_x", mx.transitions.easing.Strong.easeOut, slider._x, 695 , 0.600000, true);
}
This works good but I like to add in a "onRelease" play sound, too. How it have to look like and where do I have to place the sound? Because: When I add in a new function "onRelease" both block each other.
View 2 Replies
Jun 10, 2009
var add1:Number = 0;
trace(add1);if(add1 = 100){ thTX._visible = false;}plus.onRelease = function(){ add1 = add1 + 25;}
I would like everytime "plus" is pressed to add 25 to variable. So trace starts with 0 and after 4 clicks it ='s 100.
View 13 Replies
Jan 27, 2011
I have a Red Cup which is a MC and I want the Red Cup to go UP when clicked on and goes back down when you release the mouse click.
I know the coding is
On(press) { and
On(release) {
But I do not know the details.
View 2 Replies
Sep 27, 2011
I am trying set up a simple onRelease function of a button in AS2 within a class file but this is not allowed. It's been ages since I have worked in AS and have a client who needs some work done by a previous developer. why I cannot just use myButton.onRelease = function ()....Here's a sample of the AS2 snippet
Code:
public function callFunction(functionString:String) {
var functionItems:Array = functionString.split(",");
var functionName = functionItems.shift();
[code]....
View 3 Replies
Apr 2, 2008
I'm writing a program that has a button, and when pressed, and the shift key is pressed, will do an action. I have an onRelease function for that button also, but for some reason when I have the button pressed, and I press shift or any other key, it automatically thinks the button is being released. I was using the onMouseDown, onMouseUp functions before, but they caused me a lot of problems aswell.
Try it for yourself:
Code:
btn.onPress = function() {
trace("pressed"); //now hit a keyboard button
}
[Code]....
View 2 Replies
Jan 5, 2005
Is there an easy way to use two event handlers together without repeating a function like this:
Code:
movieclip.onRelease = function() {
_root.gotoAndStop(2);
[code].....
View 3 Replies
Oct 31, 2008
I have two buttons. Each one calls in an external swf. I would like one of them to call it in onRollOver but nothing happens. It works fine when I change it to onRelease.This is the code I have for the two.
Code:
// Instantiate MovieClipLoader Class
var thumbloader:MovieClipLoader = new MovieClipLoader();
case_btn_1.onRollOut = function() {
[code]....
View 8 Replies
Aug 17, 2010
i have a movieclip with an onRelease event. Is there anyway i can trigger this event in code? without clicking the movie clip?
View 1 Replies
Jan 9, 2009
I can not seem to get my movieclip to go to URL with an onRelease event. It works when I set it to just go to URL without an event.
View 4 Replies
Jan 13, 2009
I'm a beginner. I used on(release) script for a button two times but 2th on(release) work only.[code]...
View 4 Replies
Sep 15, 2009
I need help with onRelease after using loadMovieClip function. onRelease doesn't work on duplicateMovieClip. The code:function buildGallery (page Position)[code]
View 2 Replies