Playhead in timeline doesn't move while in trim mode

Just updated to 7.2.2 and now the playhead won't move while in trim mode.  It doesn't move for jkl trimming or when I hit the spacebar to preview a cut.  The cut does however play back in the program monitor.  It's only the playhead in the timeline that seems to be frozen, until a new in and/or out is made, and then it will jump to that position.  I've tried clearing the media cache and trashing prefs.  I've even rebooted!  Please don't tell me I need to revert to 7.2.1.

Hmmmm... You mean I just noticed this now... I see. Well, thanks for straightening this out for me, anyway.  I still can't believe the playhead won't play around the cut when previewing (hitting spacebar) in trim mode, just as it does when you play around the cut outside of trim mode. (shift-K). In Avid you can see a ghost cut/playhead move while trimming, but I guess that's neither here nor there.

Similar Messages

  • My mac won't play sound though itunes the timelines doesn't move from 0.00 and there's no sound? help!

     

    Sounds like for some reason it's trying to change to digital output mode. Next time it happens, look at the headphone jack. If you see a red light, it's in digital output mode. This happens from time to time, and you basically just try and put in a pair of headphones or speakers a couple of times until it turns off. If you can't get it to switch back after a dozen or so tries, you should probably take it to an AASP or Apple store, because you're going to need a new logic board.

  • While trimming a clip in my timeline, the entire timeline moves with my trim. How can I stop that and leave a gap in-between clips?

    While trimming a clip in my timeline, the entire timeline moves with my trim. How can I stop that and leave a gap in-between clips? Also when I use my blade it only leaves a dotted line in the clip. How can I make that a solid line? I do a lot of flickering in my videos and don't need that some what of a snapping effect while I edit. Please help me someone. I believe i upgraded from FCP 10.0.1 to 10.0.3 and before it never did this.

    Mark an In point and an Out point (which creates a Range) and hit the forward delete key (Replace with Gap.) On a MacBook, you'll probably need to hold down the Fn key and type the Delete key (or, I think you might be able to use Shift-Delete as the same command). On an iMac/Mac Pro keyboard, it's the key just to the left of 'end' or the next key above the left arrow key.
    You can use the Range tool (hold down the R key and click drag over your clip) or the Blade tool to cut at the in and out (then select the cut and replace with gap).
    You can also go into Commands > Customize (command-option-K) and assign a different key to Replace with Gap.
    If you need to ripple edit the ends (cut), create a small section that is Gap, and hold down the T key while you use the mouse to click drag both ends (double sided trim cursor) of the cut.
    Don't worry about the dotted line blade... That just lets you know that the frames on either side of the cut are continuous, or sequential — nothing has been moved yet. Once frames from either side of the mark have been cut, it becomes a full fledged cut resembling a separate clip.

  • The book who I selected doesn't move to the right in CheckedListBox and the reason is that I can't make an return.his code is good just for first user who I selected

    Imprumut = loan
    I have 6 tables: 
    I have one combobox(from where I select utilizatori(users)) and 2 CheckedListBox(Between first box and second box I have 2 buttons:imprumuta(loan) and restituie(return))
    This c# code works just for first user: Utilizator, but something's not good. When I add new utilizator(user) and select it,  the loan will be add in my SQL DataBase, but... the book who I selected doesn't move to the right in CheckedListBox and the reason
    is that I can't make an return
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    using MySql.Data.MySqlClient;
    namespace proiect
        public partial class Imprumut : Form
            MySqlConnection con = new MySqlConnection("DataSource=localhost;UserID=root;database=biblio1");
            //stabilim conexiunea
            MySqlCommand comUser;//interogarea pe baza careia umplem comboBox
            MySqlDataAdapter adaptu;
            DataTable userT = new DataTable();
            MySqlCommand cmdCarti;//interogarea pe baza careia umplem checkListBox
            MySqlDataAdapter adaptCarti;
            DataTable CartiTabel = new DataTable();
            MySqlCommand cmdCartiImprumutate;//interogarea pe baza careia umplem checkListBox
            MySqlDataAdapter adaptCartiImprumutate;
            DataTable CartiImprumutateTabel = new DataTable();
            public int UserId
                get
                    return Convert.ToInt32(user.SelectedValue.ToString());
            void Completez_Combo_User()
                try
                    comUser = new MySqlCommand("SELECT n.userid, CONCAT(n.UserName) as UserN FROM users n left join userroles us on n.userid=us.userid left join roles r on r.roleid=us.roleid WHERE r.roleid='3'",
    con);
                    adaptu = new MySqlDataAdapter(comUser);
                    adaptu.Fill(userT);
                    user.Items.Clear();
                    user.DataSource = userT;
                    //DataTable din care sunt preluate datele pentru ComboBox user
                    user.ValueMember = "UserID";
                    //Valoarea din coloana UserID nu se afiseaza in combobox
                    user.DisplayMember = "UserN";
                    //Eelementele afisate in combobox, preluate din concatenarea mai multor coloane
                catch (Exception ex)
                    MessageBox.Show(ex.Message);
            void Completez_CheckList_Carti()
                try
                    cmdCarti = new MySqlCommand("SELECT BookID, CONCAT(title, ' ', ISBN,' ',author)as date_carte FROM books WHERE NumberLeft > 0 ORDER BY BookID", con);
                    adaptCarti = new MySqlDataAdapter(cmdCarti);
                    adaptCarti.Fill(CartiTabel);
                    imp.Items.Clear();
                    //carti.DataSource=null;
                    imp.DataSource = CartiTabel;
                    //DataTable din care sunt preluate datele pentru ComboBox carte
                    imp.ValueMember = "BookID";
                    //Valoarea din coloana BookID nu se afiseaza in combobox
                    imp.DisplayMember = "date_carte";
                    //Eelementele afisate in combobox, preluate din concatenarea mai multor coloane
                catch (Exception ex)
                    MessageBox.Show(ex.Message);
                void Completez_CheckList_Cartires()
                    try
                        cmdCartiImprumutate = new MySqlCommand(string.Format("SELECT b.BookID, CONCAT(title, ' ', ISBN,' ',author) as date_carte FROM books b inner join userbooks ub on ub.bookid = b.bookid
    WHERE ub.userid = {0} ORDER BY BookID", UserId), con);
                        adaptCartiImprumutate = new MySqlDataAdapter(cmdCartiImprumutate);
                        adaptCartiImprumutate.Fill(CartiImprumutateTabel);
                        res.Items.Clear();
                        //carti.DataSource=null;
                        res.DataSource = CartiImprumutateTabel;
                        //DataTable din care sunt preluate datele pentru ComboBox carte
                        res.ValueMember = "BookID";
                        //Valoarea din coloana BookID nu se afiseaza in combobox
                        res.DisplayMember = "date_carte";
                        //Eelementele afisate in combobox, preluate din concatenarea mai multor coloane
                    catch (Exception ex)
                        MessageBox.Show(ex.Message);
            void Inregistrez_imprumut_in_BD()
                int useridu = Convert.ToInt32(user.SelectedValue.ToString()); //useridu = id book
                int bookidi;
                try
                    DateTime azi = System.DateTime.Now; //  Data imprumutului
                    DateTime atunci = termenul.Value;   //  Data restituirii
                    MySqlTransaction tranzactie = con.BeginTransaction();
                    MySqlCommand adaugImpr = new MySqlCommand("INSERT INTO bookshistory(UserID, BookID,BorrowDate) VALUES(@UserID, @BookID, CAST(@BorrowDate as datetime))", con);
                    MySqlCommand scadCarti = new MySqlCommand("UPDATE books SET numberleft=numberleft-1 WHERE bookid=@bookid", con);
                    MySqlCommand adauga_userbooks = new MySqlCommand("INSERT INTO userbooks(userId,bookID)VALUES(@userID,@bookID)", con);
                    adauga_userbooks.Transaction = tranzactie;
                    adaugImpr.Transaction = tranzactie;
                    scadCarti.Transaction = tranzactie;
                    try
                        foreach (int i in imp.CheckedIndices)
                            imp.SelectedIndex = i;
                            bookidi = Convert.ToInt32(imp.SelectedValue.ToString());
                            MessageBox.Show(bookidi.ToString());
                                     //bookidi va fi id-ul cartea bifata, pe rand din checklistBox
                                     //Inregistrez in tabela imprumut
                            adaugImpr.Parameters.AddWithValue("@UserID", useridu);
                            adaugImpr.Parameters.AddWithValue("@BookID", bookidi);
                            adaugImpr.Parameters.AddWithValue("@BorrowDate", azi);
                            adaugImpr.ExecuteNonQuery();
                            adaugImpr.Parameters.Clear();
                            adauga_userbooks.Parameters.AddWithValue("@userID", useridu);
                            adauga_userbooks.Parameters.AddWithValue("@bookID", bookidi);
                            adauga_userbooks.ExecuteNonQuery();
                            adauga_userbooks.Parameters.Clear();
                                    //Scad numarl de carti disponibile pentru cartea imprumutat
                            scadCarti.Parameters.AddWithValue("@bookid", bookidi);
                            scadCarti.ExecuteNonQuery();
                            scadCarti.Parameters.Clear();
                        tranzactie.Commit();
                    catch (Exception ex)
                        tranzactie.Rollback();
                        string message = ex.Message;
                        if (ex.Message.ToLower().Contains("duplicate entry"))
                            message = "Una dintre carti mai exista deja";
                        MessageBox.Show(message);
                catch (Exception ex)
                    MessageBox.Show(ex.Message);
            void Inregistrez_restituire_in_BD()
                int useridu = Convert.ToInt32(user.SelectedValue.ToString()); //useridu = id book
                int bookidi;
                try
                    DateTime azi = System.DateTime.Now; //  Data imprumutului
                    DateTime atunci = termenul.Value;   //  Data restituirii
                    MySqlTransaction tranzactie = con.BeginTransaction();
                    MySqlCommand modificIstoric = new MySqlCommand("UPDATE bookshistory SET returndate = @returnDate WHERE userID = @userID AND bookID = @bookID", con);
                    MySqlCommand adaugCarti = new MySqlCommand("UPDATE books SET numberleft = numberleft + 1 WHERE bookID = @bookID", con);
                    MySqlCommand sterge_userbooks = new MySqlCommand("DELETE  FROM userbooks WHERE userID = @userID AND bookID = @bookID", con);
                    sterge_userbooks.Transaction = tranzactie;
                    modificIstoric.Transaction = tranzactie;
                    adaugCarti.Transaction = tranzactie;
                    try
                        foreach (int i in res.CheckedIndices)
                            res.SelectedIndex = i;
                            bookidi = Convert.ToInt32(res.SelectedValue.ToString());
                            MessageBox.Show(bookidi.ToString());
                            //bookidi va fi id-ul cartea bifata, pe rand din checklistBox
                            //Inregistrez in tabela imprumut
                            modificIstoric.Parameters.AddWithValue("@UserID", useridu);
                            modificIstoric.Parameters.AddWithValue("@BookID", bookidi);
                            modificIstoric.Parameters.AddWithValue("@returnDate", termenul.Value);
                            modificIstoric.ExecuteNonQuery();
                            modificIstoric.Parameters.Clear();
                            sterge_userbooks.Parameters.AddWithValue("@UserID", useridu);
                            sterge_userbooks.Parameters.AddWithValue("@BookID", bookidi);
                            sterge_userbooks.ExecuteNonQuery();
                            sterge_userbooks.Parameters.Clear();
                            //Scad numarl de carti disponibile pentru cartea imprumutat
                            //adaugCarti.Parameters.AddWithValue("@bookid", bookidi);
                            adaugCarti.Parameters.AddWithValue("@bookid", bookidi);
                            adaugCarti.ExecuteNonQuery();
                            adaugCarti.Parameters.Clear();
                        tranzactie.Commit();
                    catch (Exception ex)
                        tranzactie.Rollback();
                        MessageBox.Show(ex.Message);
                catch (Exception ex)
                    MessageBox.Show(ex.Message);
            public Imprumut()
                InitializeComponent();
                try
                    con.Open();
                catch (Exception ex)
                    MessageBox.Show(ex.Message);
                Completez_Combo_User();
                Completez_CheckList_Carti();
                Completez_CheckList_Cartires();
                //selecteaza_carti_utilizator();
                //  Initializez termenul din dateTimePicker la data de peste 15 zile fata de data sistemului
                termenul.Value = System.DateTime.Now.AddDays(15);
            private void imprumuta_Click(object sender, EventArgs e)
                Confirmare c = new Confirmare("Confirmati imprumutul?");
                DialogResult dr = c.ShowDialog();
                if (dr == DialogResult.Yes)
                    try
                        Inregistrez_imprumut_in_BD();
                        MessageBox.Show("Imprumutul a fost inregistrat");
                        //Dupa inregistrarea imprumutului o parte din carti nu mai sunt disponibile pentru imprumut
                        //Reincarc in CheckList cu Carti noua lista cu carti ramase dupa imprumut
                        //Pentru asta "resetez" datele din dataTable cartiT (sursa pentru carti.DataSource)
                        CartiTabel.Clear();
                        adaptCarti.Fill(CartiTabel);
                        CartiImprumutateTabel.Clear();
                        adaptCartiImprumutate.Fill(CartiImprumutateTabel);
                    catch (Exception ex)
                        MessageBox.Show(ex.Message);
                if (dr == DialogResult.No)
                    MessageBox.Show("Imprumutul NU a fost inregistrat");
                    imp.ClearSelected();
                    //deselecteaza cartea selectat
                    foreach (int i in imp.CheckedIndices)
                        imp.SetItemChecked(i, false);
                    //debifeaza cartile bifate
                //if (imp.CheckedItems.Count > 0)
                //    //res.Items.Clear();
                //    foreach (string str in imp.CheckedItems)
                //        res.Items.Add(str);//adauga in partea cealalta, imprumuta
                //    while (imp.CheckedItems.Count > 0)
                //        imp.Items.Remove(imp.CheckedItems[0]);
            private void restituie_Click(object sender, EventArgs e)
                Confirmare r = new Confirmare("Confirmati restituirea?");
                DialogResult dr = r.ShowDialog();
                if (dr == DialogResult.Yes)
                    try
                        Inregistrez_restituire_in_BD();
                        MessageBox.Show("Restituirea a fost inregistrata");
                        //Dupa inregistrarea imprumutului o parte din carti nu mai sunt disponibile pentru imprumut
                        //Reincarc in CheckList cu Carti noua lista cu carti ramase dupa imprumut
                        //Pentru asta "resetez" datele din dataTable cartiT (sursa pentru carti.DataSource)
                        CartiTabel.Clear();
                        adaptCarti.Fill(CartiTabel);
                        CartiImprumutateTabel.Clear();
                        adaptCartiImprumutate.Fill(CartiImprumutateTabel);
                    catch (Exception ex)
                        MessageBox.Show(ex.Message);
                if (dr == DialogResult.No)
                    MessageBox.Show("Restituirea NU a fost inregistrata");
                    res.ClearSelected();
                    //deselecteaza cartea selectat
                    foreach (int i in imp.CheckedIndices)
                        res.SetItemChecked(i, false);
                    //debifeaza cartile bifate
                if (res.CheckedItems.Count > 0)
                    foreach (string str in res.CheckedItems)
                        imp.Items.Add(str);
                    while (res.CheckedItems.Count > 0)
                        res.Items.Remove(res.CheckedItems[0]);
            private void button2_Click(object sender, EventArgs e)
                con.Close();
                this.Close();
            //private void selecteaza_carti_utilizator()
            //    res.Items.Clear();
            //    MySqlCommand selectcart = new MySqlCommand("select title from books,userbooks where userbooks.userid='" + user.SelectedValue.ToString() + "' and userbooks.bookid=books.bookid", con);
            //    MySqlDataReader reader = selectcart.ExecuteReader();
            //    try
            //        while(reader.Read())
            //            res.Items.Add(reader["title"]);
            //    catch(Exception ex)
            //        MessageBox.Show(ex.Message);
            //    finally
            //        reader.Close();

    Hello Vincenzzo,
    This issue seems to be a window form UI implemented related issue, for this i suggest that you could ask it to the windows form forum:
    http://social.msdn.microsoft.com/Forums/windows/en-US/home?forum=winforms
    The current forum you posted to is used to discuss and ask questions about .NET Framework Base Classes (BCL) such as Collections, I/O, Regigistry, Globalization, Reflection.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • CTI Doesn't Move with Arrow Keys PE12

    I am running into a glitch in Premiere Elements 12. When I nudge the CTI (playhead) using the arrow keys it moves only 1 frame no matter how many times I press the over arrow. The audio continues to scrub and the time indicator continues to change for each frame, but the CTI itself is stuck and no longer represents the proper location.
    Anyone solved this?
    I am using a MacBook Pro running OS 10.8.5.

    Thanks ATR for you reply, here I will try to explain my findings.
    My hw. sw. setup
    MACBook Pro, OS X 10.9.4, 16Gb, licensed Premiere Elements 12.1 upgraded from 12.0
    Just to confirm....are you saying that if you do just a one tap on the right or left arrow key, the Timeline Indicator will move 1 frame.              YES (if slow repeat).
    But, if you hold down and continue to hold down on the right of the right or left arrow key, the Timeline Indicator will not go into a continuing movement?     YES.
    >> Today I have found that this problem only show up in ”Expert” edit mode and not in ”Quick” mode.
          1. Current Timeline Indicator (CTI) only move/jump one frame when I first start to hold right or left key pressed, after this first jump CTI will stop to move,
                my movie and time counter will move and count as expected.
          2. If I repeat pressing right or left key with a speed faster than one press per 3seconds the CTI will be stopped,  slower repeat than every 3 second then CTI will move on every key press.  
          3. Note1   when CTI not move during continue key press or fast repeat R/L (< 3sec) the accumulated new CLI position will show up as a long jump on next press after 3sec paus.  
          4. Note2   I have also verifies with my Win7 friend with a new installed PE 12.1 running just fine without this CTI problem.  (MAC version only??)
    If so, several things that I would like you to do if you have not already....
    1. Delete the Adobe Premiere Elements Prefs file which should be found
        Users\Libraries\Application Support\Adobe\Premiere Elements\12
    >> After I delete the Adobe Premiere Elements Prefs file I did restart PE12 program and created  a new project ( an new PE Prefs was automatic create in the same directory as expected)
          But unfortunately my problem is still there.  
    2. In the opened project, go to Edit Menu/Preferences/General and experiment with the Timeline Playback Auto-Scrolling Options (No Scroll, Page Scroll, and Smooth Scroll).
    ATR Premiere Elements Troubleshooting: PE12/12.1: Timeline Playback Auto-Scrolling
    >> Thanks, here I found lot of good reading but your suggestion to change the Timeline Playback Auto-Scrolling Options did change scrolling behavior,
           unfortunately my problem is still there. 
    I am strictly an Elements Windows user, so please double check the translation of the suggested locations from Windows to Mac.
    How would describe your issue - "it worked before but not now" or "it never worked before".
    >> My best answer must be;  I have not seen this problem before but I´m trying to learn video editing so I could have missed the CTI behavior.
    Looking forward to your follow up.
    Thank you.
    Add On...Like the originator of this thread, are you working with a tryout of Premiere Elements 12/12.1?
    No this is a licensed version 12.0 upgraded to 12.1
    Summary:
    My conclusion must be that this CTI behavior is a software bug  (maybe only in MAC versionPE12 or in  some combination).
    How to fix my problem:
    Will a reinstall likely fix the problem?
    Or is´t a case for Adobe Support to handle? 
    I´m happy for any help here.
    Regards.
    Per

  • Batch joining of movies while adding chapters

    I can not seem to find any good tools out there that will batch join video files while adding chapters.
    I have 20 folders, each with 20-30 avi files. I want to be able to join each video clip in each folder into one movie while making the start of each clip a new chapter. I would also like to be able to use compressor to compress the video.
    I have found a few that let me join them, but they either do not support chapters, or the chapters dont load in DVD Studio Pro.
    Any advice?

    Well if you are trying to join .avi and not .m2v then you can use pretty much whatever you want! FCP, Avid, Prem (coming back to mac), QT Pro etc.
    Most encoders (Compressor, Bitvice etc) allow you input timecodes where you want chapters or add markers that dvdsp will recognise. If you do that you'll be able to add (or import with a marker list txt file) in dvdsp.
    If you want to join m2v's then you can use MPEGAppend, Unix commands or the dvdsp timeline even...
    -Jake

  • Pause Main Movie while external FLV is streamed

    Hey i was wondering if it's possible to pause the main movie,
    while - through the flv playback component - an external flv is
    beeing streamed. once the flv-video has played through the main
    video should continue playing.
    is that possible? if so, can anybody show me how?
    thx in advance
    Phil

    If all of your assets are on the main timeline of the swf
    (i.e. you don't need to stop specific MovieClip instances--just the
    main timeline), then it's not too hard. You just need to issue a
    stop() action when you want to "pause" the main timeline. I don't
    know your setup, so you might want to pause while the video is
    buffering, or when the user clicks the play button (it seems to me
    that you'd just put a stop() action on the frame where your
    FLVPlayback component lives, right?). Then, listen for the
    "complete" event to fire from the FLVPlayback component to resume
    playback. Before I can offer some sample code, can you tell me
    which version of the FLVPlayback component you're using? AS2 or
    AS3?

  • How do I reorder songs in a playlist in the new itunes??? I can no longer just click and drag. When I click, it doesn't move!!!! Need help ASAP- trying to prepare for an aerobics class and need songs in a specific order!

    How do I reorder songs in a playlist in the new itunes??? I can no longer just click and drag. When I click, it doesn't move!!!! Need help ASAP- trying to prepare for an aerobics class and need songs in a specific order!

    Vera,
    Use View > View Options, and set 'Sort By" to "Manual Order."
    Then you will be able to drag-n-drop songs up and down the list.

  • Hi, can someone please tell me why the spell check in pages doesn't work. I went to preferences and enabled this auto spell checker and have set the language to british english. But still it doesn't work while it works perfectly in TextEdit.

    Hi, can someone please tell me why the spell check in pages doesn't work. I went to preferences and enabled this auto spell checker and have set the language to british english. But still it doesn't work while it works perfectly in TextEdit.

    Inspector > Text > More > Language
    Only applies to selected text, like making it a particular font.
    It is not a setting that sticks. If you continue to paste in text from elsewhere particularly the Internet it will have a different or None language set to it. You need to select it and make it B.E.
    Peter

  • Itunes 10.1.2.17 upgrade killed my sound, music scroll bar doesn't move

    After upgrading to 10.1.2.17 on 1/30/2011 all sound ceased on my system. Updated the sound card driver to no avail. No conflict in compatability mode. When song selected in iTunes, the play bar doesn't move nor do movies have audio in quicktime. There is no sound in any program.
    Thoughts?

    Katrina, Thank you for your reply. I followed the directions from your link about using msconfig, and did what it said. Upon started I loaded iTunes without Bonjour running and playing songs worked fine. No delay and going from track to track was quick. So then I quit iTunes and started Bonjour like it said and it still ran fine. So it must be something I deselected in msconfig. I'll have to go back and look.
    There were 3 temp files before, but I did another fresh install of iTunes and now it has only one temp file. Called Temp File.tmp. Oh I just looked now and it has another one, oops it just disappeared again. The time stamp on it for it's Modified date is Sunday February 13, 2011 5:28pm and it's Accessed time is Yesterday, February 28, 2001 11:25am, and it's Created time is Yesterday February 28, 2011 11:25am.
    I use Microsoft Security Essentials for my antivirus and under it's ignore files I told it to ignore the temp file as well as the itunes library files. But was still having trouble after doing that. Using my Apple TV 2, music still played fast also without any delay. I have a fairly large library though. 140GB or so of Music, 80Gb of Movies and 10GB of Podcasts. So I thought maybe since I've been adding more Movies it caused iTunes to slow down.
    I'll try rebooting now by adding Apple Mobile Device to startup and see if anything changes since it's still stopped. iPod Service is running as well as bonjour and all is ok.
    Since when I did a fresh intall of windows all I did was install iTunes, so the only other startup things I have are 3 from Intel called common user interface, my microsoft security client and Keepass my password program. Only quick time and itunes are enabled in startup right now. So I will go back and add each of those things and see which one is causing the problem. Thanks again.

  • Scanner HP G2410 doesn't work and ligth doesn't move

    I'm using the scanner G2410 in windows XP 32-bits, but suddenly it doesn't work. When I trying to scan, a short time later it shows me a message that says the scanner is not find it, that restart my pc, wait 60 seconds and connect it again. Also the ligth doesn't move. In the end of the message shows me the error number:
     4,[(2,5,80004000b),(3,5,0)]
    Even I try it in a pc with windows 7 64-bits but the same result.
    Is my scan totally damaged? I will appreciate you help me.

    Hello caifan125,
    Welcome to the HP Support Forums!
    To get your issue more exposure I would suggest posting it in the commercial forums since this is a commercial product. You can do this at Scanners.
    The support page for your product may be helpful in the meantime:
    I hope this helps!
    JERENDS
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • Hi! Once I've deleted a purchased program and now I get it back to my itunes, but can't go back to my phone even it's shown on the monitor that it's on my phone already. But it isn't. Even if I syncronize it doesn't move to my phone. What can I do?

    Once I've deleted a purchased program accidentally and now I get it back from my iTunes, but doesn't move to my phone even it looks like on the phone by iTunes.
    How can I syncronize it to get back really the app to my phone?

    go to settings>general>restrictions and turn facetime ON

  • Duplicate mouse cursor appears (but doesn't move) on second monitor

    I have a Mac Pro with the ATI XT1900 video card and 2 Dell 2407WFP LCD monitors attached via DVI.
    When I'm using an application, such as a web browser, and the cursor changes state (like the black arrow with spinning wheel in corner) a duplicate of this cursor state appears on my second monitor, on the left-hand side of the screen.
    This cursor DOES NOT MOVE, but does animate, and will not disappear unless I move my "live" cursor over to the second monitor, which I imagine causes OS X to "refresh" the position of the cursor. It realizes the duplicate shouldn't be there and it vanishes. The second cursor seems to appear only when the primary live cursor changes state, as in the black arrow becoming a black arrow with spinning wheel in the corner, etc.
    This is not a duplicate cursor due to having Displays set up to mirror one another. The second cursor doesn't move.
    This has happened in more than one software application, so it appears to be some sort of display driver error at the system level.
    Anyone else experience this or have a way to fix it? There have been several Apple Updates to OS X since this problem first started happening (on day 1 with the Mac Pro) and it has not been resolved.
    -R

    Try resetting SMC on the macbook air: http://support.apple.com/kb/HT1411
    Good luck!

  • Error 50 or freeze when watching a movie while downloading from itunes store since version 10.6 (windows 7 64bit).

    When I am downloading a tv show and try to play it at the same time, not matter the remaining time of the download, itunes stop the download with an error after a couple of minutes. (error 50.) Somethimes, it just freeze instead. I am able to resume the download and watch again till the next stop.
    I have no problem just playing or just dowloading, only when doing both. I have this problem since version 10.6 only. This affect all my new downloads since then.
    My first guest would be  a hard drive saturation that can't handle the load. Maybe  itunes stop downloading when the hard drive is too busy. But again, never had this problem before. It it was the case, the playing should stop, not the download !
    My config is iunes 10.6.040, windows 7 64 bits.
    Thanks for your help.

    This has been happening on my Windows 7 64-bit computer as well same exact problem with the latest version of iTunes. It does look like they have some kind of bug in this new version where the downloading process just dies when it has to deal any I/O wait from file playback, really a bad bug as this is a core function of iTunes that shouldn't have gotten through the testing process.  I have to say that iTunes is one of the buggiest pieces of software I have ever used in my entire life, all kinds of regressions and bugs with every update and they are on version 10.6.x !  Apple must have some poor developers in the iTunes team, hey guys put down the bong and chips and actually establish a standard continuous integration and testing process with good test coverage for iTunes! You shouldn't have regressions on such core functionalities especially with a software as mature as this, what's going on? Or is it that you've been instructed to make the software a crappy as possible for Windows so everyone goes to buy a Mac and OS X?
    More bugs just off the top of my head in the latest iTunes 10.6.x:
    - In the download screen when you double click to playback a movie while it is downloading, if you pause the movie the play button goes grey, you cannot start playing the paused movie again without quitting the movie and clicking to start it again from iTunes
    - The next/prev chapter buttons during movie playback don't work at all anymore, they simply crash the movie, close the window and go back to iTunes
    - Many times after getting the unknown error -50 or -39 because you tried to play a movie while it was downloading, when you go back to the download window to restart the download iTunes loses all the downloaded movie content it had it starts over for no apparent reason!  Wonderful!
    For a company that sells/rents really expensive movies and music you would expect a really high standard go into the software development process, apparently shareholders are more important than customers.

  • Video doesn't play while audio does during playback

    I use FCE 1.0.1 and since I upgraded to Leopard I have had a little problem. When I put the video setting in Fire-Wire, it plays fine with audio playing through my camcorder. But when I put the video setting in Real Time to play the audio through my speakers, the video doesn't play while the audio is playing fine. After 5 or 6 seconds, the audio stops playing too.
    My G5 is a single 1.8 GHz processor and I am running 10.5.1
    Anything?

    I appreciate your insight with this. If I could ask one more set of questions; Would you recommend the "upgrade" linked below or the Full version? And what will be the practical differences for me the user?
    I have started a new project in version 1.0.1 (capturing and a few edits, etc) since upgrading to Leopard. Will all of my work be there with either upgrade or full version after install?
    Thanks so much.
    http://www.amazon.com/Final-Cut-Express-Upgrade-3-5/dp/B000Z3GSXK/ref=pdbbs_sr1?ie=UTF8&s=software&qid=1198585705&sr=8-1

Maybe you are looking for