ActionScript 2.0 :: Math For Dummies - Make A 3d Carrousel - Classic Stuff
May 15, 2008
I want to make a 3d carrousel, classic stuff. I won't be able to explain what i want so i uploaded 2 pictures. The first picture attached is what you can usually see and the second one is the effect i want...a little bit more 3d. Hope you'll understand what i mean. For now here's the code i use onEnterFrame :
[Code]....
View 5 Replies
Similar Posts:
Apr 11, 2007
how to code where it should move towards (that's easy), and I know somewhat how to use math stuff on flash. But when I tried to implement it on this, it doesn't work. See code:
angleA = Math.atan2(TARGET._y-HERO._y, TARGET._x-HERO._x);
var degrees = angleA/(Math.PI/360);
BULLET._rotation = degrees;
It is correctly placed, don't worry about that.
View 4 Replies
Apr 14, 2006
I have a series of variables created that store the distances between two points. I need to find the shortest distance between the two points so I'm storing the results in an array, then sorting the array to show me the smallest number which is the shortest distance. But the problem I have is that I don't need the number I need the variable in the calculation that relates to that number. Make any sense? So if the equation (herexPos - column3Begin) produces the smallest number I need to be able to reference column3Begin after I've sorted the array.
[Code]...
View 14 Replies
Mar 28, 2010
i want to create a site %100 SWF width so it resizes with the browser and also a Carrousel effect that lets me go back and front in the timeline. But just can't find a way to do it.
Here is an example of the site i want to do: [URL]
As you can see, the models has the Carrousel effect and the Width is %100.
View 3 Replies
Feb 27, 2009
My teacher in Adobe Flash CS3 is so slow with the teaching (and some doesn't understand what the .alpha = 0; does in my class so he has to teach them and they just keep us at thesame level). We has just taught my class "trace". Anyways, my problem is this: I've made a XML file which gets loaded into Flash and it gets my animation and adds the labels to the buttons, so far so good, but I am trying to make these buttons do stuff when clicked, like (website menu) if you press "contact" it will show "contact" and if you press "home" it will go to "home" etc.
As I said I'm a bit of a noob to AS3 (started to go through it in class 2weeks ago, but as I said he teachs very slow we are better off on ourselves) so I'm not that sure off how to do this. before starting to talk what I've tried I'll give out the code (it's done after one tutorial with some modifications). Tutorial is found here: [URL]
[Code]...
View 4 Replies
Apr 28, 2005
I've only used flash for 5 months now. As you expect, i'm a super novice. I've been trying to follow the books, tutorials i fould on web and was able to make some nice animations,buttons and stuff. But i'm not a programmer, i never been one and i just don't think i got the brains for it. I just know a little bit. Like i said, it's only been 5 months so i only know how to change other's script to suit mine, i can't create any complicated from top of my head. My question is...do I HAVE TO be an expert to make websites with Flash? After all, i'm only learning Flash so I can make interactive websites. I'm not looking forward to making games or drawing boards or anything. Just websites. How much knowledge of Actionscript(or XML) would I need to make a flash only website?
View 4 Replies
Jun 29, 2011
So what I'm looking to do now is to actually get that movie clip - in this case an arrow -to rotate around another object - a ship - at a radius of 150 pixels and facing the mouse.This basically means to get the arrow to follow where the mouse goes around the ship - limited by the 150 pixel radius circle it can follow.p.s. This is the code so far:
ActionScript Code:
theArrow.x = theShip.x
theArrow.y = theShip.y
[code].....
View 4 Replies
Mar 16, 2010
I am searching for a how to learn Flash 8 for dummies type of website. I've attempted it many time to no avail.
View 1 Replies
Jul 1, 2010
I'm trying to achieve a fairly simple effect--a dragging a MC with inertia.
Specifically, I'm trying to get this to happen:
1. When you click with the mouse on the MC (not the entire stage), the MC gets dragged along.
2. When you let go of the mouse button, the MC keeps going with inertia (slowly comes to a stop) that depends on the speed with which the MC was dragged and in the same direction. The MC shouldn't change directions if the unpressed mouse is moved around.
3. The dragging is constricted to the X axis.
View 3 Replies
Aug 1, 2009
How would I convert a point in the longitude & latitude to x and y (pixels) on a mercator-projected map, assuming I know the exact dimensions of the map (by longitude/latitude, and pixels)?
*Someone* has had to have created a class that handles such relatively basic and essential (not for me, unfortunately!) math; remapping a point, measuring the distances, etc.
Any tips? I've read some formulas (including the one here: [URL], but I admit that my math is quite poor at this level, and I've got no idea how to convert such a thing to AS, nor if there are other considerations I'm missing.
View 1 Replies
Mar 7, 2011
Here is the problem:
var p:int = 0;
var n:Number = 0;
n = 32.999999999999999;
p = Math.floor(n);
trace(p); // returns 33
n = 32.11111111111111;
p = Math.floor(n);
trace(p); // returns 32
I would expect both of these to return 32. I have searched, and it seems this is an unreported bug in AS3. Or ... am I doing something wrong?
View 4 Replies
Jul 20, 2009
I am making a script so I can have a dynamic menu, this menu loads external buttons at random 8 at a time, and unloads and reloads every 25 seconds.[code]...
View 5 Replies
Mar 25, 2010
I have a 2D game (top down), and I would like to make the character escape from a shot, but not just walk away from the shot (I mean, don't be pushed by the shot), I want it to have a good dodging skills.The variables are:
shotX - shot x position
shotY - shot y position
shotSpeedX - shot x speed[code].....
View 2 Replies
Mar 17, 2011
I wonder how to make a Math.random() function, or something similar where it chooses a number from 0-9. But as the program progresses, another random variable will appear. That random value is what I want removed from the 0-9 scale. (The other random variable is also from 0-9)
View 4 Replies
Sep 26, 2005
Wat is the diffrence between these two?
View 2 Replies
Feb 16, 2009
I have a code in which I have to use Math.round if a certain value is for example 3.67 (67 is higher than 50) and Math.ceil if a value is for example 3.23 (23 is lower than 50). What can I do to make flash calculate if what after the dot �.� in 3.23 (for example) is higher than 50?
View 2 Replies
Aug 4, 2009
i wanna put an image of "vinile disc" at bottom of the carrousel menu and the images of the carrousel must be "cassettes" i been trying n' trying n' trying... but i really don't know how do it ...
View 2 Replies
Nov 2, 2009
I need to familiarize myself with this technology. My problem is that Google is swamp with results for tutorials. Where should I start?
What development environment should I use assuming this is only for learning purposes and I don't want at the moment to buy any expensive software?
View 7 Replies
Jan 16, 2004
So here is a piece of code that I have seen used a lot but don't really quite understand:
myVar = Math.min(Math.max(myVar, this.min), this.max);
or some variation thereof. I understand that the function first finds the maximum value of two values then turns around and uses that to find the minimum between two values.why this is done? And how do you know when to use it?
View 3 Replies
Jan 16, 2004
So here is a piece of code that I have seen used a lot but don't really quite understand:[code]or some variation thereof. I understand that the function first finds the maximum value of two values then turns around and uses that to find the minimum between two values.And how do you know when to use it?
View 3 Replies
Jul 25, 2011
So I just started using Flash CS4 from Flash 8, and I like it so far, but there's on major problem: the "classic tweens" (motion tweens) aren't rotating some of the objects I have. Like there's this flame thrower I drew, and I rotate it at the end of the motion tween, but it doesn't rotate. It will just wait till the last frame and then it will show the rotated frame. Motion works in the motion tweens, but not enlarging or rotating... why? It seems more like a glitch, because sometimes I make a classic tween and it rotates stuff just fine, but sometimes it just doesn't... what am I doing wrong here? What's going on?
View 3 Replies
Feb 22, 2009
I have a character on the stage (_ball_mc) which you control with the arrow keys. I also have a rectangle movieclip on the stage (this). I want this rectangle movieclip to act as a block platform.ie. When the character jumps ontop of it he can walk across it, if he walks into it from the left he cant move left any further, same with the right side.These movieclips are not being created at runtime, they are
on the stage.
My registration point of the character is bottom right,
my registration point of the block is top left
I've used the following ENTERFRAME with not much luck.Stopping the character from moving any further when he walks into the block seems to be ok. I'm having trouble getting him to land on the block without conflicting with the leftDown and rightDown.As this is such a common gaming element, I figure there must be some documentation on this ?
View 1 Replies
Oct 20, 2009
I created a classic tween on the timeline (not with actionscript), which moves a movieclip. If I change any property of that movieclip from actionscript, that layer stops updating, even if I change the value to its initial value. Can I access that tween on the timeline from actionscript?
View 3 Replies
Jun 21, 2010
What is the difference between them and under what conditions is it better to use TLF text?
View 2 Replies
Jul 26, 2010
I got Flash CS5 a few days ago and tried to compile some of my applications - got strange textfield representation, parts of words were missing. Very simple example to demonstrate something's not working right here:
-C-reate a textfield (classic; static) type "Test". Choose Arial Regular as Font.
-Create an input textfield (classic), choose Arial Bold as Font, embed the font with all glyphs (or subgroup).
-Compile it: Try to type into the input textfield - no cursor (for me at least), nothing shows up.
If you embed the Arial Regular also (which should not be necessary for a static text), the input field does respond but shows Arial Regular instead of Bold.So it seems you cannot use two weights of the same font in one Flash movie?Using TLF it works fine - but I can't switch over yet, some of my customers do still use Player 9.
View 32 Replies
Aug 21, 2009
Is there a way to upload an image using flex inbuild .browse() and classic asp? So in flex the user picks the image they want to upload, press a button to start sending it. A asp handler then gets the file, uploads it to a folder and then writes the filename in a database. Writing of the filename in the database is no problem.
View 1 Replies
Dec 3, 2009
I'm working on an AS3 project and thought I'd save myself some scripting by using classic tweens in the timeline to transition between filters on movie clips. They look fine when testing, but when I save the project, close, then re-open later, the tweens are gone.
Is this a known bug in CS4, or is there something I'm missing about classic tweens in AS3?
View 1 Replies
Jun 9, 2010
Is it possible in Flash CS5 to import text from a PSD as Classic Text. Since TLF Text doesn't support older postscript fonts, I'd like to be able to import as classic text instead of doing a find and replace and hope for the best.
View 1 Replies
Aug 25, 2010
I have created 4 classic text objects and called them Butt1 thru Butt4.This is so I can change the text in code from time to time.I want to create an event listener to pick up when the user;
a) mouses over Butt1, etc.
b) mouses out of Butt1, etc.
c) clicks on Butt1, etc.
In each case I will define a function to perform actions when the button is moused over, moused out or clicked.AddEventListener(MouseEvent.CLICK, clickHandler); does not seem to have parameters(as far as I can tell)to point to Butt1, etc.
View 7 Replies
Oct 29, 2011
Is there any way to set the the TLF or the classic text box registration point by some actionscript code or by any other way?
View 4 Replies