ActionScript 1/2 :: Get The Twine To Disappear With Dropped On The Hobo?

Feb 13, 2012

This part that I'm working on consists of trading a hobo some twine for his alcohol. I'm trying to get the twine to disappear with dropped on the hobo, as well as the alcohol he is holding, which makes the twine leave my inventory and replaces it with the alcohol. So for I can get the twine to disappear correctly, but the alcohol can appear and disappear in some instances when I don't want them to.here's the code on the twine in the inventory

onClipEvent (load) {
this.tabEnabled = false;
this._visible = false;[code]....

View 3 Replies


Similar Posts:


ActionScript 3.0 :: Track Dropped Frames In Flv

May 21, 2009

has anyone seen a handy component or code to monitor playback of your flv to see if flash is dropping frames.It would be nice to see total frames dropped, and maybe average frames dropped per second.In a perfect world it would be a graph over time.

View 3 Replies

Dragged And Dropped Into An Area(suitcase)

Nov 28, 2009

I have set up some objects so that they can be dragged and dropped into an area(suitcase). This works fine but the thing is that when I move to another part of the timeline the object is put back in the same position it was in before being dropped in the suitcase. I need to be pointed in the right direction with this:

a) If an item is dropped into the suitcase then a message is displayed saying for example "you packed the socks"( I think I can handle this).

b) The object should stay in the case and be displayed there until the interaction moves on(I need this to happen).

c) The user must pack all objects before moving, so I need a way of recognising all objects are packed so that the user can move on..(I need this to happen).

View 3 Replies

Movie Clip Used In One Fla Be Dragged And Dropped Into Another?

Apr 21, 2010

Can i create a custom text animation or something. Ofcourse without involving variables. And can i use this Movie clip in various projects. What am i supposed to do, save it and keep it as a .fla or can the movie clip alone be saved and imported into various projects ?

View 5 Replies

AS3 :: Can't Get The Bitmapdata From Dropped Image In Flex Air

Apr 4, 2011

When I drop an image onto my canvas I can get the nativePath to the image but not the bitmapdata wich is the one I need.

In debug mode when I look into the file properties the data is set to NULL.

In my code file.data doesn't give me anything.

protected function creationCompleteHandler(event:FlexEvent):void
{
this.addEventListener(NativeDragEvent.NATIVE_DRAG_ENTER,onDragIn);

[Code]....

View 1 Replies

ActionScript 2.0 :: Getting MC To Play Once Dropped Correctly?

Jun 7, 2011

I have made a drag and drop quiz, which can allow one drag_mc to be dropped to one of three target_mc's. I would like it that when the drag_mc hits any one of the target_mc's that it goes to and plays the drag_mc's frame 2.

Here is my code so far

stop();
//Import tween classes
import mx.transitions.Tween;
import mx.transitions.easing.*;

[Code]....

View 3 Replies

ActionScript 3.0 :: Loading Larger Image When Dropped?

May 27, 2010

I am working on this image scroller, where thumbnails of images are displayed.  I get each image by

function urlLoaded(event:Event):void {
urlLoader.removeEventListener(Event.COMPLETE,urlLoaded);
xml=XML(event.target.data);

[Code]....

So is there anyway I could use any of the above code to load the big image associated with the small image?  If event.target points to the current thumbnail being picked up, could i do something like event.target.url to point to its name or something?

View 3 Replies

Professional :: Mp3 Dropped On Stage Breaks Buttons?

Feb 14, 2011

I have this slideshow type of thing I'm putting together with next and back buttons. Everything works fine until I add audio to the timeline and then all my nav buttons flake out. I don't want to load these files externally or from the library because they are voiceover narration with all my animation synced up with what is being said.

View 4 Replies

Professional :: Created, Than Dropped On The Background Image?

Sep 19, 2011

I am wanting to allow icons/small images dragged and drop on the background photo. Is this possible? If so, can you point me in the direction to look?

I want to create my own little icons/images and allow someone on the web to drag and drop an image I created, than dropped on the background image.

View 3 Replies

Flex :: Dropped Image Be Rotated In Canvas?

May 25, 2011

this is the code for 3d rotation [code]i want to rotate the image after dropping them in the canvas.i am able to rotate them in the panel.

View 1 Replies

Flex :: Saving Canvas And Dropped Image

Jun 10, 2011

I have an image loaded from an url and added to canvas as child. Then I am drag and dropping another image on it which also uses the senocular transform so the image can be transformed on the canvas. I have coded in such way that the transform handles shows up only after it's dropped on canvas. The image shows up correctly. But I am trying to save the result image (that is the main image and the dropped image on top of it), I only end up with the main image that was loaded earlier. The dropped image doesn't show up.

Below is the code for handleDrop() that is fired on dragDrop event and prepares the final image.

[Code].....

View 1 Replies

ActionScript 2.0 :: Drag And Drop Position After Dropped?

Jan 28, 2009

Just trying to add a little more functionality to this code for a drag and drop interaction. Suppose I have multiple objects to drag and some will have the same target. Right now (with this code), the draggable object gets positioned in the center of it's target so my draggalbe movieclips will overlap eachother once they're dropped on the correct target.

What I'd like to do is prevent this overlapping and have the movieclips slightly offset on the y axis so they cascade a bit. Could do this by writing out alot of code for the individual movieclips but i'd like to condense it a bit.

Code:
function dragSetup(clip, targ) {
clip.onPress = function() {
startDrag(this);

[Code].....

View 1 Replies

ActionScript 3.0 :: Get Rid Of The Dragged Object That Isn't Dropped When The Time Is Over?

Jan 21, 2010

I'm using AS3. I have a timeline with 12 labeled frames (page 1...page12). On frames 1 to 10, I have 3 objects that users can drag and drop onto matching places. There is a timer (60 seconds) and a counter. Users should match 15 objects correctly. If so, they go to frame 12 (congratulations!). If not, they go to frame 11 (Sorry, try again), which returns them to frame 1 (page 1).

ISSUE When users drag an object (mouseDown) and don't release it when time is over, the dragged object remains on the screen. When users go to frame 11 and game starts over, the object remains throughout the entire game.

How can I get rid of the dragged object that isn't dropped when the time is over?

ActionScript Code:
//
// TIMER
var time1:int=60;
var myTimer1:Timer = new Timer(1000, time1);

[code]....

View 1 Replies

ActionScript 3.0 :: MovieClip Continues To Be Dragged And Not Dropped?

May 11, 2010

ActionScript Code:
public function Inventory(arrayOfItems:Array, stageRef, invSprite)
{

[code]......

View 1 Replies

ActionScript 3.0 :: Dropped MovieClip Doesn't Take Parent's Dimensions

Jun 29, 2010

I'm working on a map project with several movie clips that are dragged and dropped onto their respective movie clips.

PROBLEM: Initially, draggable movie clips are reduced their original size. When they are dropped onto their matching movie clip, I would like them to take the dimensions of the movies placed on the map. How to do that?

HERE IS MY CODE
stop();
var startX:Number;var startY:Number;var finalX:Number;var finalY:Number;
var finalWidth:Number;var finalHeight:Number;

[Code]....

View 5 Replies

Flex :: Bitmapdata From Multiple Images (drag & Dropped)

May 29, 2011

I have an image loaded from BitmapData displayed in an Image control. This Image control has dragEnabled and user can drag and drop small images (from a bunch of images in a TileList) on top of it.

The image loaded from the Bitmapdata can be different every time with different resolution and the Image control scales it down to fit its fixed with/height. But while saving the image after editing I am saving it with its original width/height. For this purpose I am storing the original Bitmapdata in a temp object and applying any edits there before saving.

how to create an image combining the Large image and the small images dropped into it. May be I can use display object snapshot but then I want to save the image with its original with/height and preferably after converting it to Bitmapdata.

View 2 Replies

Actionscript 3 :: Find The Index Of A Dropped Item In Flex?

Jul 14, 2011

How can I find the index of a item dropped into a list in flex using a spark list?

View 2 Replies

ActionScript 2.0 :: Copy Dragged-n-dropped Objects' Names Together

Nov 21, 2010

I'd like to create an ability to drag-n-drop ~10 max. objects onto target and to get a list or a line of names 'associated' with them, separated by commas or smth. Then, to be able to copy that list into clipboard.

View 9 Replies

ActionScript 2.0 :: Flash 8 - Print: Effects Dropped From TextFields?

Feb 24, 2006

I have a movie with a formatted TextField on it. When I print it using the printJob function (or the print(), printNum(), printBitMapNum() functions), most of the effects are not printed.For example: I have a textfield that is Arial Bold font, color of red, underlined, with a black DropShadow. The field looks great on my screen, but when I print it, the DropShadow is gone, the underline is very faint. I am alternately printing directly to Adobe and to an HP printer. The results are the same in either case.

View 3 Replies

ActionScript 2.0 :: Animated Net To Play When The Basketball Is Dragged & Dropped Into The Net?

Feb 25, 2009

I am using the AS from this tutorial on a bouncing ball that you can drag & drop http:[url]....I have added a basketball net mc that is stopped on frame1 that is a frame by frame animation of the net expanding. I am trying to figure out how to realistically cause the animated net to play when the basketball is dragged & dropped into the net.

Code:
on(press) {
this._freefall = false;
this._momentumY = 0;[code].....

View 5 Replies

ActionScript 3.0 :: Play A Movie When Something Was Dragged And Dropped In The Right Place?

Aug 14, 2011

I am working on an interactive banner and I came to a problem I can't resolve. It's a kind of drag and drop little game. I need to play a movie clip after something is dropped in the right place. I think I need to add Event Listener to a movieclip and create a function with a conditional, but I'm getting it wrong.

View 2 Replies

ActionScript 2.0 :: F5 - "If The Variable Is Correct AND If It Is Dropped On The Target (g_target) THEN Play The Movie?

Nov 7, 2002

I have an if like this:

on (release) {
stopDrag ();
if (_root.go_blue._droptarget == "/g_target")[code]...

This works. I need to add "if (test = "one")", another drop sets this variable and the drop above should test for it. But I can't get the basics right! I'm a programmer who is new to Actionscript. What I want is:

"If the variable is correct AND if it is dropped on the target (g_target) THEN play the movie, ELSE go back to _x=130, _y=300."

The variable is being assigned correctly, I tested it with a Dynamic text box. The movie isn't running with my code!

View 1 Replies

ActionScript 3.0 :: Making A Drag And Drop Jukebox That Will Play An Xml Playlist When An Icon Is Dropped Onto It's Target?

Mar 8, 2011

i am making a drag and drop jukebox that will play an xml playlist when an icon is dropped onto it's target.i have one xml playlist working, but i need to make a button that will reset all the movie clips to their original position when a playlist has been played.

View 3 Replies

Flash :: Drag And Drop Application Where Mc Is Dragged Out Of One Parent Mc And Dropped Into Another Parent Mc?

Nov 13, 2010

Simple drag and drop application where mc is dragged out of one parent mc and dropped into another parent mc.All works OK until I added 2 text boxes to the mc's -- one is a non-selectable dynamic text box (a label) which is set by the code, the other is selectable input text that the user can amend.

Finger cursor disappears when user hovers over the section of the mc that contains the text fields (even non-selectable text??) When the user trys to drag the mc by inadvertantly click-dragging anywhere within both text areas it causes this error: TypeError: Error #1034: Type Coercion failed: cannot convert flash.text::TextField@2374a381 to flash.display. MovieClip (same error appears for both text boxes)

The input text box may confuse the user - how do they sometimes click to drag and sometimes click to amend? I need to create an overlay area within the mc that is click-detected for the drag? Here's the relevant bits of code:

var itemArray:Array = [
{iname:"police",ititle:"POLICE OFFICER"},
{iname:"insurance_assessor",ititle:"INSURANCE ASSESSOR"},[code].............

View 1 Replies

ActionScript 2.0 :: Stop The Object From Dragging When The Object Was Already Dropped To Its Target ?

Dec 27, 2011

how can i stop the object from dragging when the object was already dropped to its target =)

here is my code :

var pointsCtr:Number=0;
s1_mc.onPress = function()
{
s1_mc.startDrag(false);

[Code].....

View 3 Replies

ActionScript 3.0 :: Drop A Movieclip On A Container Which Already Has A Movieclip Dropped On It

Feb 18, 2009

The thing is: I have got 5 movieclips which are able to drag and drop. Next to that I've got 20 containers which are all droptargets. The movieclips are able to be dragged and then dropped on a container. So far so good. But what I want is that when I drop a movieclip on a container which already has a movieclip dropped on it, the first movieclip gets removed and the second movieclip is dropped on the container. Or you could also say.. that the second movieclip replaces the first movieclip. This instead of the fact that a container has multiple movieclips dropped on itself.

[Code]...

View 3 Replies

Set A Textfield As "dropped Capitals"?

Feb 29, 2012

Is it possible (with TLF or any other format) to set a textfield as "dropped capitals": That is, with the very first letter set big and the rest of the text set round it?

View 4 Replies

AS2 :: If Click On One Button, The Others Disappear?

Feb 13, 2010

I got it to work perfectly on another flash file, but I can't get it to work on this one. The concept is the saem but the application is not, so I can't copy and paste. Anyway, this is the problematic code.

Actionscript Code:[code].........

Clicking this button results in a new Machine Gun being created. However, if you click on one, the others disappear.

View 1 Replies

ActionScript 3.0 :: Why SWF Doesn't Disappear

Feb 20, 2010

Ive been having troubles unloading some external SWFs. I know that in order to totally erase an SWF from the display list and memory I must to rip off all its references. But Ive got this SWF on stage, when the code is executed the SWF is gone for good, but in the second case when Ive got it loaded by pressing the load_intro_button the SWF doesnt go, even knowing that the function is exactly the same (Copy/Paste ) as the first one just under different names. Since Ive erased everything from the URLRequest, listeners, timers, and unload the swf, Why the GC doesn't take care of it as it did in the first case?.

Code:

//First Case
var myIntro:Loader = new Loader();
var myIntroRequest:URLRequest = new URLRequest("intro.swf");

[Code]....

View 4 Replies

Getting The Rollover Image To Disappear?

Jun 28, 2009

I've nearly sorted my previous problem, I just need a bit of help with getting the rollover image to disappear again once the mouse has left the rollover area. would anyone be able to take a quick look at the fla?

View 2 Replies







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