Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash








Using MC_Tween.as For Page Transitions


Hi people.

I hope someone can give me a few pointers here :)

I have 5 buttons for 5 pages and i have an MC which holds the page cotent called "page". Ive been using the tween class file to make the page move from right to left

EXAMPLE OF SIMILAR EFFECT:
http://www.flashden.net/item/flash-site-template/797

Want i really wanted to do was have the page move in from the right when i press a button, dont move again if the page has been loaded, but if a new button is pressed the pages leaves to the left and the page comes from the right again with the new page content.



Id this possible and if so could anybody give me some pointers?

Ive seen an example here, but it doesnt use the MC_Tween2 class and want to stick with that if i can.



Code:

bar.button1.onRelease = function(){
      
      if (_root.home == "false"){
         
      _root.page.opacity.alphaTo (50, 1, "linear");
      _root.page.opacity.roundedXSlideTo(0, 0.5, "easeOutCubic");
      _root.home = "true";
      
      }else{
      
      stop();
      //_root.page.opacity.alphaTo (0, 1, "linear");
      //_root.page.opacity.roundedXSlideTo(-1500, 0.5, "easeInCubic");
      //_root.home = "false";
      
      }

};




Actionscript 2.0
Posted on: Wed May 09, 2007 4:25 pm


View Complete Forum Thread with Replies

Sponsored Links:

Mc_tween
hi,
can you help me

i have one button (Btn_1) to control movieClip (my_Mc) and my_Mc is dragable so you can move with my_Mc any place on stage and when you Press Btn_1 i want to move with my_Mc + 20 on _X from current position of my_Mc (donīt forget my_Mc is dragable)

i want to use mc_tween

Thank you...

View Replies !    View Related
MC_Tween Class Help
Here is what I have achieved using inefficient timeline animation.

http://www.nirzhar.com/ollie/products_living.swf

I would like to get the sliding effect of the chairs and the table by using the mc_tween class or whatever else there is (basically, using code.)

I did view Lee's tut on the Tween thing, but nothing moves for me! Also, his tut is about scale, I changed mine to 'xslide', but obviously, I don't get it! Also, the slide has to happen when the swf first loads (is that 'onEnterFrame'? - you can see how illiterate I am with AS) and stop once all the products (the chairs and the table) are on stage. The products also need to have rollover actions, which you can see in couple of the chairs.

I was trying to follow this other tut:
http://hosted.zeh.com.br/mctween/doc_xslideto.html

Hope someone can help.

Here's my failed attempt at AS:
http://www.nirzhar.com/ollie/products_livingTestTween.fla


Thank you.

View Replies !    View Related
Mc_tween Engine - Gradient Color
is it possible to achieve a gradient color with mc_tween engine?

View Replies !    View Related
Mc_tween Problem W/n Drawing Api Function
I got a small problem. I can't get an mc_tween event to execute within a function which builds an object with flash's drawing api and duplicates it. Everything below works fine when I specify the string in the array. It also traces fine when I call eval(array)[0]. Strange. Any ideas.


Code:


function myFunction (x1,y1,clip) {
var c1 = this.createEmptyMovieClip(eval(clip+"List2")[0], 0);
colors = [0xff9900,0xffff00];
alphas = [100,100];
ratios = [0,255];
matrix = { matrixType:"box", x:x1, y:y1-23, w:100, h:45, r:(90/180)*Math.PI };
c1.lineStyle(1, 0x666666, 100);
c1.beginGradientFill("linear",colors, alphas, ratios, matrix);
c1.moveTo(x1,y1);
c1.lineTo(x1+163,y1);
c1.lineTo(x1+163+11,y1+9);
c1.lineTo(x1+163+11,y1+9+11);
c1.lineTo(x1,y1+9+11);
c1.endFill();
setProperty(eval(clip+"List2")[0],_alpha,50);
eval(clip+"List2")[0].alphaTo(100,1,"linear");
};



The array looks like this. Nothing special.

Code:


list = ["object1", "object2"];



Thanks for any help.

View Replies !    View Related
Mc_tween Extension - Playing Tween In Reverse
Last edited by Codemonkey : 2006-10-24 at 15:27.
























Hi, I'm using the mc_tween class extension from here:

http://hosted.zeh.com.br/mctween/index.html

I have it pretty much figured out but I still need to learn one important thing.

How can I get a tween to play in reverse - say, when a button is clicked or an event triggered? To make it easier to understand lets just say when a button is clicked. So, on my main timeline I have a script that calls the tween:


ActionScript Code:
#include "mc_tween2.as"
 
test.tween("_alpha",0,5);

I have a pause, back and forward button on the stage with scripts attached to each button:


ActionScript Code:
//example of my pause button
onClipEvent(load){
    this.onRelease = function() {
        _root.test.pauseTween();
    }   
}

Pause and resume buttons work perfectly. But I am stumped as to how I can get the tween to play backwards (reverse).

Any help that can be offered is much appreciated. cheers.

View Replies !    View Related
Page Transitions..
What is the script i would use to load a movie clip that has a little animation then loads desired swf??

example:

button "Click Here">page fades>loads page "Click Here.swf"

thx

View Replies !    View Related
Page Transitions
hey, i've got a question that will probably seem really simple to all of you flash masters. here's what i want to do. on my site, i want to have page transitions. for simplicity's sake, lets say that i want the content from the current page to fade out and then the content from the new page to fade in when the link is clicked. i'm not sure how to go about doing this. my first thought was to make a video clip for each page of the content fading out. then i would need some way for the button's action to be 'play the fade out movie and then load the new page'. since i know nothing about action script, i have no idea how to do this. can someone help me out?
thanks.

View Replies !    View Related
Page Transitions
i just can't figure it out.

take 2a for instance. They have a transition to each page for each link. Is each transition an individual scene or something? If so, that's a lot of transitions and scenes.

View Replies !    View Related
Page Transitions .. PLEASE HELP
Pretty new to flash, so explain this as you would a 12 year old.

Im trying to just have a simple smooth page transition between my pages. I have a main site with buttons and i want the buttons to call a transition with a preloader and then smoothly fade out or whatever and reveal the new page.

Heres what ive tried by researching and reading old posts

I have an empty movie called "totalmovie" resting over the area i want to change.

On the layer directly above it in my main movie i have a transition movie called "trans.swf" ON this clip i have the code:

onClipEvent (enterFrame) {
// PRELOADER PART
if (_root.startPreLoad == 1) {
tb = math.round(_root.totalmovie.getBytesLoaded()/1024);
lb = math.round(_root.totalmovie.getBytesLoaded()/1024);
precent = math.round((lb/tb)*100);
if (lb>5) {
if (precent == 100) {
// go to the transition movie and play the outro
trans.gotoAndPlay(20);
}
}
}
}

The button is down a few levels so i have to use the root call but here is the code on the button:

on (release) {
_root.startPreLoad=1;
_root.totalmovie.loadMovie("sw.swf");
_root.trans.gotoAndPlay(2);


}


sw.swf is the external movie that i want to load into the empty movieclip "totalmovie".

All i want is when you press the button.. for it to play the animation i have in "trans" at frame 2. Keep checking the external movie "sw.swf" to see if its loaded yet (just like a preloader).. and when it is, load the movie and then play the outro animation in the "trans" movie at frame 20.


This can't be that hard.. but boy am i making it tough.. pleease help guys.. this is getting critical.. THANKS

View Replies !    View Related
Page Transitions
Can anyone please point me in the right direction.

I'm looking for flash tutorials on PAGE TRANSITIONS, I want to be able to get effects such as chequers, blinds, fade in and out static, page curls and others.

Does anyone know of any as I amy fed up with the same old sudden page changes on my site.

Many thanks in advance.

View Replies !    View Related
Page Transitions
Hi! I'm trying to figure out how to create transitions between pages within my movie. All I want is a simple fade out fade in. I'm sure this is simple but I can't really figure it out. Can anyone help me out? I would much appreciate it!

View Replies !    View Related
Page Transitions
My intros and outros are built into each of my flash movies(.swfs) and I am trying to make transitions.

In my buttons I am using this script:

Code:
on(release){
_level0.next_movie = "services.swf"; //variable is set...
_level0.container.play(); // plays the outro of the current movie...
}
Once a button is pressed, only a variable is set, rather than having the requested movie loaded up immediately. On the last frame of each of these external movies, is where I actually load the next movie in the same container...

I use this on the last frame of each movie:

Code:
stop();
_level0.container.loadMovie(_level0.next_movie);
My problem is the pages never load when I release the buttons, why?

View Replies !    View Related
Page Transitions
hey,

Does anyone know how they do this "fade" transition...

http://www.north44restaurant.com/

if you click a button, the current page fades out(at an angle) and new one comes up.


Is this the right tutorial?

http://www.kirupa.com/developer/mx/p...transition.htm


thx,
Baljinder

View Replies !    View Related
Page Transitions
hey,

Does anyone know how they do this "fade" transition...

http://www.north44restaurant.com/

if you click a button, the current page fades out(at an angle) and new one comes up.


Is this the right tutorial?

http://www.kirupa.com/developer/mx/..._transition.htm


thx,
Baljinder

View Replies !    View Related
Page Transitions
Hello All,

First of all, I'm kind of new to Flash, so please bare w/ me. Okay normally when I create an interface, and I have 5 buttons, I create 5 different HTML pages w/ swf files. So when the user clicks, the button pulls up the HTML page accordingly. I want to know how to stay on the initial interface page, then call different movies with transactions between each movie. I'm not sure how this is done. Does anyone have any good references I can check out, or a function like "getURL" that would help me in my search.

Also, if I do it this way, where it's all on one HTML page, how does it affect the performance? Does it take longer to load?

Thanks,
-Meezee

View Replies !    View Related
Page Transitions?
Hey I've seen tons of sites with pretty cool page transitions but Ive never really understood how they do it. Could someone please explain to me just like the basic idea of making a page transition. Like when you click a button does it load an external movie? or what? I have no clue.

View Replies !    View Related
Page Transitions
looking for a tutorial on how to do page transitions in AS .











Flash 8 - AS 2

View Replies !    View Related
Page Transitions
Hi people,

I have a first page done in as3 and I have some buttons, but now I want to build some page transitions, nothing complex, I simple want to show some another objects/images... when I click a button, as a whole new section of the website. How can I do this? Do I build another class? package? or simply "hide" or remove the old content and start a new one?

Thanks in advance.

View Replies !    View Related
Page Transitions
I am very new to flash, and am doing it as my honors research project in school. No teachers or students here have any background with flash, so I am kind of on my own with learning about action script and everything.
Being new to flash I dont know really anything but basics. I am pretty sure this will be done mostly with actionscript, if not I am sorry for posting in the wrong section. I am creating a site with CS3, this site is for my friends band, and it is just a picture I made with flash of a thumb with eyes and a mouth. This is the main page. What I want to happen is when you click a button, one of the items on the thumbs face will animate into the next page, i.e. The eye will get big and encompass the whole page when a button is clicked, and a new page will come up on the screen. Any help that can be given would be great.
-Thank you, Matt Melle.

View Replies !    View Related
Page Transitions
I am new to Flash and I want to create a simple animation to transition between pages in my site. I read something about sliders, but those don't seem to be animated (I want an egg shape to roll between buttons). Is it possible to rotate a slider to simulate a rolling egg? Or do I need to be thinking in different terms?

Thanks in advance to anyone who may be able to help me with this.

View Replies !    View Related
Page Transitions
hey, ok i kno theres a tut on this site that shows you how to make page transitions with external files, but how can you do the same but internal. my site isnt that big and doesnt need exernal swfs so i was wondering how to make that same exact page transition, but internal. thanks in advanced

View Replies !    View Related
Page Transitions
ok i am very new here so this might be a dumb question. I am trying to make a flash website and I understand how to make links between pages but how do I make the transitions completly animated. like as if one page was morphing into the next after after clicking a button. I really appreciate any help. thanks in advance.
-Billy

View Replies !    View Related
How Are These Page Transitions Done
How are these page transitions on this site http://www.fallon.com accomplished? Do you think its loading seperate swf files or all on one file with labels and frames?

Thanks for any help. Any links on tutorials would be appreciated.

View Replies !    View Related
Page Transitions
Hi People ,
i need some help and advise.
I had try to assign my button to link to my content.
It's work well. But after a few click, my content will
jump to the next page without anyone clicking on it.

I had these layers on my timeline:

Action
Labels
Content
Button
Bg_pic

I had put stop(); on every frame but it still jump from
content to content.

View Replies !    View Related
Page Transitions - And Now What ?
Hi people,

I have a full first page done in as3 and I have some buttons, but now I want to build some page transitions, nothing complex, I simple want to show some another objects/images... when I click a button, as a whole new section of the website. How can I do this? Do I build another class? package? or simply "hide" or remove the old content and start a new one?

Thanks in advance.

View Replies !    View Related
Page Transitions
Hello all.
I am making a complete site out of Flash, and I was wondering about page transitions.
My site uses a different color for each page, and when the viewer clicks a button, I want the next page's color to follow the pages color they were just at. My problem is, how can I tell the next movie clip what the color of the last clip was?

Here is an example. http://www.templatemonster.com/flash...ates/9453.html
See how when you click to go to a new page, it has an animated exit for the last page, then loads the new page. How do they do that? All I know how to do is fade the next page on top of the first one.

View Replies !    View Related
Page Transitions
How do sites make it when you click a link, all the text on the page or whatever fades out then goes to the next page? Is it all done via action script or are they using some type of page transition. Appreciate any help.


Thanks.

View Replies !    View Related
AS Page Transitions
Greetings!just finished the AS page transitions between external .swf files http://pivotlabs.com/xmlvideo.html heres my problem the files fade out instead of fading in :cry: I went over it twice and can't find what I did wrong :?: maybe someone could take a peek at my code and help?Code:

import mx .transitions.Tween;
import mx.transitions.easing.*;


var mLoader:MovieClipLoader = new MovieClipLoader();


var mListner:Object = new Object();

mLoader.addListener(mListener);


mLoader.loadClip("main.swf",container);



mListener.onLoadStart = function(){
   preloader._width = 0;
   preloader._visible = true;
   theText._visible = true;

    };
   
   
   mListener.onLoadProgress = function(target:MovieClip,loaded:Number,total:Number){
      if(loaded==total){
          preloader._visible = false;
             theText._visible = false;
      
      
           }else{
             preloader._width = 100*(loaded/total);
             theText.text = "loading"+Math.round((loaded/total)*100)+"%";
         
         
              }
      
       }
   
   
       mListener.onLoadInit = function(){
    preloader._visible = false;
   theText._visible = false;
   var tw:Tween = new Tween(container,"_alpha",None.easeNone,0,100,1,true);
   
   };
   
   
   b1.onRelease = function() {
      this.enabled = false;
      b2.enabled = true;
       var tw:Tween = new Tween(container,"_alpha",None.easeNone,100,0,1,true);
      tw.onMotionFinished = function() {
         mLoader.unloadClip(container);
         mLoader.loadClip("myswf1.swf",container);
         
         }

   
   
   
   
      }
      
      
    b2.onRelease = function() {
       this.enabled = false;
       b1.enabled = true;
       var tw:Tween = new Tween(container,"_alpha",None.easeNone,100,0,1,true);
       tw.onMotionFinished = function() {
          mLoader.unloadClip(container);
          mLoader.loadClip("myswf2.swf",container);
         
          }

   
   
   
   
      } thanks ahead of time and have a good weekend

View Replies !    View Related
My Page Transitions
hey all,

a few weeks ago, I put a post on the forum asking for help on my picture transitions problem for my fla...I thought if someone did it for me, then i would not learn whats going on...i wanted to do this on my own but did have a few people who steered me in the right direction..I couldnt get it right and finally read and read and i believe i got it...LOL anyways i wanted pictures to fade in and out on my main page..i know this may be easy for some of ya but i finally sat down and completed this simple file...so if anyone does not mind...i have put a link of my fla file and swf.. can you guys look at the fla or swf and see what i could do to make this better or what i have forgotten..thanks to all...these pictures are going on my site, i havent cleaned them up in photoshop...thanks to everyone who gives their advice or criticisms.. Razz

http://www.briles.tv/lvistest.fla

http://www.briles.tv/lvistest.swf

View Replies !    View Related
Transitions Between Page Sections
here's my problem:
I have a portfolio web site (http://www.michael-r-nelson.com) with a four part main menu (portfolio, research, resume, and about me sections).

I need to find a way to seemlessly transition between them.

If someone was viewing my resume section and then clicked the portfolio button, I could get it to play the rest of the resume section and allow it to fade out and then go to the portfolio section and let it fade in

laymans actions scripting:
1)on release of any other main menu button
2)go to and play current scene fade out frames
3)and then go to the scene the button you just pressed called for

I appologize for the floopyness of this request, but I'm kinda a flash gimp.

Thanks for anyone's help

View Replies !    View Related
Strange Page Transitions?
I am working on a site and want the transitions to go like this. It is almost like they are using an anchor type thing. Here is the example http://www.karlbrazil.com

View Replies !    View Related
Those Cool Page Transitions?
can somebody give me a good tutorial on how to do those animated page transitions that i've been seeing on a lot of flash sites? do i need other software besides fireworks and flash mx?

for example, the 2 advanced site. (http://www.2advanced.com/) the way that screen comes up and flashes and stuff, then goes away when you switch to a different section of the site. how do you do that kind of stuff?

View Replies !    View Related
Making Page Transitions, Help
It's annoying the hell out of me. I am good with flash, but somehow I can't seem to grasp this concept.

Say I have a 5 page site. Does Link A need 4 independant transition movies to link to the other 4 pages? Same with Link B, C, etc... If so, do I just make one transition movie, then dup it 3 times and change it to which page each directs to? Do I use movies? or scenes? or what. Will I end up with a couple dozen scenes/movies becuase of all the transition pages?

please help!

View Replies !    View Related
Help Please Loading Page Transitions
I have the exact same question as some other guy at http://www.flashkit.com/board/showth...hreadid=450724 but nobody replied it.

I was hoping someone could help me solve a little problem with the Flash site I'm designing.

First, here's what I'm doing - I have a navigation interface in it's own movie being loaded into a base movie. The navigation buttons are loading content movie files into a movie clip container. The content movie files load with an animated transition and then stop. Here's the problem: Now I want to click on a navigation button to load a new content movie, but first I want the current content movie to close with a transition. Right now, the only way I can figure out how to do it is to target a transition out for each other navigation button/area in the site within the current content movie and place a loadmovie action at the end of each transition... LOTS of work!

Here's what I'm thinking should be possible: When a button is clicked to load a new content movie, that button would set a variable (or whatever) that contains the content destiation information (what movie to load) - it also tells the current content movie to play and transition out, and at the end of that single transition, there is an action that grabs that variable and then loads the next content movie. I understand the logic here, I'm just not familiar enough with scripting yet to know what commands to use.

View Replies !    View Related
Someone Please Help (Creating Web Page Transitions)
I accidentally posted my message in the coffe lounge and not where I am supposed to so I am going to post it again here.

I am very new to flash and I enjoy the program very much, I am trying to create an animation similar to the old batman TV series to use on my website, for the transition from page to page.

I hope someone can help me.

View Replies !    View Related
FLash Page Transitions
i got 2 pages in flash MX.

page 1 and page 2. page 1 has a button that once pressed needs to make page 1 fade into page 2. how do i do this?

i need to find out asap as its part fo a mini project due in thsi afternoon i just know its dead simple but i got too much on to spend time lookign into it

any tips would be greatly appreciated ppl.

View Replies !    View Related
Page Transitions In The Same File
when i press a button i need the flash to transfer me to a different link but i want the link to be in the same file as the previous page....... linking inside the flash..... how can i do that?
as in the site www.flash4mmailer.com


oh and another question..... how can i make "loading" ??


i'm working with flash mx

View Replies !    View Related
Need Major Help With Page Transitions
In my site I have one major timeline and all the links are refered to in that time line by frame labels. Im trying to do transitions between them. I know i have to create an animation of the transition which I have but I dont knwo how to action script it. I have done much research on the web and all i find is different tutorials revolving around transitions and external .swf's... I m not dealing with .swf's though, just within my main timeline and frame labels. How do I do transiitons. Im not interested in alpha transitions either. my animation for the transition is a wipe with a mask. How do I call on that so when the user clicks on a button the transition plays before the called on animation. Please be very clear and thorough on this if you could. Im still rather new to action scripting. I know there has to be a somewhat simple way to do this. Like I said before all the other tutorials on the net I found very frustrating and each one was so different from the other. ANY help would be greatly appreciated!!!!!

here is my address so you can get a feel for what I am looking for. you will see what I mean about transition on the buttons: about, links, and contact. I want them to transition out the same way they animate in. www.jasonmartin.org

View Replies !    View Related
Inter-page Transitions
Hi Guys, I'm creating a page (temporarily located at: http://www.Sergprotector.com/LaBoheme/)

My issue is that I have 1 main SWF file and 4 pages that load within it onto an empty movie clip labeled mcHolder.

I want to make the transition between exiting one page and entering the other. What is the norm for programming this? The most common or most useful method? As you can see the pages now do fade in but once you click they do not fade out. Any thoughts, Ideas? Geezer I know you know the answer to this one!

Thanks as always for the never ending help, this page is a trouble-shooting, last minute question miracle.

View Replies !    View Related
Page Transitions Question
Hi,

I'm currently working on a website. I want to make some cool transitions from pages to pages. I'm working on a code like this, maybe you'll understand what i want just by looking at it...(i know it's not working)

_level2.gotoAndPlay('closepage2');
if (_level2=frame65) {
loadMovieNum("news.swf", 1);
}
stop();

So basically, _level2 is page 2 of my website. 'Closepage2' is the label of the page 2 where the animation is starting to close the page 2. Frame 65 is the frame where i close _level2 and where ''news.swf'' (page 1) is starting it's animation.

Anyone understand what i want and knows how i could work this out?

View Replies !    View Related
Help Making Page Transitions
need help and script for making page transitions when it comes to loading and unloading MC's.

View Replies !    View Related
Flash Page Transitions
Hi, Im Abstuce. I am relevently new to flash mx 2004 professional only been developing with it for three years on and off. I am more of a designer then scripter.

Just want to know if anyone knows how to create flash page transitions for a site? Or any places that have tutorials on this?

Message back!

Thanks

View Replies !    View Related
Page Transitions Using ActionScript?
Hi all,

I'm quite an experienced Flash user but I'm trying to develop my AS skills. I hope somebody can help me.

I'm trying to create smooth page transitions using AS instead of the GotoAndPlay function etc. Take a look at www.pse.co.uk to see what I mean. I did this site myself but I wanted all of the page transitions to fade out and back in again. To do this I had to create an animation for each "fade out" and then tell it to go to the right frame in the timeline for the correct "fade in" - I hope this makes sense.

That process was very laborious and I'm sure there's a way of telling actionscript which scene and frame the viewer is looking at, and where it's going, without having to do it all myself.

Does anybody understand what I mean? Please help.

Many thanks,

Tom

View Replies !    View Related
Smooth Page Transitions?
I've been trying to find out how you make smooth page transitions
on top of my currentpage no matter which page I got loaded and
no matter what section I go to next.
What I mean is that I wanna use the same animation ON TOP of the
current page so that it gets covered while swithing to another section
of the website. I dont want help with the actual animation but I wanna
know how I apply it easily and correctly to my webpage.
To show you what I mean check these professional web templates
(just click on the different sections a few times and you'll understand
what Im talking about:
http://www.template-help.com/screenshots/13400/13416.swf
http://www.template-help.com/screenshots/13600/13613.swf

Thx for listening/ AquaStealth





























Edited: 01/23/2007 at 08:37:01 AM by aquastealth

View Replies !    View Related
Tween Page Transitions
I want to have animated page transitions when i load my .swf's onto my site. I basically have a master swf and different swf's are loaded into the master when the user navigates. The code below is what happens when the user presses the locations button....locations.swf is loaded onto the master.swf. How would i animate the .swf onto the page using ActionScript?? I know how to use the timeline but I want to learn how to use actionscript to do it....
Heres the code that loads "locations.swf" onto the page

MM_locations.onRelease = function () {
reActivateBtns();
this.enabled = false;
changeOptionColor(this, overColor);
_level0.myMCL.loadClip("locations.swf", 5);

Thanks!

View Replies !    View Related
Page Transitions For My Site
The home page is almost created I want to make a very interesting page transitions that go to the next page can anyone help give me any ideas?? I was thinking of something where the pages load the at the bottom and since I need more room for the Gallery page I need the banner to minimize some and go up and the nav bars to go up. But all with nice flash transitions can anyone help me out pls! http://img180.imageshack.us/img180/4...ontviewae5.jpg
alsO!
I need a slideshow type of thing on the page that will fade into about 25 other pics as well. do you think theres a way to incorporate that into the page without throwing off the flow of the site?
http://img137.imageshack.us/img137/260/focusoffrv3.jpg

Does anyone know how to make this transition by any chance or anything close to this? http://www.templatehelp.com/preset/p...S 88Q69tM5CCw

View Replies !    View Related
Page Transitions Question
i am trying to make a portfolio-like page.. i have all the buttons ready, now all i need is to make the swf's for the images.. i would like it to load, transition in, and transition out.. how do i go about doing that? do i put a preloader on the image swf movie or in the main movie? and for the buttons of the main swf, how do i tell the currently playing image swf to transition out, and tell the next image swf to transition in?
any help would be appreciated, simple pseudocode or full blown example. thanks in advance.

View Replies !    View Related
Help, Delayed Page Transitions
Please take a look at
http://www.dewittstudios.com/inner
when you click on a link for a frame number that is greater than the one you are on it is fine. (Like going from about to bands, or bands to services) but when you try and go back (like from services to refs, or services to bands etc) there is a huge delay in the transition. I am using gotoAndPlay(framenum); with stop(); in the frame.

Anyone have any ideas or want to see the fla?

Thanks!

View Replies !    View Related
Smooth Page Transitions?
I've seen websites that have interesting transistions from section to section but I don't know how to do it.
Here is an example:

1. An image of a door that is closed.
2. 4 buttons below the door.
3. Clicking on the first button (profile), the door slides open and reveals the content for that page.
4. Then, clicking the second button (gallery), the door slides closed on the profile section, then the door opens again revealing the content for the gallery page.


I've tried telltarget actions on movie clips, clips on top of clips which only result in 2 movies playing at the same time.

I hope I explained myself clearly, because, I really want to accomplish this for my new website and I'm just not getting it at the moment.



Any help is very much appriciated! Thank you in advance!


- Govinda
www.intotheether.org

View Replies !    View Related
SwapDepths With Masked Page Transitions
Hi,

I am struggling with this one.

I have four mc's relating to pages, all containing a mask layer which reveals the content of the page.

Each of these mc's has a corresponding button, which when pressed, should play the relevant mc, with the mask revealing the new page over the top of the previous page.

I have tried using swapdepths so that the new page is on the top, and the previous page is underneath, but I am having trouble with getting the stacking order correct.

Any help would be much appreciated.

Thanks, Steve

View Replies !    View Related
[F8] Page Transitions All In One Flash File?
I want to be able to make a a website where the pages transition/fade in. For example when a button is clicked the current page will fade out and the next one fades in with various animations.
I want to have each page have its own movieclip on the timeline, and within that movieclip will be the fadein/out animations.

I've seen examples of this using external swf's for each page, and examples by having everything on the main timeline, which is a huge mess.

Does anyone have an example of a way to have pages/movieclips transition into one another all in one flash file?

Thanks

View Replies !    View Related
Copyright Đ 2005-08 www.BigResource.com, All rights reserved