ActionScript 2.0 :: Scroller - Reset The Position Of The Thumbnails Back To The Beginning

Apr 3, 2008

I've got 3 pages each with their own portfolio loaded dynamically from an XML file. Everything is working great with the thumbnails i added using the "adding thumbnail" tutorial. There's only one quirk I can't figure out. If you've scrolled to the end of the thumbnails on the first portfolio, the scroller stays in the same place when you go to the next portfolio rather than reloading back at the beginning. I hope that makes sense because it's hard to explain, but the site is [URL] here's the partial code for the thumbnails...

[Code]...

View 1 Replies


Similar Posts:


ActionScript 2.0 :: Dynamic Scroller - Reset Scroll Position?

May 29, 2007

I'm using the dynamic scroller found on the kiropa site found here [URL]..In the action script on the ScrollBar, I can't find what variable to change to reset the position of the bar to the top of the scroller when I use the same dynamic text area for other content. It loads just fine, but if the scroller was left at the bottom, it stays there on the new text until you move it a bit, then the text catches up.

I'm hoping to find the variable and reset it when the new text loads.

View 4 Replies

Professional :: Compiled Swfs Jump Back To Beginning

Mar 29, 2010

I compiled two swfs into a single exe using a converter. Both swfs have the same 5 tabs for the 5 sections of my presentation. Swf A has all the stuff for the first 4 tabs, Swf B has the stuff for tab 5. When I start the exe & navigate all around in the first 4 tabs & their sub-sections, everything's fine. I can also click on tab 5 & the Swf B stuff starts playing right away & I can navigate all around in there.

BUT... After I've been clicking on the tab 5 stuff, if I click on any of the 4 tabs from Swf A it kicks me all the way back to the intro animation at the start of Swf A. What I need is to have it go to the first frame for each of those tabbed sections. (e.g. frame 5, 38, 93,...) I did gotoMovie & then gotoAndPlay & the frame number, but it sends me back to frame 1 anyway. How do I get it to go to the frame I want? This is in AS 2, by the way...

View 1 Replies

ActionScript 1/2 :: Pause Button Goes Back To Beginning Of Movie?

Oct 9, 2010

Actionscript 2.0I have a play and stop button in a movie clip. The actual button works great but does not pause the movie and then resume playback where it left off. Instead the movie goes back to the very beginning and stop/starts there. I need the button to resume playback where the movie was stoppedlike a pause and resume button. The videos load exernally through an FLVPlayback component (myVideo).The code is on the main time line in Actions layer.Here's the code for the button:

_root.StopNGo_mc.onRelease = function() {  if (_root.StopNGo_mc._currentFrame == 1) {  _root.StopNGo_mc.gotoAndStop(2);  _root.myVideo.stop();  } else {  _root.StopNGo_mc.gotoAndStop(1);  _root.myVideo.play();  }}

[code]......

View 3 Replies

ActionScript 3.0 :: Click A Button So It Restarts Going Back To The Beginning?

Nov 27, 2009

What code would I need so that once I get to the end of an application, you can click a button so it restarts going back to the beginning?

The button in question is called retryButton

View 6 Replies

ActionScript 3.0 :: Flash At End Of Video, Loop Back To Beginning But Don't Play

Sep 23, 2011

At the end of my SWF video (FLV + XML for closed captions), I want to go back to the beginning of the video, but not replay it...so that when users have finished watching it they have the title page to look at instead of a big black box.

View 1 Replies

ActionScript 2.0 :: Mc - Reloads Back To The Beginning When You Mouse Over The Corner Of The Page?

Mar 7, 2005

I'm working on an ezine, using the pageflip v2.11 from [url].... I can't get it to flip the covers unless they aren't hardcovers. It's killing me. All they do is show the shadow mask flipping, and not the page. I also have trouble with playing an mc, while it is located on the page. It reloads back to the beginning when you mouse over the corner of the page.

View 2 Replies

ActionScript 2.0 :: XML Photo Gallery - Go Back To The Beginning Image & Start All Over Again?

May 18, 2005

I've used kirupa's 'Photo Gallery Using XML and Flash' tutorial & modified to make my gallery, you can view it here: ZedMedia.org by clicking on the photos section in the main page. what i want to do is, instead of reaching the end of all my photos and it stopping, i want it to go back to the beginning image & start all over again. i want the opposite to appen at the start. when the previous_btn is pressed i want it to go to the end of the gallery.

View 3 Replies

IDE :: Adding Thumbnails - Moving The Scroller?

Mar 19, 2009

I am using the Kirupa gallery with thumbnail scroller - which is a FANTASTIC gallery system!

I want to move the scroller but when its moved further right...the scroller stops working. I can move it up and down on the stage, but once it goes a certain distance to the right the thumbnails do not load.

I also shortened the mask to about 160 px so it only shows 3 thumbnails of my pictures.

Here is a link to my FLA file: [URL]

How can I get this to work? Why wont the thumbnails load once the scroller moves a bit further to the right!

View 1 Replies

ActionScript 3.0 :: Once The User Clicks Start Again The Questions And Answers Arrays Start From The Beginning, Sort Of Reset Themselves?

Jun 21, 2009

i am making a quiz. My problem is that once the user completes the quiz and wants to start again the quiz is already on the last question. How do i make it so that once the user clicks start again the questions and answers arrays start from the beginning, sort of reset themselves.

View 1 Replies

ActionScript 3.0 :: Keeping Sound Turned Off When Movie Loops Back To Beginning?

Nov 30, 2010

I'm working on a Flash movie that includes a simple on/off audio player. At the end of the movie it loops back to the beginning and plays again. if the viewer hits the sound off button it will turn the sound off untill the movie loops and then the audio automatically starts again. The viewer would then have to hit play again and then stop to stop it. Is it possible to fix this? I think that I ned to put a piece of code at the beginning of the movie to check if the sound is off or not and then to continue to keep it off if needed?Here is the code for the sound player I am using...

var mySound:Sound = new Sound();
var myChannel:SoundChannel = new SoundChannel();
var lastPosition:Number = 0;
mySound.load(new URLRequest("GlidingOnAir.mp3"));

[code]....

View 2 Replies

ActionScript 3.0 :: Create A Scroller For A Gallery Of Xml Photo Thumbnails?

Nov 19, 2010

Kind of like this but instead of scrolling to mouse move, the user would have to click the arrows. And it would be vertical instead of horizontal: [URL]

View 1 Replies

ActionScript 1/2 :: How To Reset Timer Back To Zero

Aug 26, 2010

how to reset timer back to zero I have a button in the parent timeline of the code below and when I click it I want the behavior of the time will go back to 1 or 0. Button clicked, timer back to 1 or 0.
 
[code]...

View 3 Replies

ActionScript 2.0 :: How To Close Menu Or Reset It Back

Jan 29, 2009

I have a movie clip that sits just of my stage. When clicked the mc slides out based on the _x,_y position. The problem I have is how do I close my menu or reset it back to it;s original position as to appear closed. Heres the code I've placed in the timeline:[code]indicate what code would I use within the 'else statement'. I have this cmmon problem when I want a button to provide a loop type function. I.e toggle sound on and off with one button.I want this menu to be available all the time so it would sit in the _root (index swf file). The rest of the pages are called using loadMovie as external files.

View 1 Replies

IDE :: Can't Reset ScrollBar Position

Mar 8, 2006

ok - i'm totally confused here... this is probably a stupid noob question... just recently got flash 8 - upgrading from mx2004, but had previously been using flash 6 components and AS1, due to files that had already been written in mx... my problem is this - i have a dynamic text field, populated with data from a LoadVars object. When a button is pressed, different data is loaded into the text field, and the scrollBar is supposed to reset to the top (position=0)

[Code]...

View 2 Replies

ActionScript 2.0 :: Can't Get The Sound.position To Reset To 0?

Feb 3, 2009

I am trying to call a sound to play whenever the UP key is down. I want the sound to stop and reset to position zero when UP is released. Everything works except the sound will not reset to 0. Here is what isn't working:

if(Key.isDown(Key.UP)){
if(sound.position == 0){
sound.start(0,0);[code]....

When ran, the program plays the sound once, and will never play it again because I can't get the sound.position to reset to 0.

View 1 Replies

ActionScript 3.0 :: Next And Back Button Not Working With Thumbnails

Jul 14, 2010

I have created a portfolio with both thumbnails and next/back buttons. Both work but not together. When I click on the next/back btn it goes through the images in sequence. If I click on a thumbnail out of order then return to the next/back button it jumps to the 1st and second image. Is there a way to make these work together?

stop();
next_btn.addEventListener(MouseEvent.CLICK, nextimage);
var imageNumber:Number = 1;
function checkNumber():void{ next_btn.visible = true;
back_btn.visible = true; //If the imageNumber is = 12, then do something... if(imageNumber==12){ trace(imageNumber);
[Code] ......

View 2 Replies

ActionScript 2.0 :: Rising Movieclips - Reset Position?

Apr 15, 2004

I have a moviclip duplicating 200 times and rising off the top of the screen. When it moves completely off the stage, and I want it to move back to the bottom of the screen and rise up again. Right now it just keeps going up off the stage and doesn't replace itself.Here is my code on my movieclip:

[code]...

View 1 Replies

ActionScript 2.0 :: Scroll Text Position RESET?

Oct 21, 2005

I know this is a dumb question, but it would've taken me forever to search through all the rest of the posts regarding Scrolling Text boxes. So I have text scrolling in a dynamic text box. Buttons control it's movement, up and down with (scroll --) and (scroll ++). Let's say I read to the bottom of this text, and then load a new file into this same box. When I do this, the new text is scrolled to the bottom. My Question: How do I reset the scrolled position back to the top for each new file that I load??

View 6 Replies

ActionScript 2.0 :: Reset Object To Default Position?

Jun 1, 2010

i wanted to make an object to reset to the default position, like i move it around and when i hit a button he goes to his position for example x: 233 and y:431

View 1 Replies

Professional :: Reset A Frame So Everything Starts Again Instead Of Manually Coding For Everything To Go Back To Normal Positions?

Aug 21, 2011

How can i reset a frame so everything starts again instead of manually coding for everything to go back to normal positions because i have lots of objects and it makes it real hard.

View 1 Replies

ActionScript 3.0 :: Horizontal List Of Thumbnails With Next And Back Buttons?

Sep 16, 2010

Gallery: horizontal list of thumbnails with next and back buttons. After any Thumnail is clicked, the image should open in large size.actually i have done when Thumnail is clicked the size is increase but i suffer in horizontal list of thumbnails .........How to move when i clicked next Button so its Moves Right side and when i clicked in back button its movie left side ..but i dont want mouse move in right side or left side then Its not play till i clicked on next or back button

View 1 Replies

ActionScript 1/2 :: Get The Handle On A Slider To Reset To Its Original Position?

Sep 30, 2010

I'm trying to get the handle on a slider to reset to its original position whenever the frame is changed.

View 2 Replies

ActionScript 3.0 :: Tween X Position Is Reset When Using Width Parameter?

May 12, 2011

I'm trying to make some manual transitions. Because I don't know AS3, and I'm building this from the help of Google, I've started with a simple "blind" transition just to figure out the works.

The issue is that when I expand the width, it seems as though all my AS3 created sprites seem to reset their x position, and sit on the left. That or 15 of the tweens aren't working.

Here's the code:

ActionScript Code:
function vBlinds(){
var tweens:Array=new Array(16);

[code]....

View 3 Replies

ActionScript 2.0 :: Reset The Registration Point To The Clicked Position?

Nov 11, 2003

i'm trying to zoom in on a picture at the specific spot where the mouse is clicked. ie if the mouse is clicked in the lower left corner, the pic gets bigger from there, not the center of the pic. the only way i can think of to do this is to reset the registration point to the clicked position. is this possible? is there another way to go the job done?

View 12 Replies

Flex :: Scaling An Image In A Scroller Resizes The Scroller When Relative Dimension Are Set To The Scroller?

Mar 9, 2010

I would like to position relatively a scroller in my application like below.When I scale the image, I resize the scroller...

<s:Scroller width="50%" height="50%" >
<s:Group>
<mx:Image

[code].....

View 2 Replies

ActionScript 2.0 :: Auto Scroller - MaskMC X Position

Feb 19, 2005

I created a auto scroller which works fine but I would like to change it so that I can reuse it without changing different values each time. The movie consist of a scrollmc and a maskmc (just a rectangle)
So if I write,
right = 150;
150 being the _x position of maskmc
why wouldn't it work if I change it to
right = maskmc._x;

View 7 Replies

ActionScript 2.0 :: Create Dynamic Thumbnails For Forward / Back Scrolling?

May 24, 2010

I'm working on a flash module that basically needs to offer the ability for the user to scroll through a series of thumbnails in a carousel format. I currently have the following code which is creating my thumbails horizontally which is all working fine. [code]...

View 1 Replies

ActionScript 2.0 :: CS3 : Vertical Scroller Controlled By Mouse Position?

Aug 15, 2010

Using this code made by Genesis F5:

Code:
// EXAMPLE CREATED BY GENESIS F5 (www.flashkit.com)
stageheight = Stage.height / 2;
overhangy = ((stageheight * 2) - image._height) / 2;

[code]...

Basically, my problem is that i've got 15 buttons labeled Channel 1 to Channel 15, but when the page first loads up, it skips down showing the very last button at the bottom, rather than the very first button at the top. The top button is off the screen.

View 9 Replies

Control A Spark Datagrid's Scroller Position In Flex?

Aug 22, 2011

I'm using the new Spark Datagrid for a project, but I must confess the scroller is annoying me a little bit, so I would like to have some control over it.

View 1 Replies







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