Saving/storing/exporting bitmaps created within .swf's on the user's harddrive or a server

Hello,
I know you can store variables in shared objects. Is there a way to save bitmaps created within the swf?
So for example
var myBitmap:BitmapData = new Bitmap(... etc.);
//saveBitmap(myBitmap, "C:\...") ???
Thanks?

you're welcome.
p.s. here's a link to the as2 solution i've used before, Quasimondo - Mario Klingemann's Flash Blog: Flash BitmapExporter: Compress and Save Images
(p.s when using the adobe forums, please mark helpful/correct responses, if there are any.)

Similar Messages

  • Best way to create a conact list from the user profile properties

    We have a customer looking for a phone book utility, starting with a table showing main user information and with some search options. We would like o base it on the user profile properties and not to create an indipendent studion record browser porlet.
    What is best way to create a conact list from the user profile properties ?

    I did something like this using search.  It can get messy, so you need to take care with it.
    * Identify the properties you want to make accessible to search (ex: name, etc.)
            - add them to the user property map
            - flag them as searchable
    * I broke down and used the native server API.  I'd still suggest this approach.
    * Write some simple code to do vcard export if you like
    (my code is all in vb.net)
    I really believe this is the "right" approach, but honestly, this was a bit painful and has been
    messy for us given some other business issues.  (to my chagrin we have users with 2-letter last
    names...)
    I have code you're welcome to poke at, but it's more or less slapped together and has various
    different search methods commented out so you can see how I tinkered w/ the remote vs. server
    API.
    If you'd like it mail me at [email protected] and I'll send you a zipped copy w/ a
    readme.  I hope it may be useful to you as both a starting reference.

  • I would like to create a form that gives the user opportunities to provide information on as many as 50 projects. Does Adobe FormsCentral allow for this "expandable" type of form, such that if someone only has 10 projects, they can complete the form as ea

    I would like to create a form that gives the user opportunities to provide information on as many as 50 projects. Does Adobe FormsCentral allow for this "expandable" type of form, such that if someone only has 10 projects, they can complete the form as easily as someone with 50 projects. In other words, is there a way to make the form "expandable?"

    Hi Ms Buckner,
    Yes, you can do this with the Show/Hide "Skip" logic rules.
    1. Suppose, for example, you have your first ten projects showing by default.
    2. At the end of those fields, you would have a Yes/No question asking if the person wanted to add more projects.
    3. If they answer "No", they move on to the next section/area/question/etc.
    4. If they answer "Yes" you have the form display ten more project fields that you had already included, but you had hidden up to this point.
    5. Repeat steps two, three, and four as often as needed. (It helps that you can copy and paste fields, including groups of questions, so you don't have to manually re-create them each time.)
    It means you must anticipate the maximum number of times you want to provide project fields, but you've already done that, and you have to build the form with that maximum number, but only display smaller portions at a time until they have filled in all they need.
    I hope that helps,
    Brian

  • How  to trace() a variable nested inside another clip that is created at run time by the user ???

    Hi again Now i have another problem
    i explain :  on my stage i have 24 instance MC Page created at runtime (when cliked the button execute 24 instance MC Page from the library). Each of those MC Page create an xml  with infos (not important), this variable_XML created is nested inside each MC Page.. From my stage i want to call each XML from each MC Page  for make 1 unic  big xml, then send it to the server.
    So from the main stage i created a button that call each xml of each MC Page (there is a definit number of Page only 24, no more, no less). So
    when the 24 instances of the MC Page are created I push there instance name inside an Array "Page_Array". Now in my function exportxml
    i use get ChildByName(Page_array[number]) for find them then i can apply my method to the according MCPage.. Until here no problem, trace(dispObject.name) work. but when i try to get my variable inside the MC Page : trace(dispObject.my_variableXML), it doesnt work...Why ??
    here is my function (only 1 page for this example ):
    function exportxml(evt:MouseEvent):void {
        dispObject=getChildByName(Page_Array[0]);
        trace(dispObject.name); //trace  Page1
         trace(dispObject.my_variableXML);// here it dont trace the variableXML
    normally if i trace(Page1.my_variableXML); , it should trace "my_varableXML"  no ??

    when i export my movies Im so worried  to see if it work that  i clicked the button that trigger the function exportxml before the actual my_variableXML is created , so is normal that the code above didnt work... so all is normal and it work... sorry i will think 10 time before posting next time. promess .

  • I want to create a questionnaire and store the user answers in an array or a database

    My project is creating a questionnaire in Flash and then storing the user answers in an array or a database for later analysis. although i was excellent in coding when i was in college, recently i forgot many parts.. so i need help badly to finish my project...

    You should show what code you are having trouble with.

  • How do I create a form that enables the user to save the form filled in?

    When I create the form, save it and open it later, I get the message that the form can only be saved empty - without whatever the user filled into the text fields. Why is this and how can I enable the form to be saved including the content of the fields?

    It should only say that when used with Reader versions prior to version 11. If you have Acrobat, you can Reader-enable the form, allowing it to be saved in versions prior to 11, and 11 as well. Exactly how you do this depends on what version of Acrobat you're using:
    A9: Advanced > Extend Features in Adobe Reader
    A10: File > Save As > Reader Extended PDF > Enable Additional Features
    A11: File > Save as Other > Reader Extended PDF > Enable More Tools (includes form fill-in & save)

  • Creating a temporary file in the user computer

    Hi everyone,
    I want to create a new file using:
    File folder = new File(folderString);
    when folderString should be a folder where all temporary files of the user are saved (its a dynpage code).
    So I found the following code in <b>JavaScript</b>:
    var  cTemporaryFolder = 2,tmpdir='';
    var fso;
    fso     = new ActiveXObject('Scripting.FileSystemObject');
    var fso;
    tmpdir     = fso.GetSpecialFolder(cTemporaryFolder);
    But how do I combine the code with the statement
    File folder = new File(folderString);
    (I eventually need: folderString = tmpdir - but one variable knows <b>java</b> and the other <b>javascript</b>)
    Thanks so much.
    I promise to award points...
    Ruthie.

    Hi Ruthie,
    Try out this code
    try{
    // Create a temporary file object
    File f = new File("d://TestTemp");
    File tempFile = File.createTempFile("mail", "temp",f);
    System.out.println("Created temporary file: " + tempFile + "\n");
    // Delete temp file when program exits
    tempFile.deleteOnExit();
    // Write to temporary file
    BufferedWriter out = new BufferedWriter(new FileWriter(tempFile));
    out.write("TEMP FILE: " + tempFile);
    out.close();
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    System.out.println("Press any key");
    br.read();
    System.out.println("Temp File will be deleted");
    catch(IOException e) {
    e.printStackTrace();
    Now, the temp file will be created in d:\TestTemp\ folder. Before pressing any key just check in this folder. You will see the temp file. Pressing any key will exit the program. After this check the d:\TestTemp\ folder, the tempfile will be deleted.
    Regards,
    Uma

  • Using dbca to create a db and all the users are locked and expired

    I create a template using dbca on 10gR2 with schema and data and when I use that to build a clone on another machine the users passwords are all locked and expired. I am doing this in silent mode from the command line and I am looking for a flag that produces the unlock users passwords feature which seems to be there if you manually run dbca from the GUI.

    This is a unix script I use to unlock accouts. I should notice this script is used for educational pourposes, in a production database it is not a good practice to leave demo accounts unlocked and overall with login=password.
    sqlplus -S /nolog <<ENDSQL
         connect / as sysdba
         SET LINESIZE 132
         SET PAGESIZE 0
         SET TERMOUT OFF
         SET NEWPAGE 0
         SET SPACE 0
         SET ECHO OFF
         SET FEEDBACK OFF
         SET HEADING OFF
         SPOOL x.sql
         SELECT 'ALTER USER '||username||' IDENTIFIED BY '||username||' ACCOUNT UNLOCK;'
         FROM   dba_users
         WHERE  account_status LIKE '%LOCK%';
         SPOOL OFF
         @x.sql
         !rm x.sql
         exit
    <<ENDSQL~ Madrid.

  • I created a mobileconfig to setup the users POP email accounts but it creates to accounts on their device.  Why?

    I created a mobileconfig profile using the Apple Configurator to help our users setup their POP email account.  For some reason the configuration creates two email accounts in iOS 8 but only one in iOS 6.  When I delete the profile in iOS 8 it only deletes one of the accounts and leaves the other as an orphan.  I cannot even manually delete the account that is left behind.  Any help will be greatly appreciated.

    Funny,
        Right after I posted this I found the solution......  The key was not modifying the Script after it is created.  I guess the editor was putting in some incompatible characters somewhere.  Anyway it is working great now.

  • I saved as template , and created one editable region in the content area

    I have four pages from the template; the index, services, products and services.  Now if i want to create a sidebar for the services page only. How do I do that without the template updating to all the pages. I just need the service page with the sidebar.
    Your contribution is greatly appreciated.

    Create a #Sidebar style in your external CSS and a place for it in your main Template.dwt.
    On child pages where you don't want the #Sidebar to appear, embed a page specific CSS rule like this:
    <style type="text/css">
    /**PAGE SPECIFIC STYLES GO HERE**/
    #sidebar {display:none}
    </style>
    Nancy O.

  • How do I create a form that allows the user to import a photo?

    I am creating a form in Acrobat 8 Professional (MAC) that will be used by PC Reader users. Users need to be able to import photos into the form. How do I import images into a form?

    Would these topics at this link help?: (Click Here)

  • Web Deploy Package : Create WebDeploy package without installing the web deploy tool on remote server.

    Hi,
    I didn't get any valid category for this item. Hence creating it under C#.
    I have two machines source machine, where the web deploy tool is installed and the target machine where the websites are hosted.
    I want to run the web deploy command in the source machine and it has to create the Web Deploy package for the website hosted on the Target server.
    Basically the Web deploy tool will NOT be installed on the destination server, but still i want to create packages from it. How this can be achieved?
    Regards,
    Pradeep R

    Hello,
    you can move your thread to the asp.net forum, in the installation ans setup section:
    http://forums.asp.net/17.aspx/1?Installation+and+Setup

  • Stored Proc to create .csv file from table

    Hi all,
    I have a table with 4 columns and 10 rows. Now I need a stored proc to create a .csv file from the table data. Here the scripts to create a table and insert the row's.
    Create table emp(emp_id number(10), emp_name varchar2(20), department varchar2(20), salary number(10));
    Insert into emp values ('1','AAAAA','SALES','10000');
    Insert into emp values ('2','BBBBB','MARKETING','8000');
    Insert into emp values ('3','CCCCC','SALES','12000');
    Insert into emp values ('4','DDDDD','FINANCE','10000');
    Insert into emp values ('5','EEEEE','SALES','11000');
    Insert into emp values ('6','FFFFF','MANAGER','90000');
    Insert into emp values ('7','GGGGG','SALES','12000');
    Insert into emp values ('8','HHHHH','FINANCE','14000');
    Insert into emp values ('9','IIIII','SALES','20000');
    Insert into emp values ('10','JJJJJ','FINANCE','21000');
    commit;
    Now I need a stored proc to create a .csv file in my local location. Please let me know If you need any other details....

    Some pointers:
    http://www.oracle-base.com/articles/9i/GeneratingCSVFiles.php
    http://tkyte.blogspot.com/2009/10/httpasktomoraclecomtkyteflat.html
    also, doing a search on this forum or http://asktom.oracle.com will give you many clues.
    .csv file in my local location.What is your 'local location'?
    A client machine? The database server machine?
    What database version are you using?
    (the result of: select * from v$version; )

  • Create fully automated Outlook profile at user first time logon to the windows

    Hi experts, I do have one scenario and its quite urgent...
    I have one email address, that to be act as a notification email from Outlook.
    The thing is we need to have Outlook fully setup with profile and password when an user log in.
    I have done the prf and plan to have it fired with VB script when user logon(using windows logon startup script function).
    The prf can be successfully fired and its created profile in outlook, however the user credentials logon will be prompted everytime the user log on, and the user will not know the password, except us, email administrator.
    This is carried out in :
    - Azure Windows server 2012
    - Outlook 2013
    - And the user will not access remotely to the server, they will only access to RDP, which we hosted our application.
    (And the mentioned application will need to send some notification email to the users.
    I hope i have not missed out anything. Anyone please shed some light for this.
    Your help is appreciated !

    Hi Melon,
    Thanks for quick reply !
    Yes. I have setup prf file and not able to store any password in it. Our user will have to type in the password in the prompted windows. The thing is we are not exposing the password to the user. In fact, they are not able to view the windows screen as they
    are only connect to RDP application.
    Now we are using Exchange account and soon we will migrate our email server to Office 365.
    VB Script as something below (which i downloaded from online resources) :
    'Name:  
    'CreateOutlookProfile.vbs
    'Author: 
    'Jack (Aka "IT Guy")
    'Purpose: 
    'This script searches under HKCU in the registry for an Outlook profile 
    'with the specified name. If the profile is present, the script terminates. 
    'If a matching profile is not found, the script launches Outlook with the
    '/importprf switch, and imports a custom .prf file from the path specified
    'to create the profile.
    'Prereqs: 
    'You must first create a .prf file with the custom settings required for
    'your environment using either the Custom Installation Wizard included 
    'in the Office XP/2003 Resource Kit Tools, or the Office Customization
    'Tool (OCT) included with volume-licensed editions of Office 2007/2010.
    'In Many environments, Office 2003 is the lowest common denominator, so prf
    'files created with the 2003 CIW should be used, to ensure compatibility
    'with all Outlook clients. (XP/2003 prf files are compatible with 2007/2010)
    'License:
    'You are free to use this code for personal or commercial purposes. No 
    'attribution is required, though it is always appreciated! The only thing
    'I ask is that you do not re-post this on another website, but rather post
    'a link to my blog (http://AdmiNuggets.blogspot.com) instead. Furthermore, 
    'I offer no warranty or guarantee of functionality with this script, meaning 
    'that you are responsible for any negative or unintended effects it may have 
    'on the environment in which it is executed. DO NOT USE THIS SCRIPT if you do 
    'not agree to realease me (the author) from all liability associated with its use. 
    'Thanks!
    '*******SPECIFY THE PROFILE NAME TO BE USED, AND PATH TO YOUR CUSTOM PRF BELOW:********
    PRFLocation = "D:\NetLogon\Azure\AzureNotificationOutlook.prf"         
    ProfileName = "AzureNotificationEmail"
    Set WshShell = CreateObject("WScript.Shell")
    HKCUprofile = "HKCU\Software\Microsoft\Windows NT\CurrentVersion\Windows Messaging Subsystem\Profiles\" & ProfileName & "\"
    If Not ProfileIsPresent Then 
     ImportPRF
    End if
    Cleanup
    Function ProfileIsPresent
     On Error Resume Next
     ProfileKey = WshShell.RegRead(HKCUprofile)
       If Err <> 0 Then
        ProfileIsPresent = False
        Err.Clear
       Else
         ProfileIsPresent = True
        End If
    End Function
    Sub ImportPRF
        WshShell.Run "outlook.exe /embedding /importprf " & PRFLocation, 1, False
    End Sub
    Call CloseOutlook()
    Public Sub CloseOutlook()
     Dim objOutlook
     Set objOutlook = CreateObject("Outlook.Application")
     objOutlook.Quit
    End Sub
    Sub Cleanup
     Set WshShell = Nothing
    End Sub
    Best Regards,
    Zyn Xeng

  • Creating a .swf in InDesign, is there anyway to export it into a more compatible format?

    I am not sure if the above question is actually what I am asking.  I created a training module using a ton of these .swf files in InDesign.  The .swf files don't line up with the timeline so they can't be paused, fast forwarded or controlled in anyway.  The course was created in Articulate Storyline, their solution is to import it as a video and not flash. When I do that it becomes a static image.  I have the cloud,  I attempted to pull it into After Effects and then export it, but it again, I cannot import it.. (I am still in the beginning stages of learning that program.)  I've installed Flash Pro and attempted the same.
    Is there anyway I can make these files into a compatible format, say mpg-4?
    Thanks!
    Monica

    I wrote that wrong. I create all of my images, backgrounds, designs, and animations in InDesign. From InDesign, I export the images as jpgs and the animations as .swfs.  From there, I import the .swfs into storyline as a flash object, and it plays normally; however, in the player within storyline, while viewing the course, when the slide is paused the .swf keeps going.. If it's fast forwarded, the .swf starts from the beginning.  My goal is to have it work with the player controls, pause with the slide, and continue where it left off - all of that.
    The only way to do so, which I found in the storyline forum, is to import it as a video.
    So the animations I created in Indesign, exported to a .swfs, I attempted to pull into After Effects and then export them; however, it doesn't actually play or seem to exist in after effects - or in Flash Pro, even Premiere.
    Sorry if this confusing.
    Thanks a lot!!

Maybe you are looking for

  • Choppy video

    I have the latest version of iTunes. I just went to watch a tv program purchased on there and it is choppy- it keeps stopping. The audio is perfect.The same program plays fine on my iPod. Any suggestions?

  • To sort it

    Hi, I tried to sort the list by putting sortcriteria in the page def but it's not sorted properly

  • Uninstall Adobe acrobat 8.1

    how can i uninstall Adobe acrobat standard 8.1 from a WinServer 2003R2 server without the installation CD ? during uninstallation it s asking for  the installation CD, but i don t have it anymore. thx in advance.

  • Request Forum inputs for Insert statements

    Hi All, I have a scenario as mentioned below and need your inputs to improve performance Package Sample Procedure A Insert into Table A(); End Procedure A Procedure B Insert into Table B(); End Procedure B Procedure C Insert into Table C(); End Proce

  • Mac Pro (Late 2006) all volumes stuck on mute and I can't change it.

    I have a late 2006 Mac Pro 3Ghz dual. Recently the volume dropped down to nothing and when I access the control panel, I see the mute button checked on all outputs except the digital (the one I have never used). All inputs are also muted and I cannot