Freeze button in down state?

I want to have several graphic elements that change with a
mouse click, then stay there. I imagine this as buttons that get to
the down state and freeze, but I can't imagine how to make it work.
Thank you
--Neal

instead of a button, you could use a MovieClip instance which
contains two keyframes. One keyframe holds the up graphic and the
second keyframe contains the down graphic. Using the
instancename.onRelease and instancename.RollOut methods you could
have the graphic toggle between frame 1 and 2 with
instancename.gotoAndStop(2) and .gotoAndStop(1) respectively. Be
sure to place a stop(); action in the action layer over each of the
keyframes.

Similar Messages

  • Tecra Z50-A-15W Win 7 freeze while sshutting down state

    Hi,
    can someone help - my brand new laptop has a very weird problem - upon restart caused by updates - it freezes on the shutting down state and I have to press and hold the power button for 5 sec in order to get it to start again. It is doing that every time. No events are visible in the logs. The OS is Win7 professional.
    Thank you in advance

    I guess some processes which are running in the background would not be closed automatically and therefore the shutdown mode does not response until these processes would be closed.
    Would recommend you to clean the system using CCLeaner.
    Also ensure that all programs and tools would be closed properly before you want to shut down the notebook.

  • How to have button in down state as page opens

    On opening a new "blank" subsidiary page using "getURL",
    there are 2 buttons on the new page. Each button plays a moveclip.
    (The first movieclip is already playing as the new page opens). I'd
    like to have the corresponding button already in the down state as
    the page opens. Is there a conditional statement I could use for
    this? I'm using AS 2.
    The code on each button is as follows:
    on (release){
    _root.resetButtons();
    this.gotoAndStop("down");
    on (rollOver){
    if (this._currentframe <> 3)
    this.gotoAndStop("over");
    on (rollOut, releaseOutside){
    if (this._currentframe <> 3)
    this.gotoAndStop("up");
    Many thanks for any advice.

    Yes, but you'll have to make a bunch of changes. If you
    convert your buttons to movieClips and insert frame labels and
    actions, you can get the resulting movieClip to act as a button.
    Then you can tell one of the button/movieClips to
    gotoAndStop("_over"). It will then start that way and then work
    normally after it is used. Look at
    http://help.adobe.com/en_US/AS2LCR/Flash_10.0/help.html?content=00000230.html,
    for more information using a movieClip as a button.
    Alternately, you could just put in a static graphic of the
    button's over state in place of the button until it should show
    normally, then swap out the graphic for an actual button.

  • Holding button in "down" state

    I'm using this code from a previous thread on this site, it was extremely helpful (thanks Ned). I was able to get it to work when the buttons were placed on the timeline, but now I have a the movieclip embedded into two movieclips and can't get it to work.The buttons are holding in the down state but not resetting. I'm sure it's a path issue, but can't seem to get it to work. Any pointers? Here's the script I have on the timeline:
    function resetBtns(btnNum){
        for(i=1; i<4; i++){
            if(i != btnNum){
                this["btn"+i+"Selected"] = false;
                this["btn"+i].gotoAndStop("up");
    var btn1Selected = false;
    var btn2Selected = false;
    var btn3Selected = false;
    my_acc.Customer1_select.btn1.onRollOver = function(){
        if(!my_acc.Customer1_select.btn1Selected) my_acc.Customer1_select.btn1.gotoAndStop("over");
    my_acc.Customer1_select.btn1.onRollOut = my_acc.Customer1_select.btn1.onReleaseOutside = function(){
        if(!my_acc.Customer1_select.btn1Selected) my_acc.Customer1_select.btn1.gotoAndStop("up");
    my_acc.Customer1_select.btn1.onPress = function(){
        my_acc.Customer1_select.btn1.gotoAndStop("down");
    my_acc.Customer1_select.btn1.onRelease = function(){
        resetBtns(1);
        my_acc.Customer1_select.btn1Selected = true;
    my_acc.Customer1_select.btn2.onRollOver = function(){
        if(!my_acc.Customer1_select.btn2Selected) my_acc.Customer1_select.btn2.gotoAndStop("over");
    my_acc.Customer1_select.btn2.onRollOut = my_acc.Customer1_select.btn2.onReleaseOutside = function(){
        if(!my_acc.Customer1_select.btn2Selected) my_acc.Customer1_select.btn2.gotoAndStop("up");
    my_acc.Customer1_select.btn2.onPress = function(){
        my_acc.Customer1_select.btn2.gotoAndStop("down");
    my_acc.Customer1_select.btn2.onRelease = function(){
        resetBtns(2);
        my_acc.Customer1_select.btn2Selected = true;
    my_acc.Customer1_select.btn3.onRollOver = function(){
        if(!my_acc.Customer1_select.btn3Selected) my_acc.Customer1_select.btn3.gotoAndStop("over");
    my_acc.Customer1_select.btn3.onRollOut = my_acc.Customer1_select.btn3.onReleaseOutside = function(){
        if(!my_acc.Customer1_select.btn3Selected) my_acc.Customer1_select.btn3.gotoAndStop("up");
    my_acc.Customer1_select.btn3.onPress = function(){
        my_acc.Customer1_select.btn3.gotoAndStop("down");
    my_acc.Customer1_select.btn3.onRelease = function(){
        resetBtns(3);
        my_acc.Customer1_select.btn3Selected = true;

    try:
    function resetBtns(btnNum){
        for(i=1; i<4; i++){
            if(i != btnNum){
              my_acc.Customer1_select["btn"+i]= false;
               my_acc.Customer1_select["btn"+i].gotoAndStop("up");
    var btn1Selected = false;
    var btn2Selected = false;
    var btn3Selected = false;
    my_acc.Customer1_select.btn1.onRollOver = function(){
        if(!my_acc.Customer1_select.btn1Selected) my_acc.Customer1_select.btn1.gotoAndStop("over");
    my_acc.Customer1_select.btn1.onRollOut = my_acc.Customer1_select.btn1.onReleaseOutside = function(){
        if(!my_acc.Customer1_select.btn1Selected) my_acc.Customer1_select.btn1.gotoAndStop("up");
    my_acc.Customer1_select.btn1.onPress = function(){
        my_acc.Customer1_select.btn1.gotoAndStop("down");
    my_acc.Customer1_select.btn1.onRelease = function(){
        resetBtns(1);
        my_acc.Customer1_select.btn1Selected = true;
    my_acc.Customer1_select.btn2.onRollOver = function(){
        if(!my_acc.Customer1_select.btn2Selected) my_acc.Customer1_select.btn2.gotoAndStop("over");
    my_acc.Customer1_select.btn2.onRollOut = my_acc.Customer1_select.btn2.onReleaseOutside = function(){
        if(!my_acc.Customer1_select.btn2Selected) my_acc.Customer1_select.btn2.gotoAndStop("up");
    my_acc.Customer1_select.btn2.onPress = function(){
        my_acc.Customer1_select.btn2.gotoAndStop("down");
    my_acc.Customer1_select.btn2.onRelease = function(){
        resetBtns(2);
        my_acc.Customer1_select.btn2Selected = true;
    my_acc.Customer1_select.btn3.onRollOver = function(){
        if(!my_acc.Customer1_select.btn3Selected) my_acc.Customer1_select.btn3.gotoAndStop("over");
    my_acc.Customer1_select.btn3.onRollOut = my_acc.Customer1_select.btn3.onReleaseOutside = function(){
        if(!my_acc.Customer1_select.btn3Selected) my_acc.Customer1_select.btn3.gotoAndStop("up");
    my_acc.Customer1_select.btn3.onPress = function(){
        my_acc.Customer1_select.btn3.gotoAndStop("down");
    my_acc.Customer1_select.btn3.onRelease = function(){
        resetBtns(3);
        my_acc.Customer1_select.btn3Selected = true;

  • How can I create a navigation bar in the template so I can change the down state of a button on a page made from the template in DW3?

    We're creating pages from a template in DW3. The template includes a header, footer and a navigation bar. We've made the navigation bar an editable region so that we can change the down state of the buttons on pages where it is required. However, when we make a new page from the template and try to change the behaviors of the buttons in the navigation bar it will not allow us to make those changes. 

    Have you considered using CSS styled text/list menus instead of image rollovers.  It isn't hard really and it's actually a much better choice for   web accessibility and for search engines to find and follow your links.   Here are some links to several CSS menu systems you can try:
    CSS Express Drop-Down Menus (tutorial)
    http://www.projectseven.com/tutorials/navigation/auto_hide/
    CSS Tab Designer creates 60+ CSS Styled Button and Tab Menus  (download)
    http://www.highdots.com/css-tab-designer/
    List-O-Rama  (DW Extension)
    http://www.dmxzone.com/go?5618
    CSS  Menu Maker (On-Line Menu Generator)
    http://www.cssmenumaker.com/
    Pop-Menu  Magic2 by PVII (DW extension purchase)
    http://www.projectseven.com/products/menusystems/pmm2/index.htm
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • How can I get Navigation Menu Button to remain in down state after clicked?

    Hi there,
    I'm messing about with a Navigation Menu and would like to click on the button and once clicked, the button remains in its down state.  I can't seem to find a way of doing this?  Any pointers?
    Cheers

    We would need to see your live page and code to offer more meaningful answers.  But I wonder if what you really want is a "persistent page indicator" on your nav menu?
    HOME  |  PRODUCTS  |  CONTACT US
    When you're on the Home page, the HOME menu is highlighted.
    HOME  |  PRODUCTS  |  CONTACT US
    When you're on the Products page, the PRODUCTS menu is highlighted. And so on...
    See this related discussion -
    http://forums.adobe.com/message/2398026#2398026
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • How do I make a button have a permanent down state?

    How do i make it so when you when you click on the button it
    changes the button..
    for example
    normal > red
    rollover > green
    when clicked > stays blue

    I solved that problem by making the down state an actual
    frame in the timeline.
    ie. I want something to happen when you press the button.
    That something is going to happen on frame 10 and the button is on
    frame 1-9. Make a Layer called ACTIONS. Then while on that button
    frame range (1-9) and after selecting that button, in the Actions
    panel I put
    on (release) {
    gotoAndPlay(10);
    Then I select the ACTIONS layer I created and put a
    stop();
    at frame 9... so it waits for the button. you could just send
    it back to frame 1 if you want an anim to loop.
    Anyway, on Frame 10 (when that button is pressed) I replace
    it with what it stays with... the down or SELECTED STATE button.
    This was how fixed my buttons to stay down.
    there is probably a better solution somewhere.

  • Flash button play over sound in both over and down states?

    I have created a button and set a sound on it for the over
    state. The sound plays correctly when the button enters the over
    state, but it plays again when the button enters the down state.
    Here's what I did as a test:
    In an empty Flash9/ActionScript3 project:
    1. Create a new button symbol
    2. Insert key frames for up/down/over/hit
    3. Draw a rect on each of those keyframes (just for testing
    purposes so you can see it)
    4. Go to over state and set the Sound property to a sound in
    the libray. Set effect:none, sync:event/repeat/1
    5. Verify that the down state still says sound:none
    Now put that symbol in the scene and try it out. For me the
    over sound will play both when you mouse over the button and when
    you click on it. Does this make any sense?

    bump for help.

  • Projector not showing down state of buttons

    Why would it be that my buttons work in Director with the
    multi-state button behavior in the library but when I publish the
    movie and open it in a projector the buttons can't pushed down? The
    over state works. Now I don't have these buttons doing anything
    yet. They are controls for audio - play, pause, stop. If it works
    when I play the movie in director shouldn't it work when the movie
    is published?
    Also, if I have an mp3 with a slider to go back and forth in
    the music why would I need both a stop button and a pause button?
    Is it because the stop button normally would, in effect, "rewind"
    the music to the beggining? And why would I use a |<< or
    >>| button?
    Frustrated! Any clues to my unseen problem are greatly
    appreciated!!

    If the buttons work in authoring but not in a projector, then
    its most
    likely that the down state member for the button can't be
    found. This
    may be because you have a member name problem: two or more
    members with
    the same name.
    The concept of pause and stop are left over from analogue
    tape players.
    I only use stop and play for any controls that I create. Some
    people
    differentiate the two by what happens after that command is
    given. For
    pause, the play command given after will continue to play the
    audio or
    video at the point of the pause. For stop, the play commmand
    given after
    will cause the audio or video to play from the beginning of
    the file.
    I believe that the pause button should be set out in the barn
    next to
    the anvil and the blotter. You can use the crank handle from
    your car to
    hold it down. It that won't hold it, stuff it under the top
    cover of the
    fax machine out there.
    The fast play forward, |<<, and reverse, |>>,
    buttons are used to play
    the file at a faster than normal speed either forward or
    backward.
    Rob
    Rob Dillon
    Adobe Community Expert
    http://www.ddg-designs.com
    412-243-9119
    http://www.macromedia.com/software/trial/

  • Down State stays after back button pressed on browser

    I have built a Navigation Bar in Dreamweaver CS5. I want the nav images to indicate what page you are on by showing the down image state. This is a check box within the Navigation options "Show 'Down Image' initially". This works fine on all pages as long as you use the buttons to navigate, but when you press the back button on the browser (safari & firefox), the page that you have just come from also stays in the down state, affectively showing 2 down states. Has anybody had a similar problem and can help.

    Hi
    This is standard behaviour with browser back buttons, if the page is in the browser cache they will display the page in the same state as the cached page.
    PZ

  • Toggle button to "Down" when changing application state?

    I am trying to make a button component modal so that when I click it, the application changes to a different state and the button stays in the button "down" state. Then if I click a different button, the application state changes again, the first button changes to the "up" state and the second button changes to the "down" state. Basically, I want radio button actions, but on a styled button.
    Is there a way to do this in Catalyst or do I have to handle this in the FB code?

    I had some difficulty getting Catalyst to allow me to set the states of toggle buttons added to my project. So, I decided to create my own custom toggle button to give me the ability to fully style it. Here's the process I followed:
    converted my styled "normal" buttons back to artwork
    Converted the artwork to a custom component
    Created states for custom component for Unselected, Selected, Over, etc.
    Associated the artwork from Illustrator to the appropriate states for the custom component
    set the custom component state (e.g., unselected, selected...) for the each of the appropriate application states
    set the component action to "transition to state" when the custom component is "clicked"
    Renamed the custom component in the library to "CustomToggleButton"
    Exported the CustomToggleButton library component and then imported it so it was reusable in my library

  • Z30 freezing and shutting down

    I am on my 2 nd z30 in 2 weeks and they have both had a problem with freezing and shutting down, sometimes in mid use and sometimes on its own, can anyone?

    Hello soggy001
    Welcome to http://supportforums.blackberry.com
    Make restarted the z30?
    If your problem evidences the persistence
    Apply a hard reset keep the power button for 30 seconds.
    Regards.
    I recommend you make a reload of the BlackBerry OS Link
    Connect your z30 and run BBLink
    Then go to preference and press the reload option software
    Let the process do all your work, and then you start setting your BB
    And load your backup.
    And let us know if your problem evidences the persistence.
    You must have the latest version of the BlackBerry Link installed.
    Regards.
    VIA | gutijose14
    http://supportforums.blackberry.com/t5/BlackBerry-Z10/My-BB-Z10-is-not-recieving-txt-msgs/m-p/266997...
    Please thank those who help you by clicking the button.
    If your issue has been solved, please resolve it by marking "Accept as Solution"

  • Just done a fresh install of Snow Leopard with all updates,iMac 5.1 behaves strange, sometimes I start Google Chrome and look at youtube videos the computer freezes and shuts down immediately, I believe its  related to overheating ?

    Just done a replacement of the pata DVD drive (its new and is working ok),  and a fresh clean  install of Snow Leopard with all updates, iMac 5.1 behaves strange, sometimes I start Google Chrome and look at youtube videos the computer freezes and shuts down immediately,
    I believe its  related to overheating ?
    iStat Pro shows GPU diode temp at 66 C, CPU at 48 C,  Fan rpms is around 1000
    Any ideas somebody ?
    The hard disk has been previously checked with state of the art techniques that have confirmed that the hard disk drive is in perfect condition.

    1.5-3 minute boot up as opposed to 15-20 seconds
    And
    why it takes a long time to load a lot of things.
    I have restored this
    from a time machine partition.
    TimeMachine is only a backup and restore, it won't fix issues in software and according to your information, doesn't even optimize the restore for best performance on boot hard drives.
    What you need to do to regain your speed is to understand how your machine works
    Why is my computer slow?
    Fix any and all issues in software following this list of fixes
    ..Step by Step to fix your Mac
    Then follow this defrag method I've outlined
    How to safely defrag a Mac's hard drive
    Most commonly used backup methods
    There shouldn't be need to reinstall OS X fresh unless your having file structure issues which if they are should appear when in the Steps, which then a zero erase and install will cure as well as any bad sector issues, the defrag step wouldn't be necessarry on a freshly installed system obviously as the files are written all together, not in portions all over the drive.
    Hope this assists.

  • How to make a button stay down when I click on it in  CSS nav bar.

    So I have created a horizontal navigation bar, I use the CSS
    Sprites/Pixy method to get the hover working with the same image as
    the link/in active stage of the buttons.
    Now how do I make the button stay down when someone click on
    them?
    These are the codes for the nav bar.
    #nav{
    width: 780px;
    list-style: none;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    padding: 0;
    height: 40px;
    #nav li{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: bold;
    float: left;
    padding: 0;
    #nav a{
    width: 125px;
    display: block;
    color: #000000;
    text-decoration: none;
    text-align: center;
    background-image: url(ZITTO_IMAGES/button_set1a.jpg);
    background-repeat: no-repeat;
    background-position: center 2px;
    padding-top: 14px;
    padding-bottom: 10px;
    background-color: #000000;
    #link2,#link3,#link4,#link5,#link5,#link6 { margin-left:
    6px;}
    #nav a:hover{
    background-image: url(ZITTO_IMAGES/button_set1a.jpg);
    background-repeat: no-repeat;
    background-position: center -36px;
    color: #FFFFFF;
    width: 125px;
    padding-top: 14px;
    padding-bottom: 10px;
    background-color: #000000;
    Everything works so far, the hover works when you roll the
    mouse but when you click the button goes right back.
    How can I make it stay down and then go back to normal when
    you click on another link/button?
    Thanks very much.
    Patrick

    Read my suggestion again. You are missing a critical point. I
    show you
    exactly where to put the stylesheet. And it doesn't matter
    how many
    stylesheets you have on a page.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Webethics" <[email protected]> wrote in
    message
    news:[email protected]...
    >
    quote:
    Originally posted by:
    Newsgroup User
    > Change this -
    >
    > #nav a{
    > width: 125px;
    > display: block;
    > color: #000000;
    > text-decoration: none;
    > text-align: center;
    > background-image: url(ZITTO_IMAGES/button_set1a.jpg);
    > background-repeat: no-repeat;
    > background-position: center 2px;
    > padding-top: 14px;
    > padding-bottom: 10px;
    > background-color: #000000;
    > }
    >
    > #link2,#link3,#link4,#link5,#link5,#link6 { margin-left:
    6px;}
    >
    >
    > #nav a:hover{
    > background-image: url(ZITTO_IMAGES/button_set1a.jpg);
    > background-repeat: no-repeat;
    > background-position: center -36px;
    > color: #FFFFFF;
    > width: 125px;
    > padding-top: 14px;
    > padding-bottom: 10px;
    > background-color: #000000;
    > }
    >
    > to this -
    >
    > #nav a{
    > width: 125px;
    > display: block;
    > color: #000000;
    > text-decoration: none;
    > text-align: center;
    > background-image: url(ZITTO_IMAGES/button_set1a.jpg);
    > background-repeat: no-repeat;
    > background-position: center 2px;
    > padding-top: 14px;
    > padding-bottom: 10px;
    > background-color: #000000;
    > }
    >
    > #link2,#link3,#link4,#link5,#link5,#link6 { margin-left:
    6px;}
    >
    >
    > #nav a:hover{
    > background-position: center -36px;
    > color: #FFFFFF;
    > }
    >
    > Then on each individual page, change this -
    >
    > </head>
    >
    > to this -
    >
    > <style type="text/css">
    > #nav a#link4 {
    > background-position:center - 36px;
    > }
    > </style>
    > </head>
    >
    > (for link4, for example)
    >
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    > ==================
    >
    >
    > "Webethics" <[email protected]> wrote
    in message
    > news:[email protected]...
    > >
    quote:
    Originally posted by:
    Newsgroup User
    > > When they click on a button, do they go to another
    page? And is each
    > > button
    > > uniquely identified?
    > >
    > > If so, then put a little stylesheet on each such
    page that sets the
    > > particular button to the down sprite settings,
    e.g.,
    > >
    > > a#link6 { downspritevalues }
    > >
    > > --
    > > Murray --- ICQ 71997575
    > > Adobe Community Expert
    > >
    > >
    > > This is the link to the page.
    > >
    http://www.patrickjudson.com/zitto_web1d.html
    > > What state do I use to get this effect? The active
    or the visited?
    > >
    > > I want the buttons to remain down when click or
    even better, how do I
    > > get
    > > the
    > > welcome button to appear down when a person visits
    the page to show them
    > > they
    > > are at the home page.
    > >
    > > Thanks so much. Patrick
    > >
    > >
    > >
    >
    >
    >
    > Hey! Murray, thanks very much for the efforts. However
    I'm still confused
    > as
    > to where to insert the individual styles on each page.
    >
    > The pages already have a style sheet, in fact they all
    share the same
    > style
    > sheet. The following codes below is what you instructed
    but I'm confused
    > as to
    > where to insert them since the page already has a head
    opening and closing
    > as
    > well as a style opening and closing tags. Can you please
    add the codes you
    > instructed so I can see where they go and how to
    implement them?
    >
    > Thanks - Patrick
    >
    >
    > Then on each individual page, change this -
    >
    > </head>
    >
    > to this -
    >
    > <style type="text/css">
    > #nav a#link4 {
    > background-position:center - 36px;
    > }
    > </style>
    > </head>
    >
    > (for link4, for example)
    >
    >
    >
    >

  • How do you make the down state last a few seconds?

    I have an assignment due next week where you click something and a little text box pops up telling you what that item is. I also made it so the item changes colour.
    However, right now I've just got it so that you hover your cursor over it, it fades a bit, then you click it and it changes colour and the textbox shows up. The textbox and colour doesn't stay for a few seconds; you need to hold your mouse over it to make it stay.
    So, in short, I want it so the down state stays for a few seconds and then goes back to normal.
    I downloaded and installed the Flash CS6 trial to complete this, and I'm not sure if it's limited.
    At College they only have CS5.5, so I can't use any tools that go beyond CS5.5.
    I 'have' Flash CS5.5 but that was on my old computer (Which broke) and I'm waiting for my new one to come.

    How I would do it...
    1) make 2 seperate MC, one is the buttonMC (convert it to button symbol and just leave the hit spot)  and another is the buttongraphic (a movieclip) itself
    2) animate the buttongraphic (the MC), lets say frame one is its original state, frame two is how the hit/click would look like and frame ten is how it would look like when hover. that give you 10 frames for animation for each action
    3) name the button instance "button" and the graphic "gaphic"
    4) on the button, give it this code:
    on(press) {tellTarget("graphic") {gotoAndPlay(2);}}
    on(rollOver) {tellTarget("graphic") {gotoAndPlay(10);}}
    Hopefully this will help you out.

Maybe you are looking for

  • 'Unable to load database' er

    Hi, I have the Creative MuVo V200 and it is installed with drivers .07 00 250 latest and Creative Mediasource organiser ver 3.30.2. The initial installation caused no problems and I used the Rip CD option on the MuVo V200 media Explorer on My Compter

  • Batch Renaming with Counter

    I am trying to do batch renaming with a counter. Unfortunately every time I try to use a counter, it stays the same number. For example/ I have two clips that I want to rename Ceremony 1 and Ceremony 2. When I do the batch renaming, the clips change

  • How do I rewrap text in a quoted message?

    Is it my imagination, or did there used to be a command in one of the menus to rewrap paragraphs? I am drafting an email this morning with an extended quote and it has those terrible ragged edges you get with oft forwarded excerpts. Do I need to manu

  • Later jet 4 with windows 8.1

    All, I have a new HP Envy 20 computer with windows 8.1 I have a 30+ year old Lazer jet 4 printer that is the best computer device ever invented. (thanks HP) At first it worked just fine.  Then one of 3 things happened:  I went from Windows 8 to Windo

  • HELP HELP...Question with some differences between 8 and 6

    We made a dvd in idvd and love the revolutions main menu. We love it so much that we wanted render to its own looping movie. ie: reflections in the earlier imovie and idvd could be used as the dvd menu in idvd or you could use it as a movie title or