ActionScript 2.0 :: How To Pick Up Object And Pour Salt

Jul 28, 2011

I have built a small flash file that has the mouse move the salt shaker on a angle, but I don't know how to make salt animate out on the plate

View 0 Replies


Similar Posts:


Actionscript 2.0 :: Grab An Object Like A Salt Shaker And Pour Grains Of Salt On The Plate?

Jul 30, 2011

how to grab an object like a salt shaker and pour grains of salt on the plate? I have built a small flash file that has the mouse move the salt shaker on a angle, but I don't know how to make salt animate out on the plate - I don't know how to create a "scatter" effect and leave the salt particles on the plate.

View 1 Replies

ActionScript 3.0 :: Pick Up Bitmap From Sprite Object?

Dec 13, 2011

I load a picture file by Loader and add Bitmap into sprite,like follows:sprite1.addChild(myBitmap);Now I want to get the myBitmap from sprite1,how can I get myBitmap from sprite1,what code can I use?

View 1 Replies

Java :: Hide The Salt Code In Flash?

Apr 8, 2011

I need to be able to transmit data from a Flash browser application to a PHP file on a web server, both securing and validating the data whilst and at the same time trying to prevent unauthorised creation of the message. (I want to try and ensure that the message comes from the application, not a user sending a message via another means).

In a C++ application I would Salt the data, and send the hash of the data along with it, and then validate the hash against the data to ensure integrity and source.However, in Flash (& Java), applications can be decompiled so that the source code is viewable. So if I used this method, someone could (relatively) easily find the salt, and then create a 'valid' message of their own to send outside of the application.

Is there any way I can 'hide' this salt code to help secure the transmission? Yes, I know there are code obfuscators, but they don't fully hide the code, just add another layer.Or is there another method entirely that could be used to transmit data and validate the source & content at the PHP end?

View 3 Replies

Java :: Get Encrypt And Decrypt String With Defined Salt?

Dec 16, 2009

I want tp encrypt and decrypt string, with defined salt. But the result must be same if the code run in java and adobe flex.The main goal is: the app in adobe flex will be generate a string that can be decrypt in server using java.Try to 'Secret Key' Tab. I want to use AES Encryption, 'CBC' or 'PKCS5'.

var k:String = "1234567890123456";
var kdata:ByteArray = Hex.toArray(k);
var txt:String = "hello";
var data:ByteArray = Hex.toArray(Hex.fromString(txt));;

[code]....

View 2 Replies

ActionScript 2.0 :: [MX] How To Pick Up A Variable

Jan 27, 2003

I have a button in _level15 setting a variable (panel). I have a button loading a jpg,through loadmove, into a target. The variable is the name of that target.If I don't use the variable, here is the code I use:

on (release) {
loadMovie("../dodge/aarp1.jpg", _root._level40.panel1);
}

[code].....

View 8 Replies

IDE :: Loop Does Not Pick Up Movieclips?

Oct 16, 2009

I've got a movieclip(we'll call this "A") on my stage, which attaches another movieclip("B") into itself. So it's nested.Now, once this movieclip("A") has attached the other movieclip("B") into itself,It uses a "gotoAndStop()" to send the frame of movieClip("B") to the right frame, eg. frame 2. Then it runs a loop which checks for all movieclips in "B" and populates an Array.The script I'm using for this is :

Code:
for (var i=0; i<h.numChildren; i++) {// This loop is suppose to populate my "bitArray" Array with all of the attached clip's childclips
if (h.getChildAt(i) is MovieClip) {[code]....

if there were 22 MovieClips on frame 2 in movieClip"B" , this code would still be able to populate my array with all 22 clips right?It doesn't. For some reason, if there were 22 clips, then out of the 22, the loop would only pick up 9. However, doing a trace with numChildren() in movieClip"B", it would still show 22. But my array would only show 9.I've attached a sample fla, I think it would explain my problem a lot better.Once you run it, it should spit out an output telling you how many movieclips in the attached movieclip, and it'll tell you how many clips it pushed onto the array.I can't seem to get the number of movieclips in my array to equal the number of clips in total inside my attached movieclip.

View 4 Replies

ActionScript 3.0 :: How To Pick Random Movieclip

Oct 20, 2010

but I've spent the last few days trying to find an answer to this seemingly simple question, and no luck. Well, partial luck, but not quite what I wanted.My problem is this - I want to play a random sound when an event happens. In AS2, I used to do this:Actionscript Code:s1 = new Sound();_root.s1.attachSound("sound"+(random(10)+1));s1.start();...where there would in this example be 10 sounds in the library, with names from sound1 to sound10.Now, I want to be able to do the same in AS3. As a temp solution, I've been forced to do a lot of if statements, but that's ugly, timeconsuming and inefficient.I also tried this (AS3):

Actionscript Code:
var soundArray:Array = new Array(new sound1(),new sound2(),new sound3(),new sound4(),new sound5()) var randomInteger:int var selectedSound:Sound function

[code].....

View 4 Replies

ActionScript 3.0 :: Pick Random MC Frame?

Aug 29, 2011

How can I pick random frame from movie clip, so that mc doesn't loop. Movie clip is a symbol. I made symbol defined it as mc, mc contains 4 frames, each frame contains some object.

View 11 Replies

ActionScript 2.0 :: Pick A Random Name From The List?

Oct 7, 2010

I have a script that when the use types in their name, it is to pick a random name from the list. Problem is, it isn't picking random exactly I get a lot of repeats and sometimes it just comes up undefined.

Here is the script

if (combobox.getSelectedIndex() == 0)
{
txt2.text = "Female Name";
female.play();

[Code].....

View 0 Replies

ActionScript 3.0 :: Way To Pick Random Sound

Oct 20, 2010

I've spent the last few days trying to find an answer to this seemingly simple question, and no luck. Well, partial luck, but not quite what I wanted.

My problem is this - I want to play a random sound when an event happens. In AS2, I used to do this[code]...

View 5 Replies

ActionScript 3.0 :: Random Pick From XML File

Dec 17, 2010

i got an XML File with a set of variables which should be chosen randomly. Of course, if one data set has been selected, it should not come up again. to solve this, i created an array called blacklist, which keeps track of all the xml indexes which have allready been selected. so, what i'm doing in f_newtarget is randomize a number between 0-42 and check if it on the blacklist. if it is, i trace "double" and want to restart, and if it is not, write the randomized index to the blacklist and move my target to the coordinate given in the XML.

whats not working is when i get a double event. it traces the "double" but does not start to randomize again. i think i know why, cuz the action is only triggered by pushing the button. but in the case taht the randomized number is allready in the array, i want it to automatically re-randomize r until it finds a value which has not part of the array. what do i have to write in order for the code to jump back to where it randomizes the variable r?

or should i write like a whitelist array from which i randomely deduct the indexes? i have a button which holds the code for selecting a new question. it looks like this:

[Code]....

View 7 Replies

ActionScript 2.0 :: Get A Color Pick Component?

Jan 26, 2005

I need a color pick component.....where i can download it?

View 3 Replies

ActionScript 2.0 :: Color Pick Componenet?

Apr 19, 2006

I need a color pick component.....where i can download it?

View 1 Replies

IDE :: Create A Program To Allow To Pick Out Of 3 Movies?

Mar 6, 2010

I've just started learning Flash and i'm looking for some help.I'm trying to create a program to allow you to pick out of 3 movies, select a day and time, how many people will be watching the movie and then show all the information.

I'm looking at having around 7 frames.My problem is that one of my buttons isn't working, I can't understand why as it is the same code (with the correct parts changed) as my other buttons which are working perfectly.

[Code]...

View 3 Replies

ActionScript 2.0 :: Make A Sound When Pick It Up?

Feb 3, 2012

I am making a platformer game, and I have money I pickup. How do I have the money make a sound when I pick it up? I am using flash 8

View 1 Replies

ActionScript 2.0 :: How To Get Flash File To Pick Up Listeners

Dec 14, 2009

I'm trying to make a website where you can navigate by keyboard. I'm having difficulties getting the flash file to pick up the listener when upon first logging in. Here's my website: [URL] If you click on the screen you can then press the right arrow to expand the menu. when you log onto the website I want to make it right off the bat where you press the right arrow key and the menu near the top will expand.

ActionScript Code:
stop();
listen = new Object();
listen.onKeyDown = function() {
switch (Key.getCode()) {
case Key.RIGHT :
gotoAndPlay(2)
break;
}}
Key.addListener(listen)

Again, the only way to get that keylistener to pick up pressed keys is to initially click on the screen. Is there any way to get around that?

View 4 Replies

Actionscript 3 :: Control That Can Pick Both Date And Time?

Sep 25, 2010

Just wanted to aovid reinventing wheels, I want the date and time picker, I know there is already a date only picker inside flash builder.

BTW: i am using flash builder 4

View 1 Replies

Actionscript 3 :: Pick Random Element Of An Array?

Oct 27, 2011

I have an array of movieclips and i want to put them on stage. so they have to be unique and randomly chosen.

View 1 Replies

ActionScript 2.0 :: Get Flash To Pick Up Php Session Info?

Jul 16, 2009

OK, I have a flash file which has a download button. This is in a php page. We have a php session in the header named sourceID= etc....

We tried putting the following url into the flash download button same as the php links on our page - [URL] echo (int)$_GET['sourceID'] ?> but it doesnt pick up the sourceID information.

i.e what to put in the php page and what to use for the getURL link in flash.

View 2 Replies

ActionScript 3.0 :: Pick A Random Number Without Picking It Again?

Sep 27, 2009

Needed to place objects on the stage in random order, but only place each object twice. [code]...

View 0 Replies

ActionScript 3.0 :: Pick Color In Shape At Pixel 0,0?

Feb 10, 2011

is it possible to pick the color of a uni filled shape? If not, is it possible to retrieve the color at pixel x:0 y:0?Otherwise how do I pick that pixelcolor using bitmapdata.

View 2 Replies

ActionScript 3.0 :: Pick Numbers Out Of An Array To A Cardgame?

Mar 9, 2011

My problem is that I'm trying to pick numbers out of an array to a cardgame.

Code:
stop();
//var kort = new Array (0,1,2,3,4,5,6,7,8,9,10);
button_1.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler);

[code]....

View 2 Replies

ActionScript 2.0 :: Pick 1 Element In Array Randomly Once?

Feb 13, 2012

pick 1 element in array randomly ONCE

View 1 Replies

ActionScript 2.0 :: Code To Pick A Random Value Out Of List?

May 24, 2004

I have a list:randomPage(["0", "6", "12", "14", "22", "28"]);

and I was wondering does anyone know the code to pick a random value out of the list. At first I just used a random(28) but I need it to go to a specific page and I dont know what to do!

View 9 Replies

Actionscript 3.0 :: Pick Up A Variable Sent Via Php ... Error 2101

Aug 12, 2008

See this : All I wanna do is pick up a variable sent via php , JUST THAT !!!

[Code]...

View 1 Replies

ActionScript 2.0 :: Randomly Pick From The Three Mcs As The First One Reaches A Certain Point

Dec 29, 2004

i'm using Mx Flash and i am making a game. it is called "falldown". the 'ledges' that you run into as you are falling down need to go up. i have the mc that moves up and all, but there needs to be three of them that move up to keep you from hitting the bottom. i need it to randomly pick from the three mcs as the first one reaches a certain point. in case you don't understand ask questions and i am going to post the .fla when i get on my own comp.

View 2 Replies

ActionScript 3.0 :: Randomly Pick Unique Value From An Array

Jun 27, 2011

Ok what i want to do is to randomly pick 3 values from an array called Objs and add them to a new array called ListObjs. The three values should be unique. This is the code I have so far, but when i try to execute it Flash stops responding.

[Code]....

View 14 Replies

ActionScript 2.0 :: Randomly Pick From The Three Mcs As The First One Reaches A Certain Point?

Dec 29, 2004

i'm using Mx Flash and i am making a game. it is called "falldown". the 'ledges' that you run into as you are falling down need to go up. i have the mc that moves up and all, but there needs to be three of them that move up to keep you from hitting the bottom. i need it to randomly pick from the three mcs as the first one reaches a certain point.

View 2 Replies

ActionScript 3.0 :: Generate Random Numbers To Indicate Characters To Pick?

Oct 27, 2009

What I'm trying to do now is have 6 characters on stage (these characters are stored in an array) and 2 characters from this 6 will hold a number each and the other 4 will hold an alphabet each. What I want to do is to run this file many times and each time the each alphabets and numbers will be randomly displayed within these 6 characters there will always be 2 numbers and 4 alphabets but I shouldn't know which character will be holding an alphabet and which will be holding a number. I have only two functions now one function is to generate two random numbers to indicate which index of characters to pick to hold a number and then another for loop that run 6 times to addChild on stage.

View 4 Replies







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