Using animation in a page flip

i would like to add an animation page inside
a page flip wil you please help ....
Regards
Prajin

Here is the pageflip animation using AS3 http://www.megazine3.de/?c=home&l=en
and here is the free class http://www.bytearray.org/?p=77
AS2 sample: http://pageflip.hu/free.php

Similar Messages

  • How to use 1 edge animation in multiple pages without duplicate files?

    Hi,
    I want to display an animation on multiple pages that are all located in there own respective folders. I want to be able to move then animation files into it's own dedicated folder e.g. /includes/edge folder where I can still use this animation in other pages not locate in this folder.
    How can this be done?
    Thanks

    For you use case,
    You can have your animate files in a folder and load them in different pages using a iframe

  • Anyone try page flip animation in updated ePub?

    So I found this link about the new features of the InDesign ePub: https://helpx.adobe.com/indesign/how-to/interactivity-fixed-layout-epub.html
    Has anyone tried the page flip animation with the improved ePub, yet? If so, how did it go?

    Hi,
    I actually read a FXL epub on my iPad with iBooks! The page flip animation is interesting but I don't really like it! I love its music along the pages (without cut) and some of its uncommon animations! All the text can be selected and a research can be done on it! Finally, I'm not sure it's flash!
    Well! A really cool book I'ld like to create! 
    I begin the xml autopsy! …
    Dr House, MD 

  • Does page flipping use the video card?

    How do I page flip? Does it use the video card or accelerate
    Graphics? Can someone show me how its done?

    bufferstrategy. look it up. its encapsulates that for you. also look up lwjgl.

  • HELP!  FLash Page flip

    Okay
    I began as an intern at an agency, but all the designers are
    gone and I'm the only one left. I have a problem with a flash
    Page-flip component that we are using on our website.
    I used flash for the first time ever last week.
    I've got the pages sorted and even imported an swf animation
    onto a page.
    However I need to know how to control the animation so that
    it starts when the page it is on is turned, not when the whole book
    is loaded. So the viewers see the animation working, when it is
    visible.
    An example of the page flip component is here:
    http://www.mymelodi.com/prophp/Main.php?MagID=1&MagNo=1
    Can anyone help? I've tried books and miles of coding but I
    know f*** all about flash, to have done even this much has been a
    miracle.
    Any help would be appreciated, I fear I am alone on the deck
    of a sinking ship................. S - O - S

    i Dont have the Answer to your Problem But i Do Have a
    Problem that you Might be able to Help me with x_x .. If you
    Could.. i Have a Page Flip Component that Im working on at the
    Moment, and i Have NO idea how to Either make the Background
    Transparent, or Change its Color..

  • Animated gif and page refresh problem

    Animated gif and page refresh problem
    Hi There,
    I'm trying to build a simple "Please wait......" screen using jsp and javascript.
    So far all is going well except that my animatate gif keeps refreshing everything the page is refresh.
    Is there a way the i can prevent the body of the page from refreshing?
    below is my sample code:
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <jsp:useBean id="StatusBean" class="com1.CandidateRelease" scope="session"/>
    <html>
    <script LANGUAGE="JavaScript">
    function refresh()
    <% if (StatusBean.isRunning()) { %>     
         //setTimeout("refresh()", 1000);
         setTimeout("location='status.jsf'", 1000);
    <% }else{%>
         window.location= "busStopAdmin.jsf";
    <%} %>
    </script>
    <head>
         <script LANGUAGE="JavaScript">     
              refresh();
         </script>     
    </head>
    <body>
         <img id="myImage" src="../img/ojp_wait.gif" alt="" width="151" height="36">
    </body>
    </html>

    Animated gif and page refresh problem
    Hi There,
    I'm trying to build a simple "Please wait......" screen using jsp and javascript.
    So far all is going well except that my animatate gif keeps refreshing everything the page is refresh.
    Is there a way the i can prevent the body of the page from refreshing?
    below is my sample code:
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <jsp:useBean id="StatusBean" class="com1.CandidateRelease" scope="session"/>
    <html>
    <script LANGUAGE="JavaScript">
    function refresh()
    <% if (StatusBean.isRunning()) { %>     
         //setTimeout("refresh()", 1000);
         setTimeout("location='status.jsf'", 1000);
    <% }else{%>
         window.location= "busStopAdmin.jsf";
    <%} %>
    </script>
    <head>
         <script LANGUAGE="JavaScript">     
              refresh();
         </script>     
    </head>
    <body>
         <img id="myImage" src="../img/ojp_wait.gif" alt="" width="151" height="36">
    </body>
    </html>

  • Page flipping with Volatile Image.  Need help :)

    Hello all,
    Could someone point me to a nice tutorial which specifically addresses setting up page flipping with Volatile Images as the buffer? I haven't had any trouble with the generic BufferStrategy way of doing things, but it looks like the absolute fastest way to go is page flipping. Any info on this subject would be appreciated. I am a student who is making his first attempt at setting up a fullscreen video game...well if you want to call it that! :) I am shooting for Pong as a first project!
    Please feel free to send me the info at [email protected], and thanks much.
    Kmyers

    If you're using Windows, then your picture is already most likely
    being stored as volatile. You should look for an article on the
    web discussing Java rendering internals as of 1.4 do a search for
    "java automatic images" you'll probably find some useful info.
    But if you insist you can just fire up a debugger and
    play with it until you finally figure out what it's doing..
    You just need to do a createVolatileImage as opposed to createImage
    when creating your buffers.. make sure to use
    createBufferStrategy(2) (or if you want to be totally sure print out
    the capabilities of the buffers available and select one that you
    know for sure supports back and front buffers that are "truly"
    volatile..
    it turns out in my experience on win2k that using normal "automatic"
    images via Component.createImage() are faster than volatiles perhaps
    because I tend to do alot of scaling ops which are not as of yet
    accelerated..
    here's some stuff that might help you:
    good luck!
    static public void printBufferCapabilities(BufferCapabilities bc) {
    System.out.println("Printing Buffer Capabilities: ");
    if (bc.isFullScreenRequired())
    System.out.println("Full screen is required");
    else
    System.out.println("Full screen is required");
    if (bc.isMultiBufferAvailable())
    System.out.println("MultiBuffering is available");
    else
    System.out.println("MultiBuffering is not available");
    if (bc.isPageFlipping())
    System.out.println("PageFlipping is available");
    else
    System.out.println("PageFlipping is not available");
    ImageCapabilities ic = bc.getBackBufferCapabilities();
    if (ic.isAccelerated())
    System.out.println("BackBuffer is accelerated");
    else
    System.out.println("BackBuffer is not accelerated");
    if (ic.isTrueVolatile())
    System.out.println("BackBuffer is truly volatile");
    else
    System.out.println("BackBuffer is not truly volatile");
    ic = bc.getFrontBufferCapabilities();
    if (ic.isAccelerated())
    System.out.println("FrontBuffer is accelerated");
    else
    System.out.println("FrontBuffer is not accelerated");
    if (ic.isTrueVolatile())
    System.out.println("FrontBuffer is truly volatile");
    else
    System.out.println("FrontBuffer is not truly volatile");
    static public void printImageCapabilities(ImageCapabilities ic) {
    System.out.println("Printing Image Capabilities: ");
    if (ic.isAccelerated())
    System.out.println("Image is accelerated");
    else
    System.out.println("Image is not accelerated");
    if (ic.isTrueVolatile())
    System.out.println("Image is truly volatile");
    else
    System.out.println("Image is not truly volatile");
    static public void printFlipContents(BufferCapabilities.FlipContents flip) {
    if (flip == null) { System.out.println("Dude your flip is flipping NULL!"); return; }
    if (flip.equals(BufferCapabilities.FlipContents.BACKGROUND))
    System.out.println("Flip Contents are BACKGROUND");
    else if (flip.equals(BufferCapabilities.FlipContents.COPIED))
    System.out.println("Flip Contents are COPIED");
    else if (flip.equals(BufferCapabilities.FlipContents.PRIOR))
    System.out.println("Flip Contents are PRIOR");
    else if (flip.equals(BufferCapabilities.FlipContents.UNDEFINED))
    System.out.println("Flip Contents are UNDEFINED");
    else System.out.println("Where the hell did you find this flipping Flip Contents, now flip off!");
    static public void printElapsedTime(String desc, long start, long stop ) {
    long s = stop - start;
    double elapsed = (double) s/1000;
    System.out.println("The elapsed time for "+desc+" :"+elapsed);
    public static void chooseBestDisplayMode(GraphicsDevice device) {
    DisplayMode best = getBestDisplayMode(device);
    if (best != null) {
    device.setDisplayMode(best);

  • Two oam animations in one page not displaying?

    I have tested each one solo and they work great but if I import them both they stop showing ?  What can I do to fix this....
    <!doctype html>
    <!--[if lt IE 7]> <html class="ie6 oldie"> <![endif]-->
    <!--[if IE 7]>    <html class="ie7 oldie"> <![endif]-->
    <!--[if IE 8]>    <html class="ie8 oldie"> <![endif]-->
    <!--[if gt IE 8]><!--> <html class="">
    <!--<![endif]-->
    <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>PRISMA CREATIVE COMMUNICATIONS</title>
    <link href="css/boilerplate.css" rel="stylesheet" type="text/css">
    <link href="css/fluid.css" rel="stylesheet" type="text/css">
    <link href="css/style.css" rel="stylesheet" type="text/css">
    <!--
    To learn more about the conditional comments around the html tags at the top of the file:
    paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/
    Do the following if you're using your customized build of modernizr (http://www.modernizr.com/):
    * insert the link to your js here
    * remove the link below to the html5shiv
    * add the "no-js" class to the html tags at the top
    * you can also remove the link to respond.min.js if you included the MQ Polyfill in your modernizr build
    -->
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <script src="js/respond.min.js"></script>
    <!--The following script tag downloads a font from the Adobe Edge Web Fonts server for use within the web page. We recommend that you do not modify it.-->
    <script>var __adobewebfontsappname__="dreamweaver"</script>
    <script src="http://use.edgefonts.net/quicksand:n3,n4:default.js" type="text/javascript"></script>
    <!--Adobe Edge Runtime-->
    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
    <script>
      var custHtmlRoot="edgeanimate_assets/navTablet/Assets/";
      var script = document.createElement('script');
      script.type= "text/javascript";
    script.src = custHtmlRoot+"edge_includes/edge.5.0.1.min.js";
      var head = document.getElementsByTagName('head')[0], done=false;
      script.onload = script.onreadystatechange = function(){
      if (!done && (!this.readyState || this.readyState == 'loaded' || this.readyState == 'complete')) {
      done=true;
      var opts ={
        scaleToFit: "width",
        centerStage: "none",
        minW: "0px",
        maxW: "undefined",
        width: "699px",
        height: "125px",
      bScaleToParent: "true"
      opts.htmlRoot =custHtmlRoot;
      AdobeEdge.loadComposition('navTablet', 'navTablet', opts,
      {"dom":{}}, {"dom":{}});
      script.onload = script.onreadystatechange = null;
      head.removeChild(script);
      head.appendChild(script);
      </script>
    <style>
            .edgeLoad-navTablet { visibility:hidden; }
        </style>
    <!--Adobe Edge Runtime End-->
    <!--Adobe Edge Runtime-->
    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
    <script>
      var custHtmlRoot="edgeanimate_assets/navHeaderScreen/Assets/";
      var script = document.createElement('script');
      script.type= "text/javascript";
    script.src = custHtmlRoot+"edge_includes/edge.5.0.1.min.js";
      var head = document.getElementsByTagName('head')[0], done=false;
      script.onload = script.onreadystatechange = function(){
      if (!done && (!this.readyState || this.readyState == 'loaded' || this.readyState == 'complete')) {
      done=true;
      var opts ={
        scaleToFit: "width",
        centerStage: "none",
        minW: "0px",
        maxW: "undefined",
        width: "1232px",
        height: "85px"
      opts.htmlRoot =custHtmlRoot;
      AdobeEdge.loadComposition('navHeaderScreen', 'navHeaderScreen', opts,
      {"dom":{}}, {"dom":{}});
      script.onload = script.onreadystatechange = null;
      head.removeChild(script);
      head.appendChild(script);
      </script>
    <style>
            .edgeLoad-navHeaderScreen { visibility:hidden; }
        </style>
    <!--Adobe Edge Runtime End-->
    </head>
    <body>
      <div class="gridContainer clearfix">
        <div id="navScreen" class="fluid ">
          <div id="Stage2" class="navHeaderScreen"></div>
        </div>
        <div id="navMobile" class="fluid"><div id="logo"><img src="images/logo-prisma.gif" alt=""/></div>
        <div id="tagLine">CREATIVE COMMUNICATIONS</div><img src="images/collaborate-mobil.jpg" alt=""/><img src="images/create-mobil.jpg" alt=""/><img src="images/communicate-mobil.jpg" alt=""/><img src="images/inspire-mobil.jpg" alt=""/></div>
        <div id="navTablet" class="fluid ">  
        <div id="logo"><img src="images/logo-prisma.gif" alt=""/></div>
        <div id="tagLine">CREATIVE COMMUNICATIONS</div>
        <div id="Stage" class="navTablet"></div>
        </div>
       <div id="mobilBanner" class="fluid "><img src="images/mobil-banner.jpg" alt=""/></div><div id="bannerCommunicate" class="fluid  clearfix"><img src="images/BC.jpg" alt=""/></div>
      <div id="messageBar" class="fluid blueBkg">LET THE FUN BEGIN &gt; COMMUNICATE WITH THE UNIVERSE</div>
         <div id="mainLeft" class="fluid darkblue mainContent">Having defined and developed your strategy, visuals and content, you are ready to display and project your message and start creating brand recognition. a full spectrum of your message across communication channels.
    </p>
    <p>Prisma’s broad expertise in multi-platform production, coupled with a custom tailored plan, ensures that delivery is consistent, clear and on target.</p>
    <p>PRISMA offers a variety of services to support your brand, including quote and sourcing research, print management and cross browser compatibility assurance. These tools when combined with the tracking and measurement of key pieces of research data, ensure that your communications are continually honed and received, maximizing bot their effect and your return on investment. </p>
         </div>
         <div id="mainRight" class="fluid darkblue ">
           <p class="  blueBarTitles">ON PAPER</p>
           <div id="leftColProd" class="fluid darkblue clearfix"><ul class="listProducts ">
             <li><strong>BUSINESS NEEDS</strong></li>
             <li>Business Cards</li>
    <li>Stationary</li>
    <li>Stickers</li>
    <li>Postcards</li>
    <li>Invite</li>
    <li>Menus</li></ul>
    <ul class="listProducts">
       <li><strong>EDITORIAL </strong></li>
       <li>Brochure</li>
    <li>Magazines</li>
    <li>Catalog</li>
    <li>Book Covers & Layout</li>
    </ul>
    </div>
         <div id="rightColProd" class="fluid  clearfix">
          <ul class="listProducts">
       <li><strong>ENVIRONMENTAL</strong></li>
       <li>Signage </li>
    <li>Banners</li>
    <li>Wayfinding</li>
    <li>Trucks</li></ul>
         <ul class="listProducts">
           <li><strong>PRESENTATIONS</strong></li>
           <li><strong>EVENT PROMOTION</strong></li>
           <li><strong>ADVERTSING</strong></li>
           <li><strong>EXHIBITION DESIGN</strong></li>
         </ul>
    </div>
         <p class="clearfix"></p>
         <p class="blueBarTitles">ON SCREEN</p>
         <div id="leftColProd" class="fluid  clearfix">
         <ul class="listProducts">
           <li><strong>INTERFACE DESIGN</strong></li>
           <li>Websites</li>
           <li>Applications</li>
           <li>Blogs</li>
           <li>Power Point Presentations</li>
           </ul>
            <ul class="listProducts">
            </li>
              <li><strong>BLOG DEVELOPMENT</strong></li>
            </ul>
         </div>
         <div id="rightColProd" class="fluid  clearfix"> <ul class="listProducts">
           <li><strong>ONLINE MARKETING</strong></li>
           <li>Email Campaigns</li>
           <li>Landing Pages</li>
           <li>SEO</li>
           <li>Social Media Design & Integration</li>
         </ul>
         </div>
         </div>
    <div id="bottomBox" class="fluid greenBkg"><img src="images/greenBox.gif" alt=""/></div>
    <div id="bottomBoxTwo" class="fluid yellowBkg"><img src="images/pintrest/create.jpg" class="centerImage"alt=""/></div>
    <div id="bottomBoxThree" class="fluid darkblueBkg"><!-- Begin MailChimp Signup Form -->
    <div id="mc_embed_signup">
    <form action="//prismacreativecommunications.us10.list-manage.com/subscribe/post?u=b2324e3ea54f 16fab74603913&amp;id=aa94acd787" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
        <div id="mc_embed_signup_scroll">
    <div class="mc-field-group">
      <input type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL">
    </div>
      <div id="mce-responses" class="clear">
      <div class="response" id="mce-error-response" style="display:none"></div>
      <div class="response" id="mce-success-response" style="display:none"></div>
      </div>    <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
        <div style="position: absolute; left: -5000px;"><input type="text" name="b_b2324e3ea54f16fab74603913_aa94acd787" tabindex="-1" value=""></div>
        <div class="clear"><input type="submit" value="SUBSCRIBE" name="subscribe" id="mc-embedded-subscribe" class="button"></div>
        </div>
    </form>
    </div>
    <!--End mc_embed_signup--></div>
    <div id="bottomBoxFour" class="fluid ">bbb</div>
         <div id="homeFooter" class="fluid gradient ">
         <p class="hmpgFooterCopy">
    561 906 2583<br>
    [email protected]<br>West Palm Beach, Florida</p></div>
      </div>
    </body>
    </html>

    Hi Stephan,
    this solved placing both animation on one page.  Make sure all your fonts are called out in the <head> section like for example:
    <script>var __adobewebfontsappname__="dreamweaver"</script>
    <script src="http://use.edgefonts.net/quicksand:n3,n4:default.js" type="text/javascript"></script>
    Dreamweaver does this automatic for you.  If you are having a font conflict I recommend under command  (if you are using dreamweaver)
    Clean up the font Tag and add only the ones that you are using again,  sometimes they accumulate.
    Good Luck.

  • Embedded .swf (page flip) Very Slow

    Hello,
    Within my flash file, I embedded a .swf (page flip) that is taking too long to load. When flipping through, it lags. Is there anything that could be done?
    Reference:
    http://www.lucysonlinestore.co.cc/home.html
    The .swf (page flip) is under "Clothes".
    Any advice appreciated.

    kglad,
    I apologize for the misunderstanding. I don't wish for anyone to go through my files. My intention of posting on here is for anyone with the past experience of slow performing page flips to share their solutions. Since page flip is so popular in flash sites, I thought people would have encoutered such problems. I included my site to show as an example. I do appreciate you taking the time and effort to go through the files and test run them.
    The error you're referring to is caused by declaring and using the loader in frame 3. In frame 1, I'm unloading the loader. If I declare the loader in frame 1, then the unloading won't work properly.
    I did search online for past posts, while many people encountered page flip performance issues, there is not much solutions out there. I thought better solutions are out now. It's at times like this that I wish I knew more about flash and AS3. Started to learn about a week ago doesn't help solving the errors.
    Thank you for looking into this.

  • Page flip?

    I am trying to find an inexpensive way to make my pdf files look good...
    I wanted the documents to have the "page flip" capabilities. 
    someone suggested:
    You could place PDF files in InDesign and export to a page-turnable SWF file. If you don't have InDesign, grab the fully functional 30-day trial to do the conversion from PDF to SWF
    I am using InDesign CS2, and when I export, I do not see a SWF file option? -- the closest I see is SVG?
    is there something that is not activated in my version?
    any suggestions?
    Thanks, Katah

    You mean like this:
    http://dl.dropbox.com/u/133381/wiredFolder/index.html
    Resolution of wire is a bit lousy, but I couldn´t find better for this demo.
    That is made from InDesign CS4 (CS5 will do as well). The trick is to use single pages, not facing pages... and place the wire at the middle of the page. If SWF is exported as single pages, page transition will fold the page at horizontal half point... and it looks like page is folding by using same line where the wire is....

  • Page-Flip component: Varying page sizes?

    Hi all, I have a question for you about the page-flip
    component. Is it possible to make the pages within a single book
    different sizes? In other words, could I have a cover page that's
    500 x 500, and behind it a page that's 550 x 500, and behind that
    one a 600 x 500 page, and so on? The idea would be that you could
    see a bit of some of the pages before actually reaching them.
    According to the manual, there seems to be some kind of page
    height and page width functions, but I'm not sure how to use them.
    Any advice?
    Thanks!

    Not quite sure about Page Flip component,
    See example05, is that something you need?
    http://blog.ggshow.com/index.php/extensions/2007/04/02/gg_book_pf2

  • When I publish from ibooks author will the pages flip like my other books

    When I publish from ibooks author will the pages flip like my other books the preview only slides side to side

    Pages continue to slide rather than flip for the horizontal orientation.  In the vertical orientation, the text scrolls up-and-down like a web page (again as shown in iBooks Author if you change the previewed orientation).  I'm not sure why Apple went with the different GUI for their textbooks, but its the same for the ones authored by the big publishers.  If you want to see what the format is like on the iPad, there's a short free textbook (Wilson's Life on Earth) and sample chapters from others available from the iBookstore.
    On a side note, one interesting thing about using texts in the two different orientations is that the formating changes as well.  Figures that show up as larger embedded images in the horizontal layout are smaller images in the left margin in the vertical layout, at least in Wilson's book.

  • Place panoramic window in Acrobat but it doesn't show if converted to a page flip brochure

    Hi there
    I am using Acrobat to insert a swf file of a 360 degree window so a user can view a room all around.  This can be added to a PDF document no problems but I would like to convert the document to a page turning brochure.  I have tried converting the document with the swf file in the PDF but it is not showing in the page flip brochure.
    Does anybody know if this is possible or reasons why it is not working or can be corrected.
    I look forward to hearing from you

    Hi
    I have been looking for another program/software package but can't find it. :-(

  • Page flipping

    Hi guys, once again...
    I have a book with some interactions in each of the pages and as for right now, to go from one page to another I use a simple button, stopping all the functions and interactions working in the first page:
    toPage5_Btn.addEventListener(MouseEvent.CLICK, page5);
    function page5(event:MouseEvent):void {
        channel.stop();
        autito_mc.removeEventListener(MouseEvent.MOUSE_DOWN, dragTheObject);
        toPage5_Btn.removeEventListener(MouseEvent.CLICK, page5);
        gotoAndStop (5);
    Now, what I was asked to do is to give it a look of a page flip, so, the user, instead of touching the button, can swith the pages as an e-book.
    I have searched the web looking for ideas and examples but I couldn´t find anything.
    Does anyone knows how to do it, and or where I can look at?
    Thanks a lot!

    google:  actionscript 3 page flip tutorial

  • PDF Page Flip Feature Request

    Flip books have become popular over the past years and I would like to see the ability to flip through pdf's with a page turn option.  This could be a view with a one page or two page layout.  This functionality would not have to have the robust rendering that a true Flash page flip book has but just an animated quick flip, much like you see on common book readers.  I know this is a small thing but it makes a big difference in perception when one is scrolling through a PDF verses reading through it like a book.  Is this feature a current consideration?
    Thank you,
    Brandon Buie

    +1 For that Feature Request . Everybody will be happy to see pdf contents in ''page flip" mode (except Adobe programmers).

Maybe you are looking for

  • Problem with IE and pubblishedIntoWall

    Hi to all,    i have a problem with InternetExplorer and CallBack In my flex code i have : flash.external.ExternalInterface.addCallback("pubblishedIntoWall", pubblishedIntoWall); The javascript code: function pubblishedIntoWallCarrello() {         do

  • I am getting an error message when trying to transfer music from PC to iPhone 4

    Hello, I am trying to transfer music from itunes on my pc to my iphone, but i am getting a No Smoking Circle.  Can someone help me with fixing this please? Thank you

  • Animated gif looping doesn't work in safari

    I made an animated gif through the animation option in Photoshop (used to use Image Ready, but now use photoshop/animation view).  Anyway, it is a super simple gif with eight frames set to loop twice.  When saved and then put into an HTML page, it lo

  • Cannot delete more than a few music items at a time -- would like to delete all

    I don't want my Music backed up onto the VZ Cloud. However, it already was backed up and used up most of my 5GB, so I tried to delete it using the web interface on cloud.verizonwireless.com. If I go to multi-select (which is, as others have posted, i

  • Change future periods for Fiscal year variant-OB29

    Hi experts, We are using 4-4-5 rule, Fiscal year variant is M1, Future Periods for FY variant M1 is not maintained correctly.  Our year end is on 6/25/2011 but in our variant M1 it is defined as 7/2/2011 and periods following that are defined incorre