Who else does not have cut and paste, or shift click anymore on Lion?

I can't cut and paste anything, and shift click doesn't work like it normally should. Shift click is acting like command shift insead of selecting everything between. Please, no ******** answers.

LordHawks wrote:
I can't cut and paste anything, and shift click doesn't work like it normally should. Shift click is acting like command shift insead of selecting everything between. Please, no ******** answers.
You don't have your numbers lock on or a shift key jammed or something do you? I have been using Lion since it was released and have never had nor seen an issue with the keyboard as yet. That's not to say you are not having one. Is it happening in particular programs? Have you installed any third party programs along the line like TypeIt4Me or such?

Similar Messages

  • Can I move my iWeb from mac-mini to my new macbook pro ? iLife 11 does not have iWeb and I really want to use it to update my website on my new macbook Pro instead of Mac mini

    Can I move my iWeb from mac-mini to my new macbook pro ? iLife 11 does not have iWeb and I really want to use it to update my website on my new macbook Pro instead of Mac mini

    There is no license required for iWeb.  Just do a Wyodor suggested and you'll be ready to go. If you're running Lion however, consider the following:
    In Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    To open your domain file in Lion or to switch between multiple domain files Cyclosaurus has provided us with the following script that you can make into an Applescript application with Script Editor. Open Script Editor, copy and paste the script below into Script Editor's window and save as an application.
    do shell script "/usr/bin/defaults write com.apple.iWeb iWebDefaultsDocumentPath -boolean no"delay 1
    tell application "iWeb" to activate
    You can download an already compiled version with this link: iWeb Switch Domain.
    Just launch the application, find and select the domain file you want to open and it will open with iWeb. It modifies the iWeb preference file each time it's launched so one can switch between domain files.
    WARNING: iWeb Switch Domain will overwrite an existing Domain.sites2 file if you select to create a new domain in the same folder.  So rename your domain files once they've been created to something other than the default name.
    OT

  • Smartview v11 does not have batch and scheduling capabilities?

    From reading documentation, it seems that Smartview v11 does not have batch and scheduling capabilities. Am I right?
    So if I want to schedule my Essbase reports and run cascading reports to be batched and emailed to different users (each receiving custom repors for their Business Units), how would I go about it?
    Should I create the rep;orts using Financial Reporting and batch email it out to users, who can then convert those FR reports to Smartview so that they can perform Drill-in detail analysis ?
    Thanks in Advance.

    You could also possibly run a VBA based excel macro to create a "Batch" process that would update a sheet or create a workbook, and email the file to an end user. Looking within the smartview VBA commands there are some pretty useful commands that could automate this process for you. I'm not sure on the process you would use for automating a process to send FR reports, but emailing from within excel is not usually to hard to do via VBA and might help to automate this.
    JF

  • XML Payload does not have namespace and prefix.

    Hello
    I have created a consumer business service which will be called from JDEdwards EOne, pulls data from database and send it to Fusion Middleware.
    SO, I have created proxy using JAX-WS option. And suggested in oracle doc, I created proxy outside OMW and then copied it to my project. XML payload is getting generated without namespace and prefix. After some research, I modified package-info.java. Now, I am able to send the payload and if test it locally from Jdeveloper and take xml output using marshaller I can see it has namespace and prefix as well. BUt, when I run this from server it does not have namespace and prefix.
    Please help.
    Thanks
    TK

    Hi Naresh,
    The "rejectedMessage" property is for 10G, I am not 100% sure about its implementation in 11G.
    In 10G the faulted XML file moves to this location "Oracle_Home\bpel\domains\domain_name\jca\project_directory\rejectedMessages".
    This property is used to move the files which are not valid XML or which are not schema compliant. For DB polling I don't think this property is used.
    -Yatan

  • I upgrade my iPhone 4 to iOS 6 and if I'm close to my router the signal indicator comes on and the phone connects to the wifi just fine, but if I step away from the router my phone does not have signal and cannot connect to Internet

    i upgrade my iPhone 4 to iOS 6 and if I'm close to my router the signal indicator comes on and the phone connects to the wifi just fine, but if I step away from the router my phone does not have signal and cannot connect to Internet 

    I can use my iPhone only with wifi .
    I don't get any signal and I can not connect to
    The Internet without wifi.
    When I don't use my wifi from home I have lost all connection to the net
    My iPhone is on and working it does not shut down

  • Phone connects to the wifi just fine, my phone does not have signal and cannot connect to Internet away from wifi network t

    i upgrade my iPhone 4 to iOS 6 and if I'm close to my router the signal indicator comes on and the phone connects to the wifi just fine, but if I step away from the router my phone does not have signal and cannot connect to Internet 

    I can use my iPhone only with wifi .
    I don't get any signal and I can not connect to
    The Internet without wifi.
    When I don't use my wifi from home I have lost all connection to the net
    My iPhone is on and working it does not shut down

  • When i place my photo, the adjustments tab does not pop up, and even when i click image at the top, I cannot select any adjustments-brightness/contrast,hue-saturation, color blance, etc..Anyone know what I am doing wrong?

    When i place my photo, the adjustments tab does not pop up, and even when i click image at the top, I cannot select any adjustments-brightness/contrast,hue-saturation, color blance, etc..Anyone know what I am doing wrong?

    Good day!
    What is "place" supposed to mean – open, place as Smart Object, …?
    What are the image’s Color Mode and bit depth?
    Could you please post a screenshot with the pertinent Panels visible?
    Does Window > Adjustments not raise the Adjustments Panel?
    Regards,
    Pfaffenbichler

  • Why update with subqueries does not have cost and cardinality?

    There is update.
    update test t1 set dummy = (select dummy from test2 t2 where t1.id = t2.id);Both tables which have actual statistics. Each has 1000 rows. And column ID have values from 1 to 1000 in each table.
    This is explain plan
    | Id  | Operation          | Name  | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | UPDATE STATEMENT   |       |  1000 | 13000 |   426   (9)| 00:00:01 |
    |   1 |  UPDATE            | TEST  |       |       |            |          |
    |   2 |   TABLE ACCESS FULL| TEST  |  1000 | 13000 |   426   (9)| 00:00:01 |
    |*  3 |   TABLE ACCESS FULL| TEST2 |     1 |    13 |   426   (9)| 00:00:01 |
    Predicate Information (identified by operation id):
       3 - filter("T2"."ID"=:B1)We can see here, that Oracle consider subquery within update as once-executed subquery.
    This is runtime plan
    | Id  | Operation          | Name  | Starts | E-Rows | A-Rows |
    |   1 |  UPDATE            | TEST  |      1 |        |      0 |
    |   2 |   TABLE ACCESS FULL| TEST  |      1 |   1000 |   1000 |
    |*  3 |   TABLE ACCESS FULL| TEST2 |   1000 |      1 |   1000 |
    Predicate Information (identified by operation id):
       3 - filter("T2"."ID"=:B1)Why first plan does not have cost in step 1?
    Does Oracle always not understand that update with subqueries will performed as NL or filter? In other words that step 3 will executed many times.
    Or it is my bug (or what?)?

    793769 wrote:
    Does Oracle always not understand that update with subqueries will performed as NL or filter? In other words that step 3 will executed many times.
    Or it is my bug (or what?)?It's not possible to say whether this is a bug or a deliberate choice.
    Because of "subquery caching" (see http://jonathanlewis.wordpress.com/2006/11/06/filter-subqueries/ ) the optimizer cannot predict how often the subquery will have to run. So possibly it shows nothing rather than showing the best or worst cases or a pure guess.
    Regards
    Jonathan Lewis

  • How to find the deliveries which does not have Carnot and SHPCON

    I have a scenario where for some of the deliveries no CARNOT idoc or SHPCON idocs were not been created or went into error, i have verified it in by going to we05 and found there were many idcos in error and some of the idocs were been set to status 68 and they were manually processed by users.  is there any table where i can extract the deliveries which does not have SHPCON idocs created.

    hi,
    you have to take two steps in this:
    first step:
    Table EDIDC which contains EDI Control records.
    which stores the partner number,partner functions & message types.
    2nd step:
    take that partners and get deliveries from LIKP table.
    regards,
    balajia

  • My new mac does not have idvd11 and I can't find it in the mac app store?

    I have just got a new iMac. It does not have iDVD11 on it and I can't find it in the Mac store? What is the deal?

    iDVD is no longer a part of iLife and is no longer supported or distributed by Apple.

  • Cut and paste on left click mouse doesn't work & manage search engine choices non-existtant

    I can no longer cut and paste from any website with the mouse. I have also lost the search engine choices (and the engine itself)
    == This happened ==
    Every time Firefox opened
    == new version of firefox was updated to 3.6.6

    Sounds like at least the Mouse is going out, open Sustem Preferences>Mouse, change the primary button to the right one, does the right button now work like he left one should?
    Just thinking, it could jast as likely be the KB, maybe the control key stuck? Does the Mouse work if you disconnect the KB?

  • No cut (Command x) and past, or shift click?

    What happened to cut and paste, and shift click?

    Dunno, what happened to those things?  They still work as they always have on my system.  What are you expecting that is not happening?

  • My new computer does not have iWeb and I can't open the files from the old computer. What can I do???

    I'm really desperate. I used to publish to a blog directly from iWeb, then I discontinued it. When I made the switch to iCloud, I wasn't worried because I knew my files would always be there. However, once I got a new computer, I transferred all the old files to an external hard drive and I thought everything would work just fine. Well, it didn't Neither can I open iWeb nor can I find my files.
    Can anyone help me please?

    New Macs have not shipped with iWeb for over 2 years and Apple has not sold or supported iWeb for at least 2 years now - Apple stopped selling it and dropped support for it when MobileMe was ditched in favour of iCloud which does not offer hosting.
    If you want iWeb, then you will need to have a look at your old installation CD's for your old Mac and see if iWeb is on these and you can then install it from there or if you don't have these CD's any longer, then you'll have no option but to purchase a copy of either iLife 09 or iLife 11 from Amazon - these boxed sets both contain iWeb 09, which is the latest version of iWeb.
    Other than this and as you have not done your blog for sometime, perhaps you should consider re-creating it from scratch with a software that is actively supported and updated - that is NOT iWeb any longer.
    You could try using WordPress, either .com or .org - .org is good if you already have hosting and you can install WordPress directly onto your server.  If you want something free, then you could use WordPress.com which is then published on the WordPress servers.
    You could also take a look at EverWeb from Rage Software, which is very new and is very like iWeb with all the extras, such as drop down menus etc.  Take a look at http://www.everwebapp.com.
    As for your files, it sounds that when you say files, these might be the published files for your site, if you went into iWeb and published them to a local folder?  This is not a backup and even if you could find these files, then iWeb will not be able to open them because it has no import facility, so cannot open an already published site - html and css files.
    What you need is your domain.sites files which can be found under your User Library/Application Support/iWeb/domain.sites.
    I would cut your losses and if you don't have iWeb, then don't bother paying for software that is now outdated and unsupported - move onto to something new and re-create everything in either WordPress or EverWeb.

  • New Firefox page does not have back and forward arrows, refresh or stop features on it.

    I used to have a back and forward arrow, an X to stop something and a refresh sign on the second line at the top of the screen and box with the link I was on shown so you could copy and paste it. Those features are no longer there.
    == This happened ==
    Every time Firefox opened
    == I upgraded to the new version of Firefox yesterday.

    Did you reset the '''general.useragent''' prefs on the '''about:config''' page?
    You can open the ''about:config'' page via the location bar, just like you open a website.
    Filter: '''general.useragent'''
    If any ''general.useragent'' prefs are bold (user set) then right-click that pref and choose ''Reset''.
    * If, on Windows, in Firefox 3.6 the menu bar is hidden then press and hold the Alt key down or press F10, that should make the "Menu Bar" appear
    * Go to "View > Toolbars" and check-mark "Menu Bar" with a click on it to make that permanent. See [[Menu bar is missing]]).
    * Make sure that you have the "Navigation Toolbar" and the "Bookmarks Toolbar" visible: "View > Toolbars"
    * If items are missing then see if you can find them in the "View > Toolbars > Customize" window
    * If you see the item in the Customize window then drag it back from the Customize window to one of the toolbars.
    * If, in "View > Toolbars > Customize", you do not see that item then click the "Restore Default Set" button
    See also [[Back and forward or other toolbar buttons are missing]] and [[Navigation Toolbar items]]
    See http://kb.mozillazine.org/Toolbar_customization

  • HT4623 How can I up date my iPhone, when you go into settings and click on general there should pop up a thing that says update between about and usage  it does not have it and I can't update it now

    How can I update my iPhone,when I go  into settings and click on general something should pop up between usage and about that says up but it does not and my iPhone needs to be updated.

    If you don't have the update option on your phone, you will need to update in iTunes on your computer.

Maybe you are looking for

  • How to make "Levels" in simple java game

    I just wanted to know if anybody knew how to make "Levels" in a java game. In my case, it is to change two polygons that are used in the background. I think you have to use an array of some kind, but i dont really know. Here is my source, the polygon

  • Grant write on directory, fail!!

    Hello, I am executing the follow statement: "grant write on directory my_directory to public" on Oracle 8i and do not obtain. When I obtain to grant the privilege READ but tthe no WRITE!! Why I do not obtain grantee the privilege WRITE to PUBLIC on O

  • CanoScan LiDE 220 error Cannot communicate with scanner Error 2, 156,182

    A month ago I bought a scanner the "Canon CanoScan LiDE 220" . I get this scanner after a month of testing not stable / operational. I keep getting the following error message : and also the error 2, 156, 182 Configuration: A. Mobo ASUS X99-A > with

  • Can't Sign in after 10.8.3 beta install

    I just installed the 10.8.3 beta, the computer rebooted, and now I can't sign in. The computer is not accepting my password. I am certain there is no caps lock on or anything, and I am 100% sure the password I am entering is correct. I tried booting

  • Why can't i find Time Machine Back Up Device in Hard Drive

    Why can't i find Time Machine  Device in Hard Drive when i have plugged it already. White light just keeps on blinking.