ActionScript 3.0 :: Autoscrolling Text In Different Directions

Apr 24, 2009

I've a got bar (songBar) on which it will appear the artist and the song name (artist_txt). What I want is when the title_txt width is larger than the songBar.width, the text to scroll from right to left, and when the tween is finished to scroll from left to right (all this tween has to be a loop). If the width of artist_txt is smaller or equal to the songBar.width then artist_txt is aligned in the center of the songBar. All I'm trying to code it's just what you see in winamp player.

Code:
var textTween:Tween;
if (mp3player.artist_txt.width > mp3player.songBar.width){
textTween = new Tween(mp3player.artist_txt, "x", Linear.easeNone, mp3player.songBar.x, mp3player.songBar.width - mp3player.artist_txt.width, 1, true);
} else {
mp3player.artist_txt.x =(mp3player.songBar.width + mp3player.songBar.x)/2

I don't know how to reverse the tween when it ends, how to create the loop and how to stop the tween if the else statement comes into play. i don't want to create the animation on timeline, all I want is code.

View 2 Replies


Similar Posts:


ActionScript 3.0 :: Autoscrolling Text - Reverse The Tween When It Ends

Apr 24, 2009

so i'm now working on a mp3 player, and i got stucked with something. so here's my problem: i've a got bar (songBar) on which it will appear the artist and the song name(artist_txt). what i want is when de title_txt width is larger than the songBar.width, the text to scroll from right to left, and when the tween is finished to scroll from left to right(all this tween has to be a loop). if the width of artist_txt is smaller or equal to the songBar.width then artist_txt is aligned in the center of the songBar. all i'm trying to code it's just what you see in winamp player.

[Code]....

View 1 Replies

Flash - How To Get AutoScrolling Slow Down

Jun 9, 2011

I found this, but got no idea how to slow it down:
var myTextLoader:URLLoader = new URLLoader();
myTextLoader.addEventListener (Event.COMPLETE,onLoaded);
function onLoaded (e:Event):void {
tekstbx.text = e.target.data;
tekstbx.addEventListener (Event.ENTER_FRAME,efh);

View 2 Replies

ActionScript 2.0 :: Making An Autoscrolling Bar Which Contains Thumbs

Sep 7, 2009

n somebody point me to a tutorial in AS2 for making an autoscrolling bar which contains thumbs. It should scroll very fluidly on mouseposition. I have no idea how to create this.

View 2 Replies

ActionScript 3.0 :: Directions Of Movieclip?

Jan 28, 2012

I have a movieclip that moves arround on my stage. I'm looking for a way to tell what direction my movieclip is going in AS3. (up, down, left, right

View 1 Replies

ActionScript 3.0 :: Shooting In Different Directions?

Sep 16, 2010

I have been googling my butt off I can not find anything about AS3 and shooting in different directions.

I just need to shoot in the direction my char is facing.

I have this so far which work flawlessly ;-)

function Shoot(event:MouseEvent):void { trace("shoot");}

oh also I can get the direction my hero is facing using trace "character_mc.rotation"

View 3 Replies

ActionScript 3.0 :: Move Link In 4 Directions

Jun 4, 2009

I'm trying to clone The Legend of Zelda (NES) Link's movement.

This what I have:

PHP Code:

stop();var leftKeyDown:Boolean = false;var upKeyDown:Boolean = false;var rightKeyDown:Boolean = false;var downKeyDown: Boolean = false;var linkSpeed:Number= 7;// Link MovementLink.addEventListener(Event.ENTER_FRAME, moveLink);function

[Code].....

View 13 Replies

Image Working As A Scrollable Map (all 4 Directions)?

Dec 31, 2011

Ok, so I got this huge image of a map. I put a Mask over it so it will fit on a small screen. But....I want users to be able to view the whole map but click on arrow buttons that will transfer them in all 4 directions. I know I can do this with keyframes, showing different parts of them map each stage....But isn't there a simplier way? Some sort of actionscript code that will tell flash to scroll how many pixels left or right or up or down? And that it will know that the image will stop here so don't scroll more than that?

View 4 Replies

ActionScript 3.0 :: Adding Get Directions Functionality To A Google Map

Mar 18, 2010

I wish to extend upon a basic Google Map. What need to do is make a submit field where people can enter in their postcode and it directs to a preset destination by defining a route upon the map. My test map is here if you wish to view it: [URL]
 
The Google Map that I have so far has been created by following an excellent tutorial by tunevision: [URL]
 
Here is the code that I have used including most of the comments:

[Code]....

View 3 Replies

Flash :: Google Maps Api Directions Failure 400?

Sep 10, 2011

I created a map with the Google Map API For Flash that shows directions. It creates a line between the 2 addresses and gives turnbyturn directions.

This is working perfectly in Flash test mode locally but once i put it online The map still works but the directions dont show and i get the Failure status 400.

Does anywone know whats the problem here? I'ts driving me crazy just because its working locally but not online.

DirectionsEvent.DIRECTIONS_FAILURE.feature.status = 400

View 2 Replies

ActionScript 3.0 :: Rotating Circle In Both Directions Using Buttons

Oct 20, 2010

What I have is a circle image (for this purpose lets say it looks like a clock). For example: when you click 3 o'clock, the whole clock needs to rotate around with the 3 o'clock btn at the 6 o'clock position (with the pivot point in the centre). each of the 'time' positions (2 o'clock, 3 o'clock, 4 o'clock ...etc) needs to be a button and thus be able to rotate around to the 6 o'clock position. This would seem simple enough by just using a .rotate value or using tween movieclips...however the tricky part is:

The actionscript needs to determine which way the clock turns (anti/clockwise), dependant on where the clicked time-btn's position is. it needs to be some sort of if statement that says: If (3'oclock-btn) is positioned between 0 degrees (being original 12'oclock position) and 180 degrees (original 6 o'clock position), then rotate clockwise to the 6 o'clock position. If the (3o'clock btn) is positioned between 180degrees and 259 degrees (12 o'clock position), rotate anti-clockwise to the 6'oclock position.

View 3 Replies

ActionScript 2.0 :: Kirupa Mc Create Duplicates In Both Directions X And -x

Aug 11, 2005

[Code]....

I changed the code a bit because I would like it to work like this...If I put my mc (photo) in the center of the stage, it would creat dups every 125 pixels. But this script only makes one duplicate, I must have done something to mess it up. Idealy I would like to have the mc create dups in both directions; x and -x.

View 6 Replies

ActionScript 2.0 :: Get The Chainsaw To Only Flip Directions When Dragging It

Aug 26, 2006

ive been making real simple ads for my friend for about two months now slowly getting more and more detailed but this one i tried alot of new stuff and am getting a lot of new problems. ive searched for the answers and found close stuff but havent been able to adapt it to what i need. Problems:

1. im not sure how to get the chainsaw to only flip directions when i am draging it.(i tried what i could think of but my bag of tricks is small)

2. i found the code to spawn the zombies with random numbers of each and speed but im not sure how to get them on a repeating path after their there.

3. i need a way for the hittest to register once then stop to allow me to play to death animation and get a count of how many have been killed to trigger the clicktag.(i dont have an animation for that so the currently turn black to show their out.)

4.i dont know how to do the hittest on the spawned zombies and they are also ontop of the saw. im sure there are more problems i havent found yet but these are the ones i could think of right now. also i may be adding alot of info you dont need but im trying to be thorough.

[Code]...

View 2 Replies

ActionScript 3.0 :: Moving A Sprite In Both Directions Of X-axis?

Jul 27, 2009

am trying to make a game whre i want the sprite to move from positive x-axis to negetive x-axis for 30 seconds and after dat it has to down along y-axis one step.

View 1 Replies

Flex :: State Transition Doesn't Resize In Both Directions?

Apr 5, 2011

I already had another question on this issue which was successfully resolved. But now, with a slightly different example, I'm stuck again.I have two states. When I switch from A to B, it resizes correctly, but when I switch from B back to A it happens without the smooth resize transition. What am I doing wrong?Here's my code:

<fx:Script>
<![CDATA[
protected function rollOverHandler(event:MouseEvent):void[code].............

View 1 Replies

ActionScript 2.0 :: Flash5.5 Character Flip Over When Changing Directions?

Dec 24, 2011

am a day 2 flash user and I have been trying to make a game, but for starters i want to make my character be able to move using arrow keys that includes showing the legs movement instead of a fixed image drifting across.There is one problem, when I press RIGHT arrow key , it goes fine, but when I press LEFT arrow key (rever direction) my character flips from point A to point B instead of facing left, i have been thinking maybe it's the frame problem, is it possible to tell flash to play the REVERSE moveclip

View 14 Replies

Actionscript 3 - Easy Rotation In 3D With Mouse In Flash RotationXYZ In 2 Directions?

Jan 5, 2011

I have a Cube which I want to rotate using mouse motion. So if I move my mouse to the left it rotates as if rotationX was increased. When I move right rotationX is increased. Moving Up and Down alters rotationY.

This looks fine as long as you modify only one dimension (either rotationX or rotationY). But if I have already changed rotationX and then try to modify rotationY the results are weird. If rotationX is 180 rotationY effects are reversed. It basically is quite unpredictable and certainly not suitable for user.

I have tried to look around (failed), read about quaternions (couldn't understand), tried some out of blue and very complex trigonometric calculations (made a fool out of myself) and so I am stuck now. I've found this SO question Best way to translate mouse drag motion into 3d rotation of an object but it doesn't help me a bit, I can't understand any of the answers, really.

View 1 Replies

ActionScript 2.0 :: Trigonometry - Line To Continue After The Points In Both Directions And With The Same Steep

Sep 27, 2005

Is there someone who is good at trigonometry? I have two points punkt1 and punkt2 and a line that is drawn between them. Both points is dragable. I want the line to continue after the points in both directions and with the same steep. I have counted the steep between point1 and point2 and tried to continue to drag to a point with the same steep, but it doesnt succed.

[Code]....

View 3 Replies

ActionScript 2.0 :: Making A Sprite Move In Directions From A List In An Array?

Jan 26, 2007

I wanted a sprite to move round on the screen when a play button was pushed. I have a left and a right button which store strings "left" or "right" into the next positions of an empty array called history.

When i push the play button i want i want the sprite to move either left or right according to what commands are in the array. My code just seems to play one single command and then stops when i hit play again it just repeats the same command.

Is there any way to make it play through all commands in the array one after another?

Here's the loop that i was trying to use.

[Code]....

View 3 Replies

ActionScript 2.0 :: Make Enemies Enter The Stage From Random Directions?

Apr 30, 2008

I'm making a game and need to know how to make enemies enter the stage from random directions, and then move around the screen randomly aswell.

View 1 Replies

Actionscript :: Using Googles Directions To Retrieve A LatLng To Add Markers - It's Only Returning One Marker?

Dec 5, 2011

I have made multiple markers via javascript, but trying to do the same in actionscript is proving to be quite challenging.I am using googles directions to retrieve a LatLng to add markers, but it's only returning one marker. Either the first or the second.Within my init function are the markers address array and call to return LatLng from directions. Basically placing the start and end as the same to place the marker.

markers = ['11030 Hartsook st, North Hollywood, CA','15713 Ventura blvd, Encino, CA'];
for (var i:Number = 0; i < markers.length; ++i) {
from.text=markers[i];[code]......

View 1 Replies

ActionScript 2.0 :: Function - Movie Move In Random Directions Instead Of The Glass Shard?

Apr 2, 2005

I am making a game that involves a function that makes a bottle randomly explode in all directions. The function is on the main frame of my game and is linked to several movie clips inside the bottle. When the conditions are right, the movie clips should call the function and then fly out in random directions. The problem is, when i put the code directly onto the movie clips it works fine, but when i attempt to use it as a function is makes the entire movie move in random directions instead of the glass shard. My only guess as to why this happens is because this '_this.' command somehow applies to my main frame because that is where the function originates.

View 4 Replies

ActionScript 2.0 :: Make An Object Flip (change Directions, Vertically Or Horizontally)?

Aug 25, 2003

Is there a possible way to make an object flip (change directions, vertically or horizontally) using actionscript?

View 4 Replies

ActionScript 2.0 :: Blod To Be In A Big Cluster In The Middle And Then Decrease In Size And Alpha As It Spreads Out In All Directions

Jan 11, 2004

how to actionscript blood for a game. I want the blod to be in a big cluster in the middle and then decrease in size and alpha as it spreads out in all directions.

View 12 Replies

ActionScript 2.0 :: Main Page And Directions Pages Work Fine, Others Get Stuck When The % Reaches Close To 100%?

Mar 30, 2003

I am a rookie with this, I copied and pasted from a tutorial. the main page and directions pages work fine, but for some reason the others get stuck when the % reaches close to 100%.

View 2 Replies

ActionScript 3.0 :: Moving Vehicle On The Stage, Which Should Change Directions According To Where Click On The Stage?

Oct 24, 2010

I have a moving vehicle on the stage, which should change directions according to where I click on the stage.I already made it work using this formula:var angle:Number = Math.atan2(dy,dx)*180/Math.PI+90;However, I need the car to tween to the correct angle, instead of just "jumping" to it. While this is easy enough to do, the car sometimes takes the longer turn (especially when I click in the bottom-left quarter of the stage), and it seems unnatural.

View 0 Replies

ActionScript 2.0 :: Making Mc Array "explode" In All Different Directions When Click On One Mc?

Aug 2, 2010

I have a rollover and rollout effect in my for loop that affects all of the mcs in my array. But when I click on one of the mcs I want all of them to "explode" in all different directions. Obviously I would accomplish this by setting it up in my tween so that they all go in random directions. But I'm not exactly sure how to do it in my for loop. The way I have my onRelease function set up right now only makes the very last mc tween. How do I make my tween affect all of my mcs?

My code:

Code:
import com.greensock.TweenMax;
import com.greensock.easing.*;
var linkageID_array:Array = new Array();

[code]...

View 1 Replies

IDE :: Text Panel Properties Doesn't Allow To Underline Text Or To Highlight And Edit A Single Word In A Whole Text Box - Missing?

Oct 1, 2009

I used to have a little text panel (that sat with the color, swatches, and align panels) that I was able to open up and edit text size, color, underline, etc with. It had a much better text editing ability then the properties panel, seeing as the properties panel does not even bother to allow me to underline text or to highlight and edit a single word in a whole text box. Now I don't have it, I can't find the damn thing anywhere, and I want it back. How can I get it?

View 1 Replies

ActionScript 2.0 :: Adding Text Effect To Random Text Loaded From Exteral Text File

Apr 25, 2011

I am still using flash MX. I'm pulling random text from a textfile (array.txt) into movieclip instance textbox.[code]All is good, but now my question is if I can have a text effect as well. For example having the random quotes typed out as they appear.

View 16 Replies

Professional :: TLF Text Direction - Not Displaying The Text Icon Cursor And Don't Allow To Insert Text Inside

Aug 28, 2011

When I create a TLF text area that is editable at runtime (which means that it can get a user input at runtime) I set the text direction to the 'right-to-left' definition in both the 'container and flow' and the 'paragraph' sections and set the language for Arabic or Hebrew at the 'locale' setting. I also set the text alignment to the 'align to start' mode. Now at runtime there's a stange thing. When I try to click with the mouse cursor on the editable TLF text-box, it's not displaying the text icon cursor and don't allow me to insert text inside.

But when I move my mouse cursor over the right side of the editable TLF text box, it change his appearance to the familiar text cursor which indicate that if you click here you will be able to insert text input inside. So my problem is how can I make it that only when I will hover over the TLF text box itself, the mouse cursor will be changed to text cursor icon and when I will hover beside its right side, it will remain at the normal cursor mode.

View 1 Replies







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