Sequence numbering while fade out pages over "Levels"

Hello,
new to the forum, I would like to ask a question.
I use Acobat XI Pro. My collegues only the reader.
Heres the thing. I write offers for them. I'd like to have the option to choose what pages will appear in the offer (perhaps a checkbox) and I would like that the page numbering adapts automaticly if I fade out some pages in between.
Can someone give me some advise please?
Thanks,
dersinas

Moved to JavaScript.
I think you are asking for too much from Acrobat. However, maybe someone that is familiar with Acrobat's scripting capabilities can suggest something that might work.

Similar Messages

  • Use of sequence numbers while inserting into tables

    Hi,
    Consider i have a stored procedure where i insert records into 30 to 40 tables.
    for example i have a table A and a sequence SEQ_A for that table.
    Is there any difference in performance in the following two ways of
    insertion,
    1. select SEQ_A.NEXTVAL into variable_a FROM DUAL;
    INSERT INTO A VALUES(variable_a);
    2.INSERT INTO A VALUES (SEQ_A.NEXTVAL).
    I have 30 to 40 insert statements like that in method 1.
    if i replace it by method 2. will there be any improvement in performance?
    Thanks & Regards
    Sundar

    This could be interesting. I agree that triggers should be used for data integrity, though even better is to only allow write access to tables via stored procedures.
    Anyway while you are waiting for the test case that shows triggers are faster, which could take some time, it is quick and easy to come up with a test case that shows the opposite.
    SQL> create table t (id number, dummy varchar2(1));
    Table created.
    real: 40
    SQL> insert into t select s.nextval, 'a' from all_objects;
    29625 rows created.
    real: 5038
    SQL> rollback;
    Rollback complete.
    real: 40
    SQL> create trigger tt before insert on t
      2  for each row
      3  begin
      4     select s.nextval into :new.id from dual;
      5  end;
      6  /
    Trigger created.
    real: 291
    SQL> insert into t select null, 'a' from all_objects;
    29626 rows created.
    real: 13350
    SQL> rollback;
    Rollback complete.
    real: 1082
    SQL>Note with triggers even the rollback took longer.
    Martin

  • Need button to fade-out page (.swf) when pressed, open URL

    Hi-ya
    3 days going on 4 and i still haven't figured out how or what
    i need to do that would enable a button placed on a SWF (webpage),
    when clicked, will fade that .swf to blak,thereafter a URL opens
    (my homepage). does anyone know what i need to do in this case. my
    actionscript skills is graded at c or c -, so any help there would
    be appreciated.
    thanx,
    IfOnlyiNu
    From
    http://www.developmentnow.com/g/68_2004_9_0_15_0/macromedia-flash.htm
    Posted via DevelopmentNow.com Groups
    http://www.developmentnow.com

    Here is the theory - you should be able to figure it out from
    there:
    1. In your main movie create a new movieclip call it "Fade",
    make the first frame blank and put a stop(); action on it.
    2. On the second frame create a new graphic symbol bigger
    then the full screen and make it a full black square.
    3. Go a few frames ahead, the farther the longer the fade
    will take. Insert a keyframe.
    4. Go back to frame 2, select the black box graphic and make
    its alpha = 0%
    5. Create a tween on frame 2, this will make the box go from
    invisible to visible on the last keyframe.
    6. On the last frame where the box is totally black add the
    getURL("url") actionscript.
    7. Go back to the main scene of the movie and place the
    "fade" movieclip on the top layer. Since it is stopped on the first
    blank frame it will not be visible until something makes it play.
    8. Add an actionscript to the button that will start the
    fade, it will look like
    *buttoninstancename*.onRelease = function () {
    _root.Fade.gotoAndPlay(2);
    //this tells the movie fade to go to the second frame and
    play
    replace *buttoninstancename* with the instance name of the
    button on the stage that conrtols the fade.
    That will make the "Fade" movie play, which is a tween that
    turns the full screen to black, and then redirects to a new url at
    the end.
    Hope that helps.

  • Fade in and Fade out components from 3d modell onClick self-made buttons

    Hi,
    in Acrobat Pro you can place your own 3D-model into the pdf. Than you can fade in and fade out components of your 3d-model on a acrobat-menü (see images) in the pdf-reader. Now I want to build a pdf with this functionality, but the tricky thing is, that I want to fade in and out the components from the 3d-model not on the menu, but on self-made buttons.
    But how to say the buttons, that they should fade in or fade out a component from the 3d model, like it the menu from acrobat does?
    Thank you for reply.
    Maybe this images will help you to understand my question:

    Thank you very much for your answer. But I think what you mean, is to make a full object visible=false. But what I want to make is to fade out a subordinate level.
    So for example this is my hierarchy:
    layer one
    -sub-layer one
    -sub-layer two
       *sub-sub-layer one
    layer two
    -sub-layer one
    And now I want to fade out the sub-sub-layer one. What is the code for that?
    Thank you very much again!

  • Best way to achieve fade out-in pages

    I was wondering if anyone had an opinion on the best way to
    build this --
    I want to have some kind of lovely transition between the
    pages of my website (why not; it's Flash) -- I've thought about the
    following three options:
    - old page's text flying off the right side while the new
    text flies in the right
    - old page's text fades out and a background animation (like
    a turning page or something) plays before new text fades in
    - old page's text simply fades out as new page's text fades
    in
    In all of them I ran into a problem -- how to tell two or
    more sequential things to happen on a button press. For instance,
    if there was some kind of nifty flying-away of the old page's
    content, how do I tell it to do that and THEN fly-in the new page's
    content? It would be a pain to simply animate every possibility,
    like page a to page b, page a to c, a to d, b to a, b to c, etc...
    there has to be some way to script it prettily.
    I've come across the following ideas:
    quote:
    on (release) {
    myClip.gotoAndPlay("fadeout"+pagename);
    outerClip.gotoAndPlay(1);
    Where you define a 'pagename' variable for each one and have
    frames labeled accordingly
    or:
    quote:
    button02.onrelease = function() {
    movieclip01.fade(0,10);
    movieclip02.fade(100,10);
    movieclip03.fade(0,10);
    //etc, etc, etc....
    where you clumsily fade out everything else possible when you
    load each one.
    or I was even thinking about making the old page content
    'retreating' animation for each page and trying to code it to play
    that and then play the requested new page, in one long timeline.
    Does anyone have a more elegant way of thinking about this?
    I've looked all over for examples, but most tutorials seem to stop
    short of the scripting I'd love to use. Code examples would be
    highly, highly appreciated. I'm a total AS3 newbie, but willing to
    learn if that's the best way.
    Thanks in advance to all the brilliant people out there who
    might add their 2¢!

    Thanks again NedWebs! For this thought experiment, I'm just
    talking about a simple fadeout current clip - fadein new clip. But
    I run into the same general question lots of times, for instance
    for a current project I wanted to unload the clip, play a 'page
    flip' looking transition movie, and then load in the new clip...
    So are you advocating the button action as being fade out all
    other movie clips (as a catch all that works no matter which is
    loaded), then load requested movie clip?
    How do you tell the actionscript to finish fading out 'a'
    BEFORE starting to fade in 'b'? Or in the pageflip example, how do
    you tell it to complete the whole fadeout, THEN play the pageflip
    movie, THEN load the requested clip? If I put the actions within
    the same handler or whatever, won't the instructions complete all
    at once?
    Sorry for my tangly questions; I'm learning!

  • Can you fade in and fade out the same layer in the same page state?

    I am simulating a lot of touch interactions, and have a hand object that moves over the simllated screen. I want to add small "taps" under the hands to show touch; I can see how its easy to fade IN an object (say a small circle) that represents the touch; but how do I fade OUT that same object?
    Any help appreciated!
    Rob

    Hey Rob,
    I think you can achieve the effect you're looking for by using 'on click' interactions in conjunction with action sequences.
    I just made a simple example, here are the steps:
    1) Select the component you'd like to react on 'tap'
    2) In the Interactions panel, click 'Add Interaction', and select 'play action sequence'
    3) The timelines panel should now be given focus, and display the new 'on click' action sequence
    4) Select the "circle" you'd like to make the fade in followed by fade out effect.  If their opacity is set to 0 at this point, use the layers panel to select them.
    5) With the circle selected, in the timelines panel click 'add action', located at the bottom.
    6) Select 'fade' from the options available.
    7) In the properties panel, define the fade properties (for fade in, obviously set 'from' to be 0, and 'to' to be 100)
    8) Repeat steps 5 through 7, but choose from=100 and to=0
    9) Arrange the fade in, and fade out events on the timeline to get the timing choreography right.
    10) If you haven't done so already, set the opacity of your circles to be 0.
    Does this work for you?
    Is this what you were looking for?
    Let me know if you need clarification on any of the steps.
    Thanks for posting, great question!
    Tara

  • Fade out the web page??

    I have seen this effect all over the web but I do not have a
    clue as to how to do this.
    See this page here
    http://www.suncreekmusic.com/product_info.php/cPath/44/products_id/1082
    Then when you get on that page click the link in the upper
    right, under the picture of the guitar strap that says "click to
    enlarge" to enlarge the image, the effect happens when you click
    the link. Its like the page fades out and another small popup
    appears in front of it. Any ideas how this is done?
    Thanks a lot!

    Litebox Image Gallery
    http://www.doknowevil.net/litebox/
    --Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    "texjgc" <[email protected]> wrote in
    message
    news:g7d8rd$o0t$[email protected]..
    > I have seen this effect all over the web but I do not
    have a clue as to
    how to
    > do this.
    >
    > See this page here
    >
    >
    http://www.suncreekmusic.com/product_info.php/cPath/44/products_id/1082
    >
    > Then when you get on that page click the link in the
    upper right, under
    the
    > picture of the guitar strap that says "click to enlarge"
    to enlarge the
    image,
    > the effect happens when you click the link. Its like the
    page fades out
    and
    > another small popup appears in front of it. Any ideas
    how this is done?
    >
    > Thanks a lot!
    >

  • Specific region mouse over effect(Button 1 fades out and Button 2 fades in).

    Dear All -
    I am new to Flash CS5 and building Flash navigation bar with buttons on it.
    Below is my problem description that I want to solve with your help.
    I have a rectangular bar and placed one small button(Button 1) on this bar. Also, I have similar button(Button 2) with some graphics on it which is of similar size as to previous Button 1.
    Button 1 - Without graphic.
    Button 2 - With graphic on it.
    What I want is that, whenever mouse is taken over Button 1 placed on the rectangular bar, it should fade out and simultaneously Button 2 should fade in. I want only button region to be sensitive to this mouse over effect and not the complete rectangular bar.
    Kindly let me know how can I define the specific region(button region only) to be sensitive to mouse over effect in flash, and how to place Button 1 and Button 2 in layers so that both are at the same positition(so that there is no displacement of button detected).
    Thank You,
    Saurabh Khanna.

    Hello -
    Thank you for the reply. Button 1 does not have glowing effect, whereas Button 2 has a glowing effect. So what I wanted is that when initially Button 1 is loaded during page load, when I mouse over Button 1, Button 1 would fade out and Button 2 sitting behind Button 1 would automatically look like fade in(due to gradual fad out of Button 1 on top of Button 2).
    I could do this now, and would like to Thank you for your reply.
    I did this by creating movie clip on "Over" event of Button 1 and changing its Alpha property. But now what I want is how to gradually fade out, means when I remove my mouse from over button, then Button 2 should fade out gradually which will automatically make Button 1 fade in gradually.
    I could not find the "Out" event just like we have "Over" event for Button, so I assume this can only be done using ActionScript somehow.
    Let me know if I am going correct with my assumption, and possibly if you could help me achieve the remaining half(fading out gradually when mouse is removed from the button).
    Thank You once again for your reply.
    Thank You,
    Saurabh Khanna.

  • Can you skip numbers while using pages?

    I am working on a syllabus for class and we are asked to skip some questions. Is there a way to skip numbers while in pages? Example being
    1.
    2.
    3.
    5.
    6.
    8.
    I'm having a hard time trying to figure it out.
    Thanks

    Screen shots are taken by pressing the COMMAND-SHIFT keys and then '3'.
    Ciao.

  • Page Fade Out

    Here is some javascript code that will fade out a page:
            <script type="text/javascript">
            $('Home.php').click(function(){
          var href= $(this).attr('href');
          // do animation
          $('#myDiv').fadeOut( 500, function(){
                // go to link when animation completes
                window.location=href;
          // over ride browser following link when clicked
          return false;
    </script>
    I don't know how to make it work though. Like hte code works, but how do I make it work with a certain link?

    I don't know if the following will help. This is a piece of code that Nancy O passed on.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Fading Logo and page redirect test</title>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js">
    </script>
    <style type="text/css">
    #logo {
    display: none;
    margin-top: 150px;
    body {
    text-align: center;
    </style>
    </head>
    <body>
    <!--your image goes here -->
    <img src="../Images/magnifying_glass.gif" alt="description" name="logo" width="175" height="173" id="logo" />
    <!--change window.location = to 'http://yourdomain.com' -->
    <script type="text/javascript">
    $(function() {
    $('#logo').fadeIn(3000, function() {
    $(this).delay(1000).fadeOut(2000, function() { window.location = 'http://alt-web.com/tools.shtml'; });
    </script>
    <noscript>This is an <a href="../tools.shtml">alternate text link </a>for browsers with JavaScript Disabled.</noscript>
    </body>
    </html>
    Gramps

  • Page item sequence numbers

    Maybe this one is for a future improvement...
    After reordering page items using the drag and drop feature the items all have a sequence number one greater than it's predecessor.
    This makes it hard to put a new item in between existing ones. Generating sequence numbers 5 or 10 apart would make this a bit easier.

    hi,
    i dont know whether you have tried this before...
    10
    10.1
    10.2
    10.3
    20
    20.1
    20.2
    30
    this is acceptable in apex item sequence number for inserting new items .
    Thanks
    Mark Wyatt
    Edited by: Websoft on Sep 30, 2009 6:33 AM

  • How to make contents of DIV on page I'm leaving fade out?

    I am trying to figure out how to make the contents of a DIV on the page I'm clicking away from fade out. I know how to make the next page load with a fade in. So I'm half way there (I guess).  Wix has a lot of designs that use this effect. Here's a link to an example:
    http://www.wix.com/website-template/view/html/633?originUrl=http%3A%2F%2Fwww.wix.com&numbe r-of-page=1&position-in-page=1
    This is the code that I use to make a DIV load with a fade in:
    I add this CSS code under the DIV that I want to apply the fade in effect to:
         animation: fadein 2s;
        -moz-animation: fadein 2s; /* Firefox */
        -webkit-animation: fadein 2s; /* Safari and Chrome */
        -o-animation: fadein 2s; /* Opera */
    And I add this extra code to the CSS styles sheet:
    @keyframes fadein {
        from {
            opacity:0;
        to {
            opacity:1;
    @-moz-keyframes fadein { /* Firefox */
        from {
            opacity:0;
        to {
            opacity:1;
    @-webkit-keyframes fadein { /* Safari and Chrome */
        from {
            opacity:0;
        to {
            opacity:1;
    @-o-keyframes fadein { /* Opera */
        from {
            opacity:0;
        to {
            opacity: 1;

    Success!!! Thank you! Although I did have to change one more thing. See bold text below.
    One more question. What if I wanted to apply this effect to two ID's instead of one? Would it be as simple as adding a comma and then the ID in quotes like this?.... $(#container", "#footer")
    $(document).ready(function() {
        $("#container").css("display", "none");
        $("#container").fadeIn(2000);
        $("a.transition").click(function(event){
            event.preventDefault();
            linkLocation = this.href;
            $("#container").fadeOut(1000, redirectPage);       
        function redirectPage() {
            window.location = linkLocation;

  • Fade out for a while

    I have Elements 12 and Windows 8.1 64.
    I like to fade out the sound in the middle of a clip for just a short time. After that I will go back to the normal level. How can I do such things?

    Koolmees37
    I am going to detour in methodology to see if keyframing at the audio clip's rubberband will be easier. If not, we will go back to my first choice the Audio Mixer for the task.
    In this demo, I have my audio on Audio Track 1 and selected/highlighted.
    1. Place the Timeline Indicator at the spot on the Timeline about 20 seconds before where you want the Fade Out to start. Click on the diamond shape under Audio 1 (track name). That will place a white dot on the orange line that is running horizontally across the clip. That orange band is called rubberband. You have just placed a Volume keyframe. The Volume level at that spot will be 0 dB (normal Volume of the clip).
    2. Move the Timeline Indicator 20 seconds later on the Timeline. Click on the diamond shape under Audio 1 (track name). That will place a white dot on the orange line (rubberband). With your mouse cursor, click and drag that second white dot down at that time spot to the bottom. You have just placed a Volume keyframe and set it a no sound (-infniity). The slope between the first and second keyframes placement will give you that Fade Out effect. You can fine tune the Fade Out by moving the white dots around with your mouse cursor.
    3. Then move the Timeline Indicator to the right where you want the Volume to Fade In. Click on the diamond shape under Audio 1 (track name). This will place a white dot on the orange line (rubberband). Anothe Volume keyframe (that third white dote that you see in the screenshot). Since we are not moving this one up, the Volume there is -infinity (no sound). Now move the Timeline Indicator 20 seconds forward from that spot. Click on the diamond shape under Audio 1 (track name). This will place another white dot on the orange line (rubberband). For this white dot, with the mouse cursor click drag it upward at that time spot to the normal Volume level (try for 0 dB or very close to it).
    At the end, the keyframed audio clip and its Volume keyframes (white dots) will look like this
    Did that help and give good results or time to go back to the Audio Mixer whose description I gave in a prior post?
    Looking forward to your results.
    Thanks.
    ATR

  • Let's say I have a document that is 5 pages long. Now I want to insert the page numbers, starting on page 3 with the number "3" and leaving out pages 1 and 2. How do I do that?

    Let's say I have a document that is 5 pages long. Now I want to insert the page numbers, starting on page 3 with the number "3" and leaving out pages 1 and 2. How do I do that?

    I just found the answer myself. I don't know how to delete my question, so I'll just write the reply to the answer - just in case somebody needs to know: Insert a section brake after the second page and then choose "Start on 3".

  • When printing a web page the type is spaced out all over the page, why?

    when I try and print a web page out on firefox it spreads the words out all over the page so it is unreadable. I never had this problem until recently.

    This is a regression that was introduced in Firefox 4.0 beta 12. It is fixed in 4.0 release candidate 1, which is now available. Go here: http://www.mozilla.com/en-US/firefox/4.0rc1/releasenotes/ and click on the green button "Firefox 4 rc free download". Note that you should do a custom install and change the install directory to the directory where your beta version is located. Alternatively, you should receive a notification that an update is available from within the beta version. Follow the instructions to download and install the update, and once you are running the release candidate, your printing problem should be fixed.

Maybe you are looking for