Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Please Help.Transition effects between scenes.

New Here ,
Jan 25, 2014 Jan 25, 2014

Hello,

I am simulating an Ipad device in flash CS6, with AS3, and I have made one scene for the desktop (with all the app icons) and another scene for each app.

I'm using buttons to navigate between apps (each app icon is a button), and made another button for the Ipad home button to go back to desktop.

By the way , I'm using this code for the buttons;

          btn_music.addEventListener(MouseEvent.CLICK, abrerep);

          function abrerep (event:MouseEvent😞void {

          gotoAndStop("1","Reproductor");

          }

It works fine , but I would like to add a transition effect (like a fade out, or something similar to what ipad actually do)  when you open an app or go back to desktop (change scene).

Any advice on how to do this?!!

I apreciate your help, thanks in advance.

PD: Also I would like to simulate a web browser app (like safari), that when you open it, it goes to a web site, for example www.apple.com

Any Ideas to this??


TOPICS
ActionScript
2.3K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jan 25, 2014 Jan 25, 2014

Doing trransitions along a timeline using scenes is not very designer-friendly.  You are better off avoiding the using of frames and even the timeline.  Just have each section as a movieclip in one frame and control the visibility of each.  Then you can use Actionscript to fade things in and/or out as needed, while having the benefit of easily retaining the states of sections already visited.  You should be able to convert each scene into a movieclip by copying the timeline into a movieclip.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jan 25, 2014 Jan 25, 2014

Thanks for answering,

Allright, It sound a little tricky, I though it could be easier.

What about the web browser thing?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jan 26, 2014 Jan 26, 2014
LATEST

I would like to open a web url inside the Ipad's frame.

Is there any way to do this?

Thanks in advance

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines