Serious crazy problem, need help

Hey I got a serious problem. What do you do if you get the exclamation triangle and it says iTunes cannot read the contents of the iPod ~DANIEL'S IP~. Use the iPod Software Updater application to restore the iPod to factory settings. I think i saved something I shouldn't have. Can anyone help or i'm not restoring this thing properly. I'm about to go to best buy geek squad if i can't make it work

okay what if i tried to update my ipod to restore and it says ipod manager internal error. am i just screwed or what

Similar Messages

  • Zen Vision:M problem, NEED HELP!

    My zen vision:m is starting to run slowly. It started right after my player froze and i reset it.Now its really slow and barely even switches screens sometimes.Right now its just a black screen with the keypad lit up.Whats wrong with it'sI NEED HELP!

    johnnnyp wrote:
    hi, i have a problem with my creative vision m. i wanted to watch a movie and it froze. i tried to shut it down but it wouldnt respond, and now is frozen. please help me if you can!
    You know its kinda rude to derail XBenzinoFla thread with your own problems, make your own thread next time.
    But to the both of you especially XBenzinoFla, try putting your ZVM in rescue mode and run scan disk to see if it hel
    ps.

  • Zen Micro problem need help

    Today i was listening to music and my zen micro just froze while playing and no buttons could be pressed and the lock button wasnt on. So i took the battery out and rebooted the player but it froze at the creative screen. I went home and i went to recovery mode and tried to reload the firmware but it said erasing firmware for more than 2 hours. So then i tried a format but it said formating for the same amount of time. I need help please. Also, recently i've had problems witht the headphone jack. When ever i would stick it in it would sound distorted and i would have to move it around until i got it to a certain spot to hear it good again. If anyone else has this problem please tell me. One more thing i had returned my other micro zen in for hard dri've probems and this was my new one do u think if i have to return in (hopefully not) that they would accept it.

    If the functions in Rescue Mode aren't working properly then you need to contact Creative Support.

  • Still stuck with the same old producer consumer weight problem need help

    Hello All,
    This is the problem I am stuck with right now.
    I have two array lists one producer array list and one consumer array list denoted by a and b
    P1 P2 P3 P4 P5
    5 6 7 8 9
    C1 C2 C3 C4 C5
    2 3 4 5 6
    Now we find all those producer consumer pairs which satisfy the criteria Pi>=Ci
    We have the following sets
    (5,2)(6,2)(7,2),(8,2),(9,2)
    (5,3)(6,3)(7,3),(8,3),(9,3)
    (5,4)(6,4)(7,4),(8,4),(9,4)
    (5,5)(6,5)(7,5),(8,5),(9,5)
    (6,6)(7,6)(8,6),(9,6)
    Let us done each of them with Si
    so we have S1,S2,S3,S4,S5
    we assign a third parameter called weight to each element in Si which has satisfied the condition Pi>=Ci;
    so we we will have
    (5,2,ai),(6,2,bi),(7,2,ci)....etc for S1
    similarly for S2 and so on.
    We need to find in each set Si the the pair which has the smallest weight.
    if we have (5,2,3) and (6,2,4) then 5,2,3 should be chosen.We should make sure that there is only one pair in every set which is finally chosen on the basis of weight.
    Suppose we get a pair (5,2,3) in S1 and (5,2,3) in S2 we should see that (5,2,3) is not used to compare to compare with any other elements in the same set S2,
    Finally we should arrive at the best element pair in each set.They should be non repeating in other sets.
    Given a problem
    P0 P1 P2 P3 P4
    9 5 2 2 8
    6 5 4 5 3
    C0 C1 C2 C3 C4
    we have So as (P0,C0) and (P4,C0)
    assuming that the one with the smaller index has lesser weight PO is selected.In the program I have used random weights.from set S1 we select the pair PO,CO
    S1 =(P0,C1),(P1,C1) and (P4,C1)
    since P0 and P4 are already used in previous set we dont use them for checking in S1 so we have (P1,C1) as best.
    S2=(P0,C2),(P1,C2) and (P4,C2) so we dont use P0,C2 and P1 and C2 because PO and P1 are already used in S1.
    So we choose P4,C2
    in S3 and S4 ae have (P0,C3),(P1,C3),(P4,C3) so we dont choose anything
    and same in S4 also.
    So answer is
    (P0,C0),(P1,C1) and (P4,C2).
    My program is trying to assign weights and I am trying to print the weights along with the sets.It doesnt work fine.I need help to write this program to do this.
    Thanks.
    Regards.
    NP
    What I have tried till now.
    I have one more question could you help me with this.
    I have an array list of this form.
    package mypackage1;
    import java.util.*;
    public class DD
    private  int P;
    private  int C;
    private int weight;
    public void set_p(int P1)
    P=P1;
    public void set_c(int C1)
    C=C1;
    public void set_weight(int W1)
    weight=W1;
    public int get_p()
    return P;
    public int get_c()
    return C;
    public int get_x()
    return weight;
    public static void main(String args[])
    ArrayList a=new ArrayList();
    ArrayList min_weights_int=new ArrayList();
    ArrayList rows=new ArrayList();
    ArrayList temp=new ArrayList();
    Hashtable h=new Hashtable();
    String v;
    int o=0;
    DD[] d=new DD[5];
    for(int i=0;i<4;i++)
    d=new DD();
    for(int i=0;i<4;i++)
    d[i].set_p(((int)(StrictMath.random()*10 + 1)));
    d[i].set_c((int)(StrictMath.random()*10 + 1));
    d[i].set_weight(0);
    System.out.println("Producers");
    for(int i=0;i<4;i++)
    System.out.println(d[i].get_p());
    System.out.println("Consumers");
    for(int i=0;i<4;i++)
    System.out.println(d[i].get_c());
    System.out.println("Weights");
    for(int i=0;i<4;i++)
    System.out.println(d[i].get_x());
    for(int i=0;i<4;i++ )
    int bi =d[i].get_c();
    ArrayList row=new ArrayList();
    for(int j=0;j<4;j++)
    if( d[j].get_p() >=bi)
    d[j].set_weight((int)(StrictMath.random()*10 + 1));
    row.add("(" + bi + "," + d[j].get_p() + "," +d[j].get_x() + ")");
    else
    d[j].set_weight(0);
    row.add("null");
    rows.add(row);
    System.out.println(rows);
    int f=0;
    for(Iterator p=rows.iterator();p.hasNext();)
    temp=(ArrayList)p.next();
    String S="S" +f;
    h.put(S,temp);
    String tt=new String();
    for(int j=0;j<4;j++)
    if(temp.get(j).toString() !="null")
    // System.out.println("In if loop");
    //System.out.println(temp.get(j).toString());
    String l=temp.get(j).toString();
    System.out.println(l);
    //System.out.println("Comma matches" + l.lastIndexOf(","));
    //System.out.println(min_weights);
    f++;
    for(Enumeration e=h.keys();e.hasMoreElements();)
    //System.out.println("I am here");
    int ii=0;
    int smallest=0;
    String key=(String)e.nextElement();
    System.out.println("key=" + key);
    temp=(ArrayList)h.get(key);
    System.out.println("Array List" + temp);
    for( int j=0;j<4;j++)
    String l=(temp.get(j).toString());
    if(l!="null")
    System.out.println("l=" +l);
    [\code]

    In your example you selected the pair with the greatest
    distance from the first set, and the pair with the least
    distance from the second. I don't see how the distance
    function was used.
    Also it's not clear to me that there is always a solution,
    and, if there is, whether consistently choosing the
    furthest or the closest pairs will always work.
    The most obvious approach is to systematically try
    all possibilities until the answer is reached, or there
    are no possibilities left. This means backtracking whenever
    a point is reached where you cannot continue. In this case
    backtrack one step and try another possibility at this
    step. After all possible choices of the previous step,
    backtrack one more step and so on.
    This seems rather involved, and it probably is.
    Interestingly, if you know Prolog, it is ridiculously
    easy because Prolog does all the backtracking for you.
    In Java, you can implement the algorithm in much the same
    way as Prolog implementations do it--keep a list of all the
    choice points and work through them until success or there
    are none left.
    If you do know Prolog, you could generate lots of random
    problems and see if there is always a solution.

  • Ipod problem NEED HELP ASAP

    Hello guys,my ipod touch has battery problems and internal speaker are not working and will apple replace me a new one,i even have 1 year warranty and i want a new ipod touch white instead of black<<<plz plz plz reply ASAP plz really need HELP!THANK YOU

    If you iPod is defective, in warranty and not abused Apple will replace it with a refurbished one.  They may or may not replace it with the white one.  You will have to ask.
    Other users have asked the same question but I hav never heard them come back with whether or not they go the color changed.

  • Another Infinite Login Loop Problem - need help badly

    Hello. I need help.
    When I start up my iMac (24 inch last generation model) I can't log into the OS. When I enter my password I see the default OS wallpaper (nothing else) then it kicks me to a blue screen then right back to the login. Same thing over and over. I've already ran disk utility off of the install CD to repair permissions, etc... but no luck. This even happens when I enter into safe mode. I'm running the latest version of the OS.
    Can anyone help me?

    Restore the bootable backup/clone or Time Machine backup. Without one, you have a difficult situation. First thing to try is boot with your install disc, run Disk Utility, and repair the disk.

  • Ipod nano Problems need help fast!!!!!!

    I got my nano in october everything was working fine.Until 2 weeks ago my ipod wasnt getting reconized by itunes.Im really getting frustrated and i need help.

    Welcome to Apple Discussions!
    Read through this...
    http://docs.info.apple.com/article.html?artnum=61711
    btabz

  • Urgent Problem, need help asap.

    Hello everyone,
    I'm sorry for the alarmist title, but I need help and I need it badly. Just last night, my macbook froze with nothing working. The mouse froze, the interrupt keys didn't work, nothing. I shut down the laptop, and tried to restart. I noticed a clicking sound coming from the lower left hand corner of the macbook. I'm assuming this is the hard drive.
    What happens is that there will be two clicks happening in a rythmic fashion, and after 15 second of booting up, a folder will appear with a question mark on the screen. The only thing I can do is power it down. Can someone please describe what is happening and make suggestions?
    The kicker is that I'm a college student studying in Denmark for the semester. The laptop is my only lifeline to back home. Please, any help is greatly appreciated.
    Matt

    You may have a disk failure or simply corrupted files. If you have a bootable backup that is working, then you can boot from it, erase your hard drive, then restore your backup. If not then do this:
    Repairing the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Installer menu (Utilities menu for Tiger and Leopard.) After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer. Now restart normally.
    If DU reports errors it cannot fix, then you will need Disk Warrior (4.0 for Tiger, and 4.1 for Leopard) and/or TechTool Pro (4.6.1 for Leopard) to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    If the drive is OK then you can reinstall OS X:
    How to Perform an Archive and Install
    An Archive and Install will NOT erase your hard drive, but you must have sufficient free space for a second OS X installation which could be from 3-9 GBs depending upon the version of OS X and selected installation options. The free space requirement is over and above normal free space requirements which should be at least 6-10 GBs. Read all the linked references carefully before proceeding.
    1. Be sure to use Disk Utility first to repair the disk before performing the Archive and Install.
    Repairing the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Installer menu (Utilities menu for Tiger.) After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior (4.0 for Tiger) and/or TechTool Pro (4.5.2 for Tiger) to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Do not proceed with an Archive and Install if DU reports errors it cannot fix. In that case use Disk Warrior and/or TechTool Pro to repair the hard drive. If neither can repair the drive, then you will have to erase the drive and reinstall from scratch.
    3. Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When you reach the screen to select a destination drive click once on the destination drive then click on the Option button. Select the Archive and Install option. You have an option to preserve users and network preferences. Only select this option if you are sure you have no corrupted files in your user accounts. Otherwise leave this option unchecked. Click on the OK button and continue with the OS X Installation.
    4. Upon completion of the Archive and Install you will have a Previous System Folder in the root directory. You should retain the PSF until you are sure you do not need to manually transfer any items from the PSF to your newly installed system.
    5. After moving any items you want to keep from the PSF you should delete it. You can back it up if you prefer, but you must delete it from the hard drive.
    6. You can now download a Combo Updater directly from Apple's download site to update your new system to the desired version as well as install any security or other updates. You can also do this using Software Update.

  • SERIOUS PROBLEM - need help! flashing lights!

    my ipod has turned into a strobe light machine.
    it started when my ipod's battery died. i tried to charge it through a usb hub and power cable. that is, i powered the usb hub directly from a wall socket, then used the ipod cord plugged into the hub to charge it.
    *the battery fried*
    i went to batteries plus and got a replacement battery. i installed it myself. about a minute later, the ipod heated up veyr rapidly. i feared it would melt the hardrive so i disconnected it and reconnected it. i did this about a dozen times, each time it still got dangerously hot.
    then i broke the ribbon cable to the battery.
    i didn't do anything to the ipod after that for about 6 months.
    i got a new battery today. i retried it, everything worked fine. no heating up. i went to go charge it by plugging it into the computer and itunes popped up saying that the ipod was corrupted, i may have to restore it. so i hit restore, and then it said it couldnt restore because of an *unknown errpr*.
    dammit.
    the screen had gone a dark grey. i disconnected the battery and reconnected it. the ipod hissed - like a cockroach or somthing - when i did and it began to flash on and off again like a strobe light.
    whiteblackwhiteblackwhiteblack thats all it does.
    this is the same problem that happened when i fried the first battery
    now im INCREDIBLY frustrated. imi praying that someone can please help me!!!!!
    thanks and sorry for the long post. this is my first one by the way.

    Exactly. Try http://www.iresq.com or http://www.ipodmods.com or one of the other 3rd party repair sites.

  • IPod Classic (160 gb) Serious problem, need help!

    a day ago, i was playing some music (with iPod speakers), after an hour of playing i connected my ipod to headphones and resumed playng, but my ipod started "lagging" like when i pressed music it took 1 min to enter Music menu. after 15 minutes it returned to normal, and after playing some music for 30 minutes it just froze.
    i was not at home so i had no computer to restore it with itunes, so i tried to reset it, when i reseted it ipod logo appeared and nothing more happened. i tried to reset it again but again, i got stuck on apple logo. i decided to let it rest for a while and i wanted battery to die and charge it back up. after an hour it started reseting itself it went on and off again but nothing more than apple logo appeared. every 15 minutes or so it did that. when battery died i recharged it but i couldnt get past apple logo.
    i restored my ipod with itunes today. it gave ema an error 1453 (or sth like that) but first when i connected ipod my computer didnt recognize it. i put my ipod into disk mode and then itunes started recognising it. i restored it it kind of started normally sycnronised songs but when i disconected it, bang apple logo appeared. i tried restoring it again but the problem didnt go away. i tried scanning my ipod for viruses. (i have a good anti-virus) so after 40% of scanning was done it gave me an eror that there was no disc. and the scan button never appeared on ipod again after that...
    so can anyone help me?
    or am i doomed? oh and by the way i bought my ipod 1 year ago and i had dropped it only once throughout the whole year (it was 5 months ago) and nothing happened to it.

    I've had that problem before, reboot your pod. hold down the center button and the menu button at the same time till you see the apple logo. That should clear it up.

  • My macbook is completely crazy! (NEED HELP!!!)

    I am honestly frustrated and confused! I have a late 2011 macbook pro, (got it in August) 15", 8gb of ram, and an ugraded 750gb HDD. This morning it was working perfectly normal, then I take it to school and at school it was all messed up and now it is messed up as well!
    So this is what happens. I boot up the computer, takes a considerable amount of time... then my mac loads normally, and it seems all good. Then when I click something it goes crazy! What I mean by that is, the dock first disappears for about half a second, then reappears. Then it disappears and then the desktop background becomes gray with all the icons on the side (like windows the shortcuts on the actual desktop, not dock) are still there, and it flickers or more flashes then what happens and then what happens after 20 minutes or so the screen goes gray and shows the loading icon and thats it (plus the fan is going like crazy! For a while it wouldn't even start! I tried to boot it up in safe mode but it would go almost half way and then just shut down! Then i did the option + command + P + R and that brought me to disk utlility for a couple of times the verify didn't work, and stopped half way through, and the repair, but I kept on doing it and it said it's all good! So i reboot and same problem! Now I can't go back to that disk utility and when I started my mac again it does the flickery thing, then the gray screen but this time it loads and then it flickers an image of a desktop and goes straight to the screensaver... and I can't do anything about it, it's frozen on the screen saver! The screen saver doens't lag however, it acts normally! But if I click anything it sticks on the screen saver! I think the problem is the HDD, but I don't know! Can anyone help me?! Please!!!!!

    My first thought was the hard drive and OS has a built in Sudden Motion Sensor whcih will stop the hard drive heads from crashing into the platters when the computer is moved suddenly. This does work most of the time and could cause some of the tings you are seeing.
    But then after reading more of your first post it seems your system and drive is doing some very strange things.
    It would be best to first take it into an Apple Genius Bar and have it looked at. They can run tests on it and since it is still in the original 1 year warranty this should not cost you anything even if something needs to be replaced.
    You can also run the Apple Hardware Test on it your self by connecting it to the Net by Ethernet cable and booting holding down the d key or the Command+d keys. That will boot the computer from the Apple internet servers and load the AHT.
    Good Luck.

  • G5 DVI to VGA Dell Monitor Connection problems, need help!!!!!!!!!!!!!!!!!!

    hello,
    I'm running two dell monitors both of which were connected via DVI to my g5 quad dual dvi. My tv broke and I'm using one of my monitors to connect the cable boxes HDMI input to the dells DVI input, it works great.
    My problem is that i still want to run two monitors from my mac and still be able to switch channel sources from the Dells source button allowing me to switch from TV to Mac. Since I took up the dvi port on one of my monitors to connect to the cable box via HDMI, I have a free DVI cable. I purchased a tiny converter that allowed to change one end of the free DVI cable to VGA. I used this method to connect the cable to my g5's dvi port and the configured end to the VGA port on the monitor with no luck.
    The Dell monitor does not pick up any signal and just goes to sleep as if my computer does not exist. The TV works fine and I'm able to switch sources. Please note that I'm not using the DVI-VGA adaptor that came with my g5 and don't know if this would make a difference. If it does, how do i set this up because this adaptor is like 5 inches long.
    Does the adaptors DVI end need to be connected to the back of the g5 or does the VGA end need to be connected to the monitor or does it not matter. I need a longer dvi-vga cable as well, do they make them. This all depends if the problem actually is that that I'm not using the DVI-VGA cable that came with my mac to connect to the monitor in the first place.
    Can anyone help me out here. I'm using the Dell 2208WFP Ultra Sharp.

    Bad adapter?
    The G5 ports are DVI-I. Any good DVI-I to VGA adapter should be fine.

  • Setup Problem - Need Help Please!!

    My problem is a low hum eminating from my speakers every time I connect my MPC2000 sampler to my audio interface.
    My setup consists of the MPC2000, a Dj Mixer, and my laptop which has an M-Audio interface which I use to connect the mixer & MPC. Basically, as soon as I remove the cables that connect my MPC or my mixer to my interface, the hum stops. I've tried different cables, new cables, a ground adapter for the MPC to change it to 2 prong, and nothing helps. The only thing that DOESN'T cause this hum when plugged into my interface, is my keyboard, so i'm quite sure the interface itself isn't the problem.
    Does anyone know what might be causing this interference that's resulting in a hum? I have exhausted all my own theories and am desperate for some sort of help! Many thanks in advance!!!

    Hi beirut,
    Try the following:
    1.Put the mpc2000,the dj mixer and your computer all in the same power outlet from the wall.
    2.Go to home despot and buy a few gray-colored ground lift plugs (they must be gray)
    3.With these gray ground lift plugs,lift the MPC2000.test the system.No hum=solved problem.hum still there or different,list the DJ mixer.
    4.Is your DJ mixer hooked up to turntables? If so,you need to ground the turntables to a proper ground.Good turntables have a little wire coming out of them,just for that purpose.
    5.Try turning off any TVs,refridgerators,fluorescent lighting(the ones that look like office lights),and other things around your place,and see if the hum goes away.
    6.Try using a DI box for your DJ mixer,to plug it in to the DI,and then out to the audio interface.
    7.And Most Importantly... RUN AND BUY A DIFFERENT BRAND OF AUDIO INTERFACE!!!!!!!!!! M-Audio...yucky yucky yucky!!!
    Cheers

  • Blackberry HUB "Show Read Filed Emails" ON AND OFF button SERIOUS Gmail PROBLEM NEED BUG FIX ASAP!

    Its been for years (starting from 10OS Version 10.2 ) I couldn't see filed/labeled emails in my Z30/Z10 Blackberry HUB of my Gmail account, but I just downloaded Blackberry Blend and it started to show all my filed/labeled emails, but I still cant see them in my Blackberry HUB! Maybe you can tell me how to make Read Filed Emails visible in Blackberry HUB too?
    Blackberry HUB >> Settings >> Display and Actions:
    Show Read Filed Emails is ON
    Show Sent Emails is ON
    Both are turned on, but I still cant see them like on Blackberry Blend.. On search field then I type specific email from filed/label from my Gmail account I immediately finds it, but then I go back to Blackberry HUB all I can see just emails from inbox and single sent emails and YES "SYNC ALL EMAIL FOLDERS" IS SET TO ON AND "SYNC TIMEFRAME" IS SET TO FOREVER (''Sync All Email Folders'' is set ON and ''Sync Timeframe'' is set FOREVER).
    Here is picture of email settings:
    http://forums.crackberry.com/attachments/blackberry-10-os-f269/338662d1425451994-read-filed-messages...
    I want to see all emails in devices Blackberry HUB like in Blackberry Blend desktop! What should I do to make it happen?
    I find out that then I click on the Blackberry HUB > Settings > Display and Actions: "Show Read Filed Emails" to ON or OFF again and again, view in Blackberry Blend immediately changes in order I did ON or OFF, that's pretty amazing, but Blackberry HUB DOESN'T RESPOND AT ALL! View is the same doesn't matter if I change it ON or OFF.
    View in Blackberry Blend starts to look the same like in phones Blackberry HUB then I click "Show Read Filed Emails" OFF, it looks like Blackberry HUB doesn't respond to ''Show Read Filed Emails'' ON and OFF button at all, ITS ALWAYS OFF! What should I do next??
    I'm using Blackberry Z30, but I have Z10 too and it also doesn't work and it looks like this "Show Read Filed Emails" not working button bug is on all 10 OS devices except Blackberry Blend desktop version which works perfectly confirms it.
    I'm using Gmail and I have latest Blackberry 10 OS version OFFICIAL 10.3.1.1565
    Here is a picture how it looks then ''Show Read Filed Emails'' ON and OFF:
    (first is OFF, second is ON)
    http://forums.crackberry.com/attachments/blackberry-10-os-f269/338513d1425416890-read-filed-messages...
    As you can see then ''Show Read Filed Emails'' is ON, Blackberry Blend changes and I can see all my emails (and there are a lot of unread ones! (sorry I blurred some of my emails for privacy)), but in my devices Blackberry HUB there is no changes and its displaying the same thing like ''Show Read Filed Emails'' was OFF. I miss a lot of emails and its really annoying and I think you understand why.. Blackberry Blend desktop version is a savior today, but THIS IS NOT A SOLUTION!
    Any FIX suggestions ASAP?
    UPDATE:
    I tried a lot of times to delete and sign in again and again, but it looks like only Blackberry Blend respond to every setting changes! Blackberry HUB doesn't respond AT ALL! Devices Blackberry HUB only show INBOX and SENT MESSAGES all the time, but if "Display Style" in Blackberry HUB is set to "Conversation" SENT MESSAGES disappear from devices Blackberry HUB too (in Blackberry Blend is everything FINE!) if they are part of CONVERSATION FILED/LABELS EMAILS!!
    All issues I been searching all this years and everyone was blaming Gmail, but it looks like ALL THIS YEARS THIS WAS Blackberry HUB "Show Read Filed Emails" ON and OFF button BUG/PROBLEM which doesn't work on devices Blackberry HUB and today Blackberry Blend desktop version CONFIRMS IT!!
    Yes Yahoo accounts FILED/LABELS EMAILS with devices Blackberry HUB works FINE, but Gmail - NOT and NEED FIX ASAP!

    Newest edits in here:
    http://forums.crackberry.com/general-blackberry-discussion-f2/please-send-very-important-10os-device...
    100% FIX SOLUTION GUARANTEE for Gmail archived/labeled Emails not showing problem!
    How to fix it? FIX "Show Read Filed Emails" button to respond to ON and OFF devices Blackberry HUB for Gmail accounts - NOW IT IS ALWAYS OFF if you press ON or OFF!
     "Show Read Filed Emails" button ON and OFF for Gmail account works on Blackberry Blend desktop version!
    Error/Bug: Blackberry HUB do not show Gmail labeled emails
    Main problem: Blackberry HUB "Show Read Filed Emails" button doesn't respond to ON AND OFF and is always OFF fo Gmail account.
    Main problem: ALL Blackberry 10OS devices Blackberry HUB"Show Read Filed Emails" button ON AND OFF doesnt respond with Gmail accounts!
    Works with: Blackberry Blend desktop version responds to "Show Read Filed Emails" button ON AND OFF with Gmail accounts! (pressing "Show Read Filed Emails" button ON and OFF again and again, view in Blackberry Blend immediately changes in order you press ON or OFF, but Blackberry HUB is always on OFF)
    "Show Read Filed Emails" button doesn't work with: Gmail accounts
    Status: NOT FIXED!
    OS version: Blackberry 10 OS version OFFICIAL 10.3.1.1565
    PROBLEM FOUND!
    I created new Gmail account send 5 test emails and made first 2 test emails labeled and made step by step set up on my Blackberry 10OS device to confirm this ''Show Read Filed Emails'' button BUG/PROBLEM/ERROR:
    1. I signed in with my Blackberry 10OS device like this:
    http://forums.crackberry.com/attachments/blackberry-10-os-f269/338846d1425503380t-gmail-archived-lab...
    2. When I set on Gmail account settings "Sync Timeframe" is set to FOREVER and "Sync All Emails Folders" is set to ON
    http://forums.crackberry.com/attachments/blackberry-10-os-f269/338847d1425503392t-gmail-archived-lab...
    3. And at last I go to devices Blackberry HUB and see this:
    http://forums.crackberry.com/attachments/blackberry-10-os-f269/338856d1425505143t-gmail-archived-lab...
    As you can see it doesn't matter if "Show Read Filed Emails" button is set to ON or OFF, Blackberry HUB doesnt respond at all, but Blackberry Blend view changes at same second then I press.
    CONCLUSION: "Show Read Filed Emails" button ON and OFF BUG/PROBLEM/ERROR for Gmail accounts is confirmed and it STILL NOT FIXED!
    Please spread the word to people who have all the power to influence and accelerate processes to FIX this VERY SERIOUS ISSUE or please tell me there could I send this FIX SOLUTION to to get fastest respond and get it FIXED ASAP. THANK YOU!
    STILL NO FIX!

  • Serius project problems - Need help please

    Hi,
    I'm using adobe premiere and after effects to my last film (this is not the first time). I'm using DV 1280*720 default sound settings (as I did before in other movies). I have an Imac C2D and plenty of hard disk space.
    Yesterday when I import new takes and done some light fx's (blur 10% and tint) when I saved the premiere frozen for 30 minutes and then I had to force quit.
    When I've tried to open that project again, it just don't open. I've tried everything. See if there was any corrupted file, checked for Hard drive problem (it doesn't have any) and I delete the previous rendered files (as I saw on some tutorial).
    At least I could recover that project using autosaved and previous project backup (I take care always of saving backups).
    But when I saved again (the new recovered and rendered project) it freezes on quit and there comes again. (it seems that premiere it is getting something from the old(damaged) project and just stack there !!!!!!
    The project then it just don't open (I don't see any error message) I just see after 1 hour my premiere freezed and there is no way to see the timeline to fix anything.
    I assume that I have to recover again and to all work over and over. I saw some forums talking about adobe "broken links" something related to video files source and corrupted files, but I still don't get it (since premiere doesn't tells me what is going wrong!!!!!!). They talk about deleting MACC file on windows but I'm on a mac. I didn't saw any tutorial about recovering.
    whe this thing happens I see my timeline with video and audio. I can render but when I quit the program doesn't load the project again.
    Please any help...... I'm working since a month ago on this movie and I need to deleiver that asap.
    Is it better to export the video in parts and them join in a new project or there is any other thing that I can do without missing my month of work.
    ohhh man I just want to scream

    For any reason that I can't explain when I arrived home after day work, I've tried last time before looking my backups and Premiere loaded my project
    Before save and quit I've take a look in all file (check the link and where is the source) I found 2 still frames (photos) were lost ( i mean from my hard drive).
    My biggest clue now it is, when I deleted some video file before, when I enter the premiere project 1st thing that show it is a windows asking me to "point" where is that file.
    But when happens with a photo, premiere doesn't say that this files are lost. It just stucks your project. Any tip to prevent this again?
    Hardware Overview:
      Model Name:    iMac
      Model Identifier:    iMac7,1
      Processor Name:    Intel Core 2 Duo
      Processor Speed:    2.4 GHz
      Number Of Processors:    1
      Total Number Of Cores:    2
      L2 Cache:    4 MB
      Memory:    4 GB
      Bus Speed:    800 MHz
    Intel ICH8-M AHCI:
      Vendor:    Intel
      Product:    ICH8-M AHCI
      Speed:    3 Gigabit
      Description:    AHCI Version 1.10 Supported
    WDC WD3200AAJS-40VWA1:
      Capacity:    298.09 GB
      Model:    WDC WD3200AAJS-40VWA1
      Revision:    58.01D02
      Native Command Queuing:    Yes
      Queue Depth:    32
      Removable Media:    No
      Detachable Drive:    No
      BSD Name:    disk0
      Mac OS 9 Drivers:    No
      Partition Map Type:    GPT (GUID Partition Table)
      S.M.A.R.T. status:    Verified
      Volumes:
    iMac:
      Capacity:    297.77 GB
      Available:    158.68 GB
      Writable:    Yes
      File System:    Journaled HFS+
      BSD Name:    disk0s2
      Mount Point:    /
    ps: about your question "Next, please verify your Project/Sequence Presets. Do they match your footage 100%?" I've changed 2 video files, they were pretty bigger than the part I was taking for this project, so I edit and save just the part that I am using.
    Btw I've heard that Journaled HFS+ it is not good on Imac to use premiere render option. Is that right?
    Many thanks in advance.

Maybe you are looking for