Grab is grabbing the clipboard

I am writing a new mail.
I then go to Mail >> Services >> Grab >> Selection.
I tab my way to Safari, select the part of the screen I want to send and wait for grab's click sound.
I get back to Mail, to find out that Grab has pasted a sentence that was on my clipboard (something I've copy/pasted before).
Am I doing something wrong or something wrong is happening with my utility?
Saludos,
Robby!
PowerBook G4, 1.6Ghz   Mac OS X (10.4.2)  

I don't believe grab even works in Safari. At least it won't for me. If I select text in Safari then select grab the options on what to grab, while in Safari are grayed out.

Similar Messages

  • How to grab the value from a drop down list inside a table cell

    Hello,
    My situation is I have a few columns displayed in a table format using repeater tag. Some cells is a dropdown list(<netui:select /> tag). My question is how can I grab the value when user made a selection.
    I believe I can get the row index but I can't use the datasource attribute to get the user selection since it is in a repeater. All the cell use the same datasource and workshop will give "NULL" value when there are more than one tag bind to the same form valiable.
    Any suggestion are very much appreciated! Thanks a lot in advance.
    My snippet code are:
    <netui-data:repeater dataSource="{pageFlow.ownedTask}"><netui-data:repeaterHeader></netui-data:repeaterHeader>
    <tr valign="top">
    <td><netui:select dataSource="{actionForm.userName}" optionsDataSource="{pageFlow.nameList}" onChange="getUser()" ></netui:select>
    </td>
    <td><netui:select dataSource="{actionForm.empDept}" optionsDataSource="{pageFlow.deptList}" onChange="getSelectedDept()" ></netui:select>
    </td>
    <td><netui:label value="{container.item.status}" />
    </td>
    </tr>
    </netui-data:repeaterItem>
    <netui-data:repeaterFooter></netui-data:repeaterFooter>
    </netui-data:repeater>

    1) let drop down box be g_dd.
      if g_dd is initial.
      g_dd = option2.
      endif.
    2)
    by default same pf-status is used by all the screens in the same program
    if sy-dynnr = 'screen_no'. " for screens for which you do not want button to come
    set pf-status 'abc' excluding 'fcode_of_button'
    endif.
    or
    data: git_fcode type sy-ucomm with header line.
    git_fcode = 'fcode_of_button'.
    append git_fcode.
    if sy-dynnr = 'screen_no'. " for screens for which you do not want button to come
    set pf-status excluding git_fcode
    endif.
    Edited by: Amit Gupta on Oct 11, 2008 11:36 AM

  • I've lost the ability to grab the corners of boxes and scale...Help!

    Mac based, Illustrator CS3. I've suddenly lost the ability to grab the corners of boxes and scale in illustrator - i must have accidentally turned something off - can someone tell me what i did worng and how to fix it? It's driving me crazy to scale mechanically.  I want to grab and drag! Please? Thank you!Mac

    Hit these keys Command Shift B at the same time
    It is a toggle for View. Show/Hide Bounding Box
    The most common accident in Illustrator everyone does this.
    Also be aware of command H for hide edges another accident often happens.

  • What should I do about an icon, "Rebuilt Library" that appeared when I "grabbed" the top of my iPhoto window?

    The icon appeared when I "grabbed" the top of my iPhoto window to move it across the desktop. I don't want to delete important files, and wonder what I should do about the icon.
    I am using Time Machine.

    Thanks LarryHN,
    I have iPhoto version 9.4.3, and the "Rebuilt Library" icon is on the desktop.
    Interestingly, when I closed iPhoto in order to perform the option startup, I got the spinning beachball and had to force quit—when I reopened, using the option key, a window did ask which library to use—I chose the rebuilt library.
    I moved the "Rebuilt Library" icon to the iPhoto Library folder.
    Thanks again!
    Phill

  • Grabbing the elements from the XML root node

    Hello,  I haven't worked with XML in over a year and I didn't use it much then.  I'm trying to remember the best way to get the values from the root note (not child nodes).
    For instance, in the following xml, I want the timestamp and the messageID from stumessages.
    I can't recall if you are supposed to use xmlsearch or something else.  I know how to grab the child nodes (for some reason, that part was easier to recall).
    <cfsavecontent variable="XMLFile"><?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE stuMessages SYSTEM "http://cody.glpconnect.com/DTD/StuMessage_Rev6.dtd">
    <stuMessages timeStamp="14/05/2012 08:02:11 GMT" messageID="9768c7201b6f100585fbfa3243489116">
         <stuMessage>
              <esn>0-999999</esn>
              <unixTime>1336982529</unixTime>
              <gps>N</gps>
              <payload length="9" source="pc" encoding="hex">0x3530E2B18801031200</payload>
         </stuMessage>
    </stuMessages>
    </cfsavecontent>
    <!--- Set the XML to a XML parsed variable we can use --->
    <cfset MyXMLDoc = xmlParse(XMLFile) />
    <!--- Dump the XML --->
    <h2>Dump</h2>
    <!--- <cfdump var="#MyXMLDoc#"> --->
    <!--- Get all Message Nodes --->
    <cfset messageNodes = xmlSearch(MyXMLDoc,'/stuMessages/stuMessage')>
    <cfoutput>
        <h2>Message Nodes</h2>
        <cfloop from="1" to="#arraylen(messageNodes)#" index="i">
            <!--- The array contents need to parsed so you can easily get at the child nodes children and attributes. --->
            <cfset messageXML = xmlparse(messageNodes[i]) />
            <b>esn:</b> #messageXML.stuMessage.esn.xmltext#<br>
            <b>unixTime:</b> #messageXML.stuMessage.unixTime.xmlText#<br>
            <b>gps:</b> #messageXML.stuMessage.gps.xmlText#<br>
            <b>payload:</b> #messageXML.stuMessage.payload.xmlText#<br><br>
        </cfloop>
    </cfoutput>
    Best regards
    KR

    Hello,
    I figured it out.
    I figured I would update my post in case anyone else was curious.
    I just need to add the following two lines into the code to expose the elements of the root node.
        <cfset timeStamp = MyXMLDoc.stuMessages.XmlAttributes.timeStamp>
        <cfset messageid = MyXMLDoc.stuMessages.XmlAttributes.messageID>
    The full code follows
    <!--- Set the XML to a XML parsed variable we can use --->
    <cfset MyXMLDoc = xmlParse(XMLFile) />
    <!--- Dump the XML --->
    <h2>Dump</h2>
    <!--- <cfdump var="#MyXMLDoc#"> --->
    <!--- Get all Message Nodes --->
    <cfset messageNodes = xmlSearch(MyXMLDoc,'/stuMessages/stuMessage')>
    <cfoutput>
        <cfset timeStamp = MyXMLDoc.stuMessages.XmlAttributes.timeStamp>
        <cfset messageid = MyXMLDoc.stuMessages.XmlAttributes.messageID>
        #timeStamp#<br />
        #messageid#<br />
        <h2>Message Nodes</h2>
        <cfloop from="1" to="#arraylen(messageNodes)#" index="i">
            <!--- The array contents need to parsed so you can easily get at the child nodes children and attributes. --->
            <cfset messageXML = xmlparse(messageNodes[i]) />
            <b>esn:</b> #messageXML.stuMessage.esn.xmltext#<br>
            <b>unixTime:</b> #messageXML.stuMessage.unixTime.xmlText#<br>
            <b>gps:</b> #messageXML.stuMessage.gps.xmlText#<br>
            <b>payload:</b> #messageXML.stuMessage.payload.xmlText#<br><br>
        </cfloop>
    </cfoutput>

  • Why customer exit variable to grab the current month value doesn't work?

    In CMOD, input the following code to grab the current month value from the system date:
    Grab the month value with System Date
    WHEN 'CURMONTH'.
        CLEAR l_s_range.
        l_s_range-low = SY-DATUM+4(2).
        l_s_range-sign = 'I'.
        l_s_range-opt = 'EQ'.
        APPEND l_s_range TO e_t_range.
    In Query Designer, create a formula variable CURMONTH processed by customer exit and the dimension under the Currency/Unit tab is "Number".  Put the formular variable in the column as a KF.  When running the query, the column with the formular variable shows values of "2,0000000" other than just "2" I want for the current month.  If  the dimension under the Currency/Unit tab is "date", the column with the formular variable shows values of "00/00/0000".  Any idea?  How to grab the correct current month value which is 2 from the system date.
    Thanks!

    Oh ok , try the below options, As such I dont see any errors in our code .
    Not sure if you have ABAPER's in your team, just check with them once on the FM we are trying to see .
    Next , do you hvae 0CALDAY available in your report ? If so try to restrict that field with variable "0DAT" and write the same code you have written for your formula variable , but instead change the variable name to "0DAT" and try if this gets the month . let me know if I'm not clear .

  • Webservice to grab the files using HTTP

    Hi,
    Can any one guide me how to create a webservice to grab a file using HTTP? The scenario is that a webservice call should contact a system through HTTP to grab the file.
    Please help.
    Thanks,
    Sunny
    Edited by: Sunny1890 on Apr 2, 2009 7:00 PM

    Use classes available in java.net package.

  • I can't grab the "handles" to adjust the crop size of info on scanned pages.

    When I try to grab the handle it crops it right there.  I cannot drag it to the spot I need.  This has happened with my Screen shot program as well.  I would appreciate any help.  Thanks

    Hello Khaya, and welcome to the HP Forums, I hope you enjoy your experience!
    I see you are running into scan issues.  I would love to try and help you, but I do need a little information first. I am linking a few HP Support documents below that will show you how to find your product number. Also, please include which operating system you are using. Also, if you're using Windows, please include whether your operating system is 32-bit or 64-bit. With this information and the product number we can provide you with accurate information.
    How Do I Find My Model Number or Product Number?
    Mac OS X: How Do I Find Which Mac OS X Version Is on My Computer?
    Which Windows operating system am I running?
    Is the Windows Version on My Computer 32-bit or 64-bit?
    Please let me know what you find,  Thanks for posting on the HP Forums!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • Need to grab the client's machine ID

    I am working on a Web-Enabled Application and I need to grab the machine identification (Machine Name or TCPIP Address) of the client (MS NT). Does anyone know which package/class I need to use to do this? I have looked around, and cannot seem to find the one I need.
    John

    Not a problem,
    BTW don't blame me if it doesn't work, as I've found with Java, it never quite works how the documentation says it should.
    I would check that it return the actual IP address and not the 127.0.0.0 IP for localhost.
    Chris

  • Help! My space bar isnt activating the hand tool to grab the screen!

    CS 5.5. Just restarted Photoshop and still the same problem. I should be able to hold down the space bar and grab the screen to drag it around. Not working anymore. Thoughts?
    OS X
    CS 5.5

    You may need to reset your Photoshop prefs.
    Try this:
    http://forums.adobe.com/message/4209421

  • How to grab the frame of the .mov on the iphone?

    Hi,
    I want to render the .mov by OpenGL. So I want to know how to grab the .mov's frame. Do you have any suggestion and good reference material? Help.
    Thanks very much.
    ares

    I am sorry, maybe I am not state my question clearly. I mean that I want to grab the video frame of QuickTime's format(*.mov) in iphone. And translate the grabing date to a texture used by OpenGL. I want to do a multi-media player use OpenGL, and cross-platform.
    How can I do that?
    Thanks very much.
    Ares

  • IViews always grabbing the top of the page

    Hi everyone,
    We are in development of a portal (version 7.0) witch gonna be fully "look and feel" customized. We've created a Desktop, which references our Layout and the main page. In this Page we gonna have 3 basic areas: Header, Content and Footer.
    Problem:
    On this Page the IViews added are always gripping at the top of the browser. The footer is grabbing the top of the page, as the content area is having the same behavior.
    Our layout on the main Page props are defined with one single column, and the IViews are in the correct sequence (header, content, footer), and each IView reference an single .PAR portal object. We've tried already the Double T layout, but didnt work. In our search for properties on the IViews static height size and other options didnt solve this behavior.
    What can be done to have the IViews configured to do not "override" each other?
    Thanks!

    Thanks Raghu for the information. I was able to create my own page layout with the following NW documentation:
    [Creating Custom Layouts - Sap NetWeaver 7.0.|http://help.sap.com/saphelp_nw70/helpdata/EN/42/efbac120711a71e10000000a422035/frameset.htm]
    I am opening another thread relating a new problem problem, cause the IViews assigned to my custom layout are not appearing (page becomes blank).
    Thanks!
    Evandro

  • On my mac I have both Quicktime X and Quicktime 7 pro. Both applications seem to be crashing quite often lately. This happens when playing all files types. I notice it more with .flv file. It usually happens when i grab the time slider bar and try to move

    On my mac I have both Quicktime X and Quicktime 7 pro. Both applications seem to be crashing quite often lately. This happens when playing all files types. I notice it more with .flv file. It usually happens when i grab the time slider bar and try to move it. The apps will freeze and I have to "force quit" to get them to close. Sometimes putting the computer to sleep and waking it up helps. Is there a way to remedy this?

    Oops, I needed to update my profile. I have snow leopard now

  • Why does Acrobat X Pro grab the AltGr + C combination?

    I'm using Windows 7 Professional (64 bit) with Acrobat X Pro 10.1. Whenever I have Acrobat X Pro open, it grabs the AltGr + C combination even if it does not have the focus, and I have no idea why. As soon as I close Acrobat X Pro, AltGr + C works as I expect.
    This is a problem for me, as the two keyboard layouts I use for European languages both use AltGr + C to generate lower case c with a cedilla, which is needed for French. Acrobat X Pro doesn't grab the AltGr + Shift + C combination, so I have no problems getting an upper case c with a cedilla. Meanwhile, I work with a great deal of legal documents in PDF on my Tablet PC - working with Acrobat X Pro closed is often not an option.
    Any ideas? Should I report this as a bug?

    I assume you tried a Save. Try using Save As instead. The Save option came from what MS had done over the years, saving both the new version and the deleted information. This is supposedly to aid in recovery, though no one I know has any idea about how to use such information.

  • When I open a pdf file, after a few seconds, it hides the toolbar and I don't know how to get it back.  I use multiple monitors and, without being able to grab the toolbar, I am unable to move the pdf file to a different monitor.  How do I stop this?

    When I open a pdf file, after a few seconds, it hides the toolbar and I don't know how to get it back.  I use multiple monitors and, without being able to grab the toolbar, I am unable to move the pdf file to a different monitor.  How do I stop this?

    Does Firefox switch to full screen if you press F11 ?
    You can also try the F10 key to see if that brings up the menu bar.
    * If the above steps didn't help then see http://kb.mozillazine.org/Corrupt_localstore.rdf
    Note: Do not delete localstore.rdf in the program folder (Windows: "C:\Program Files\Mozilla Firefox\defaults\profile\") (Mac: "/Applications/Firefox.app/defaults/profile/")

Maybe you are looking for

  • I haven't used my ipod in a while and can't remember the password. What should I do?

    I can't remember the password, what should I do?

  • Installing serial number

    I cannot install my serial number I received with purchase and download of Acrobat X! Pro. I keep getting this error message "Serial number provided is valid but a qualifing productcould not be found on this computer" Select a Product does not have A

  • Coordinate system

    I am having trouble getting my local-world-view-screen matrix setup right. First, coordinate system is: +x to the right +y down +z into the screen right? this is what I get from Vector3D class. But now that I am thinking of it DirectX and OpenGL have

  • EREC: Activities are already marked as planned for new candidates

    Hello All, when I log on as recruiter and open assignments to a requisition, select a new candidate (that is totally new in the system) and go to "Activities" two activities are already two activities marked as planned for this candidate. The activit

  • Problems moving iPhoto Library

    I just ran out of space on my internal HD so I moved my entire "Photos" folder over to my external. When I tried to access the photos on my external, it shows no individual photo files, just an iPhoto Library file. When I try to import this file into