ActionScript 3.0 :: Rotate A Sphere With The Mouse On The X And Y Axis?

Nov 6, 2009

I am trying to rotate a sphere with the mouse on the x and y axis but the sphere keeps 'roll'ing and flipping it all around.

package {
import flash.display.Sprite;
import flash.events.Event;
import flash.events.MouseEvent;

[code]....

View 1 Replies


Similar Posts:


ActionScript 2.0 :: Rotate On Axis With Mouse Easing?

Apr 20, 2006

I have a mc that I want to continously rotate, I want it to rotate in whatever direction the mouse is from the center of the mc. If the user pulls the mouse out I would like for it to speed up and slow down accordingly.If this is not possible, I wouldnt cry. Any way when the user goes over a desiginated area I would like for the motion to stop until they pull away again.How would I go about doing this.I've seen this thread but don't understand where to attach the script, and I also need the stopping script

View 1 Replies

Actionscript 3 :: Rotate Movieclip On Different Axis On Mouse Position?

Mar 27, 2011

I am looking for direction to this old UFC effect - [URL] that appears on the main page. It is movieclips rotating on different axis based on the mouse position. So far I have found this script:

stage.addEventListener(MouseEvent.MOUSE_MOVE,EnterFrame);
function EnterFrame(e:Event)
{
mc.rotation = (180*Math.atan2(mouseY-mc.y,mouseX-mc.x))/Math.PI + 90;
}

But this only rotates on x and y. What's a way to approach this effect?

View 1 Replies

ActionScript 3.0 :: Make Objects Rotate On An Axis Adjacent To The Mouse?

Oct 2, 2009

I have proper code to make objects rotate on an axis adjacent to the mouse. I also have proper code on how to make objects elastically bounce towards a specific x,y coordinate.

So far the code I have is for the object to follow the mouse when clicked. when the mouse is up, the objects (on a rotational axis) wind back to original position.

What I would like to do, is combine the formulas for rotation with the elastic formulas to bounce these objects back into place with rotational movement.

[Code]...

View 7 Replies

ActionScript 2.0 :: Rendering Sphere With Points Every 30 Degrees On Each Axis

Feb 28, 2011

I have been programming flash for a while, but I suppose I never really learned flash "correctly", and I have my shortcuts and I cut corners sometimes. I'm now trying to render a sphere.

Code:
circleraduis = 500;
camerax = 275;
cameray = 200;
for (degrees = 0; degrees < 180; degrees += 30) {
xradius = Math.cos (degrees) * (Math.PI / 180) * circleraduis;
yvalue = Math.sin (degrees) * (Math.PI / 180) * circleraduis;
[Code] .....

View 6 Replies

ActionScript 2.0 :: Rotate Around Its Own Axis?

Apr 3, 2006

make some kind of Compass and I want to know how I could make the needle spin around its own axis with one of the ends following the mouse pointer. how could I do that?

View 4 Replies

Rotate Object Around Center Axis?

Oct 4, 2010

I'm using CS3 with ActionScript 3.0. What I want is simple, and I've done some searching but nothing that can get me the right results.I'm going to post a link that does exactly what I want: http:[url]......This rotates the circular object around a center point in a way that you can distort the object yet is still remains turning in a circular motion. A simple motion tween rotating the image will only work if the object is perfectly round, so distorting the object to make it more straight or curved won't work with a simple tween. I want to do exactly what is happening here (with my own object), is there some AS3 behind the scenes here making this turn on a center point?

View 3 Replies

Professional :: Rotate In 3D By 360 Degree Both On X And Y Axis

Feb 8, 2011

I've got a 3D model at hand, which I have imported as a movie and an image sequence of each frame depending on which is necessary. I basically would want to rotate it by 360 degree both on the x and y axis on a canvas as well as having that done manually, such as having to drag my mouse to control which direction the model rotates in. Can I do this in Flash?

View 5 Replies

Flash :: Rotate Animation In Z Axis?

Jan 13, 2011

THere are 3d carousels in Web Sites for displaying image galleries which require that images are rotated in the z axis. My requirement is to do the same but for a complete flash animation so that the flash animation is displayed slightly tilted in the z-axis

The kind of tilt I am talking about is similar to the tilted images in [url]...

My requirement is to play a flash animation inside the image of a mobile phone which is tilted hence to fit the animation inside the screen of the mobile phone image, the animation also needs to be tilted

View 2 Replies

ActionScript 3.0 :: Unable To Rotate Around Y Axis With A Z Set?

Oct 9, 2009

In the following, the slider sets the rotation angle of a simple Sprite around the Y axis. But the Sprite has a z coordinate set to 200, meaning the sprite is 200px behind the Stage plane. As you rotate it, it seems to rotate around it's own Y axis, not he Stage's y axis 200px in front of it.I would have expected the rectangle at 90 degrees rotation to be edge-on and 200px off to one side of it's original center.

Code:
import fl.controls.Slider;
import fl.events.SliderEvent;
var slider = new Slider();[code].........

View 0 Replies

Actionscript 3.0 :: Text Rotate On The 3d X Axis?

Jan 7, 2009

I am trying to have a button and text rotate on the 3d X axis. Only when the mouse hovers over the actual button.I also want it to rotate on the center right now it is rotating from the top, I think I picked top left registration, and I'm not sure how to change that if that is the cause.Here is what I have do far:

home_mc.addEventListener(MouseEvent.MOUSE_OVER, rotate3d);
function rotate3d(evt:MouseEvent):void {
home_mc.rotationX += 10
}

I'm not too good with for loops yet and I am guessing that is what I need to mimic the rotation.

View 7 Replies

ActionScript 2.0 :: 3d - Rotate On The Z Axis Of The Cube

Mar 24, 2006

i've been working with Senocular's tutorial for 3D scripting : [URL] //great work, by the way I made a drag function for it .. My question is how to change the code to actualy rotate on the z axis of the cube... In his tutorial the cube rotates around the z axis of the stage no matter how other axis are rotated. I think the part of the code that needs to be changed in order to simulate a more realistic rotation on z axis is :

[Code]....

View 6 Replies

ActionScript 2.0 :: Rotate A Rectangle Around Its Own Axis?

Oct 3, 2008

Here s the link what I m trying to achieve

[URL]

View 8 Replies

Cube Rotate On Its Y Axis Using The Tween Class?

Jun 15, 2009

Is it possible at all to have a cube rotate on its Y axis using the Tween class? transitionManager only seems to  allow rotation around the z axis.. Is Papervision 3D the only way to achieve this? It seems awfully difficult for a newbie such as myself.

View 1 Replies

Professional :: Rotate A Object Around Center Axis?

Oct 4, 2010

I'm using CS3 with ActionScript 3.0.  What I want is simple, and I've done some searching but nothing that can get me the right results.  I'm going to post a link that does exactly what I want:This rotates the circular object around a center point in a way that you can distort the object yet is still remains turning in a circular motion  A simple motion tween rotating the image will only work if the object is perfectly round, so distorting the object to make it more straight or curved won't work with a simple tween.  I want to do exactly what is happening here (with my own object), is there some AS3 behind the scenes here making this turn on a center point??

View 5 Replies

Actionscript :: Rotate Rectangle Around An Axis In Flex

Feb 3, 2012

I was trying to rotate a group(rectangle) on the bottom right coordinates using flex..

See the image

how to achieve this rotation ?

View 2 Replies

ActionScript 3.0 :: 3D Flip - Rotate Two Images On The Y Axis?

Aug 10, 2009

I want to rotate two images on the y axis. For instance I got two cards, front and back. On EnterFrame I want the rotating movieclip to exchange the front and back cards. I believe I got everything setup I just need help with getting the images to rotate once at that 90 degree angle (you know the angle where we can't see any side of the image/thing rotating?

Thus I'm trying to do something like this but on ENTERFRAME instead of a button click:

[code]...

View 1 Replies

ActionScript 3.0 :: Rotate Object Around Center Axis?

Oct 4, 2010

using CS3 with ActionScript 3.0. What I want is simple, and I've done some searching but nothing that can get me the right results. I'm going to post a link that does exactly what I want:This rotates the circular object around a center point in a way that you can distort the object yet is still remains turning in a circular motion. A simple motion tween rotating the image will only work if the object is perfectly round, so distorting the object to make it more straight or curved won't work with a simple tween. I want to do exactly what is happening here (with my own object), is there some AS3 behind the scenes here making this turn on a center point?

View 3 Replies

ActionScript 3.0 :: 3D Cube Rotate Only In X Axis 90 Degrees

Aug 22, 2011

I'm trying to make a 3d cube rotate only in the x-axis 90 degrees when you press a button and 90 degrees the other way when you hit another. I have this code to get the 3D:

Code:
// formation of 3D Cube2 starts here
container.getChildAt(0).rotationY = 90;
container.getChildAt(0).x = -75; // move the on of side panel to 75px right;
container.getChildAt(1).rotationY = -90;
container.getChildAt(1).x = 75; // move the on of side panel to 75px left;
[Code] .....

And the cube rotate to one side or to another. But it rotate only a little each time I clicked some of the buttons and I want that the cube rotate 90 degrees with an animated movement. How can I get this?

View 5 Replies

Actionscript 3 :: Rotate An Image Along The Y-axis With Flash Builder 4.6?

Jan 5, 2012

I am trying to rotate a image using rotationY but it always rotates based off of the left side of the image is there a way to change the rotation point to be the center of the image? Is seems like you should be able to use the transformAround() method but I am having problems finding a example of the transformAround that has to do with images. Does anyone have any examples of how do this or am a going about this the wrong way? What i am trying to do is build a slide show that rotates around and you tap on the images to enlarge.

View 1 Replies

ActionScript 3.0 :: Use A Movie Clip Such As A Rim From A Car And Rotate It On Its X Axis Centered?

Jan 22, 2010

I would like to use a movie clip such as a rim from a car and rotate it on its x axis centered and then move it along the screen according to how much of the screen has loaded.here is what I have so far sorry it may be a little messy:

stop();
//rotate the rim
rim_mc.addEventListener(Event.ENTER_FRAME, rotateRim);

[code]....

NOTES: the function rotateRim works correctly rotating the rim the var xpos provides me with the correct position i would like my X position to be and traces it out perfect upon test if trace is coded for it.

View 1 Replies

Professional :: Rotate A Symbol On The X Axis Multiple Times For An Animation

Jun 6, 2011

I am trying to rotate a symbol on the x axis mulitple times for an animation I am doing. The problem is everytime I try to do a complete rotation, the symbol rotates fine until I hit 180 degrees, but once I go past that mark, the symbol just starts rotating backwards. Is there a certain way I have to do this in order to get a complete rotation in one direction?

View 1 Replies

ActionScript 3.0 :: Rotate On Y Axis A Bitmap To Have Mirror Reflection Of The Image ?

Mar 30, 2011

The idea is I have 3x3 containers(Sprites) - each one holds 2 tiles of 2 two images (shown one and unvisible - laying behind) . So there are 9containers and 18 tiles. When I click on the image I get rotation of the containers, and when every container is about 90 degrees, its childs swap each oher. So in result I get second image shown. But unfortunely then, shown image is rotated by 180 degrees, that means its left side is on the right. Pre rotating containers ( of tiles gives total mess, as middle tiles seem to be right, but left side of the image and right doesnt match to rest.So I need to rotate tiles, which are bitmapData - parts of Bitmap. But I can not rotate them - there is no property .rotationY for bitmapData, and I can not use matrix's rotate() method as it traits only angle rotation and not axis rotation.If I rotate by Y axis the bitmap before slicing it to tiles nothing happens, so I guess draw method relies on default Bitmap.

So Q : How can I rotate on Y axis a bitmap to have mirror reflection of the image and then apply it reflected to the as a .bitmapData property and slice it to small pieces.

View 0 Replies

ActionScript 2.0 :: Make A Dynamically Drawn Ellipse Rotate Around Its Axis?

Feb 23, 2005

I want to make a dynamically (using Drawing API) drawn ellipse rotate around its axis. It involves a lot of trigonometry which I'm not very good in .

View 7 Replies

ActionScript 2.0 :: Make A Dynamically (using Drawing API) Drawn Ellipse Rotate Around Its Axis

Feb 23, 2005

I want to make a dynamically (using Drawing API) drawn ellipse rotate around its axis. It involves a lot of trigonometry which I'm not very good in .

View 7 Replies

ActionScript 2.0 :: Random Movement - Make A MC Rotate On It's Axis (registration Point)

Jul 13, 2003

I'm trying to make a MC rotate on it's axis (registration point)...I want it to rotate both clockwise and counter-clockwise at random speeds and random degrees of rotation. For example...CW fast 90 degrees...then CCW slower for 150 degrees...then CW really fast for 270 degrees...etc..etc..

View 9 Replies

IDE :: CS4: 3D Rotation Tool - Rotate A Movie Clip Along The X-axis On The Default Stage Size?

Mar 5, 2009

When I try to rotate a movie clip along the x-axis on the default stage size (I'm using a basic rectangle right now), the rotation appears just as I expect it to. It "rolls over" with the perspective even on both sides of the rectangle.

When I try to duplicate this in a movie with different dimensions (320x480) and apply the 3D Rotation Tool, the rectangle skews to the left for some reason. (See attached .fla files)

I've tried changing the registration points on the movie clips, I've tried making new files with the "Adjust 3D Perspective Angle to preserve current stage projection" box checked both on and off, and I've tried repositioning the actual Rotation Tool, but I can't figure out what's wrong. Could it have something to do with the stage resizing?!

View 4 Replies

ActionScript 2.0 :: [FMX] Following Mouse Only On Y Axis?

Nov 29, 2002

I want the menu to follow the mouse, but only up and down. I just can't figure out the code.so far is a simple start drag, in and onClipEvent handler... i can't figure what to use..._y, or _ymouse. and where do i put it?

View 13 Replies

Oject Follow Mouse On X Axis

Jan 20, 2009

I'm trying to create a navigation bar similar to that of [url]....I have tried to code a rectangle box to follow the mouse, but with no luck.

View 1 Replies

ActionScript 2.0 :: Mouse Ease On Axis?

Sep 29, 2005

I looked at the 'mouse follow with easing' tutorial. http:[url]....how to restrict it to one axis and set boundaries. I only want it to move along the x-axis.

Code:

onClipEvent (load) {
_x = 0;
_y = 0;
speed = 5;
}

View 7 Replies







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