ActionScript 3.0 :: Mak 3d Field Of Infinite Stars That Can Be Navigated With Mouse Movement / Accelerometer
Feb 5, 2011
I was hoping someone might have found a tutorial or done one on how to make a 3d field of infinite stars that can be navigated with mouse movement or the accelerometer..
View 0 Replies
Similar Posts:
Nov 17, 2011
I'm moving an HSlider thumb via the accelerometer. The following code works fine. The problem, though, is that as I keep tilting the device, xSpeed continues to increment. This means that when I now tilt it the other way, the thumb doesn't move for a while -- since, depending on how long I was holding tilted in that intial direction, xSpeed has been going up and up.So this works, but with the abovementioned flaw:
private function readAcc(e:AccelerometerEvent):void
{
xSpeed -= e.accelerationX * 4;[code].......
But what I want to do is to stop incrementing xSpeed once the hSlider.value == either the minimum or the maximum. Sounds simple, but when I put in if statements, they prevent the thumb from moving at all:
private function readA(e:AccelerometerEvent):void
{
if(h.minimum < h.value && h.maximum > h.value)[code]........
View 2 Replies
May 11, 2011
How can i detect one "shake" movement with accelerometer?
View 1 Replies
Mar 17, 2009
I'm trying to develop an infinite menu (horizontal scroller) for a Portfolio. It works but not properly the way it should. After few loops the images get out of sync I don't know why. And if possible can you also help to add some easing to the movement? What I did was, I add to instances of the menu one called menu and another called menu1. Than add the following code to the timeline: import flash.events.Event;
[Code]....
View 2 Replies
Jan 21, 2008
I guys i am trying to make Movie clip movement to infinite loop to x axis.It should move like left to right on loop, without any jurk.i used this code. this is working fine to move left, but i am not getting how should i make it move on looop.
Code:
this.onEnterFrame = function() {
if (this.masked._x>-100) {
this.masked._x += -10;[code].............
View 6 Replies
Mar 12, 2009
I'm using the code below for an infinite looping menu but this menu code makes it move on its own. I want the looping/movement to be activated by the user literally dragging up and down. Does anyone know how I can alter this code so it responds to the user dragging up and down.
[Code]...
View 2 Replies
Feb 12, 2003
I have a mc (fStrip) which looks like a piece of filmstrip with thumbnail images in it. I want this mc to move when the users mouse is positioned over it, but I only want it to move only along it's x-axis and in a direction opposite that of the mouse. And I want it to move or flow smoothly.
I've been trying to figure this out (see my lame attempt below) but without much luck.
onClipEvent (mouseMove) {
buffer=20 //movement buffer
mousePos=_root.fStrip._xmouse //store mouse position
if (mymouse!=_root.fStrip._xmouse){ //if the mouse has moved
[Code].....
View 3 Replies
Aug 15, 2011
i am create AS3 infinite scroll bar. i want to put mouseover hyperlink to every picture.
View 2 Replies
Jul 1, 2011
I've been building an "infinite menu" using script from a tutorial that I found and modified. The original script allows users to scroll through a series of pictures (contained in a movieclip) by moving their cursor either to the left or the right of the center of the menu- the farther from the center, the faster the menu scrolls.I added functions that cause the menu to stop scrolling when the cursor leaves the animation. However, I want the menu to decelerate smoothly, starting from whatever rate it was moving at when the mouse out event occurred and finishing at a stand still, and this is where I'm having some Serious Issues.
I've managed to make it work correctly for the first time the mouse out event occurs, but whenever I mouse on and then mouse out again the images move at (apparently) random speeds and directions. At this point I don't even have a guess at what could be causing this, much less how to fix itI realize my code is probably not as clean or streamlined as it could be- I'm still pretty new to this whole AS thing. I hope it's clear enough for you all to understand easily enough.
ActionScript Code:
var xcenter:Number=425;
var speed:Number=.03;
[code]......
View 4 Replies
Sep 28, 2006
So, i have an infinte menu (actionscript (AS2) posted bellow)When the mouse moves out of the movieclip over or under, it stops. However if i drag the mouse to the right or left of it, it just keeps on speeding up.
onClipEvent (load) {
var xcenter = 280, speed = .01, decel = .90, accel = 0;
}
[code].....
View 4 Replies
Nov 1, 2008
I'm trying for two days to make a animation and it needs AS but I'm not good at all with it. I'm a graphist ( french, sorry for the grammatical mistakes in the post ) and I just don't get I want to make an infinite panoramic controlled by mouse cursor position ( left et right ), with active zone in it.
I've made my image for that, and tried several code but nothing work.
View 3 Replies
Feb 8, 2007
I made the tutorial for the Infinite menu. The menu in reality goes from the left edge to the right edge of the stage, but I have masqued it so that it only appears on the left side of the stage where I want it to be. I also changed the anchorpoint of the animation, so that the anchor is on the midpoint of the left half of the stage, instead of the midpoint of the whole stage. Everything works, but when you drag the mouse over the right side of the stage where the menu is hidden, the scrolling increases in speed.
Is there a way of telling the mouse pointer action to stop when the mouse reaches a certain part of the stage, instead of at the actual edge of the stage?
View 2 Replies
Apr 12, 2010
Im looking for a quick solution (if its out there) using the autohide feature using the FLV Playback Component.
Current situation: Using ActionScript 2. The FLV component fills the stage. Autohide is set to true.
It looks to me that since the video fills the stage, the skin will not hide. What I would like to do is have the skin fade out if the mouse doesnt move for a certain period of time.
View 1 Replies
Nov 12, 2002
onClipEvent (load)
{
xcenter=377;
speed=1/10;[code].....
i did the tutorial but something is wrong cuz when i created my own little sliding thingy and i put my mouse so it slides left or right on the right side it cuts off a bit when going infinite.I think its something to do with the positioning of my menu because its not on x=0 its on x=120.8 and i was trying to work out how to fix it but i'm stuck...and when i move the menu to x=0 it works nicely.
View 15 Replies
Apr 1, 2011
I'm looking to create an infinate menu BUT navigating my menu from left to right using drag rather than the position of the mouse. If there's any links or tutorials around Pleeeeese let me know.
[Code]....
View 4 Replies
Mar 19, 2009
I'm having trouble creating a simple menu that you navigate with keys, rather than just a bunch of buttons you navigate with the mouse. What I want is a nice, easy way to make menus, where you have 1 item selected, and you can navigate around to the others with the keyboard.You need to be able to move up, down, left and right. If you go too far over, it returns you to the other side. know this should be really simple, but I can't seem to be able to create a simple function that will work for this. I have tried a bunch of nonsense, but I figure there's probably an easy way that everyone uses. Unfortunatly, whenever you search "menu" in any flash tutorial site, it brings up a bunch of tutorials on button menus.
View 1 Replies
Apr 24, 2011
I am trying to make a site similar to [URL] or [URL] (i think that with these two examples you get the point) I have already done something concerning the menu (see attachment) but I have no idea what to do to make it like the examples mentioned before..
View 9 Replies
May 5, 2010
I am making a simple application, 4 pages of information with the navigation buttons in a bar along the bottom of all four pages. (easy right!)
My problem is, i won't the information (pics,videos etc) to animate into each page when selected.
I can make them animate in by using the gotoAndPlay () method. BUT when i do this it just loops through all the remaining pages till the end.
gotoAndStop () doesn't play the animations, but the navigation works find.
View 2 Replies
Jul 15, 2009
I'm trying to make a dummy from a circular menu that reacts (rotate) to mouse movement, I uploaded a fla example, different colors, size, etc, but essentially the same in
function; but for now I'm freezed how to do somethings, I'm not a programer or actionscripter, but I want to learn.Currently using CS3 and AS2, downloading the FLA example may help.
Ok, in the "fla", you will see a circle who rotates versus mouse movement (I would like to make a delay rotation for a smooth feelling when mouse is moving, those like "_x += (_xmouse/5)" but with rotation. Other thing I would like to do,is... that the movement stops progressively a few degrees before the mouse reach de cian angles(a1,a2), and then, the circles doesn't move if the mouse is moving under those angles, like a... an inactive area(U1), and if it could work with instances.
View 1 Replies
Dec 28, 2010
Whe I use the code below in a template set up as a movie clip it appears and works fine but when i nvagate away from it the relative alignment code remains for the rest of the pages. Would use a remove child how would this look?
[Code]..
View 5 Replies
Aug 23, 2009
I've gotten code that would circle through this with menu without an array, but I have been looking trying to complete it for the sake of better learning about arrays.
I have 3 buttons and I want to use the up, down, arrow keys to cycle through the buttons. So far I have the code to switch the up state once they are clicked on but I am unsure how to incorporate the navigational aspect into the array and have it cycle through.
Below I have posted my file with actionscript. Here is the actionscript set up right now:
[AS]btn1.gotoAndStop(1);
btn2.gotoAndStop(1);
btn3.gotoAndStop(1);
[Code]....
View 9 Replies
Feb 9, 2009
I have this simple code to animate a MC.[code]Can someone tell me how i will animate this with mouse movements?
View 1 Replies
Feb 3, 2012
I've seen couple of websites [URL]...in these websites the text & the objects move with the mouse moves. I just wanna know how to move the objects with mouse movement or you can say how to make an object follow the mouse (left-right-up-down)
P.S. In the 2nd website there's a 3d character also which I don't have in my project so there's nothing to worry about 3d in flash. I've just couple of images & text
View 2 Replies
Jul 10, 2009
i try to invert the mouse movement. when you move the mouse the the left it will go to the right and viceversa. the same for the Y axe.
View 9 Replies
Jun 4, 2011
i need to record the movement of the mouse. The actual position and recording works, but i need the recorded 'mouse' to trigger all of the MouseEvents for the buttons and other interface elements.Does anyone know a way to store these events? This is the code for recording the mousemovement
Code:
private function recordTut(modes:Number,frame:Number,gumD:Boolean,paintD:Boolean)
{
if(prevModes != modes)[code].........
View 0 Replies
Aug 9, 2011
I'd like to control a mc movement on_x direction (or _y) when the mouse mouves horizontaly (or verticaly). So when I mouve the mouse to the right the mc mouves to the lefht and it mouves to the right when the mouse moves to the lefht. It's for a window effect.
View 8 Replies
Feb 9, 2009
I have this simple code to animate a MC.
addEventListener(Event.ENTER_FRAME, rotate3d);
function rotate3d(e:Event):void{
surfpin_mc.rotationX += 1;
surfpin_mc.rotationY += 1;
}
how i will animate this with mouse movements?
View 1 Replies
Nov 20, 2009
I am looking for a script to detect if the mouse has not moved for say 15 seconds or 30 seconds, and if this is the case then, its plays some movie-clip or follows with the next scene.
View 3 Replies
Apr 7, 2004
I have a white square(mc) on my stage. In the top left corner of that square is a little arrow. I want that arrow to move along the _y axis when the mouse is moving on the square. So I want the square to move along with the mouse. I like the movement to be easing.
View 5 Replies
Oct 6, 2005
I`ve adapted the falling snow 2.0 script from the tutorial, but I can`T get rid of the mouse movement.
Code:
onClipEvent (load) {
//variables
[code].....
View 4 Replies