Yoga 2 11 support for new AC Wifi card

I just recently upgraded my Yoga 2 11 with a new Crucial MX100 512 GB SSD.  While in the laptop, I pulled the factory Wifi card and bought and installed the Intel Dual-Band Wireless AC 7260.  I get the dreaded error on bootup that it has detected a unsupported wi-fi card.  Is there a supported AC card for this machine, or plans to support this Intel card?
The top card is what came from the factory (real piece of junk), and the bottom is the new Intel card.

Have you considered looking at what's available in the Lenovo Outlet ?
Here's one example, Y11s Haswell: http://outlet.lenovo.com/outlet_us/itemdetails/59RF0542/445
Listed as a refurb. My experience with refurbs from the outlet is that I couldn't tell them from 'new'. YMCV.
Happy Hunting!
English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество
Community Resources: Participation Rules • Images in posts • Search (Advanced) • Private Messaging
PM requests for individual support are not answered. If a post solves your issue, please mark it so.
X1C3 Helix X220 X301 X200T T61p T60p Y3P • T520 T420 T510 T400 R400 T61 Y2P Y13
I am not a Lenovo employee.

Similar Messages

  • 10.4.7 Adds Support for Verizon/Sprint EVDO Cards

    Mac OS X 10.4.7 Adds support for the following EVDO Cards:
    - Novatel 620 (Verizon V620, Sprint S620)
    - Sierra AirCard 580 (Verizon & Sprint)
    - PC5220 (already was supported in 10.3.5, adds support for PC5220 new firmware)
    Lots more information and screenshots at:
    http://www.evdoinfo.com/TheNews/Latest_News/Apple_Adds_EVDO_Card_Support_in_10.4.720060627772/
    G5 Dual 2.5 GHZ, PowerBook G4 15 inch   Mac OS X (10.4.6)  

    If this is correct, then when I get my Merlin S620, all I need to do is pop it into my 17" Powerbook and I'm good to go??!?!?! If so, then WOOOOOOOOOOTTT! However, I am not getting an unlocked card...will I still need to go through a PC to unlock it? What are the steps?

  • Support for new Nvidia Quadro gpu?

    When support for new Nvidia Quadro gpu? For example Nvida Quadro K2200 and K4200
    Thk

    What do you mean when you say "support"? All of After Effects OpenGL features already work on those cards.
    The only thing that isn't supported on those cards is GPU acceleration of the ray-traced 3D renderer, which is an obsolete and almost entirely irrelevant feature. No more GPUs will ever be added to the list of cards supported for that feature.
    Details:
    GPU (CUDA, OpenGL) features in After Effects

  • BIOS SUPPORT FOR NEW CPUS!!!!

      hello
    new post , i just got this board (6547 v1.0) board with a celeron 1.7 (clocked at 125mhz ) 2.14ghz and is total stable.
    v1.8 bios support up to a 1.8 cel, are they going to make a update to support a 2hz cel, OR  have they droped support for it.
    and where can you get beta bios for this and other board (msi-development site).... ?(  ;(
    MAKE A VOTE (HOW OLD IS YOU BOARD AND HAVE THEY DROPED SUPPORT FOR NEW CPU,S FOR YOU BOARD-POST?

    assuming its a 645 ultra by the bios numberlink

  • I am looking for an external wifi card capable on injection, compatible with OS X 10.9 does any one know of a brand or specific model?

    I am looking for an external wifi card capable on injection, compatible with OS X 10.9 does any one know of a brand or specific model?

    Have you tried resetting the SMC ?     >  Resetting the System Management Controller (SMC)

  • How to add support for new file type.

    Using the ESDK, I would like to add support for new file type ( a new extension). this new extension will function like any other non visual code editor but will have specific syntax highlighting, code folding and explorer.
    I am trying ot figure out if I need to create a new editor or use existing JDeveloper code editor and add support for new file type. Does anyone have a high level outline on how to do this using the ESDK that is specifically targeted at adding new file type support for a text based code editor?
    I have looked at the Samples and keep going in multipe directions. It would be cool if there was an example that was how add syntax higlighting for new file type.
    Thank you

    Brian, thank you. I looked at this extension and it answered a lot of questions for me. I was going in the right direction but needed a little help and bost of confidence, this is just what I needed. I created the LanguageSupport, LanguageModel, Addin, Node and TextDocument that are specific to the new file type. I was getting hung up on how to hook this into the JDevelpoer editor. I keep thinking I have to create a custom editor but it looks like I don't have to and it looks like I can associate this file support with the editor framwork, for version 10.1.3.2, with the following in the Addin Initilize() method.
    Recognizer.mapExtensionToClass(MY_EXTENSION, MyNode.class);
    CodeEditor.registerNodeType(MyNode.class, MY_EXTENSION);
    LanguageModule.registerModuleForFileType(new MyLanguageModule(), MY_EXTENSION);
    I have done this but still not able to recognize the new file type.
    At this point, I just want to be able to recognize the new file and display it's associated icon or display a messare to the message log. I put a System.out.println("test") in the Initilize() method of my addin. then I registered MyAddin in the extension.xml. JDeveloper sees this new extension and it is loaded but I have not been able to show the test message or display the new icon when I open the new file type.
    extension.xml
    <?xml version="1.0" encoding="windows-1252" ?>
    <extension xmlns="http://jcp.org/jsr/198/extension-manifest"
               id="teisaacs.jdev.myext.MyAddin" version="1.0.0" esdk-version="1.0"
               rsbundle-class="teisaacs.jdev.myext.resources.MyResBundle">
        <name rskey="EXTENSION_NAME">My Code Editor</name>
        <owner rskey="EXTENSION_OWNER">Me</owner>
        <dependencies>
            <import version="10.1.3">oracle.jdeveloper</import>
        </dependencies>
        <hooks>
            <jdeveloper-hook>
                <addins>
                    <addin>teisaacs.jdev.myext.MyEditorAddin</addin>
                </addins>
            </jdeveloper-hook>
            <feature-hook>
                <description>My Code Editor</description>
                <optional>true</optional>
            </feature-hook>
            <document-hook>
                <documents>
                    <by-suffix document-class="teisaacs.jdev.myext.model.MySourceDocument">
                        <suffix>my</suffix>
                        <suffix>MY</suffix>
                    </by-suffix>
                </documents>
            </document-hook>
            <editor-hook>
                <editors>
                    <editor editor-class="teisaacs.jdev.myext.editor.MyEditor">
                        <name rskey="EXTENSION_NAME">My Editor</name>
                    </editor>
                    <mappings>
                        <mapping document-class='teisaacs.jdev.myext.model.MySourceDocument">         
                            <open-with editor-class="teisaacs.jdev.myrext.editor.MyEditor"
                                       preferred="true"/>
                            <open-with editor-class="javax.ide.editor.CodeEditor"/>
                        </mapping>
                    </mappings>
                </editors>
            </editor-hook>
        </hooks>
    </extension>
    public class MyAddin implements Addin {
        public static final String MY_EXTENSION = "my";
        public void initialize() {
            System.out.println("MyEditor Constructor");
            new MyLanguageModule();
            Recognizer.mapExtensionToClass(MY_EXTENSION, MyNode.class);
            CodeEditor.registerNodeType(MyNode.class, MY_EXTENSION);
            LanguageModule.registerModuleForFileType(new MyLanguageModule(), MY_EXTENSION);
    }I have added and removed the editor hook along with many other modificaitons to the extension.xml but still not recognizing the new file extension.
    Todd

  • [SOLVED]ModemManager 0.7 breaks support for Ericsson F3607gw WWAN card

    Hello,
    apparently the ModemManager v 0.7.990 currently in the repos no longer supports my WWAN card, a Dell 5540 Mobile Broadband (which is just a rebranded Ericsson F3607gw).
    ModemManager 0.6, which is the version used in Fedora 18, works just fine with the card and connections can be made.
    My device, as listed by lsusb:
    Bus 008 Device 004: ID 413c:8184 Dell Computer Corp. F3607gw v2 Mobile Broadband Module
    The output of the log with MM 0.7:
    Apr 25 00:43:18 brb-laptop ModemManager[1823]: <info> ModemManager (version 0.7.990) starting...
    Apr 25 00:43:18 brb-laptop systemd[1]: Started Modem Manager.
    Apr 25 00:43:18 brb-laptop sudo[1820]: pam_unix(sudo:session): session closed for user root
    Apr 25 00:43:20 brb-laptop ModemManager[1823]: <warn> Couldn't find support for device at '/sys/devices/pci0000:00/0000:00:19.0': not supported by any plugin
    Apr 25 00:43:20 brb-laptop ModemManager[1823]: <warn> Couldn't find support for device at '/sys/devices/pci0000:00/0000:00:1c.1/0000:0c:00.0': not suppo...ny plugin
    Apr 25 00:43:22 brb-laptop ModemManager[1823]: <info> Creating modem with plugin 'Generic' and '4' ports
    Apr 25 00:43:22 brb-laptop ModemManager[1823]: <info> Modem for device at '/sys/devices/pci0000:00/0000:00:1d.7/usb2/2-6' successfully created
    Apr 25 00:43:23 brb-laptop ModemManager[1823]: <warn> couldn't load Operator name: 'Could not parse the CRSM response'
    Apr 25 00:43:23 brb-laptop ModemManager[1823]: <info> Modem: state changed (unknown -> disabled)
    Any connection attempt with NM fails with the log entry "cannot find valid data port".
    When downgrading to MM 0.6, the output is:
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> Loaded plugin 'MotoC'
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> Loaded plugin 'Gobi'
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> Loaded plugin 'Huawei'
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> Loaded plugin 'Option High-Speed'
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> Loaded plugin 'Option'
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> Loaded plugin 'Sierra'
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> Loaded plugin 'Novatel'
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> Loaded plugin 'Nokia'
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> Loaded plugin 'ZTE'
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> Loaded plugin 'Ericsson MBM'
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> Loaded plugin 'Longcheer'
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> Loaded plugin 'AnyData'
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> Loaded plugin 'SimTech'
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> Loaded plugin 'X22X'
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> Loaded plugin 'Linktop'
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> Loaded plugin 'Samsung'
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> Loaded plugin 'Wavecom'
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> Loaded plugin 'Cinterion'
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> Loaded plugin 'Iridium'
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> Loaded plugin 'Generic'
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> Successfully loaded 20 plugins
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> (ttyACM0) opening serial port...
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> (ttyACM1) opening serial port...
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> (ttyACM2) opening serial port...
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> (Ericsson MBM): GSM modem /sys/devices/pci0000:00/0000:00:1d.7/usb2/2-6 claimed port wwp0s29f7u6i6
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> (ttyACM0) closing serial port...
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> (ttyACM0) serial port closed
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> (Ericsson MBM): GSM modem /sys/devices/pci0000:00/0000:00:1d.7/usb2/2-6 claimed port ttyACM0
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> (ttyACM1) closing serial port...
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> (ttyACM1) serial port closed
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> (Ericsson MBM): GSM modem /sys/devices/pci0000:00/0000:00:1d.7/usb2/2-6 claimed port ttyACM1
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> (ttyACM2) closing serial port...
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> (ttyACM2) serial port closed
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> (Ericsson MBM): GSM modem /sys/devices/pci0000:00/0000:00:1d.7/usb2/2-6 claimed port ttyACM2
    Apr 25 00:40:52 brb-laptop modem-manager[1522]: <info> (ttyACM0) opening serial port...
    Apr 25 00:40:53 brb-laptop NetworkManager[219]: <info> (wwp0s29f7u6i6): new GSM/UMTS device (driver: 'cdc_ether' ifindex: 2)
    Apr 25 00:40:53 brb-laptop NetworkManager[219]: <info> (wwp0s29f7u6i6): exported as /org/freedesktop/NetworkManager/Devices/4
    Apr 25 00:40:53 brb-laptop NetworkManager[219]: <info> (wwp0s29f7u6i6): now managed
    Apr 25 00:40:53 brb-laptop NetworkManager[219]: <info> (wwp0s29f7u6i6): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
    Apr 25 00:40:53 brb-laptop NetworkManager[219]: <info> (wwp0s29f7u6i6): bringing up device.
    Apr 25 00:40:53 brb-laptop NetworkManager[219]: <info> (wwp0s29f7u6i6): deactivating device (reason 'managed') [2]
    Apr 25 00:40:53 brb-laptop NetworkManager[219]: <info> (wwp0s29f7u6i6): device state change: unavailable -> disconnected (reason 'none') [20 30 0]
    Apr 25 00:40:53 brb-laptop kernel: IPv6: ADDRCONF(NETDEV_UP): wwp0s29f7u6i6: link is not ready
    Apr 25 00:40:53 brb-laptop modem-manager[1522]: <info> (ttyACM0) closing serial port...
    Apr 25 00:40:53 brb-laptop modem-manager[1522]: <info> (ttyACM0) serial port closed
    However, I cannot downgrade to MM 0.6 as Gnome 3.8 and NetworkManager require >=0.7.
    Has anyone encountered this problem before and has a fix/solution? Or should I file a bug in the Arch tracker? I got Bluetooth PANs to work with a patched bluez from this board, as the upstream version is behind the one used by fedora (4.101-1 vs. 4.101-4). WWAN is the only thing that doesn't work with my new Arch setup.
    Thanks in advance, any help would be much appreciated.
    Last edited by grinko (2013-04-29 21:10:07)

    I did, you linked to it already
    I slightly modified modemmanager-git in the AUR and added some dependencies, the git version now works for me.

  • Adobe CS6 Windows Production Premium Support for NVidia K5000 Video Card?

    When will Windows version of Adobe CS6 Production Premium support the new NVidia Quadro K5000 Video card?
    We currently so not have GPU Acceleration.
    Help!!!!

    NTVWEBAdmin wrote:
    Hopefully soon.  How will we know when it is?
    I wish I could tell you....
    I work for Adobe, so I can't.
    Thanks for your feature request!

  • Support for 6085 Nokia Sim card

    What is and where do I get an unlocked GSM quad band mobile handset to support a new Sim card for a 6085 Nokia phone?
    Heyyou06
    Solved!
    Go to Solution.

    Welcome to Nokia Discussions, heyyou06.
    For the latest quad-band capable phones from Microsoft & Nokia please refer to this page at http://www.microsoft.com/en-us/mobile/phones/all
    The Nokia 6085 is a quad-band phone, for it to take a new sim card type (micro/nano) you might need to use a SIM card adapter.

  • No RAW support for new Nikon P7000

    Just received the new, compact, "pro-sumer" Nikon P7000 camera today. It's a beauty. High-end, finessed pictures in those situations where you don't want to lug a DSLR around. It's going head-to-head with the legendary Canon G11/G12.
    One major "gotcha'" that I didn't know about until I started using the camera, is that the Nikon P7000 uses a proprietary RAW format. It's predecessor, the p6000, did too. However, while Aperture supports the older p6000 NRW "raw" format, it does NOT currently support the enhanced NRW+ format used by the p7000. f#$% !!!
    This is truly annoying!! There is no reason that I can think of for the p7000 not to use the NEF raw format used by most other (Nikon) cameras. Thanks, Nikon!! /sarcasm
    So this means that currently, RAW photos from the Nikon P7000 cannot be imported into Aperture. You have to set the camera to create "Fine" JPEG photos; which, granted, are pretty good. However, to get the advantage of RAW photos, you have to use the "ViewNX2" editing software that came with the camera. Blah!
    Hopefully, Apple will step up, and the Raw Camera Support for Aperture will soon include the NRW+ format. Or even better yet, hopefully Nikon will see the error of their ways an migrate their Powershot cameras to the "standard" raw format, NEF, in an upcoming firmware release.
    j0hnw
    P.S. For info about the Nikon P7000, see: http://imaging.nikon.com/products/imaging/lineup/digitalcamera/coolpix/performan ce/p7000/index.htm

    SierraDragon wrote:
    Yes, it is a problem. Apple loses lots of market share through slow response time in supporting new cameras. Adobe is usually faster, so a workaround may be to use Adobe's DNG Converter to convert the Nikon P7000 NRW files to DNGs that Aperture can digest.
    Thanks for the pointer to the free Adobe DNG Converter. Even though it doesn't yet support the P7000, you're right in that Adobe may beat Apple to the punch. Plus, I just like the idea of the DNG format. The Converter looks like a handy tool to have in the tool chest. I've got my fingers crossed that it's AppleScriptable
    The P7000 does look like the pocket camera many of us have been whining to Nikon about for years. I lacks swivel display but the huge size of the LCD makes up for it. I want one!
    Despite my whining about RAW support, my initial impression after one day of shooting is that it's as great a camera as it looks on paper. Lots of control over the shot. Good, solid feel. Can get great shots in adverse (eg. low light) conditions. The only major annoyance I've noticed is slow RAW write times (several seconds using Class 6 card). I've heard some grumbling about AutoFocus issues, but I having had any problems with it yet. The swivel monitor isn't a big deal -- for me anyway -- because the 3" display is easy to see at any angle. Plus, I wanted rugged, and would worry about the swivel joint becoming a weak spot. BTW, you'll need some big pockets to call it a "pocket camera"; it dwarfs my Canon S90 (which I consider my pocket camera)
    Thanks again,
    j0hnw

  • Dv9000 can board support intel ac 7260 wifi card

    i'd like to upgrade my wireless card from an intel 4965agn to the intel wireless-ac 7260 on a Pavilion dv9000 laptop.
    is there any way to update the bios which will allow the system to recognize the ac 7260 as a supported network device?
    if not, is there any other tool that can scan your machine and identify your upgrade possibilities for a wireless network card based on the bios that you currently have?

    BigRo wrote:
    i'd like to upgrade my wireless card from an intel 4965agn to the intel wireless-ac 7260 on a Pavilion dv9000 laptop.
    is there any way to update the bios which will allow the system to recognize the ac 7260 as a supported network device?
    if not, is there any other tool that can scan your machine and identify your upgrade possibilities for a wireless network card based on the bios that you currently have?
    Hi,
    That card is the best chip you can have on that laptop. The laptop is too old to support the AC standard and the Intel chip supports up to 300Mbps and both wireless bands (2.4/5GHz). That is a pretty good wifi because some HP laptop series can't even upgrade to a dual band wifi card such as yours or Intel 6235 etc.. 
    Dv6-7000 /Full HD/Core i5-3360M/GF 650M/Corsair 8GB/Intel 7260AC/Samsung Pro 256GB
    Testing - HP 15-p000
    HP Touchpad provided by HP
    Currently on Debian Wheeze
    *Please, help other users with the same issue by marking your solved topics as "Accept as Solution"*

  • Why no firewire support for new iPods?

    If firewire is so much better and faster why did the geniuses at Apple decide to discontinue support for it? It took me over 30 minutes to upload music & videos to my new iPod w/ USB, which would have taken 5-10 minutes with Firewire. I don't get it!

    They did it because they obviously didn't see the need for it.
    Either you have a usb 1.1 port, or have about 500mb of music. The speeds aren't that different between USB2.0 and FW. In fact, i think USB is faster. Stop complaining here, this is only a user-user support forum.

  • Support for AVM ISDN PCMCIA Card in Solaris 10 ?

    Hi all,
    I would like to install Solaris 10 on my Toshiba Tecra S1 notebook. Today I use an ISDN-Card (AVM FritzCard, PCMCIA) for dial-up connections under Windows XP. Are there any drivers for ISDN and/or PCMCIA-Cards in Solaris10? Does anyone have any experiences with this issue?
    Every hint would be appreciated.
    Thanks a lot.
    Kindly Regard,
    Holger

    Hello.
    There only very poor support for ISDN cards in Solaris. As far as I know only the on-board ISDN card of one of the SparcStation computers is supported (this card is available as S-Bus card for other SparcStation computers).
    I think there is no support for any ISDN card that can be attached to an x86 computer.
    I wrote a driver for USB based ISDN modems that are based on the Winbond 6694 chip myself due to this lack of ISDN support. I tested it under Solaris 9/Sparc.
    Martin

  • Is it possible to add support for new database type in Data Modeler?

    Hi,
    I see that Data Modeler v.4 supports different versions of Oracle, DB2 and MS SQL. Is it possible to add support for a new database family,
    PostgreSQL for example? I hoped that RDBMS Site editor can do it, but so far I don't see any possibility to add XML files with metadata for a new RDBMS.
    I did it previously for PowerDesigner were it is possible to add and modify definitions for new relational databases.
    Thank you,
    Sergei

    There is discussion option as an out of the box feature. Check this: BI launch pad 4.0: Participate in a discussion about a document

  • CS5.1 support for new DSLR cameras (D600)

    I would like to understand the business decission (if there is any) why Adobe decided that for new DSLR  cameras support they will update only the Camera Raw version for the current release CS6 and not respecting the legacy for the n-1 release (updating the Camera raw for CS5.1).  This is a serious concern and disapointment.  Does it means that each time Adrobe has a new release , if i chnage the DLSR i am FORCED to upgrade and pay 190$ eventhus I do not need the new release features?

    Ah, thanks guys - I am very very happy to eat crow on that one!
    The actual point of my post was to make me feel better, and boy did it work!    I did not expect any actual relief, so actually now the post is twice is good as I thought - I was actually wrong!
    Anyway, I might mention (I didn't get into all the details) that I actually canceled the order for the d800e (the "e" version was backordered until just recently), as the d600 was just announced as my order was about to process.
    So actually I am in the same bad situation as the previous poster, but maybe now I will go back to the d800 - saving a $450 upgrade to CS6 actually saves half the difference in price between the cameras.
    And sorry for the rant on the 2 analogies.  It was not a troll.  I vaguely remember in my research that Lightbox comes with ACR, is that true?  Lightbox doesn't come with CS5.5 MC, but I wonder if i were to buy it ($99??) that'll give me the latest ACR that supports the d600, and problem solved.  I assume once i have the latest ACR it'll let me open straight into PS and not make me go through Lightbox and then PS?
    Anyway, if that is correct, that would be a much better answer to the original poster (and it saves him $100).  Other good answers (if this Lightbox hack won't work), might be:
    "It's an incredible amount of work to support nearly every camera and lens ever made in ACR, so even though it comes free with your software, you don't get free updates once your software moves to a new version."
    or
    "The d600 began shipping nearly immediately upon announcement, and it takes a while to update the software."  (perhaps the responder didn't realize it, but this was the situation with the d600.)
    But the car-story and "if you can afford a new camera, you can afford to pay adobe" were pretty tragic answers - someone needed to call you on it, or you would have only served to upset the original poster.
    Ha, PEBKAC, that is pretty good.  Not very easy to pronounce, though.
    I must say my last dozen interactions with adobe have all been negative, except this one, so maybe things are turning a new leaf.  You're lucky I didn't get into the story of when my HD crashed, and I had to call Adobe to re-activate my old CS4 PS.  It's awesome getting literally laughed at by the activation help desk person.  (I had owned the software for 3 years at that point, and had only ever activated it once.)  ...who just assumed I was lying.  "here now let me tell you how to deactivate the old version" "the HD is dead, it ain't going to happen" "well let me show you again, because you need to do that..."
    Oops, I did get into that story, didn't I?
    Best,
    Inline

Maybe you are looking for

  • How can I download a .pdf document from a web link without Adobe Reader starting automatically and i

         How can I download a .pdf document from a web link without Adobe Reader starting automatically and preempting the download?                         

  • Last purchase order price during miro.

    Here is one issue ... We created one plant and maintain all possible required configs for it. Al possible transactions are working fine except one. When i create a Purchse order of say RS10 as its price. I also perform MIGO for it. Now before bill pa

  • Easy Question

    I am new to Java and am using the Sun ONE Studio IDE. Using the IDE, I created a JApplet using a GUI interface similar to Visual Basic. I noticed that my program directory contains a variety of class files like Convert.class, Convert$1.class, and Con

  • Firefox can't load My Site Badoo

    badoo page opens normally, but after some minutes, I can not refresh ( reload ) the page, I had to close mozila and try again each time ,

  • Video name not showing

    Hopefully a quick fix for this.  I converted and copied a bunch of mp4 files across to the TouchPad, but I can't tell what each video file is because no file name is displayed.  Did I do something wrong in the coversion, or is this a bug? Post relate