Can a user capture a jpeg of a flash game and email it to friends?

I'm looking into making a game where kids can drag and drop
to make there own picture. Is there a way to allow the user capture
their work and send it to their friends (any email address) via AS?
And help is a appreciated. I just need to know where to
begin...

How to do this in as3 .
Plz.
"kglad" <[email protected]> wrote in message
news:faibmv$3bg$[email protected]..
> it's much simpler with as3 but there's no native export
method.

Similar Messages

  • I erased my HD. Now I can't instal mountain lion from my bootable flash drive, and keep getting "installation error. Try again."

    I bought  mountain lion, made a bootable flash drive.
    I booted from it and it went to upgrading right away!
    So I stopped it and went to my former recovery partition I erased my HD because I wanted a clean start.
    Now I can't instal mountain lion from the bootable flash drive, and keep getting "installation error. Try again."
    and there is no 4 choices window.
    I don't know what to do.

    How did you create the USB install thumb drive? If it was with Disk Utility I have run into this problem and have since used THIS program to make the USB install drive.
    As to your problem you only have one option and that is to Reinstall the Original OS X version that came on your computer or if you still have the Lion Recovery Partition use that to reinstall Lion. Or if you system came with Lion and you have No Lion Recovery HD Partition you can boot the system from over the internet and Reinstall Lion.
    At startup hold down the Command+Option+r keys until you saa a spinning Globe in the center of the screen. Once that loads Repartition the drive as One partition and then reinstall Lion.

  • Why can't I set my downloaded .dm ringtones as text and email notifications?

    I have an HTC Incredible 2;  I paid for and downloaded several ringtones from the Verizon store, two of which I wanted to specifically use as the text and email notification sounds.  I then had the already discussed problem of not being able to find the newly downloaded ringtones immediately, but from the postings on here and the Adriod forums, I followed the directions to set up the folders titled Ringtones, Notifications, and Alarms on my sdcard, and moved the downloaded ringtones into their respective folders.  When I opened up the Personalize menu, under Sounds I was immediately able to find the ringtones I'd placed in the ringtone folder, but my phone wouldn't recognize the ringtons I'd placed in the Notifications folder.
    I downloaded the app Zedge, downloaded specific Notification sounds (.mp3, and they work).  I also downloaded .mp3 ringtones and then moved them into the Notifications folders, and THAT worked.  The problem seems to be that these are .dm files?  Is my phone unable to read .dm files as Notification sounds?  Or is there something I missed?  Something else I can do?
    I looked all over for software that will convert .dm files to .mp3, found a suggestion calling for the deletion of a couple of the lines of code from within the .dm file using Notebook ++, but that didn't work.  I don't remember seeing anywhere in the store that these ringtone files come in the protected .dm filetype; that many players will not be able to play them, and that I won't be able to use them for notification sounds?
    Ay one have any suggestions?  Verizon: am I doing something wrong?
    Thanks in advance for any help.

    Usually when you purchase ringtones from the Verizon store, you can only use them as ringtones. Since you have a smartphone, an app would be the best bet. You can find almost any song you're looking for in a free ringtone app, there's no need to purchase them.

  • How can i record a name a score in a flash game and write down in a soreboard?

    Hi. I wrote down the summary of my project so that you can
    understand and answer me more easily:
    I have to build an application (a little flash game) in which
    I record the number of clicks. I want the player to choose a nick
    at the beginning and when he finishes one or all the four choices
    of target, i want the application to write his nick and final score
    in a database for displaying in a scoreboard (hall of fame). All
    the new entries should be sorted according to the score. If the
    same nick appears again, it's final score will be modified in the
    scoreboard only if is higher then the previous.
    I was thinking of creating a variable for the name that is
    chosen at the beginning and a variable for the score that is
    recorded. When the player finishes the game i want the application
    to write his data in the database, and then to display the
    scoreboard (let's say top 10 players in the database from the
    highest to the lowest score).
    I never did this before so i am asking what database shoud i
    use? I need a programmer to create one for me? Or can flash
    generate the database?
    Is the variable the good way or should I aproach the problem
    by other means? And if a programmer creates a database in MySql is
    that good or he should convert it to XML, or Flash generates the
    XML?
    Thank you.
    Mark this message as the answer.

    The bottom line is you cannot write to a file (database or
    XML files) directly from flash.
    I have done a number of projects where I needed to have
    access to an XML source or a database. In these cases I had to
    create server side script. I have done them in .NET, PHP ASP.
    The only option you have is to use the Flash's Shared Object.
    This does not store the data indefinatly and has a limited size
    (100K). Let me know if you need further info.
    With regards to using a variables depends on how you are
    writing your game. If you are creating classes in ActionScript then
    all the data can be stored within the class members. For example
    you could have a Player Class and store all the player related
    information in that class until the game is over. On the other hand
    you can just use varibles to keep things simple.

  • Ad-User script to check if expired password = true and email helpdesk

    I have a script that runs each day and reminds my users that their password will expire. This works well.
    I'm having trouble creating a script to email our helpdesk once the password has expired so engineers can reset it automatically.
    The code I have displays nothing yet I know I have expired passwords.
    Get-ADUser -filter {(Enabled -eq $True) -and (PasswordNeverExpires -eq $False) -and (PasswordExpired -eq $True)} -properties PasswordLastSet, PasswordExpired, PasswordNeverExpires, EmailAddress, GivenName
    Please help!

    I looked at a test user meeting these criteria. Although the AccountExpirationDate was in the past, the AccountExpired property was still $False. I'm not sure what process is responsible for changing the AccountExpired property based on AccountExpirationDate,
    but this is where your script seems to fail. 
    This works:
    Get-ADUser -filter {(Enabled -eq $True) -and (PasswordNeverExpires -eq $False)} -properties PasswordLastSet, PasswordExpired, PasswordNeverExpires, EmailAddress, GivenName, AccountExpirationDate |
    Where { $_.AccountExpirationDate -lt (Get-Date) }
    Sam Boutros, Senior Consultant, Software Logic, KOP, PA http://superwidgets.wordpress.com (Please take a moment to Vote as Helpful and/or Mark as Answer, where applicable) _________________________________________________________________________________
    Powershell: Learn it before it's an emergency http://technet.microsoft.com/en-us/scriptcenter/powershell.aspx http://technet.microsoft.com/en-us/scriptcenter/dd793612.aspx
    Account expired is derived by the Classes.  It is not on the raw object. It is all that needs to be checked.  If an account is not set to be expired then that will always be false.
    Like this:
    Get-ADUser -filter * -properties * |?{$_.passwordexpired}  | select passwordexpired
    You can also do the math.
    ¯\_(ツ)_/¯

  • How can i bypass my icloud account i forgot the password and email? please help me

    Please help me I forgot the first account that I used to my ipod touch 5th gen. After I reset it they are finding the first account that I used but I forget it both email and password because I'm using other account what I am going to do now to activate my ipod pleade some one help me

    Yo need to recover the account and password
    Is there a way to find my Apple ID Name if I can't remember it?
    Yes. Visit My Apple ID and click Find your Apple ID. See Finding your Apple ID if you'd like more information.
    How do I change or recover a forgotten Apple ID Password?
    If you've forgotten your Apple ID Password or want to change it, go to My Apple ID and follow the instructions. SeeChanging your Apple ID password if you'd like more information.
    However, if you are the original purchaser of the iPod and you purchased it directly from Apple they may be able to help
    Contact iTunes
    Contact iTunes

  • Why can't I fill out a PDF in Adobe Reader and email it with the saved information?

    When I fill out a PDF in Adobe Reader and "Save As" to desktop the filled out information goes blank when I attach it to an email. Additionally, I can't save to word or excel except for online. What can I do to fix this?

    Try using Adobe Reader XI (fully updated).
    Be well...

  • HT1349 Hi can u help I've been trying to download games and it's showing declined on my card detail when I have purchase games before not even allowing me to download free games can u help please

    Hi I can not download as my card details keep saying declined even with free games I have purchased games before can u help

    There seems to be a problem with your payment details with the credit card associated with your Apple ID. You need to correct that before you will be able to download anything. Use the Settings app to check payment detail.
    Settings > iTunes and App Store > tap on your Apple ID > View Apple ID > enter Apple ID password > Payment Information
    View and correct your payment information. You could have an expired card. Your card may be blocked by the issuer of the card.

  • What is the best way to have Mac setup for sync-ing 2 calendars?  Any way to change? When we 1st got our Macbook we unknowingly set it up wrong--as 2 separate users, with separate everything. Good for contacts and email, bad for calendar, photos, music.

    What is the best way to have Mac setup for sync-ing 2 calendars?  Any way to change?  When we first got our Macbook we unknowingly set it up as 2 separate users, with separate everything.  Now I have an iphone and I want to sync calendars but not contacts or email.  Any direction you could give would help! thx

    Anyone...anyone? Bueller...Bueller?

  • Can I broadcast multiple video chats using Adobe flash player and "RED5 flash server"?

    Hello...
    I've just joined today, and I had a question about RED5 & Adobe... Does anyone know if it is possible to broadcast multiple video  chats using Adobe flash player from "RED5 flash server"?
    Thanks,
    P.delafortune

    I am not sure whether any one of us has experience with RED 5 server - it would be best if you can post of RED 5 forums and try to get solution to your query. If you have any related query with respect to FMS - please feel free to post again.

  • New iPad user; confused after apple ID change of password and email address. New details NOT recognised by iCloud and actual iPad? Help! Thank you

    I'm new to my iPad &amp; Apple!
    I have updated/ changed details within my Apple ID; email, contact details and changed password.
    This has worked &amp; recognised when using updated password for use with Apple's web site (e.g. Able to login to this site) &amp; all other apps with the EXCEPTION of iCloud and also my actual iPad ("internal/own" software/OS I would presume?!).
    Shortly after turning my iPad on, the Apple ID request pops up showing my old email address. I have tried entering old &amp; new passwords which both fail. I now cancel this request and continue ok.
    This also happens with iCloud: as just mentioned, the request for Apple ID comes up with old email address and neither old or new passwords are accepted (&amp; therefore I can not back-up to iCloud).
    Can anyone help please?
    With anticipated appreciation and thanks,
    NJohnR
    (Maybe I should mention that while I live in the UK; Scotland, I am currently on holiday in France while I have made further changes to my ID password, though was at home when made initial changes).

    I have resolved this problem!
    I try &amp;change my email details within my iPad's iCloud settings. Though the primary (old) email could not be changed.
    So I took advice from further searches here &amp; on the iCloud site &amp; went ahead and deleted my iCloud account. Success! Immediately after deleting the account I had a request to open &amp; login to a new iCloud account with my new Apple ID login details already there (showing my new email address &amp; requesting my password- all which worked fine). Also I have not lost any files.
    I hope that this may help someone else in the future.
    Happy Appleing all

  • Can you chose multiple contacs at once, before you send and email? there must be a way

    Please someone help me with these issue. I made my mum buy and ipad instead of a personal PC, promising it would make her life easier. She only use this device to send mails to hers friends. She its complaining that every time she has to send a mail, she spends 5 minutes choosing the contacts she want, one by one (instead of leting her chose the ones he like in a row and the clik add just ONE time)
    Thanks for your time

    There are a few things you can do. The first is hit reply all to an old email (assuming that this is the same group of friends each time) and just delete the content a type a new email. This way you don't have to type in any addresses. The second is that you could create distribution lists using the Notes app. This way you can create multiple groups of friends for different emails. What you would do is create a new note and at the top write Group A or whatever you want to name it. Then type all of the email addresses of the people you want to email. Save that and when you want to email those people go to the notes app and double tap on a word to bring up the copy/paste slider. Copy all the email addresses (make sure when you type them you separate them the same way the Mail app does) and paste them into the To: field of the message. This can be done for multiple groups of friends by writing different notes. If each email is to a completely different set of people, I am afraid not much can be done.

  • Dvd games and programs are opened as files? Can't get them to run at all, dvd games and programs are opened as files? Can't get them to run at all

    okay, so whenever I try to play a game or run a program from a cd/dvd-rom my macbook opens them as a file and doesn't allow me to run them.

    What games?.....Mac games or PC games?......we will need more info to help....

  • Itunes didnt help user i have all case number from apple and emails

    yes itunes didnt help any one also my i have id with 184 dollar and i make it none no visa or paypal and i cant purchase any thing all my information is ok i buy before with it they fix it one time and it come back again and second day i have same massage and 20 days call them every day about 4 hours and put me in hold i know all apple advisor they work good and want to help you but itunes didnt want help i send to them too many emails no one answer me and all they say to advisor security cant tell you and some one else say its locked and other say it blocked and no of that they say come to me on my ipad i think if i call again they will say this account is not verfiy lol i will stop use any thing from apple again they didnt help they give anyanswer and not working

    stop. think. open another account. complaining is only healthy to a doctor. Nobody here works for itunes.

  • HT4623 my ipod 4th generation  - i can not get on settings? it just flashes on and off again. i can not update it

    How do i sync my ipod touch with my laptop?

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup. See:                                 
    iOS: How to back up                                                                
    - Restore to factory settings/new iOS device.             
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar                       
    Note iOS 7 is not compatible with the 4G iPod
    As apple said in June, iOS 7 is not compatible with the 4G iPod touch.
    All the iOS devices compatible (iPhone 4 and later, iPad 2 and later, and 5G iPod touch) with iOS 7 have at least 512 MB of memory (RAM). The 4G iPod only has 256 MB

Maybe you are looking for

  • FYI -- Tab Index and Safari 4 (Mac)

    I finished building a website recently and had incorporated Tab Sets on a few different pages.  Additionally some Accordion Sets as well.  Didn't think anything of it and finished off the project - let the site go live and haven't thought much about

  • Zipping file attachments in OBIEE scheduler

    Hi, I have a requirement to zip the xls attachments that are being sent from the OBIEE scheduler. Pls assist . My OBIEE version is 11.1.1.6.7 and is running on Windows server 2003 Thanks, John

  • Connected to 2 monitors, but Preview opens partly off-screen when opened

    I thought I would take another run at this. There are two other posts like this but neither has an answer. One is dated Mar 23, 2010 and the other is dated Apr 8, 2010. As with the other questions, I have two monitors and the preview application disp

  • X11vnc not working

    I had made a thread a long time ago here:  https://bbs.archlinux.org/viewtopic.php?id=52538  however I reinstalled since some times and haven't used VNC in a while, and now can't get it to start... What I am doing is ssh'ing into a screen session to

  • How to put outputText inside javascript?

    Hi guys, My javascript code is like below initially:                    var field = document.getElementById(theText).innerHTML;                    if(field=='Add'){                         document.getElementById(theText).innerHTML= 'Ignore';