I give up.  Can someone please help with pf24 on Canon?

I thought I understood how to do this but I don't. I have tried several things but the result doesn't look right to me. I have a Canon Vixia HG21 and today I recorded a little with the pf24 mode.
After converting to apple pro res 422 in FCP 7.0, I exported through compressor using Apple Pro Res for progressive material, changed the video settings in the inspector to custom 23.976 frame rate, and turned on frame controls and set deinterlace to reverse telecine. It shows up now as a 23.976 file in quicktime but still looks bad on my monitor, especially when I pan. It's as almost there is ghosting trails. I see this on my external monitor as well, which is a little Vizio HDTV connected HDMI from my Black Magic intensity card.
I then tried cinema tools, and tried their reverse telecine, after guessing at several different options to choose from. The conform button and selecting 23.98 didn't help me either. I am willing to upload the short clip to my mobile me account if someone wants to download and try removing the pulldown for me. I am just stumped, and really want to figure this out. Maybe I am doing it right, and that's just how the quality of the pf24 looks like, but I doubt it.
Someone please let me know if you can help.
Thanks!

Try it without deinterlacing/reverse telecine.

Similar Messages

  • My "fn" button is stuck on only revealing mission control in Lion. With this problem none of my "f" keys will work nor can I hold "fn" and delete to delete text in opposite direction. Can someone please help with this?

    My "fn" button is stuck on only revealing mission control in Lion. With this problem none of my "f" keys will work nor can I hold "fn" and delete to delete text in opposite direction. Can someone please help with this?

    Following the fix here worked for me:
    https://discussions.apple.com/message/15680566#15680566
    except my plist file was in ~/Library instead of /Library.
    -Scott

  • I have just started using WD external hard drives, I use it to save my movies and music on. On more than one occasion, when I connect to my MacBook it erases everything on had on there. Can someone please help with this problem?

    I have just started using WD external hard drives, I use it to save my movies and music on. On more than one occasion, when I connect it to my MacBook it erases everything I had save on the hard drive. Can someone please help me with this problem? I am super tired of having to put all of my movies and music on the hard drive just to have it erased again. The products I am using are WD 4TB My Book and 2 TB My Passport external hard drives. When it happens, there is always an icon that reads, EFI, along with the My Book icon. Thank you for your assisstance.

    dwgar1322 wrote:
    I have just started using WD external hard drives, I use it to save my movies and music on. On more than one occasion, when I connect it to my MacBook it erases everything I had save on the hard drive. Can someone please help me with this problem? I am super tired of having to put all of my movies and music on the hard drive just to have it erased again. The products I am using are WD 4TB My Book and 2 TB My Passport external hard drives. When it happens, there is always an icon that reads, EFI, along with the My Book icon. Thank you for your assisstance.
    Yes, you have WD software installed  REMOVE IT !! 
    WD has warned its customers about their huge mistake that their software doesnt work on Mavericks and causes data loss.
    (also dont use WD drives anymore)
    Read all about it here:
    https://discussions.apple.com/thread/5475136?start=255&tstart=0
    See their website on removing the destructive WD software here:
    http://community.wd.com/t5/External-Drives-for-Mac/External-Drives-for-Mac-Exper iencing-Data-Loss-with-Maverick-OS/td-p/613775
    Western Digital External Hard Drives Experiencing Data Loss On OS X Mavericks
    http://www.cultofmac.com/252826/western-digital-external-hard-drives-experiencin g-data-loss-on-os-x-mavericks/

  • My new ipod touch 8gb is only registering as a camera.  can someone please help with syncing it with my old nano

    I have a new 8gb Ipod touch and I am trying to sync my old nano onto it.  But, when I am registering the new Ipod touch, it is recognising it as a camera.  Can anyone please help?  Many thanks in anticipation

    Here:
    iOS: Device not recognized in iTunes for Windows
    or
    iPhone, iPad, iPod touch: Device not recognized in iTunes for Mac OS X

  • Can Someone Please Help with Email Setup!

    I know it maybe a sin, but I have a hotmail account, I been trying to on my Iphone. It doesn't seem to be working, can some please help me out

    you cant set it up in your mail app on your iphone to my understanding... Microsoft did not make this easy, since it needs a plug in on your computer to work and does not use standard pop3 protocals. Blame Microsoft not Apple on this one
    My suggestion
    Bookmark and use http://mobile.live.com to check your Hotmail account, it is designed for mobile phones and loads quick

  • Can Someone Please Help With A Java App.

    A while back, I had a program that I was working on, while taking Java in a Web Design & Development course -- this was back in 1999 -- not having the mindset of a programmer I failed that part of the course misrably. I had to do the following program, but you can see why I failed, I only managed to write to lines of code. I am wondering if there is anyone who can write it to the following criteria, maybe even make it graphical...I am hoping to try and write an XML backend to it like I wanted to do in 1999; unfortunately I lost the code that someone was nice enought to supply after I failed that part of the 6 month course...so if anyone can help please let me know. I want to try learning Java again, but it would be cool to see the following in working order again. If you're wondering why I still have the following, I just found it again while going through my Experts Exchange postings.
    import java.awt.*;
    public class CourseMarks extends Applet {
    Of course I think this is wrong, but here is what I need done:
    Define a class (data structure) to represent the people taking a course. For each person, you should record their name, their mid-term mark, their final mark, and any other information you think is relevant (hint: how do you find all the people in the class?)
    A) The Applet/Program must be called CourseMarks
    B) Write the class in Java
    C) Create a variable called courseList to record students of a specific course, then write code to initialise it with information about three students.
    D) Letter grades are to be awarded to the people taking the course, and you have to write a method to translate the final mark to a letter grade for each person. Letter grades are awarded as follows: 0-49.99 = F, 50-59.99 = E, 60-69.99 = D, 70-79.99 = C, 80-89.99 = B, 90-94.99 = A, 95 and up = A+. Write a method in Java and show how you would invoke it on courseList
    E) Write a method to compute the class average for the mid-term mark (hint: follow your links), and show how you would invoke it on courseList.
    Thanks,
    Michael Lauzon, Founder
    The Quill Society
    http://www.quillsociety.org/
    [email protected]

    Here is a quick and dirty implementation. I think I have everything in there. :-) import java.util.*;
    public class CourseMarks {
        private ArrayList courseList = null;
        /** Constructor for class */
        public CourseMarks() {
        /** Populate course list with students */
        private void initList() {
            Student s1 = new Student( "Gweedo", 100.0, 100.0, 101 );
            Student s2 = new Student( "Sally", 70.4, 65.3, 101 );
            Student s3 = new Student( "Michael", 56.0, 45.0, 101 );
            courseList = new ArrayList();
            courseList.add( s1 );
            courseList.add( s2 );
            courseList.add( s3 );
        /** Returns the list of students */
        public ArrayList getCourseList() {
            return courseList;
        /** Compute and return the letter grade for the passed mark */
        public String computeLetterGrade( double mark ) {
            String grade = null;
            if( mark <= 49.99 ) {
                grade = "F";
            } else if( mark >= 50.0 && mark <= 59.99 ) {
                grade = "E";
            } else if( mark >= 60.0 && mark <= 69.99 ) {
                grade = "D";
            } else if( mark >= 70.0 && mark <= 79.99 ) {
                grade = "C";
            } else if( mark >= 80.0 && mark <= 89.99 ) {
                grade = "B";
            } else if( mark >= 90.0 && mark <= 94.99 ) {
                grade = "A";
            } else if( mark >= 95 ) {
                grade = "A+";
            return grade;
        /** Print out the letter grades for all the students in the passed list */
        public void printLetterGrades( ArrayList studentList ) {
            if( studentList != null && studentList.size() > 0 ) {
                Student aStudent = null;
                Iterator it = studentList.iterator();
                while( it.hasNext() ) {
                    aStudent = (Student)it.next();
                    System.out.println( aStudent.name + " had final mark " + aStudent.finalMark +
                        " and letter grade " + this.computeLetterGrade( aStudent.finalMark ) + "." );
        /** Compute the average mid term for the students in the passed list */
        public double computeAverageMidTerm( ArrayList studentList ) {
            double average = 0.0;
            if( studentList != null && studentList.size() > 0 ) {
                double total = 0.0;
                Student aStudent = null;
                Iterator it = studentList.iterator();
                while( it.hasNext() ) {
                    aStudent = (Student)it.next();
                    total += aStudent.midMark;
                average = total / studentList.size();
            return average;
        /** Main method so this class can be run */
        public static void main(String[] args) {
            CourseMarks app = new CourseMarks(); // Create new CourseMarks instance
            app.initList();     // Init it's list of students
            app.printLetterGrades( app.getCourseList() );   // Print letter grades for all students
            System.out.println( "Average mid term: " + app.computeAverageMidTerm( app.getCourseList() ));
            System.exit(0);
    /** Simple class that just holds a few values */
    class Student {
        public String name = null;
        public double midMark = 0.0d;
        public double finalMark = 0.0d;
        public int classNum = 0;
        public Student( String aName, double aMidTerm, double aFinal, int aClassNum ) {
            name = aName;
            midMark = aMidTerm;
            finalMark = aMidTerm;
            classNum = aClassNum;
    }

  • Can someone please help with constant crashes ?

    I've had a tremendous issue with crashes for the last 2 to 3 weeks. I tried'' all of the suggested steps'' with no change. I send the report every single time and no response. Is there anywhere else I can send some of the report id's to and have someone look at them to see if they can narrow down my issue. Usually it happens if I leave the browser open and step away for 5 minutes, when I come back it crashed. Usually Facebook is open, Words With Friends, Pogo...But it doesn't have to be these 3 that I have noticed. This morning it wouldn't even open at all, went straight to crash. It will also crash randomly when I'm using it as well. I have well over 50 crash reports dating from 1-5-2012 which is when it started to become frequent. Anyone that can, please advise ?????????

    The Crash IDs as text are preferable to a screenshot.
    It appears you are on the Beta channel but are still on version 10. The ordinary release channel itself is now on 10.0.2. Version 10 was crashing and had security issues that was why releases10.0.1 and 10.0.2 were released. I suggest you update to the latest release version from
    * http://www.mozilla.org/en-US/firefox/all.html
    CrashID reports
    *[https://crash-stats.mozilla.com/report/index/352fd0d9-188b-41b7-8d17-c1f892120128 352fd0d9-188b-41b7-8d17-c1f892120128]
    *[https://crash-stats.mozilla.com/report/index/62393901-e27a-4489-9be7-969f62120128 62393901-e27a-4489-9be7-969f62120128]
    *[https://crash-stats.mozilla.com/report/index/f72e9b8d-abcf-4983-b8de-f4c4f2120127 f72e9b8d-abcf-4983-b8de-f4c4f2120127]

  • Can someone please help with this code and what it means? Interval Since Last Panic Report:  6395213 sec Panics Since Last Report:          1 Anonymous UUID:                    8AEBAB22-1943-48B3-8D30-E4D07CCDEEA0  Tue Mar 18 13:30:13 2014 Machine-check c

    Interval Since Last Panic Report:  6395213 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    8AEBAB22-1943-48B3-8D30-E4D07CCDEEA0
    Tue Mar 18 13:30:13 2014
    Machine-check capabilities (cpu 3) 0x0000000000000006:
    family: 6 model: 15 stepping: 6 microcode: 198
    Intel(R) Xeon(R) CPU            5160  @ 3.00GHz
    6 error-reporting banks
    Machine-check status 0x0000000000000005:
    restart IP valid
    machine-check in progress
    MCA error-reporting registers:
    IA32_MC0_STATUS(0x401): 0x1000000020000000 invalid
    IA32_MC1_STATUS(0x405): 0x0000000000000000 invalid
    IA32_MC2_STATUS(0x409): 0x0000000000000000 invalid
    IA32_MC3_STATUS(0x40d): 0x0020000000000000 invalid
    IA32_MC4_STATUS(0x411): 0x0000000000000011 invalid
    IA32_MC5_STATUS(0x415): 0xb200001080200e0f valid
    MCA error code:            0x0e0f
    Model specific error code: 0x8020
    Other information:         0x00000010
    Status bits:
      Processor context corrupt
      Error enabled
      Uncorrected error
    panic(cpu 2 caller 0x2cf3cc): "Machine Check at 0x002d3432, trapno:0x12, err:0x0," "registers:\n" "CR0: 0x80010033, CR2: 0x103dd000, CR3: 0x00100000, CR4: 0x00000660\n" "EAX: 0x00000000, EBX: 0x000000be, ECX: 0x6241b000, EDX: 0x00000001\n" "ESP: 0x6f853c58, EBP: 0x6f853c58, ESI: 0x00000000, EDI: 0x827a6b3c\n" "EFL: 0x00000016, EIP: 0x002d3432\n"@/SourceCache/xnu/xnu-1699.32.7/osfmk/i386/trap_native.c:258
    Backtrace (CPU 2), Frame : Return Address (4 potential args on stack)
    0x6853cf38 : 0x2203de (0x6b08cc 0x6853cf58 0x229fb0 0x0)
    0x6853cf68 : 0x2cf3cc (0x6bde94 0x6bdfc8 0x2d3432 0x12)
    0x6853d0d8 : 0x2cf409 (0x6853d110 0xde 0x6bdfc8 0x1)
    0x6853d0f8 : 0x2e6182 (0x6853d110 0x0 0x0 0x0)
    0x6f853c58 : 0x2d381e (0x20 0x7fffffff 0x6f853c88 0x29701be)
    0x6f853c68 : 0x29701be (0x684b6100 0xffffffff 0x6f853cb8 0x9d8e800)
    0x6f853c88 : 0x297028b (0x684b6100 0xffffffff 0x7fffffff 0x827aa38d)
    0x6f853cb8 : 0x296864f (0x684b6100 0x827aa38d 0xbe 0xffffffff)
    0x6f853d58 : 0x29699fe (0x827aa38d 0xbe 0x3 0x0)
    0x6f853de8 : 0x2d0cde (0xffffffff 0x7fffffff 0x6f853e08 0x2cd4ca)
    0x6f853e08 : 0x22d3e5 (0x684c5000 0x827a6711 0xbe 0x684c5de0)
    0x6f853e48 : 0x22e1c0 (0xd58c7f0 0x684c5000 0x0 0x0)
    0x6f853e98 : 0x22f6c2 (0xd58c80c 0x2 0x12 0xd7c0e00)
    0x6f853ef8 : 0x22f821 (0x2150f0 0x0 0x0 0xd58c7f0)
    0x6f853f18 : 0x21505d (0x2150f0 0x7000006 0xc00 0xffffffff)
    0x6f853f48 : 0x21b385 (0xede8f28 0x7000006 0xc00 0xffffffff)
    0x6f853f98 : 0x2b7bb7 (0xd4c9954 0x7fff 0xd4c9984 0x8)
    0x6f853fc8 : 0x2e60c7 (0xd4c9950 0x0 0x10 0xd4c9950)
         Kernel Extensions in backtrace:
            com.apple.driver.AppleIntelCPUPowerManagement(195.0)[D1550426-D346-4805-A777-06 63C69080DA]@0x2966000->0x298ffff
    BSD process name corresponding to current thread: iTunes
    Mac OS version:
    11G63
    Kernel version:
    Darwin Kernel Version 11.4.2: Thu Aug 23 16:26:45 PDT 2012; root:xnu-1699.32.7~1/RELEASE_I386
    Kernel UUID: 859B45FB-14BB-35ED-B823-08393C63E13B
    System model name: MacPro1,1 (Mac-F4208DC8)
    System uptime in nanoseconds: 818233088876
    last loaded kext at 91751914186: com.apple.driver.AppleHWSensor          1.9.5d0 (addr 0x2990000, size 28672)
    last unloaded kext at 226546974280: com.apple.driver.CSRHIDTransitionDriver          4.0.8f17 (addr 0x21cd000, size 12288)
    loaded kexts:
    com.parentalctrl.kext.filter          3.8.1
    com.logmein.driver.LogMeInSoundDriver          1.0.3
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.driver.AppleHDA          2.2.5a5
    com.apple.driver.AudioAUUC          1.59
    com.apple.GeForce7xxx          7.0.4
    com.apple.driver.AppleUSBDisplays          323.3
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager          4.0.8f17
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleMCEDriver          1.1.9
    com.apple.driver.Apple_iSight          4.0.1
    com.apple.driver.AudioIPCDriver          1.2.3
    com.apple.driver.ApplePolicyControl          3.1.33
    com.apple.driver.ACPI_SMC_PlatformPlugin          5.0.0d8
    com.apple.driver.AppleLPC          1.6.0
    com.apple.filesystems.autofs          3.0
    com.apple.driver.CSRUSBBluetoothHCIController          4.0.8f17
    com.apple.iokit.SCSITaskUserClient          3.2.1
    com.apple.driver.AppleRAID          4.0.6
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          33
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.1.0
    com.apple.driver.AppleFWOHCI          4.9.0
    com.apple.driver.AppleAHCIPort          2.3.1
    com.apple.driver.AppleIntelPIIXATA          2.5.1
    com.apple.driver.AppleIntel8254XEthernet          2.1.3b1
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleUSBHub          5.1.0
    com.apple.driver.AppleUSBUHCI          5.1.0
    com.apple.driver.AppleUSBEHCI          5.1.0
    com.apple.driver.AppleACPIButtons          1.5
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.5
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          195.0.0
    com.apple.nke.applicationfirewall          3.2.30
    com.apple.security.quarantine          1.4
    com.apple.security.TMSafetyNet          8
    com.apple.driver.AppleIntelCPUPowerManagement          195.0.0
    com.apple.driver.AppleBluetoothHIDMouse          175.9
    com.apple.driver.AppleHIDMouse          175.9
    com.apple.driver.IOBluetoothHIDDriver          4.0.8f17
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.driver.DspFuncLib          2.2.5a5
    com.apple.nvidia.nv40hal.G7xxx          7.0.4
    com.apple.NVDAResman.G7xxx          7.0.4
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.iokit.IOSurface          80.0.2
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.driver.AppleHDAController          2.2.5a5
    com.apple.iokit.IOHDAFamily          2.2.5a5
    com.apple.iokit.IOAudioFamily          1.8.6fc18
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleGraphicsControl          3.1.33
    com.apple.iokit.IONDRVSupport          2.3.4
    com.apple.iokit.IOGraphicsFamily          2.3.4
    com.apple.driver.AppleSMC          3.1.3d10
    com.apple.driver.IOPlatformPluginLegacy          5.0.0d8
    com.apple.driver.IOPlatformPluginFamily          5.1.1d6
    com.apple.kext.triggers          1.0
    com.apple.driver.AppleUSBBluetoothHCIController          4.0.8f17
    com.apple.iokit.IOBluetoothFamily          4.0.8f17
    com.apple.driver.AppleUSBHIDKeyboard          160.7
    com.apple.driver.AppleHIDKeyboard          160.7
    com.apple.iokit.IOUSBHIDDriver          5.0.0
    com.apple.driver.AppleUSBMergeNub          5.1.0
    com.apple.driver.AppleUSBComposite          5.0.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.2.1
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOATAPIProtocolTransport          3.0.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.2.1
    com.apple.iokit.IOFireWireFamily          4.4.8
    com.apple.iokit.IOAHCIFamily          2.0.8
    com.apple.iokit.IOATAFamily          2.5.1
    com.apple.iokit.IONetworkingFamily          2.1
    com.apple.iokit.IOUSBUserClient          5.0.0
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOUSBFamily          5.1.0
    com.apple.iokit.IOHIDFamily          1.7.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          177.11
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          331.7
    com.apple.iokit.IOStorageFamily          1.7.2
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.5
    com.apple.iokit.IOPCIFamily          2.7
    com.apple.iokit.IOACPIFamily          1.4
    Model: MacPro1,1, BootROM MP11.005C.B08, 4 processors, Dual-Core Intel Xeon, 3 GHz, 5 GB, SMC 1.7f10
    Graphics: NVIDIA GeForce 7300 GT, NVIDIA GeForce 7300 GT, PCIe, 256 MB
    Memory Module: DIMM Riser A/DIMM 1, 512 MB, DDR2 FB-DIMM, 667 MHz, 0x802C, 0x39485446363437324A592D36363742344433
    Memory Module: DIMM Riser A/DIMM 2, 512 MB, DDR2 FB-DIMM, 667 MHz, 0x802C, 0x39485446363437324A592D36363742344433
    Memory Module: DIMM Riser A/DIMM 3, 2 GB, DDR2 FB-DIMM, 667 MHz, 0x8319, 0x4D4B435333385554412D4944542020202020
    Memory Module: DIMM Riser A/DIMM 4, 2 GB, DDR2 FB-DIMM, 667 MHz, 0x8319, 0x4D4B435333385554412D4944542020202020
    Bluetooth: Version 4.0.8f17, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Ethernet 1, Ethernet, en0
    PCI Card: NVIDIA GeForce 7300 GT, sppci_displaycontroller, Slot-1
    Serial ATA Device: ST3250824AS  Q, 250.06 GB
    Serial ATA Device: SAMSUNG HD501LJ, 500.11 GB
    Serial ATA Device: WDC WD10EADS-00M2B0, 1 TB
    Serial ATA Device: WDC WD10EADS-00M2B0, 1 TB
    Parallel ATA Device: SONY    DVD RW DW-D150A
    USB Device: hub_device, apple_vendor_id, 0x911d, 0xfd500000 / 3
    USB Device: Keyboard Hub, apple_vendor_id, 0x1006, 0xfd520000 / 5
    USB Device: Apple Keyboard, apple_vendor_id, 0x0220, 0xfd522000 / 6
    USB Device: Apple Cinema Display, apple_vendor_id, 0x921d, 0xfd530000 / 4
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd400000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8206, 0x5d200000 / 2
    FireWire Device: built-in_hub, 800mbit_speed
    FireWire Device: iSight, Apple Computer, Inc., 200mbit_speed
    FireWire Device: unknown_device, unknown_speed

    Kernel panic, machine check, uncorrected error correlates very strongly with RAM memory errors.
    Time for a Memory upgrade.

  • Can someone please help with my Galaxy S3

    I have my phone set up to read texts when they are received. I think this is because I have 'driving mode' turned on. I like this feature very much. My problem is, with driving mode turned on every time I get a call or text or simply turn on my screen, the phone delays speech for a few seconds and then tells me the time and temperature. If I have an incoming call or text message the phone will tell me the time and temperature at the same time the text is being read which makes it very difficult to understand the text until the time and temp stops. Is there any way to make my Galaxy S3 stop speaking the time and temp but still speak the rest?

    Thanks for your reply. I have driving mode on. I removed the Accu Weather widget from my home screen and looked in my Apps and it's not there anymore, however; when I press the key to turn on my screen it's there until I unlock the screen. Then it disappears but it still reads the time and temperature. This is extremely annoying. I want it to read to me...just not the time and temperature.

  • Pretty new to Java can someone please help with an addObject() problem?

    Hi I'm pretty knew to programming and I have an assignment which I've been working on but I am stuck
    I have to create a 'space invaders' style game, and I've got some basics working. I wanted to add a boss enemy, which appears when all other enemies have been destroyed. It kind of works, only the program spawns a seemingly infinite amount of the boss which then creates a 'wipe' effect across the top of the screen.
    Here is my code:
    import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo)
    import java.util.List;
    public class Space extends World
    * Constructor for objects of class Space.
    public Space()
    // Create a new world with 200x250 cells with a cell size of 3x3 pixels.
    super(200, 250, 3);
    //add class with starstreaks
    addObject(new EmptyBox(),1,1);
    //add player character
    addObject(new Player(), 100, 228);
    //add 4 romulan enemies row 1
    for(int i=0; i<4; i++){
    addObject(new Romulan(), (25 + 50 * i), 15);
    //add 3 klingon enemies row 2
    for(int i=0; i<3; i++){
    addObject(new Klingon(), (50 + 50 * i), 40);
    //add 4 romulan enemies row 3
    for(int i=0; i<4; i++){
    addObject(new Romulan(), (25 + 50 * i), 65);
    //add 3 klingon enemies row 4
    for(int i=0; i<3; i++){
    addObject(new Klingon(), (50 + 50 * i), 90);
    //add 3 shields
    for(int i=0; i<3; i++){
    addObject(new Shield(), (30 + 70 * i), 180);
    *public void act(){*
    List<Enemy> enemies = getObjects(Enemy.class);
    *if(enemies.size()==0 ){*
    addObject(new Borg(), 100, 30 );
    I believe the part in bold is the problem, but I dont know why. Klingon and Romulan are subclasses of the Enemy class. The Borg class is it's own seperate class, but with the exact same functions as Enemy. I made it seperate as I figured it would keep respawning if it was a subclass of Enemy.
    Any ideas?

    Its ok, after more than an hour I've got it.
    I simply added private int bossValue = 0; at the beginning and then changed act to this:
    public void act(){
    List<Enemy> enemies = getObjects(Enemy.class);
    if(enemies.size()==0 && bossValue==0 ){
    //for(int i=0; i<1; i++){
    addObject(new Borg(), 100, 30 );
    bossValue =1;
    }

  • Can Someone please help me with ERROR 4251

    I have tried everything! even slowing down the burn speed.
    Can someone please help with error 4251 when burning.
    I have my diagnostics report done as well.
    Thank you to anyone who can help.

    I did a quick google search for "iTunes error 4251" and this was the first result.
    http://forums.techarena.in/motherboard-processor-ram/1215316.htm
    The last post in that forum said a few things.
    1.Restart computer
    2.Disable anti-virus/security programs
    3.Update hardware and software drivers.(I'm guessing mainly the cd-rom drive drivers)
    Try those things and see if it is still a problem.
    ~Bill L.

  • Dear Friends, I am trying to draw a structure in Adobe Illustrator with 3D effect. But I am unable to give it proper shape. Can someone please help me for drawing the similar structure as showed below. I have facing problems in giving 3D effect.

    Dear Friends, I am trying to draw a structure in Adobe Illustrator with 3D effect. But I am unable to give it proper shape. Can someone please help me for drawing the similar structure as showed below. I have facing problems in giving 3D effect.
    Thanks a lot for your great help...

    i made a quick example:
    and what it's made of:
    just shapes and gradients. used a combination of pathfinder and shape builder to get the shapes exact.

  • I downloaded FF 4 and now 5 and with neither my screen looks nothing like it shows on the FF page. For instance, I do not have the orange FF tab in the upper left corner, I have no option of "pin as app" nor do I have Panorama. Can someone please help me?

    I downloaded FF 4 and now 5 and with neither my screen looks nothing like it shows on the FF page. For instance, I do not have the orange FF tab in the upper left corner, I have no option of "pin as app" nor do I have Panorama. Can someone please help me?

    To get the orange FF tab, go to View > Toolbars > Menu Bar. This should uncheck the menu bar and give you the orange button.
    Panorama is a box made of 4 grey rectangles that should be on the far right, if it isn't after you enable the orange FF tab, right click on anywhere on a tool bar that doesn't have anything on it, and you should get a menu with a list of your tool bars that you can check and uncheck. go down to customize at the very bottom and it will open a window with all your buttons. Find the panorama/tab groups button and drag it onto the tool bar of your choice.
    to pin a tab as an app, right click on it; it's an option in the right-click menu.

  • My iPhone 4 will not sync my new voice memos from the "Voice Memos" app to my computer. This is frustrating, should not be so hard, can someone please help. I use PC with windows 7 with iPhone version 6.1.3 and iTunes most recent. Thanks.

    My iPhone 4 will not sync my new voice memos from the "Voice Memos" app to my computer. This is frustrating, should not be so hard, can someone please help. I use PC with windows 7 with iPhone version 6.1.3 and iTunes most recent. Thanks.

    In the Music tab of iTunes, do you have 'Include Voice Memos' checked?

  • My MacBook Pro iTunes movie purchase is not showing in iTunes store movie purchases nor does it show on my iPad or Apple TV.  Can someone please help me with a solution?  Thanks.

      First of all, I live in Ho Chi Minh City, Vietnam. Sometimes, I use a VPN to search on the web here. I purchased Toy Story 3 on my MacBook Pro 2011 OS/X - Lion through iTunes.  I initially had trouble downloading it which may be due to being on and off the VPN but after a while it finally downloaded and shows up in my iTunes library on my MacBook. 
      Under my Apple ID account (which is the only Apple ID account I have), I look under purchase history and it shows that I paid for Toy Story which is where I got my Order # from.  But if you go to the iTunes Store then to the Quick Links then click on Purchased, under all my Movies, it does NOT show Toy Story 3 as one of my movies.
      Now when I go to my iPad (3rd gen.), Toy Story 3 does not show up under purchased movies (all or not on my iPad).  It does not show up on my Apple TV as well.  If I want to have Toy Story 3 on my iPad or Apple TV, then it says I have to purchase it again.
      I have searched for help via Apple support communities but so far none of their solutions have worked for me.  I have tried logging off iTunes & App Store on iPad and also shutting down the iPad.  I also made sure that under iTunes Preferences>Store that iTunes in the Clouds purchases is checked. Can someone please help me with this?  Your consideration is greatly appreciated.  Thanks.

    Thanks King_Penguin for taking time to read and reply. 
    I just purchased this movie on Thursday, May 15, so just a few days ago.  I have never had any trouble whatsoever since I have been in Vietnam.  I have downloaded several movies and even music and they have all synced to my respected Apple products except for this purchase. 
    Sorry, I don't quite understand what you mean by studios and different versions.  Could you please explain? 
    I checked my purchased list in my purchase history under my account and there are no hidden items. 

Maybe you are looking for

  • Powerbook 15" 1.5ghz screen going bad

    I have the same problem as posted in this thread: http://discussions.apple.com/thread.jspa?threadID=763497&tstart=90 and this thread: http://discussions.apple.com/thread.jspa?threadID=809791&tstart=15 I would post this as a reply to one of those thre

  • Error in pharse XPRAS_UPG

    Hello, I got an error in phase  XPRAS_UPG.  i paste the log LONGPOST.LOG : UPGRADEPHASE XPRAS_UPG 1PEPU203X> Messages extracted from log file "SAPR700WG4.R46" <   Long text:     Cause       During the upgrade, a message relevant for postprocessing wa

  • ERP/CRM/HRM in a Java system

    For medium-sized organizations that are finding a need to progress towards an 'entry-level' ERP/CRM/HRM solution, where does this solution fit into the different types of technologies? For example, in a particular enterprise application assume there

  • Contact search process

    Hello All, I am trying to understand the process of contact search. Is it correct that the normal behavior would be: - search in Lync adress book (by default in local GalContacts.db) - search in Exchange GAL (via EWS) - search for personal contacts o

  • What's the best way to organize my photos

    I have iPhoto, regular finder files, and adobe Bridge.  I loose photos all the time because of the automated functions in iPhoto, and am wondering if I ought to bite the bullet and give up organizing my personal picture files on my external hard driv