Is it possible to get a bitmap from clipboard after PrtSc pressed

Hi all,
When a user press print screen button bitmap is put in clipboard. Is it possible somehow to get it from there in flash(or at least in AIR)?

In Flash you have access to text saved in the clipboard, but not the OS (such as print screen). It looks like that's mentioned also at the top of Haka'ns helpful link.
You can  get a more familiar with the Clipboard class here:
http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/desktop/Clipboard .html

Similar Messages

  • Is it possible to get the information from the complete forms send to different email account

    When i have a paid account is it than possible to get the information from the different forms send to seperate emailaddresses.
    Who dont have a account from formscentral but just need the information directly in there own inboxes?
    Because we're looking for a good and simple way to make qoustion & complain forms. But these need to go to different people in the company.

    You can have notifications sent to multiple email addresses, but each will need to have a FormsCentral account.  They can be free accounts.  What you do is create your form and set up the email addresses that you want the information to go to to be Co-authors or Contributors.  The co-author/contributor accounts will then need to log into FormsCentral, go to the Options tab and check the email notifications checkbox. 
    I hope this helps.
    -Jeff

  • Is it possible to get the image from the i pad when mirroring via Apple TV to fill the screen instead of appearing as a screen within a screen?

    When mirroring, is it possible to get the image from the ipad to fill the screen on the TV instead of appearing as a screen within a screen?

    Welcome to the Apple Community.
    No, the iPad has an aspect ratio of 4:3, a TV has an aspect ratio of 16:9, to fit one into the other is impossible without distorting the picture. If your TV has a zoom feature, you may be able to use this to fill the screen a little more to your liking, but this will result in cropping top and bottom.

  • HT201198 i have 1 year warrenty and my iphone 4 buttons are playing up is it possible to get a replacement from an apple store

    i have 1 year warrenty and my iphone 4 buttons are playing up is it possible to get a replacement from an apple store

    Did you check your security software (firewall)?
    A possible cause is security software (firewall) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    * https://support.mozilla.com/kb/Server+not+found

  • OpenScript & ant ssh - "Cannot get a connection from helper after 120 seconds"

    Hi, I'm trying to run openscript tests (with runscript.bat file) from hudson. I'm connecting to windows XP machine through ssh and executing batch file, but execution of scipt finishes with error "Cannot get a connection from helper after 120 seconds". This error occurs when openscript tries to run test on Internet Explorer. If IE is not nescessary, test finishes with OK. When running batch directly on windows (without hudson and ssh, but on the same user) everything works fine. Has enyone met with such issue ?

    Hi,
    What Jules has suggested should work, but I have also used the following to get scripts working from OTM -
    OATS Application service - run as a user with local admin rights
    helper service - local system
    OATS agent service - set to manual
    Then, run the agent service as a console app -
    1. run a cmd prompt
    2. Run c:\> C:\OracleATS\agentmanager\bin\AgentManagerService.exe -c C:\OracleATS\agentmanager\bin\\AgentManagerService.conf
    3. Execute the script from OTM
    If the agent is running on a machine separate to OTM then the user will have to remain logged in.
    Cheers,
    Jamie

  • OTM-Cannot get a connection from helper after 120 seconds.

    Can any one tell me how to fix the problem of ,
    OTM not able to run the scripts, and getting the following error:
    "Cannot get a connection from helper after 120 seconds. "
    I have tried un-installing and installing all the services , actually its happening for helper service,but at the same time
    Its working when we use OpenScript, with out any such helper issue but when we use to run the same script using OTM , the above mentioned error message is getting displayed.
    Please let me know a solution, if any one has made a fix for this.
    Thanks in Advance
    Atish

    Hi,
    Step1: Uninstall ATS products and Oracle XE database
    Step2: Remove/Rename the following folders.
    Remove/Rename ATS install directory (e.g. C:\OracleATS).
    Remove/Rename the directory: C:\Documents and Settings\username\osworkspace (depends on your Operating System, it may look like: C:\Users\username\osworkspace)
    Remove/Rename the directory: C:\Program Files\Oracle\Inventory ( depends on your Operating System, it may look like: C:\Program Files (x86)\Oracle\Inventory)
    C:\Windows\rsw.ini
    Step3: Remove the following Services (if services exist)
    Start -> Run. Enter "cmd" Type the command: sc delete servicename
    Oracle Application Testing Suite Application Service
    Step4: Remove the Registry Keys (if exist)
    Start -> Run. Enter "regedit" to launch Registry Editor. Remove the keys below:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Oracle Application Testing Suite Application Services
    HKEY_LOCAL_MACHINE\Software\Oracle\Oracle Application Testing Suite and Oracle Test Management
    Step5: Restart your System
    Step6: Install ATS with admin privilege
    Regards,
    Deepu M

  • How to get a bitmap from CNiGraph in VC++

    I want to get bitmap of measurement graph control somthing like the CVI function GetCtrlBitmap in VC++.
    I tried m_Graph.Images("Plot Area"), no function in CNiImage class to get bitmap, the same case for the CNiPicture class.

    For Visual C++ 6.0, I would recommend updating to a recent Platform SDK to get the GDI+
    C++ API. To create a bitmap from a graph with the GDI+ C++ API, first add
    this to your stdafx.h:
    #include "gdiplus.h"
    using namespace Gdiplus;
    #pragma comment(lib, "gdiplus.lib")
    Next, add the GetEncoderClsid helper function from the MSDN article Retrieving
    the Class Identifier for an Encoder to your project. Once you've updated
    the stdafx.h and added the GetEncoderClsid helper function to your project,
    the following example demonstrates how to do the equivalent of the previous
    example with the GDI+ C++ API:
    // Determine dimensions of the control.
    RECT controlBounds;
    graph.GetClientRect(&controlBounds);
    int bmpWidth = controlBounds.right - controlBounds.left;
    int bmpHeight = controlBounds.bottom - controlBounds.top;
    // Start GDI+
    ULONG_PTR gdiPlusToken;
    GdiplusStartupInput gdiPlusStartupInput;
    ::GdiplusStartup(&gdiPlusToken, &gdiPlusStartupInput, NULL);
    // Define a scope so that GDI+ objects will get cleaned-up before
    // GdiplusShutdown is called.
    // Create the bitmap with the same dimensions of the control.
    Bitmap bmp(bmpWidth, bmpHeight);
    // Create a GDI+ Metafile object for the enhanced metafile returned
    // by CNiGraph::ControlImage.
    CNiPicture controlImage = graph.ControlImage();
    Metafile controlMetafile(reinterpret_cast<HENHMETAFILE>(controlImage.Handle));
    // Draw the metafile to the bitmap with the control dimensions.
    std::auto_ptr<Graphics> pGraphics(Graphics::FromImage(&bmp));
    pGraphics->DrawImage(&controlMetafile, 0, 0, bmpWidth, bmpHeight);
    // Get the encoder CLSID for bitmaps.
    CLSID bmpClsid;
    ::GetEncoderClsid(L"image/bmp", &bmpClsid);
    // Save the bitmap to a file with the bitmap encoder CLSID.
    bmp.Save(L"C:\\graph.bmp", &bmpClsid);
    // Shutdown GDI+
    ::GdiplusShutdown(gdiPlusToken);
    - Elton

  • Is it possible to get pictures/videos from an iPhone5 that will not turn on?

    My phone has been water damaged and my latest back up is a few months old.
    Is there anyway I can get my pictures from the damaged phone and put them onto my new

    Thank you for the help. The developer did say they're not colllecting the UDID's or the data on the phones, but I'm not trusting my iphone and my account's safety in his words only. He did also mention that the date had to be changed in order to download it, maybe because Apple doesn't allow it to be distributed that way anymore, anyways I'll just stick with the apps I get from the Store.
    Best Regards.

  • Possible to get push IMAP from host provider account?

    My e-mail is hosted at the same provider that hosts my domain name: Total Choice Hosting. I have my new iPhone 4S set up to access my email there with IMAP, and for the most part it's working fine.  The only issue I have is when I go into Fetch New Data->Advanced: my iCloud account shows Push as an option, but my IMAP domain account only offers me Fetch and Manual.
    I set up my IMAP account using the "Other" option, was that a mistake? Is there a better way to set things up so I can get Push support from my domain email?
    Many thanks in advance!

    IMAP does not support Push. There is no way around this. IF your provider supports Exchange Active Sync, you can set it up as an Exchange account, which does support push.

  • How to get a character from input stream withjout pressing RETURN key?

    In C, we could use getch() form <conio.h> to get a character from the input steam without pressing the return/enter key. How could I tranlate this function for use in Java?

    public static char readChar()
    int charAsInt = -1; //To keep the compiler happy
    try
    charAsInt = System.in.read();
    catch(IOException e)
    System.out.println(e.getMessage());
    System.out.println("Fatal error. Ending Program.");
    System.exit(0);
    return (char)charAsInt;
    }

  • Is it possible to get LS name from SLD when the scenario is executed

    can I create a scenario that gets the Technical system details of the Business system from SLD?
    Can I have a Soap - File scenario, in which case, once the request comes from Soap, corresponding Business system's Technical system details ( like LS name and client no ) should be taken from SLD and send as a file.
    Is this possible ??
    if yes, how?
    Regards,
    Venkat.

    Hi
    Technical system details - Not sure if that is directly possible..
    but an option would be to use a FixValue/ Valuemap function provide a Key & get the value
    to generate the Key, use a UDF, get RUNTIME constants to make a key
    check this link for constants http://help.sap.com/erp2005_ehp_04/helpdata/EN/b3/9a2aeb24dc4ab6b1855c99157529e4/frameset.htm
    e.g
    java.util.Map map;
    map = container.getTransformationParameters( );
    String const;
    Const = (String) map.get(StreamTransformationConstants.CONSTANT_NAMEfromlink);
    return const;
    if you want XI's information, then you can try this
    String sysSID = (String)System.getProperty("SAPSYSTEMNAME");
    OR
    String sysSID = (String)System.getProperty("user.name");
    Regards
    Vishnu

  • Is it possible to get an email from 2 years ago back

    I deleted an email from about two years ago that I now need, is there any way of getting it back. My deleted folder has been emptied?

    Anything is possible. I have no idea how you deleted it, if you have compacted folders since then or any other actions that you may have taken.

  • Is it possible to get my pictures from my touch to back onto pc?

    I have some photos which are on my ipod touch which I want to get printed off, they were saved on a memory card too but ive lost it. Luckily (sort of) I transfered them to my touch before.
    On my netbook they are under "my pictures" in "ipod cache" folder but when I click on that folder it doesnt show the pictures at all, do you have any suggestions? I understand that when I initially transfered the pictures from my netbook to ipod touch that it converts it to a certain type of file and saves it in this "cache folder" but I can't view them therefore can't print them.
    Thanks

    maybe this will be helpful.
    JGG

  • Is it possible to get a response from anyone at Verizon about my bill?

    I need to speak with someone about getting an adjustment to my bill. I have called 3 times, and each time, I get put on hold for various amounts of time anywhere from 5 minutes to 20 minutes, then there is a sound of a ringing phone, as if I'm being transferred, then the phone goes dead. I have to start over. This is appalling service! Is there no way to speak to a human or even email a human? Is there a special number to call? If so, it's hidden on the website. This is ridiculous.

    You could try calling Financial Services:
    Financial Services
    800-528-7594
    866-266-1445
    Mon - Fri:  7 am - 9 pm ET
    Sat:  8 am - 5 pm ET
    Sun:  closed

  • Hi in ecc 6.0 version - it is possible to get pdf print from list.

    Hi,
    In ECC 6.0 it is possible to print the pdf format  from o/p.
    PLs resolve this problem
    Regards ,
    Rani.

    hai.
    check the links.
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/4adf7ba13c4ac1b4600d4df15f8b84/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/37/47a2be350c4ac8afe36b691203971f/frameset.htm
    regards.
    sowjanya.b.

Maybe you are looking for

  • Organization Tab in Service Order in IC Agent Role

    Hi Experts , During the creation of a Service Order.,Complaints and Returns  from the front end I C Service Agent role , I am unable to maintain any Organization Data . I am unable to find the Organization Data tab to enter a Service Organization (ju

  • Can we access report date wise?

    hi all can we access report date wise if yes then plz guide me? i made two text items,one for start date and second one for end date in form.if i issue date in these two text items like this start date: 01/08/2009 End date: 08/08/2009 and after press

  • Automatic Payment F110, Using currency other than the currency of invoice.

    I want know if it is possible to make automatic payment by F110, paying through a currency other than the currency of the invoice? Using the f-53 transaction i know that is possible, but i must use the F110, because I generate a file to send to the B

  • Import extremely slow from 9i to  10G

    I am preparing a 10.2.0.4 database for testing, (upgrading from 9i) because we are also moving to a new server, I am going to use the exp/imp method. I created a new database after installing and patching the software, then created the necessary tabl

  • Information about Performance manager's APIs

    <p><span style="font-size: 10pt; font-family: Arial">Hi All,</span></p><p><span style="font-size: 10pt; font-family: Arial"> </span><span style="font-size: 10pt; font-family: Arial">I require some information about Performance Manager of Business Obj