How can I capture a snapshot/screenshot from my game made with edge animate

I am wondering if its possible to put a symbol button inside edge animate once the user clicks on it it downloads a screenshot from the current screen the user is on because it's a required inside the project I have made and the client is really asking for this advantage and I made the whole game with edge animate so please if anyone has any solutions to tell me about them..Thanks

Hey, HeavenChains-
We don't use canvas natively, so the html5 canvas screenshot may not work for you.  I did a quick websearch and there are libraries out there that may take a screenshot for you, but you may want to be wary due to privacy concerns with using third party software.
Here's one of the ones I found (please don't take this as a recommendation, as I haven't tried it myself):
http://grabz.it/api/javascript/
Hope that helps,
-Elaine

Similar Messages

  • How can I migrate an Aperture library from an external HDD with Mac OS Extended (Journaled, Encrypted) format?

    How can I migrate an Aperture library from an external HDD with Mac OS Extended (Journaled, Encrypted) format?
    I used to store my pictures on an external hard drive using the latest version of Aperture. Now I tried migrating my Aperture library to Photos. However, after a short moment an error message popped up telling me that "Photos was unable to make a copy of your library before preparing it. Photos does not have the necessary permissions...".
    My external HDD doesn't need any permission repairs nor is the system prohibited to read from or write to it.
    Thanks for any advice in advance!
    Gohtac

    My guess is that the encryption is the problem for the new app.

  • How can I get notes (app Notes) from HTC HD2 smartphone with OS Windows mobile 6.5 to my iPhone 4S ?

    How can I get notes (app Notes) from HTC HD2 smartphone with OS Windows mobile 6.5 to my iPhone 4S ?

    iPhonePeter wrote:
    What about file format? (In windows mobile is *.pwi)
    Irrelevant if you cut and paste the content of the note into an email.

  • HOW CAN I DOWNLOAD AND VIEW THE MOVIES I HAVE MADE WITH MY SONY CAMCORDER HDR-XR550VE?

    HOW CAN I DOWNLOAD AND VIEW THE MOVIES I HAVE MADE WITH MY SONY CAMCORDER HDR-XR550VE?

    Thanks for being so helpful. I chased up the web-link but was not sure it would work with .cpi, so didn't opt to buy it. 
    Then I went on to the Sony support page and found this - which works fine, and has very clear instructions.
    http://support.sony-europe.com/tutorials/dime/imovietransfer/imovie.aspx?site=od w_en_GB&f=CAM&m=HDR-XR550VE
    Once again many thanks for helping me along the path to success with this.
    John

  • How can I share a guitar track from garageband ipad DIRECTLY with another iPad with garageband?!

    How can I share a guitar track from garageband iPad DIRECTLY to another iPad with garageband...it would be so easy to just email the track!!!

    Use 3rd party apps to transfer video from one iPad to the other.
    http://i1224.photobucket.com/albums/ee374/Diavonex/Album%205/79b3173fda7b6a6e148 5b463198f6acf.jpg

  • How can I sync up the calendar from Microsoft Outlook email with my ipad 2?

    How can I sync up my calendar from Microsoft Outlook with my ipad 2? Or do I have to enter in all of the dates individually?

    When the iPad is connected to your computer's iTunes, then on the device's Info tab you should be able to select where to sycn a calendar from - from the iPad manual :
    You can sync calendars from applications such as iCal on a Mac, or from Microsoft Outlook 2003, 2007, or 2010 on a PC. (On a Mac, you can sync calendars with multiple applications. On a PC, you can sync calendars with only one application at a time.)

  • How can I get the data back from my game

    How can I get the data back from minecraft if I deleted the app and bought with a different Apple ID

    No, they are tied to the ID that purchased them, and cannot be transferred to anyone else.

  • How can I transfer video to tv from IPOD Classic ,tried with cable

    How can I transfer video to TV from Ipod Classic..I have tried different settings with Composite cable?

    Good afternoon,   I have a Belkin video cable which I bought from an apple seller in our major store.  I can connect it to IPOD and TV, but have an issue in getting videos to play on TV,  I have connected the charger which came with the cable which then plays on IPOD only.   Dont know what to do next....Dont know about input on TV to composite...   If you can help, much appreciated....Virginia

  • How can I capture and take screenshots of all the browser tabs and not only windows ?

    This class identifies all minimized windows and take a snapshot (screenshot) of them. I want to take screenshots also of all the broswer for example chrome tabs windows that are open but not in the front. Same idea that it get now the minimized windows but
    to get the screenshots of the broswer opened tabs ! What should I change in the WindowSnap class? Since both classes are a bit long I added them to pastebin.com
    What i'm doing now is to get all the minimized windows i mean all the the windows in the back if it's chrome browser windows or open tabs if it's program games other windows. This is what i'm doing in form1 constructor:
    this.listBoxSnap.Items.AddRange(WindowSnap.GetAllWindows(true, true).ToArray());
    int numitems = this.listBoxSnap.Items.Count;
    for (int i = listBoxSnap.Items.Count - 1; i >= 0; i--)
    string tt = listBoxSnap.Items[i].ToString();
    if (tt.Contains(" ,"))
    listBoxSnap.Items.RemoveAt(i);
    listBoxSnap is just a regular listBox1 in my form1 designer.
    And this is the WindowSnap class code, it's a bit long code but it's all connected:
    I'm not sure what to show here from this class what is the most important part so i added all the class code to a link to pastebin.com:
    WindowSnap.cs
    What i'm calling/using in form1 constructor from this WindowSnap.cs class is the GetAllWaindows method:
    public static WindowSnapCollection GetAllWindows(bool minimized, bool specialCapturring)
    windowSnaps = new WindowSnapCollection();
    countMinimizedWindows = minimized;//set minimized flag capture
    useSpecialCapturing = specialCapturring;//set specialcapturing flag
    EnumWindowsCallbackHandler callback = new EnumWindowsCallbackHandler(EnumWindowsCallback);
    EnumWindows(callback, IntPtr.Zero);
    return new WindowSnapCollection(windowSnaps.ToArray(), true);
    EnumWindowsCallBackHandler is:
    private delegate bool EnumWindowsCallbackHandler(IntPtr hWnd, IntPtr lParam);
    EnumWindows is:
    [DllImport("user32.dll")]
    [return: MarshalAs(UnmanagedType.Bool)]
    private static extern bool EnumWindows(EnumWindowsCallbackHandler lpEnumFunc, IntPtr lParam);
    Then i have the class called WindowSnapCollection:
    WindowSnapCollection.cs
    The problem is in form1 constructor i'm getting only 23-24 windows in the listBox1. When i'm doing this two lines:
    this.listBoxSnap.Items.AddRange(WindowSnap.GetAllWindows(true, true).ToArray());
    int numitems = this.listBoxSnap.Items.Count;
    I see in numitems about 30 windows and after filtering i'm getting 20 windows and i checked that's the correct number of opened minmizied windows i have in this example 20.
    Now what i want to do is somehow to get with all this windows in the listBox also all the opened tabs in chrome.
    For exmaple i have only 4 opened chrome windows. But in one of the chrome windows i have almost 40 tabs opened !
    I want somehow to add to the listBox all this opened tabs also as captured screenshots like i'm doing now with the windows.
    This is a screenshot of my program showing what i'm doing and what i get:
    So now i have 19 windows captured in the next refresh it will show 20.
    My question is if there is any way to capture also all the chrome opened tabs in all the windows if any opened tabs are opened at all ? Now i'm getting only the chrome opened windows captured screenshot. But i want to get also the chrome tabs captured screenshots.

    Hi Chocolade1972,
    Since this forum is discussing about Windows Forms general like winform controls, and your issue is related with Windows Desktop SDK, I will move this thread to the more related forum.
    Thanks for your understanding.
    Best Regards,
    Edward
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click HERE to participate the survey.

  • How can I capture AVHDC video files from Panasonic HD video camera??

    I just received a Panasonic HS300 video camera and can't copy the video files on my computer.
    I see several files in the CAM_HDD camera folder on the desktop. But the only relevant files for me to copy are the JPG photos. I don't see any video files.
    In the specs of the camera they write that I should have a Mac with an Intel processor. Is that the problem???
    I even tried to copy the files on a PC (I succeeded) and then brought them on my computer with a USB stick. It didn't work: again, the only relevant files that I could see were the JPG, no trace of any video (but they were indeed on that USB stick!!).
    How can I access those video files and use them in Final Cut Pro, or even iMovie??
    I'm becoming afraid that i won't be able to use that camera unless I buy a new Mac now!!!
    thanks!

    you need this: http://www.shedworx.com/voltaichd
    the native iMovie / FC AVCHD codecs are only for Intel Macs, the format is a highly compressed HD format which needs to be unpacked & converted for use.
    The powerbook may not be up to editing these files. expect a slow process of exporting & working with the footage.
    Message was edited by: kmac1036

  • How can I get an SVG file from a PSD made up of Smart Objects?

    I have a Photoshop file made up of Vector Smart Objects. How can I get a single vector file from this? I eventually need an SVG file.

    You can't. PS doesn't do SVG and even if it did, it wouldn't retain SO vectors in teh way you probably expect it to. That's simply not how SVGs work. You will have to use Inkscape, Illustrator or otehr tools, if you realyl need vector SVGs.
    Mylenium

  • In iMovie '09, how can I capture a still picture from the video?

    I have a movie that i got into iMove and I did edit it down and make a nice video from it I uploaded to YouTube. I want to know if there is any easy way to get stills from the video. when I run my cursor over the movie and get it on a person that I want to make into a still photograph is there a way to get that single piece out?
    If I locate the part of the film I want as a still then try and do a screen capture, when i move the cursor to do the capture the pic in the movie changes as I move the cursor. (hope i'm making sense).
    So is there a way to grab a single frame?
    Susan

    Two ways to get a still:
    1) In project, move cursor to the frame. Right-click/add freeze frame. The Freeze frame is placed right behind the current clip in the project.
    2) Select a frame in an Event. Right-click/Add still frame to project. The still is added to the project at the end.
    (after doing either 1 or 2, continue with step 3)
    3) Right-click on the still frame in your project. Select "Reveal in Finder". Drag the JPEG file that you see and drop it on the iPhoto icon in the Dock.
    Hint: You can create a new project just for the stills. This way you will not clutter up an existing project.

  • How can I see My Photo Stream from two Macs associated with the same Apple ID?

    I have a MacBook Pro (my personal machine) and an iMac (our family computer).
    The iPhoto library housing all of our family photos lives on the iMac.
    The iPhoto library on my MacBook Pro is currently empty.
    I have an account on both machines.  I have associated the same Apple ID with both machines.
    When I launch iPhoto on my MacBook Pro and attempt to turn on photo sharing (so that I can see My Photo Stream, as well as other shared streams), iPhoto informs me that "iCloud Photos for xxx@xxx is being used with another library named 'iPhoto Library'."
    My iPhone, which is also affiliated with the same Apple ID, shows the streams just fine.
    What can I do to remedy this situation?  I'd like to be able to view my shared streams on my MacBook Pro, while leaving the actual massive photo library on the iMac.

    I found out about this issue when I created a new library with some photo's I wanted to sync to my iCloud account.  I found the following on the Fat Cat Software page and thought it might be helpful to others:
    Using Photo Stream with multiple libraries
    Starting in iPhoto 9.2, Apple introduced a new feature called Photo Stream, which lets you automatically transfer photos via their iCloud service between your iPhoto library and your other devices such as an iPhone, iPad, or another Mac. This feature works when you have multiple iPhoto libraries set up, but there are a couple things to be aware of.
    First, iPhoto will only allow Photo Stream to be active in one iPhoto library at any given time. If you've already enabled Photo Stream in one library, but then open a second library and enable Photo Stream there, this will cause Photo Stream to be turned off in the first library.
    Any photos downloaded by Photo Stream are actually stored in an entirely separate location from any of your iPhoto libraries. This means that, even if you do switch Photo Stream from one library to another, you will not need to go through redownloading all the photos you already have in Photo Stream back from the iCloud servers. So, switching Photo Stream from one library to another is a relatively inexpensive operation, so you can do it as often as needed without it being much of a hassle.

  • How can I get the audio only from a home made video

    I have several home videos saved on my iPhone and I am wondering if I can get the audio off of the videos to make an audio CD. I have a PC. Windows 7

    Put the clip in an iMovie Project. Then share the project using the SHARE menu,
    Use SHARE/EXPORT USING QUICKTIME
    Choose SOUND TO AIFF.
    AIFF is an uncompressed audio format. You can use iTunes or GarageBand if you need to convert it to AAC or MP3.

  • How can i restore an iPhone 5 from Recovery Mode loop with broken lock/sleep button?

    Hello,
    I just tried to delete all my data from my iPhone 5 32gb iOS 7.0.4 (with not working lock/sleep button) to install iOS 8.0.2 and after that the loading bar appeared on the screen. When it finished, the iPhone rebooted and went into Recovery Mode loop and it is still in it (after 3 hours +). Also, iTunes doesn't detect the iPhone at all.
    I hope, the solution will be found, thanks.

    Any suggestions?

Maybe you are looking for

  • Sql problem, pivot question?

    Hi guys, I have an interesting problem and do not manage to find a sollution. I need to create a report, and we call it variance/trending report. let me explain. I have a table that holds all employess with their salaries, every month. currenly my se

  • Airport Extreme - problem with usb printer and usb disk

    I have Airport extreme with firmware 7.1. I try connect usb disk and usb printer with usb-hub to airport. I can't get disk or printer working. Also try connect only disk or printer without usb-hub to airport getting same problem. How I get disk and p

  • About using F4IF_INT_TABLE_VALUE_REQUEST

    Hi Experts     i want to use F4IF_INT_TABLE_VALUE_REQUEST to show popup with two columns according to type definition below.  as the second field "DES" is not refering to any table field or data element,  therefroe, i am using TYPE C length 200 to de

  • QoS: Multiple acl entries cannot be used in match-any in class Match_XY

    Hello All, I'm getting below error while trying to add the two extended ACL in the class-map for classifying the traffic. Is there any way I can add two extenteded ACL in the same class-map for classifying the traffic. Error log: "QoS: Multiple acl e

  • Win7-64 Photoshop CC blank Save As dialog, then crash, when working with video / frame animations

    Hi, I recently updated to CC from CS6 and am having issues when working with PSDs containing video layers, or are set up as frame animations:  When attempting to Save As, the dialog will be completely blank except for the Save and Cancel buttons.   I