Need help with SWF page transitions please :)

I am having an issue recreating something I have seen on
other flash sites... (For example on 2Advanced.com) It is hard to
explain but I will do my best. I am advanced in design, layout,
tweening, and am a beginner to intermediate action scripter. So
even if your solution is a point in the right direction to some
code I could pick up and noodle around with that would be great.
That having been said, on to the issue, it's a 2 parter:
Part 1:
I have a Master FLA (or SWF) containing navigation that loads
secondary SWF pages into movie clip containers for the 5 additional
pages of the site. These load above the Master movie clip masking
it (Navigation floats above) so the loaded pages are sandwiched in
between.
View page in it's current state here:
http://sky.prohosting.com/tk421808/rwip/gallery_MAIN.html
This works ok right now, but I have the SWFs replacing one
another in one single movie clip container. What I would like to do
is similar to shuffling 5 cards... if you want the 4th card down
you pull it out, it goes to the top and slides over the last
visible card on top. So I would like the first page clicked to
slide in covering the master MC, the second page clicked, to slide
in covering that one, and so on and so forth. This would be easy if
the pages were linear, then I could just stack the movie clips, but
since the user will click out of order I need a way to load one
into MC_2 (on top), Then when another is clicked have the MC_2 SWF
move down a level (Swap MC?) to allow the second to slide in above,
and then delete the movie that has moved down into level one
(Bottom) then have this repeat when another movie is clicked. This
way it will look like the page you clicked is always sliding in
over the one you are leaving.
Part 2:
I have no idea how to do this next part but... I believe it
involves a gotoAndPlay. I would like to have animation in the movie
that is unloading after the button for the next page to load is
clicked... in other words, you have loaded a page, you click on
another link, and before the new external SWF page loads, the
current performs a gotoAndPlay where I have animated some
de-constructing swipes that remove the text, shapes holding the
text, and the image. ONLY THEN does it start to load the movie for
the link it selected. I think what I am trying to ask here is how
does it carry the link through the unloading animation until it's
done and then execute the loading of the new external SWF of the
link they just clicked?
I pray this makes sense... If not I would be happy to explain
further. :) Thanks in advance for any help!

>> I have no idea how to do this next part but... I
believe it involves a
gotoAndPlay. I would like to have animation in the movie that
is unloading
after the button for the next page to load is clicked... in
other words,
you
have loaded a page, you click on another link, and before the
new external
SWF
page loads, the current performs a gotoAndPlay where I have
animated some
deconstructing swipes that remove the text, shapes holding
the text and them
the image, and ONLY THEN does it start to load the movie for
the link it
selected. I think what I am trying to ask here is how does it
carry the
link
through the animation until it's done and then execute the
loading of the
external SWF of the link they just clicked?
<<
You don't use frames. I'd probably use Fuse for this - which
is a sequencing
engine. (www.mosessupposes.com) You can call a function when
the sequence is
done animating - using what's known as a callBack function.
That'd be the
best way, IMO.
For part one, you could either place mutliple empty movie
clips, or just
create them using createEmptyMovieClip - which is a MovieClip
method, and
then load your swfs into them with MovieClipLoader. You can
use swapDepths
for layer control, in order to have any given clip move above
another, layer
wise.
Dave -
Head Developer
http://www.blurredistinction.com
Adobe Community Expert
http://www.adobe.com/communities/experts/

Similar Messages

  • Need help with flash player installation please !!!!

    Hello,
    I need help with my flash player installation because every time I access a movie this is the message I receive. 
    This content on Xfinity TV is not available for viewing with Chrome's "Incognito" mode. To play this video using Chrome, please view this page without "Incognito" mode.
    Still having problems? Try resetting your Flash player license.

    Incognito mode is a Google Chrome setting when you open a new window (Cmd+Shift+N on a Mac Ctrl+Shift+N on Windows) It opens a "private" window with no cookies and no tracking. The problem with it is that when you disable cookies, your license files are not sent to the site (whetehr it's YouTube or xFinity or any other that uses license files for paid content)  and it treats you as if you're a first time visitor. Paid videos won't play wihtout the cookies sending the license file info.
    This isn't a Flash Player setting. It's in Chrome. I did some research and according to Google, "Incignito" mode is off by default, and can ONLY be activate by the keyboard shortcut. There IS a way to disable it from the registry http://dev.chromium.org/administrators/policy-list-3#IncognitoModeAvailability

  • Need help with threads?.. please check my approach!!

    Hello frnds,
    I am trying to write a program.. who monitors my external tool.. please check my way of doing it.. as whenever i write programs having thread.. i end up goosy.. :(
    first let me tell.. what I want from program.. I have to start an external tool.. on separate thread.. (as it takes some time).. then it takes some arguments(3 arguments).. from file.. so i read the file.. and have to run tool.. continously.. until there are arguments left.. in file.. or.. user has stopped it by pressing STOP button..
    I have to put a marker in file too.. so that.. if program started again.. file is read from marker postion.. !!
    Hope I make clear.. what am trying to do!!
    My approach is like..
    1. Have two buttons.. START and STOP on Frame..
    START--> pressed
    2. check marker("$" sign.. placed in beginning of file during start).. on file..
         read File from marker.. got 3 arg.. pass it to tool.. and run it.. (on separate thread).. put marker.. (for next reading)
         Step 2.. continously..
    3. STOP--> pressed
         until last thread.. stops.. keep running the tool.. and when last thread stops.. stop reading any more arguments..
    Question is:
    1. Should i read file again and again.. ?.. or read it once after "$" sign.. store data in array.. and once stopped pressed.. read file again.. and put marker ("$" sign) at last read line..
    2. how should i know when my thread has stopped.. so I start tool again??.. am totally confused.. !!
    please modify my approach.. if u find anything odd..
    Thanks a lot in advance
    gervini

    Hello,
    I have no experience with threads or with having more than run "program" in a single java file. All my java files have the same structure. This master.java looks something like this:
    ---master.java---------------------------------------------------
    import java.sql.*;
    import...
    public class Master {
    public static void main(String args []) throws SQLException, IOException {
    //create connection pool here
    while (true) { // start loop here (each loop takes about five minutes)
    // set values of variables
    // select a slave process to run (from a list of slave programs)
    execute selected slave program
    // check for loop exit value
    } // end while loop
    System.out.println("Program Complete");
    } catch (Exception e) {
    System.out.println("Error: " + e);
    } finally {
    if (rSet1 != null)
    try { rSet1.close(); } catch( SQLException ignore ) { /* ignored */ }
    connection.close();
    -------end master.java--------------------------------------------------------
    This master.java program will run continuously for days or weeks, each time through the loop starting another slave process which runs for five minutes to up to an hour, which means there may be ten to twenty of these slave processes running simultaneously.
    I believe threads is the best way to do this, but I don't know where to locate these slave programs: either inside the master.java program or separate slave.java files? I will need help with either method.
    Your help is greatly appreciated. Thank you.
    Logan

  • I need help with printing labels.  please

    I need help with printing labels.  thanks in advance

    Welcome to Apple Support Communities.
    In Address Book, first select a name or group of names to print.
    Then File, Print, select Style, Mailing Labels, then Layout to select a specific target label (such as an Avery number), or define your own...

  • Please I need help with swf folders.

    Hi everybody,
    I install adobe flash and when i surf on the internet it is
    working. But I have a lot of swf flash folders stored in my disk c.
    When I go to open them It appears like adobe flash is not install
    in my disk to be able to open these files. I only can open this
    files with firefox or microsoft explorer. Adobe flash is only
    installed in my system and as i told you i am able to see all the
    flash folders which i find on the internet when I enter to any
    website with flash adobe folders. I installed and unistalled adobe
    flash several times. But this is not resolved.
    Please I need help.
    Many thanks

    Click here and follow the instructions to change the iTunes Store country.
    (82303)

  • Need help with swf auto slider...

    Hi,
    I downloaded a flash auto slider from one site. But I don't
    know how tu use it. It has a lot of AS external files. I imagine,
    that it should read data from an xml file, and there is AS file,
    which calls xml, but I need help, to create that xml, or to show
    how to use that auto slider...
    This slider is simillar like this one in observer.com main
    site (with 4 thumbnails).
    Here is all files need in slider.
    Click here for
    download.
    Thanks for any help...

    you have in the same directory the .swf, html page, flv., and
    the actual video?

  • I need help with DW, PHP & MySQL please.

    Hello, I am new to website development and am trying to set up a form for collecting data on my website and have a question that I can’t find an answer to anywhere else. I was wandering if someone there would be kind enough to help?  I am using Dreamweaver in CS4 and my host already has PHP & MySQL installed on the server that I can use.  My question is: Do I need to download XAMP or WAMP on my computer before trying to connect my form to the server?  Also, do I need to change the page I am putting the form on to .PHP extension or can I just embed the PHP form into an existing HTML page?
    Most of the training tutorials I’ve read don’t start at the most basic beginning but rather expect people to already have a basic knowledge of the topics they are trying to learn.  If anyone knows the best place to get answers to the most basic questions like this one or a beginners guide to working with DW, PHP & MySQL I will gladly go there rather than waste your time on questions you’ve probably already answered a bezillion times.
    Thank you for the help.

    Strictly speaking, you don't need XAMPP or WAMP on your local computer. But if you're serious about getting involved with PHP/MySQL, you should definitely set up a local testing environment with one or the other. It's safer and more efficient. Don't expose all your errors on a live server. You can find instructions on  how to set up a testing environment here: http://www.adobe.com/devnet/dreamweaver/articles/setting_up_php.html.
    To develop with PHP, you should always use a .php file name extension. Any other choice is very rare.
    There's a tutorial on building your first dynamic website with DW here: http://www.adobe.com/devnet/dreamweaver/articles/first_dynamic_site_pt1.html.
    For more in-depth help, you might want to consider grabbing hold of a copy of "The Essential Guide to Dreamweaver CS4 with CSS, Ajax, and PHP". (Yes, I wrote it, so it's a bit of shameless self-promotion, but you'll find it answers many of your questions - and probably a lot you hadn't even thought of.)

  • Need Help with new site glitches PLEASE!!!

    I need help trouble shooting a website. The site is
    www.farrowandwatkins.com. Nav buttons on Mac they display correctly
    which is aligned at top and bottom of content to left on Home page.
    However, when viewed on PC, the buttons spread to fill the
    distance of the "Patients" Page. All the pages spread to this
    length also, but are not suppose to.
    Nav buttons have padding of 10 on bottom, except last one.
    Please help if you can

    First guess would be that there doesn't seem to be a fixed
    height or width on the cell for the 'patients' button.

  • I need help with the https class please.

    Hello, i need add an authentication field in my GET request using HTTPS to authenticate users. I put the authentication field using the setRequestProperty method, but it doesn't appear when i print all properties using the getRequestProperties method. I wrote the following code:
    try{
    URL url = new URL ("https://my_url..");
    URLConnection conexion;
    conexion = url.openConnection();
    conexion.setRequestProperty("Authorization",my_urlEncoder_string);
    conexion.setRequestProperty("Host",my_loginServer);
    HttpsURLConnection httpsConexion = (HttpsURLConnection) conexion;
    httpsConexion.setRequestMethod("GET");
    System.out.println("All properties\r\n: " + httpsConexion.getRequestProperties());
    }catch ....
    when i run the program it show the following text:
    All properties: {Host=[my_loginServer]}
    Only the Host field is added to my HttpsURLConnection. The authentication field doesnt appear in standar output. How can i add to my HttpsURLConnection an Authentication field?
    thanks

    I have moved this to the main Dreamweaver forum, as the other forum is intended to deal with the Getting Started video tutorial.
    The best way to get help with layout problems is to upload the files to a website and post the URL in the forum. Someone can then look at the code, and identify the problem. Judging from your description, it sounds as though the Document window is narrow, which would result in the final menu tab dropping down to the next row. Try turning on Live view or previewing the page in a browser. Design view gives only an approximate idea of the final layout. Live view renders the page as it should look in a browser.

  • Need Help with Migration...Please

    Hello,
    I need help!  I just bought a new MacBook Pro.  In house, I have a two year old iMac running Mavericks (all updated) and an iPhone and iPad (both running the most current OS).  I also have the iMac connected to a Time Capsule.  Here are my questions:
    1.  As I am not replacing the iMac, but rather adding a MacBook Pro to the mix, should I migrate the software, settings, files, etc. from the iMac to the MacBook?  Is there an issue running computers which are clones in the same environment?  Is it a bad idea to migrate?
    2.  Assuming # 1 is okay to migrate, what is the best way?  Is it best directly from the iMac or from the Time Capsule?  I do have a Thunderbolt to Ethernet adapter on hand. 
    3.  Is there a link that would help me navigate the migration?
    4.  How long should the migration in #2 take?
    5.  Will I need to change any settings on the iMac, iPhone, or iPad afterwards?
    6.  Will my contacts and calendar sync with iCloud automatically, or do I have to change a setting on the MacBook to make that happen?
    7.  Also, as I'm leaving town tomorrow and want to take the MacBook Pro with me and I'm unsure I've the time to Migrate and tweak, can I jus turn on the MacBook (still not turned on), use it as it is, and then migrate when I get back home?
    Any help would greatly be appreciated.  Thank you!

    Hello,
    I need help!  I just bought a new MacBook Pro.  In house, I have a two year old iMac running Mavericks (all updated) and an iPhone and iPad (both running the most current OS).  I also have the iMac connected to a Time Capsule.  Here are my questions:
    1.  As I am not replacing the iMac, but rather adding a MacBook Pro to the mix, should I migrate the software, settings, files, etc. from the iMac to the MacBook?  Is there an issue running computers which are clones in the same environment?  Is it a bad idea to migrate?
    2.  Assuming # 1 is okay to migrate, what is the best way?  Is it best directly from the iMac or from the Time Capsule?  I do have a Thunderbolt to Ethernet adapter on hand. 
    3.  Is there a link that would help me navigate the migration?
    4.  How long should the migration in #2 take?
    5.  Will I need to change any settings on the iMac, iPhone, or iPad afterwards?
    6.  Will my contacts and calendar sync with iCloud automatically, or do I have to change a setting on the MacBook to make that happen?
    7.  Also, as I'm leaving town tomorrow and want to take the MacBook Pro with me and I'm unsure I've the time to Migrate and tweak, can I jus turn on the MacBook (still not turned on), use it as it is, and then migrate when I get back home?
    Any help would greatly be appreciated.  Thank you!

  • I need help with the navigation menu please?

    I have been working my way through your six part printed instructions and I am styling the header and navigation menu.  The bullet points disappeared which was correct and the tabs moved to the right, as they should, but one tab sits underneath another tab and all tabs are covered up by my main heading.  This is dreamweaver CS6.
    It looks a bit of a mess!

    I have moved this to the main Dreamweaver forum, as the other forum is intended to deal with the Getting Started video tutorial.
    The best way to get help with layout problems is to upload the files to a website and post the URL in the forum. Someone can then look at the code, and identify the problem. Judging from your description, it sounds as though the Document window is narrow, which would result in the final menu tab dropping down to the next row. Try turning on Live view or previewing the page in a browser. Design view gives only an approximate idea of the final layout. Live view renders the page as it should look in a browser.

  • I need help with my wifi sync, please?

    I am trying to sync a single band from my laptop to my iPhone. This is my new laptop and I have no transfered all my music from my old computer onto here, so I can not sync through the cable or else I will have to remove all my exsisting information on my phone, I do not have all my music on my laptop yet. All I want is to simply transfer a few songs from my iTunes to my phone wirelessly and I can't. I enabled the button when I plug in my phone that tells me I can sync wirelessly but when I disconnect it refuses to work. Please I need help.

    Dear friend, by the moment Blackberry playbook is just for USA/Canada users, in a very short time RIM will announce the release of the product for the rest of countries.
    Be patient when you can use it at 100%, you will be amazed!

  • I just bought my MacBook Pro 13" and I tried to install an anti virus but then it went into a grey folder with a question mark I need help with restoring the iOS please

    I need help taking out the grey folder with the question mark and I've try everything except the CD thing because my MacBook didn't come with one so I really need help please

    What anti-virus software did you install? Although there's a lot of bad anti-virus software out there, no anti-virus software should cause such a problem. A gray screen with a flashing question mark on a folder means that no bootable system could be found, which means that the system was badly damaged or corrupt. Even installing bad software would not normally cause that, so either there was something badly wrong with the system already or the anti-virus software you tried to install was really, really bad!
    As mende1 says, you need to reinstall the system at this point. After your system is back up and running, read my Mac Malware Guide. If, after reading that, you want anti-virus software, use one of the programms recommended in that guide.

  • I need help with website can you please

    Need help
    Message was edited by: Liam Dilley - Phone number in here is a bad idea

    Hi,
    I removed your phone number as you will just get cold called
    BC support does not call you for help and people here can help you here. Just saying "need help" is not much use though, we need to know what kind of help you need.

  • Need help with swf

    Help I am new, and this is my first big job. The basics: all
    the files uploaded to the website, and they are in the same folder:
    the html file which is the web page, the swf file, the flv file and
    all of the necessary players. I created the video file with
    Macomedia Flash 8 Video Encoder. I have 2 animations on the same
    page, my swf and the video.
    When I PREVIEW the page locally on my computer using either
    the dreamweaver preview or previewing in a browser, the swf and the
    video play fine. However, when I go to the site on the web, the
    video does not play. One of my swf files works fine the other file
    the flv does not work at all. There is a space where the flv should
    be, however the video does not play.
    I am new to this stuff please help. What am I doing wrong?
    Here is the address to the page:
    http://www.ad-e-learning.com/test2.html
    Text
    I've also attached the code:

    you have in the same directory the .swf, html page, flv., and
    the actual video?

Maybe you are looking for

  • FBL1N Report

    Hi one of our user executed FBL1N report with open items an parked options, when i am clining on teh documetn for display of documetns in the FBL1N report, user is getting an error message that "you are not authorised to use transaction FV63" I need

  • No difference between using a local variable and a notifier in timed parallel loops?

    The example code "Pass Data With Notifiers.vi" that came with LV 7.1 illustrates using notifiers with parallel loops.  Just looking at two of the loops, the one that generates the sine wave and the one for "User 1", you can change the timing of the t

  • Set the value to ' * ' to grant administrative privileges to all users.

    Everytime I run autoconfig, this set up is done automatically in workflow adminsitrator. A * comes in the Workflow Configuration --> Workflow System Administrator How to change this in xml file so that * doesn't come up and only sysadmin is given thi

  • How to disable a particular list item in flash cs3

    Friends, I need a small help on list component in flash cs3. assume that i have 5 items in my list and i want to disable 3,4,5 items from mylist box. how to do this ?? item 1 -- enabled state item 2 -- enabled state item 3 -- disabled state item 4 --

  • Info package issue in Production system?

    Hi experts, I would like to know about the scenerio of info packages in production system. 1) When the objects are transported to production system, Do we use the same info packages in the prod system,which are used to schedule the load in developmen