One Last Try

Hello,
Looking for an animation editor who can help me apply the correct settings to an animation FCP editing project (image size, FPS, etc) and then how to set the export so the image is not distorted on output and can be watched on 4:3 tv screens.
It's a lot so even a little help would be appreciated.
Thanks

As chrisBG says... any more info would be helpful.
However... let's assume you are using an animation app that lets you export as a QT movie.
Build your animation in 720x480 space. Export via Quicktime to DV/NTSC full quality.
IF you are using alpha channels you need to export via Quicktime Animation codec with Millions of Colors +... the + is the alpha channel.
Also -- are you doing this in 30fsp? Make sure that matches your FCP settings.
However... IF it is coming in a bit squished or something, load it into the Viewer... the window on the upper left and click the motion tab. Then under distort change the aspect ratio until it looks right.
See if those few things don't help.
Good luck,
CaptM

Similar Messages

  • One last try on my  pioneer dvr( it only spits discs out)

    My piuoneer dvr is only spitting out discs , it says in system profiler
    PIONEER DVD-RW DVR-108:
    Firmware Revision: 1.10
    Interconnect: ATAPI
    Burn Support: Yes (Vendor Supported)
    Profile Path: VendorSupport.drprofile
    Cache: 2000 KB
    Reads DVD: Yes
    CD-Write: -R, -RW
    DVD-Write: -R, -RW, +R, +RW, +R DL
    Burn Underrun Protection CD: Yes
    Burn Underrun Protection DVD: Yes
    Write Strategies: CD-TAO, CD-SAO, CD-Raw, DVD-DAO
    Media: No
    Question is isnt it apple supported and how can i Fix this as a last try before I order a new one. Mark

    it accepts discs keeps them for a minute and than spits them out. I tried the slap. I reset pram and nvram both in pram reset on start up and resetting nvram in open firmware on start up . just tried the sleep thing and after a minute of being awake it spits disc out. If i open optical drive any thing dangerous about that?
    p.s. here are stats after resetting vnram( i dont think it worked)
    PIONEER DVD-RW DVR-108:
    Firmware Revision: 1.10
    Interconnect: ATAPI
    Burn Support: Yes (Vendor Supported)
    Profile Path: VendorSupport.drprofile
    Cache: 2000 KB
    Reads DVD: Yes
    CD-Write: -R, -RW
    DVD-Write: -R, -RW, +R, +RW, +R DL
    Burn Underrun Protection CD: Yes
    Burn Underrun Protection DVD: Yes
    Write Strategies: CD-TAO, CD-SAO, CD-Raw, DVD-DAO
    Media: No
    Any other suggestions is there a way to unflash nvram? as in through the terminal window?
    g4 Sawtooth 1ghz   Mac OS X (10.4.6)  

  • One  last try... emulating HTTP POST with applet

    I am trying emulate the HTTP POST method for file uploading using an applet. More specifically, I am trying to upload raw data to a PHP script by making the PHP script think it is receiving a file when in reality all it is receiving is a series of headers, some other necessary info, the data, and a closer. The PHP is then supposed to save the data into a file.
    I have looked at eight or ten threads, explanations, and sample code in this and other forums that deal with this exact same thing, some even specific to PHP, read various documents on and explanations of HTTP headers and so forth, corrected every code error and possible code error I could find, and tried a gazillion variations, but still can't get the PHP script to think that it is receiving a file.
    As far as I can tell, communication with the server is being established, the server is receiving info and sending responses back, the PHP script is defrinitely being activated to do its thing, but the PHP is not recognizing anything that looks like a file or even a file name to it.
    The following information may be relevant:
    The PHP works perfectly with real files uploaded from real HTML pages.
    The server uses Apache.
    The server has no Java support (shouldn't matter, but otherwise I would be using servlets at that end instead of PHP).
    the applet is in a signed jar, and is trying to store information in the same directory that it came from.
    I am using the Firefox browser (shouldn't matter?) .
    I am hoping that someone knowegeable about this can look at the code below and point our any errors. I've also included the response I get from the server, and the PHP code. If there are no obvious errors, can you think of anything else tthat might be going wrong besides the code itsef?
    Please don't suggest I try alternate means of doing this or grab some working code from somewhere. I may very well wind up doing that, but I'm a stubborn bastard and want to find out what the #^%R$($ is going wrong here!!!
    Here is the latest incarnation of the applet code: All it does is immediately try to send some text to the PHP script in such a way that the script thinks it is uploading text within a file. it also displays the responses it gets from the server, including what the PHP script sends back.
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.net.*;
    public class test1 extends Applet{
    DataOutputStream osToServer;
    DataInputStream isFromServer;
    HttpURLConnection uc;
    String content = "This is a test upload";
    public void init(){
    try
    URL url = new URL( "http://www.mywebpage.com/handleapplet.php" );
    uc = (HttpURLConnection)url.openConnection();
    uc.setRequestMethod("POST");
    uc.setDoOutput(true);
    uc.setDoInput(true);
    uc.setUseCaches(false);
    uc.setAllowUserInteraction(false);
    uc.setRequestProperty("Connection", "Keep-Alive");
    //uc.setRequestProperty("HTTP_REFERER", "http://applet.getcodebase");
    uc.setRequestProperty("Content-Type","multipart/form-data; boundary=7d1234cf4353");
    uc.setRequestProperty( "Content-length", ( Integer.toString( content.length() ) ) );
    osToServer = new DataOutputStream(uc.getOutputStream());
    isFromServer = new DataInputStream(uc.getInputStream());
    catch(IOException e)
    System.out.println ("Error etc. etc.");
    return;
    try{
    osToServer.writeBytes("------------------------7d1234cf4353\r\nContent-Disposition: form-data; name=\"testfile\"; filename=\"C:testfile.txt\"\r\nContent-Type: text/plain\r\n\r\n");
    osToServer.writeBytes(content);
    osToServer.writeBytes("\r\n------------------------7d1234cf4353--\r\n");
    osToServer.flush();
    osToServer.close();
    catch (Exception e) {
    System.out.println(e);
    System.out.println("did not sucessfully connect or write to server");
    System.exit(0);
    }//end catch
    try{
    String fieldName="",fieldValue="";
    for ( int i=0; i<15; i++ )
    fieldName = uc.getHeaderFieldKey(i);
    System.out.print (" " + fieldName +": ");
    fieldValue = uc.getHeaderField(fieldName);
    System.out.println (fieldValue);
    }catch(Exception e){
    System.out.println ("Didn't get any headers");
         try{        
    String sIn = isFromServer.readLine();
                        for ( int j=0; j<20; j++ )
                             if(sIn!=null)
    System.out.println(sIn);
                             sIn = isFromServer.readLine();
    isFromServer.close();
    }catch(Exception e){
              e.printStackTrace();
    }//end AudioUp.java
    Here's the response I get back from the server:
    null: HTTP/1.1 200 OK
    Date: Sun, 03 Apr 2005 18:40:04 GMT
    Server: Apache
    Connection: close
    Transfer-Encoding: chunked
    Content-Type: text/html
    null: HTTP/1.1 200 OK
    null: HTTP/1.1 200 OK
    null: HTTP/1.1 200 OK
    null: HTTP/1.1 200 OK
    null: HTTP/1.1 200 OK
    null: HTTP/1.1 200 OK
    null: HTTP/1.1 200 OK
    null: HTTP/1.1 200 OK
    null: HTTP/1.1 200 OK
    <html>
    <head>
    <title>Handling uploaded files from an applet, etc.</title>
    </head>
    <body>
    No file was uploaded.
    </body>
    </html>
    The <html> and the "No file uploaded" message is simply what the PHP script sends back when it does not detect any uploaded file.
    Here is the PHP code on the server:
    <html>
    <head>
    <title>Handling uploaded files from an applet, etc.</title>
    </head>
    <body>
    <?php
    if ($testfile)
    print "The temporary name of the test file is: $testfile<br />";
    $uplfile=$testfile_name;
    $uplfile=trim($uplfile);
    print "The filename is: $uplfile<br />";
    if ($uplfile)
    copy ($testfile, "$testfile_name");
    unlink ($testfile);
    }else{
    print "No file was uploaded.";
    ?>
    </body>
    </html>

    xyz's sample code didn't work - PHP doesn't like the getallheaders line at all. I'm going back to the manual now.
    I had another thought. When I first started using PHP, I had problems with ordinary text field uploads from web pages because somewhere in the process, extra blank lines or spurious carriage returns were being inserted into the strings. For example, if I had a place where people could enter their name, password, and brief message, and tried to store the incoming strings in an array, I'd wind up with some thing like:
    name
    password
    brief message
    instead of:
    name
    password
    brief message
    Which played havoc when trying to read out information by counting lines.
    Anyway, the problem was solved by using the trim($string) function on all incoming strings, which I now do as a matter of course. I never could figure out why it was happening though.
    Do you think something like that could be happening here?? I mean, if spurious blank lines or carriage returns were being inserted where they shouldn't be, could that be screwing things up in this way? HTTP seems to insist on having new lines and blank lines inserted in just the right places.

  • My iPad says no service, and cannot connect to the server,cannot get mail .Sim card is locked and down to one last try.My wireless works for other pads and phones.

    IiPad says no service,and in mail says cannot connect to server.Wi Fi is working fine.

    You may not really be connected to your WiFi network.
    Your router may not have given your iPad a valid IP address. Go to Settings > Wifi > your network name and touch the ">" to the right to see the network details. If the IP address starts with 169 or is blank then your router didn't provide an IP address and you won't be able to access the Internet.
    Sometimes the fix can be as simple as restarting your router (remove power for 30 seconds and restart). Next, reset network settings on your iPad (Settings > General > Reset > Reset network settings) and then attempt to connect. In other cases it might be necessary to update the router's firmware with the latest from the manufacturer's support web pages.

  • ONE LAST HURRAH: Before saying Goodbye to my Beloved MSI Eclipse!!!

    I already posted this  article  in the motherboard thread but seems like this is the best place to post this
    ONE LAST HURRAH: Before saying Goodbye to my Beloved MSI Eclipse!!!
    Well it has been two months since I purchased this MSI Eclipse SLI board and while waiting for its bigger brother MSI Eclipse Plus, I would like to try out a new board from another manufacturer. Before I pass this board to its new owner, I decided to give it a little review to so that other people who will be upgrading to i7 platform will have some idea how good or how bad this board is.
    A few months ago and maybe until now, Eclipse is the flagship board of MSI in terms of i7 based motherboard. Its bigger brother MSI Eclipse Plus has already been sighted in some forums but no definite date yet on when it will be available in the market.
    The Box
    The size of the box was way bigger than my old P45 motherboards. It is actually almost 2x the size of the conventional ATX board box. 
    Upon opening the panel on the box, you will see a lot of information about the board! You will also see the added stuff from MSI like the Green Power Genie as well as the awesome Creative Xfi! Yes, a creative Xfi Extreme Audio PCIe sound card was included on the package.
    Upon opening the box, you will see a plastic container (I am assuming that this is anti-static) that contains the motherboard, DLED2, Green Power Genie and creative X-fi.
    There’s another box that contains a lot of stuff! MSI is as usual generous in giving their customers all the things the need to fully populate the board. This includes the  cables needed to populate all the sata and ide slots,  cross fire and SLI cable, additional USB bracket, ESATA bracket and the M connectors. All the manuals needed to setup the boards are also included.
    The Board and Layout:
    The board for me is pretty sexy!  It comes with a black PCB. The RAM slots and the other expansion slots are only blue and black in color which is a perfect combination for an intel based platform. The IOH and the ICH10R is actually covered by a copper heatsink with heatpipes connecting them. Well, personally I do not like this design since I do know that x58 generates a lot of heat. The VRMs also come with a copper heatsink but no heatpipe . As far as I understand from the box information, this is MSI’s split thermal design as well as protection from warping.
    MSI also provided 6 RAM slots and they come in blue and black sockets. Do yourself a favor by putting the ram in the black slots. I previously ran into problems of the system hanging in “ DDR ini “ and later found out from reading the manual and searching the web that the black slots should be populated first.
    The board came with 10 sata ports! 6 of them in 90 degrees are connected to the ICH10 and the 4 are actually by the jmicron chips attached to the board and also function as
    HW raid. Connect 2 HDD on sata 7 and 8 or sata 9 and 10, do some stuff in the BIOS and you are all set to run the system in raid 1 (mirror) or 0 (stripe). I have had no chance to test the raid 0 + 1 since I don’t have 4 identical drives.  It also comes with an IDE slot for your old parallel IDE HDD and/or ODD.
    The expansion slots come with 3 pci x16 slots, 2 pci and 2 pcie x1 which I believe is more than enough to suffice your daily needs. The bottom part of the board came with a power, reset and dled switch along with MSI’s OC jumper.
    The back panel is not that good looking. Well it’s the same back panel style of their P45 series board. It doesn’t matter anyway since it is at the back of the chassis and what concerns me the most is functionality. The board came with 8 usb ports at the back, 2  Gigabit lan, 2 esata ports, a 1394 connector, a cmos reset switch and the conventional PS/2 ports for mouse and keyboard.
    Bios and overclocking
    I  just captured the most important portion on the bios which is the Cell Menu. It is the overclocking tab on MSI’s BIOS
    Overclocking and Benchmarking Results
    Since I have not installed anything yet on my new board, I decided just to compare the stock and overclock result from this board.
    Below are the lists of components that I will be using
    Intel Core i7 920 2.66ghz  ( cooled by Thermalright HR 01 plus )
    MSI Eclipse SLI – Beta BIOS 1.45
    MSI 8800gtx (well a bit old but still reliable)
    Team Extreme ddr3 1600 @ 8-8-8-25 rated 1.65V
    Western digital Raptor 74gb 16MB cache
    I tried setting up this board one last time on my  DIY open system  using the components above. And Good thing that my ever energetic and reliable  assistant is always there to help … hahahaha
    SPI Stock and 4Ghz OC  Results
    Stock =  15.313s
    4Ghz = 10.405s
    PC Mark 05 Stock and 4 Ghz OC Result
    Stock = 9745
    4Ghz = 13136
    3DMark 05 Stock and  4Ghz OC results
    Stock = 13388
    4Ghz = 14289
    3DMark vantage Stock and 4Ghz OC Results
    Stock = 8160 ( 33530 on CPU score )
    4Ghz = 8315 ( 43567 CPU score )
    Aquamark Stock and Overclock
    Stock = 131812 ( 18685 CPU score )
    4Ghz =  179261 ( 23139 CPU score )
    I tried playing with bclock  since I have seen people in several forum saying that their boards( not specific to MSi eclipse ) / i7 proc cannot go above 200 or maybe just above 200 bclock. After doing some tweak I was able to get 215 bclock and the max I was able to get is 218,  All the test that had been done are just after vista installation. No tweaks done  on windows.
    SPI = 10.343 ( 19 x 215 )
    SPI = 10.030s (  19 x 218 )
    Wrap-up / Conclusion
    I really don’t want to let this board go but I don’t have extra budget to buy and try new boards from other manufacturer so that I can compare the result. So right now I am stuck with selling this just to buy another x58 board (of which I will try to post a mini review soon)
    I did encounter IOH temperature issue when I first bought this motherboard. IOH temperature is at 65C and this still goes up while running benchmarking tests. I made minor modifications on the board and as far as I know, it did not void the warranty. Below are the modifications that I have made:
    1.   Removed the violet thermal paste that MSI used and replaced it with Artic Silver 5.
    2.   Removed the plastic pushpin and replaced it with a bolt and plastic nut.
    3.   Added a 40mmfan that is just enough to take out the heat from the IOH
    Guess what, the temperature after these is just below 55C even under benchmarking (done during night time and I would expect that this will go to probably 60 degrees during daytime given the tropical climate in the Philippines).
    I was able to overclock my i920 at 3.6ghz without even adjusting anything on the voltages. Meaning they are at stock settings!  I managed to reach 4.0 ghz by simply adding 0.040v (around 1.29 Vcore only)
    Pros
    -   Easy to overclock board
    -   Supports both SLI and crossfire
    -   No issue on bigger after market cooling
    -   90 degrees placement of ICH10’s sata port
    -   Server grade VRM’s and Capacitors used
    -   Creative Xfi included
    Cons
    -   Only one SLI bridge included. It would have been better if a tri SLI connector was given by MSi.
    -   IOH temp an issue for my board.  Need to monitor and maybe try my modifications.
    -   Power/Reset/DLED Switches location will not be accessible if a 3rd video card is installed.
    Other thoughts
    -   It would have been better if the BIOS of the eclipse comes with nominal values on the Cell Menu. This is to serve as guide for the users if they are trying to alter the voltages.
    -   Maybe swap the ide and the sata 7 to 10 ports?  It is better looking if all 10 sata ports are on 90 degrees. It will also ensure that even if you use 2 or 3 video cards, it will not hit any of the sata 7-10 cables if you use them.

    I can see you got your use out of it.   I hope the new owner tortures it, too!

  • I am on my last try for my password

    I am on the final try for my password on my laptop.  I don't understand what I am doing wrong.  I am putting in the password using the number keyboard on my laptop.  And now I am on my last try before it wipes everything off my phone.  And yes it is the correct password
    Can someone please help me

    There's no telling what happened. One thing for certain, I would create a backup before enabling the password on the phone. Better safe than sorry.
    Once you get back running, I suggest that you backup your phone, then setup your password. Make sure you can get into the phone from both the phone and your laptop. If you have any problems from the laptop, make sure you stop trying from the laptop and switch to the phone with plenty of attempts left. That way, you can get back into the phone and reset the failed count (automatic with a successful login). This should help you from going back to where you were.

  • Thanks for the idea. One last question..

    Thanks for the replies, setting it to passive seemed to work
    as I can now upload to my host. Just one last question, I've
    searched the video knowledge base looking for a video on how to use
    the 'Starter Pages' within Dreamweaver to no avail. When I try I
    always get the same message: 'Dreamweaver stores templates in the
    root folder of a site, but there are no sites defined. Please add a
    site.' I have my site all layed out in Dreamweavers FTP, I can
    upload and download with it and still Dreamweaver gives me this.
    Any ideas?
    Thanks once again all

    Using FTP & RDS Server for your site means that you will
    not be able to use
    DW's Templates or Library items. It's usually a very bad
    idea, to boot.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "John Waller" <[email protected]>
    wrote in message
    news:g1a9mi$qtn$[email protected]..
    > F1 Dreamweaver Help files
    >
    > Working with Dreamweaver Sites > Setting up a
    Dreamweaver site
    >
    > --
    > Regards
    >
    > John Waller

  • One last crazy thought on wierd email

    I've had the same problems as all 6000 posters have had regarding the email issue.
    I've restored from backup, restored as new iPhone, reset network settings, removed and reinserted sim card. All no luck. Always the restart to get mail to work. Manual only 3 POP accounts.
    Seems highly unlikely that a gazillion sim cards could be bad, BUT, they were all made, and all put into the iphone in China, and perhaps there might have been a bad batch. I am going to try one last thing. Go to ATT, get a new sim card (it's free), let them register the phone and see what happens. I'm not optimistic about this, but the Genius Bar guy today said that some people have had luck with this.
    If what I expect happens, the same old problem, then I guess it's wait for 2.01.
    I'll keep you posted.
    Thanks,
    CD3
    Message was edited by: CD3

    Thanks for the reply JER101, that is certainly interesting.  I don't know what the default setting is for the aperture, but I think it is normally set equal to the amount of ram on the card if you have enough system ram to support it.  On the other hand, if you only had 128MB system ram and the AGP aperture was set to 128MB, that may be an issue.  As I understand it, the AGP aperture allocates system ram as virtual memory when the AGP ram has been exhausted.  If this is not correct, please correct me.
    Thanks,

  • One Last thing about Hard reset..!!!

    Hi Guys,
    Read few post about Hard reset on N95. Still need to clarify one last thing. If I do a hard rest, does it clear all the unwanted small small files in the phone memory? In addition, if I install a trial version, will it allow me to use even if the software is expired before the hard reset?
    Message Edited by wumesh on 06-Jan-2008 03:16 PM

    Thanks again for your prompt response.
    45. My device "died" during an update. What should I do?
    Yes, try hard rest, if it doesn’t work take to the Care Point
    I agree with you, no one has mentioned whether it is healthy to do the hard reset. Even for soft reset I don’t think so but I assume it doesn’t have much of an impact to the device.
    My main requirement for hard resetting is that I have tried many third-party applications with my N95 and I know that even I have removed them all, there are some files are in my phone memory. When I search for clear the unwanted, I didn’t find any better way than hard resting.

  • HT201272 So I pre-ordered Pink CD downloaded it and every song but Blow Me (one last kiss) works I can get about 45 seconds of playback and then next song- How do I recieve my whole song that I paid for?

    So I pre-ordered Pink CD downloaded it and every song but Blow Me (one last kiss) works I can get about 45 seconds of playback and then next song- How do I recieve my whole song that I paid for?

    If your country's iTunes Store allows you to redownload purchased tracks, I'd delete your current copy of the track and try redownloading a fresh one. See the following document for instructions:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    Otherwise, I'd report the problem to the iTunes Store.
    Log in to the Store. Click on "Account" in your Quick Links. When you're in your Account information screen, go down to Purchase History and click "See all".
    Find the item that is not playing properly. If you can't see "Report a Problem" next to the item, click the "Report a problem" button. Now click the "Report a Problem" link next to the item.

  • Official 2009 Lenovo T61/T61p Nvidia Video Drivers: Please Consider One Last Update for the Road

    The title of this new thread says it all ..... 3 years since the last offical Lenovo T61/T61p Nvidia Video Driver Package release ..... a virtual lifetime in computer science years.
    I'm looking for advice on how to best lobby the technical folks at Lenovo (by phone or here on the Forums) for one last official Lenovo "Nvidia" video driver update for our T61 and T61p units.
    Lenovo's most current "ancient" 2009 Nvidia driver packages (found here),
    http://support.lenovo.com/en_US/downloads/detail.page?DocID=DS001342
    http://support.lenovo.com/en_US/downloads/detail.page?DocID=DS003876
    http://support.lenovo.com/en_US/downloads/detail.page?DocID=DS003605
    all leave quite a bit of 3D (and some 2D) performance laying out there on the table based on my own testing with current modern Nvidia reference drivers on a cloned test mule hard drive (and never once crashed with the newer Nvidia reference drivers under WinXP 32-bit or Win7 32 bit).
    Most all the major 3D gaming benchmarks were nearly doubled, and most importantly, my real world qualitative performance experience seemed even greater than the nearly doubled quantitative benchmark results.
    I'm wondering if starting this new thread would be of any benefit to encourage the good folks at Lenovo to consider one last update after 3+ years?
    Before I go to the trouble of posting my results, it is my hope that Lenovo could simply try the latest Nvidia reference drivers for themselves, tweak them (if even necessary) and then issue one last offical T61/T61p Nivida driver package update for the road .... hundreds of thousands, if not millions, of T61/T61p w/Nvidia GPU units are still in reliable daily service.
    http://www.geforce.com/drivers
    Something to please consider.
    Two (I used to have Five) - T61p 15.4" WS T9300 2.5Ghz units, August 08/08 Builds with FX570M Nvidia Graphics; ... One W520 i7-2860QM w/2000M Nvidia Graphics (most recent acquisition and stupidly fast); .... One - T42 4:3 15" Flexview 1.8GHz with ATI Graphics (still perfect for traveling); ... Two - T500 15.4" units both with ATI HD3650 Graphics.

    Hi eecon
    It is considered fortunate that Lenovo provides newer driver for newer OS even after the system was phased out. From what I know, most of the OEM / manufacturers do not provide drivers for newer version of Windows when the product is phased out.
    Furthermore, graphic card vendors (e.g. NVIDIA, Intel, AMD, etc.) oftenly release new drivers and it is hard for manufacturers to catch up with them. Usually, the purpose of OEM providing new driver is to resolve existing issues. If you need performance, get newer drivers directly from vendors website.
    Have a nice day!
    Peter
    W520 (4284-A99)
    Does someone’s post help you? Give them kudos as a reward, as they will do better to improve | Mark it as solved if the solution works for you, so it could be reference for others in the future
    =====================================
    Sound Enthusiast and Enhancement (Post comments, share mixes, etc.)
    http://forums.lenovo.com/t5/General-Discussion/Dol​by-Home-Theater-v4-for-most-Lenovo-Laptops/td-p/6...
    http://forums.lenovo.com/t5/IdeaPad-Slate-Tablets/​IdeaPad-Tablet-Sound-Enhancement-Thread/td-p/7150

  • One last question - default...

    Okay, now that i've got my new AEBS on the net and printing wirelessly, one last thing is bugging me. Whenever i put my iBook to sleep, upon wake up, it always selects my neighbor's wireless network, and not my new AEBS. The neighbors (our friends) haven't secured their network, so my mac can join without a problem. But it will select it even though the new AEBS's signal is much stronger! Is there a way that i can ensure it selects our base station first over any other networks?
    Cheers,
    brige
    iBook G4 1.42ghz 14" Mac OS X (10.4.4) iPod Mini 6ghz, iPod Nano 4ghz

    Try the following:
    1. Delete Preferred Network(s)
    - System Preferences > Network > AirPort > Configure
    - In the "By default, join:" pull-down menu, select "Preferred networks"
    - Delete the network(s) you regularly use from the list
    2. Delete AirPort Keychain Entries
    - Launch the "Keychain Access" application located in Applications/Utilties.
    - Click on the "Kind" filter at the top, and look for any "AirPort network password" entries...and delete them.
    - Restart, or log out then back in.
    3. Add Preferred Network(s)
    - System Preferences > Network > AirPort > Configure
    - In the "By default, join:" pull-down menu, select "Preferred networks"
    - Add the preferred network(s) using the "+" button.
    - Restart or log out then back in.

  • One last question about Apple IDs

    I thought id asked the lot but there is one last question. How does one delete an Apple ID?
    Many thanks again
    Anthony

    Hello Again Anthony!
    "How does one delete an Apple ID?"
    You can't.
    After you quit using an account, it's posts, will be archived. What that means is, that if there are no additional responses in the Threads they reside in, the Topics will get continually pushed down on the Topics list. After a certain amount of time, maybe 2 to 6 months, the Threads will be locked, so no responses can be entered. But the Threads will not disappear.
    Threads in heavily trafficked Forums, may be archived more rapidly than those in areas, with less activity.
    The Topics that you started using the account, will show your the Alias, in the Author field of a main forum page, but eventually, readers will have to keep going to the succeeding pages to view them.
    If someone were to do a Discussions Search, using these parameters:
    Restrict by Category or Forum: All Categories
    Restrict by Date Range: All
    Restrict by Username: Your Old Alias
    all of your posts, created since about 11/13/05, would be found.
    ali b

  • Canon HG20 One Last Question

    Before I buy my Canon HG20, I have one last question.
    I have seen warnings various places on the net about having a powerful enough computer to work with the data produced by this camera.
    I have an iMac 24 2.16 2GHz Intel Core 2 Duo with 2 MHz Memory, NVIDIA GeForce 7300 card, running OS X 10.5.6 with FCE 4.0.1.
    Am I OK?
    Thanks,
    Jim

    That is a perfect machine for AVCHD editing. i use a puny Macbook and I have experienced no problems, everything is very fast. To work with AVCHD, you need an Intel processor and to have at least FCE4. 2GB of RAM is also a good idea to have (I assume that's what you meant you had when you said you had "2 MHz Memory"). From what you have said of your specs, I can't foresee any problems. If a Macbook can do it well, you can expect an iMac to do it amazingly.
    Enjoy your new camcorder, I definitely am pleased with my HG21 (basically the same thing, just more memory and a viewfinder).
    Message was edited by: skalicki`

  • Dang, one last problem since updating to 10.4.9 - all others fixed though!!

    I have one last pesky problem since the update. About once a day my system will freeze, but it happens when I'm clicking on the mail icon in the doc, mail starts to come forward and about half way into my window everything freezes. I can't force quit or access any menus. I have mouse movement for about ten seconds or so then its a full lockup.
    Could it be a mail program issue or maybe an issue with the doc?
    thanks in advance for your help,
    Brown.Recluse

    Hi,
    This may sound obvious, but have you tried removing the Icon from the dock and re-adding it?
    Apps sometimes freeze in my dock, and this works for me.
    Regards

Maybe you are looking for

  • How to define header and footer in ALV

    Hi All, I have created one Report program where i have to display data in both alv grid and alv list display. Reqt are: 1. The report output must contain standard header & footer. 2. The header must display the count of the materials displayed, the u

  • Can i sync my iphone with more than one itunes library without erasing content?

    So i just got a replacement iphone yesterday, and restored from a backup all my contacts and stuff. I dont have my own laptop so when it comes to music i get all of my mine from other computers...this has never been a problem with my phone or ipods,

  • Getting the result from a field in a different class...

    Right okay, here's the problem. When ever I compile and run the program, it gives me null. public void destError()           Journey journ = new Journey();           if (h.equalsIgnoreCase("Scotland"))                System.out.println(journ.scotland

  • Just upgraded to mountain lion and my HP Laserjet p1102W won't connect

    Just upgraded to mountain lion and my HP Laserjet p1102W to print (worked fine via USB with Snow Leopard; I never had set it up wirelessly, though had wanted to do so.)  HP site said if printer worked with Snow Leopard nothing would need to be done;

  • Widening conversion bugs ?

    I dont understand .. (from A Programmer's Guide to Java Certification 3rd Edition - mughal pg 172) a) this work Integer iRef3 = (short)10; // constant in range: casting by narrowing to short, // widening to int, then boxing b) final short x = 3; Inte