Auto save Flash file / Save target as

Is there a way to put a Flash file on a page and
automatically prompt the user to "save target as" when they click
on the link? I am posting the file and a link below to the Flash
file. I'm hoping to set it up so that when the user clicks on the
link, they are automatically prompted to "save target as", but not
sure if this is possible. Help, suggestions? Thanks in
advance.

ip the file you want to be downloaded - then point to the
zipped file.
--> Adobe Certified Expert *ACE*
--> www.mudbubble.com
--> www.keyframer.com
flash nubee wrote:
> Is there a way to put a Flash file on a page and
automatically prompt the user
> to "save target as" when they click on the link? I am
posting the file and a
> link below to the Flash file. I'm hoping to set it up so
that when the user
> clicks on the link, they are automatically prompted to
"save target as", but
> not sure if this is possible. Help, suggestions? Thanks
in advance.
>

Similar Messages

  • Would a 347 MB file be slow? Auto save and auto type turn off?

    I am doing an art inventory and add jpegs of the art. I don't resize them they range from 750k to 3MB. I guess if it is slowing the program down i should? It currently is 267 rows by about 18 columns.
    Thanks in advance.
    Oh can I turn off auto save and auto type? That may help. How do I do that?

    Done.
    Enter Scrip Editor
    paste the posted script
    File > Save > as Script  on the Desktop
    Move the script to the folder :
    Macintosh HD:Library:Scripts:Folder Action Scripts:
    CAUTION, you will be asked to enter your pasword.
    Create a folder to do the job. I named mine Normalized. I created mine on the Desktop where it's easy to reach.
    Go to :
    Macintosh HD:Library:Scripts:Folder Actions:
    Double click the alias :  Configure Folder Actions
    Below the left column, click
    navigate to select your new folder
    Below the right column, click
    select the script image - normalize400.scpt
    After that, drag and drop a picture file onto your folder.
    The original will be move in the folder Originals (isn’t it original ?)
    and a reduced copy  400 x height will be stored in the folder Normalized images.
    And now, here is the script :
    --{code}
    Image - Normalize
    This Folder Action handler is triggered whenever items are added to the attached folder.
    The script rotates the image counter-clockwise (left).
    Copyright © 2002–2007 Apple Inc.
    You may incorporate this Apple sample code into your program(s) without
    restriction.  This Apple sample code has been provided "AS IS" and the
    responsibility for its operation is yours.  You are not permitted to
    redistribute this Apple sample code as "Apple sample code" after having
    made changes.  If you're going to redistribute the code, we require
    that you make it clear that the code was descended from Apple sample
    code, but that you've made changes.
    modified by Yvan KOENIG (VALLAURIS, France)
    2011/12/08
    This version normalize pictures so that
    (1) the greater dimension become the width one (rotate left if needed)
    (2) this greater dimension is ruled by the property maxWidth defined below.
    property maxWidth : 400
    -- set it to fit your needs
    property done_foldername : "Normalized Images"
    property originals_foldername : "Original Images"
    property newimage_extension : "jpg"
    -- the list of file types which will be processed
    -- eg: {"PICT", "JPEG", "TIFF", "GIFf"}
    property type_list : {"TIFF", "GIFf", "PNGf", "PICT", "JPEG"}
    -- since file types are optional in Mac OS X,
    -- check the name extension if there is no file type
    -- NOTE: do not use periods (.) with the items in the name extensions list
    -- eg: {"txt", "text", "jpg", "jpeg"}, NOT: {".txt", ".text", ".jpg", ".jpeg"}
    property extension_list : {"tif", "tiff", "gif", "png", "pict", "pct", "jpeg", "jpg"}
    on adding folder items to this_folder after receiving these_items
              tell application "Finder"
                        if not (exists folder done_foldername of this_folder) then
      make new folder at this_folder with properties {name:done_foldername}
                        end if
                        set the results_folder to (folder done_foldername of this_folder) as alias
                        if not (exists folder originals_foldername of this_folder) then
      make new folder at this_folder with properties {name:originals_foldername}
                                  set current view of container window of this_folder to list view
                        end if
                        set the originals_folder to folder originals_foldername of this_folder
              end tell
              try
                        repeat with i from 1 to number of items in these_items
                                  set this_item to item i of these_items
                                  set the item_info to the info for this_item
                                  if (alias of the item_info is false and the file type of the item_info is in the type_list) or (the name extension of the item_info is in the extension_list) then
                                            tell application "Finder"
      --set name of this_item to "YK#" & (text -4 thru -1 of ("0000" & i))
                                                      my resolve_conflicts(this_item, originals_folder, "")
                                                      set the new_name to my resolve_conflicts(this_item, results_folder, newimage_extension)
                                                      set the source_file to (move this_item to the originals_folder with replacing) as alias
                                            end tell
      process_item(source_file, new_name, results_folder)
                                  end if
                        end repeat
              on error error_message number error_number
                        if the error_number is not -128 then
                                  tell application "Finder"
      activate
      display dialog error_message buttons {"Cancel"} default button 1 giving up after 120
                                  end tell
                        end if
              end try
    end adding folder items to
    on resolve_conflicts(this_item, target_folder, new_extension)
              tell application "Finder"
                        set the file_name to the name of this_item
                        set file_extension to the name extension of this_item
                        if the file_extension is "" then
                                  set the trimmed_name to the file_name
                        else
                                  set the trimmed_name to text 1 thru -((length of file_extension) + 2) of the file_name
                        end if
                        if the new_extension is "" then
                                  set target_name to file_name
                                  set target_extension to file_extension
                        else
                                  set target_extension to new_extension
                                  set target_name to (the trimmed_name & "." & target_extension) as string
                        end if
                        if (exists document file target_name of target_folder) then
                                  set the name_increment to 1
                                  repeat
                                            set the new_name to (the trimmed_name & "." & (name_increment as string) & "." & target_extension) as string
                                            if not (exists document file new_name of the target_folder) then
      -- rename to conflicting file
                                                      set the name of document file target_name of the target_folder to the new_name
                                                      exit repeat
                                            else
                                                      set the name_increment to the name_increment + 1
                                            end if
                                  end repeat
                        end if
              end tell
              return the target_name
    end resolve_conflicts
    -- this sub-routine processes files
    on process_item(source_file, new_name, results_folder)
      -- NOTE that the variable this_item is a file reference in alias format
      -- FILE PROCESSING STATEMENTS GOES HERE
              try
      -- the target path is the destination folder and the new file name
                        set the target_path to ((results_folder as string) & new_name) as string
                        with timeout of 900 seconds
                                  tell application "Image Events"
      launch -- always use with Folder Actions
                                            set this_image to open file (source_file as string)
                                            set {oldW, oldH} to dimensions of this_image
                                            if oldH > oldW then
                                                      set {oldW, oldH} to {oldH, oldW}
      rotate this_image to angle 270.0
                                            end if
                                            set |échelle| to maxWidth / oldW
                                            if |échelle| < 1 then scale this_image by factor |échelle|
      save this_image as JPEG in file target_path with icon
      close this_image
                                  end tell
                        end timeout
              on error error_message
                        tell application "Finder"
      activate
      display dialog error_message buttons {"Cancel"} default button 1 giving up after 120
                        end tell
              end try
    end process_item
    --{code}
    Yvan KOENIG (VALLAURIS, France)  jeudi 8 décembre 2011 21:25:33
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • Auto Save to Spread Sheet file every N samples

    I am in the need for a way to automatically save data to a file for every N-samples that are acquired.  I've written the attatched reentrant subVI, but there are some problems.  Whenever I have it in my program loop it hogs the process (stalling data acquisition) and just writes the initial values a bunch of times (the file quickly goes into the 10's of megs).  I don't know where I'm going wrong in my algorithm.
    Here is the algorithm I'm trying to realize with this subvi.
    Inputs:
    1. 1 x M array
    2. number of samples to record at a time (N)
    3. path to folder to automatically save files
    Algorithm:
    Initial run:
    1. Create file name based on current date/time and folder path input.
    2. Initialize an array that is N x M (so the number of rows is the number of samples to record, by the number of columns coming from the input).
    3. Place the first row of input data into the first column of the array.
    Subsequent runs:
    1. Place the input data into the next position of the N x M array
    2. If and only if current_input_count % N == (N - 1) then save the data to the autosave file.  (note: %=modulus operator)
    My typical sample rate is around 2-5 samples per second.  I need this because some of our tests are really long (like hours long), and if the DAQ computer fails to save the final data set then we pretty much lost the entire test.
    Sorry my G code is so sloppy.  Thank you for any input.  I'm targetting LabVIEW 8.
    -Nickerbocker
    Attachments:
    Auto Save N Points.vi ‏22 KB

    For "automatically saving the data to a file for every N-samples that are acquired", you might have to use LabVIEW measurement file for storing your samples. Also, I have slightly modified your code. Double click on the LabVIEW Measurement file and then check different options available to store your samples. Hope this helps.
    PS: Assuming that this is the only probelm you have, I didn't go through your algorithm.
    Attachments:
    Auto Save N Points.zip ‏51 KB

  • Flash Cs6 spinning wheel every five minutes or so? Not auto-save

    Why does Flash Cs6 give me a spinning wheel about every five minutes?
    It is strange because the spinning wheel causes Flash to be 'not responding' for about 15 seconds, but then the wheel goes away and it is fine. For a while I thought this was the auto-save, but then I changed the auto-recovery period under preferences to every 15 minutes- and I still keep getting this spinning wheel every 5 minutes.
    Or could there be another location that I need to change auto-save, aside from the general tab of preferences?
    Thanks very much for any help,
    Jeff

    hi katie - I found that the spinning ball pause comes from 3 things:
    1) having "Auto-Recovery" on in Flash preferences. It's found under "General," near the bottom.
    2) having "Auto-Save" on in the individual document's composition settings.
    3) the more complex the file's contents, the more noticeable and long this auto-save or auto-recovery becomes, sometimes turning into a significant pause in the work flow.
    I've found that Flash CS6 isn't too stable and crashes  often enough to be a problem, so I've given up and left these save functions on. I'm up-to-date with my updates, and it's still a crashy-software.

  • HT5824 I've been using numbers for iPad and I accidentally deleted a column. And the auto-save feature saved that and now I can't undo it. Does iCloud storage have backups of saved files from like 10 minutes ago? I have number

    I've been using numbers for iPad and I accidentally deleted a column. And the auto-save feature saved that and now I can't undo it. Does iCloud storage have backups of saved files from like 10 minutes ago? I have numbers synced to iCloud.
    I tried to undo it but the app crashed.
    I am hoping there's like a previously saved version of my file in iCloud somewhere. 

    No, iOS does not do short term incremental back ups to iCloud such as you get with Time Capsule.It backs up when you do soo manually, or if set properly, when the device is plugged in and connected to WiFi. It will not have saved your changes as of 10 minutes prior.

  • How to reveal a .swf server directory behind a host html index file to save a Flash file to HD?

    I FIND YOUR FLASH FORMAT EXTREMELY USER-UNFRIENDLY.
    I spent two weeks to figure out how to save a complete .swf
    file to my local drive.
    Finding 48 files behind a main html doc hosting those .swf's
    took 48 hours.
    (Now I can't move my arm anymore due to RSI!)
    No application to save a Flash file, seems to be able to do that
    in 1,2,3 convenient steps.
    I always get bits and pieces or individual graphics.
    I NEVER GET THE ENTIRE MANUAL the way I can browse the Flash
    file in my browser.
    I am seriously thinking of never browsing a Flash file again
    if there is no solution to download e.g. a manual of my digital
    camera.
    I have the right to browse such a file at my convenience either
    on or offline! Online it's just impossible due to server
    overload.
    Now I only get the desadvantages of the format to deal with
    (e.g. tons of spamming advertising) whereas I should be able to
    enjoy the benefits. Eventhough I gave the manufacturer the right to
    fill up 10 MB on my drive, I never got a file on my PC. And even
    when I did, I wouldnt know where to find it...
    I hope Adobe would listen to the user more often...
    WHY DON'T YOU BUILD SOLUTIONS AS EASY AS A RIGHT MOUSE CLICK
    ALLOWING FOR SAVING A FLASH FILE!
    That can't be rocket science, is it?
    Thank you for paying attention to your customers.

    You can add parameters to the flashvars property in the HTML wrapper:
    http://livedocs.adobe.com/flex/3/html/help.html?content=passingarguments_3.html
    http://livedocs.adobe.com/flex/3/html/help.html?content=wrapper_01.html
    If this post answered your question or helped, please mark it as such.

  • My Multiple Saves On A Flash File Gone? [URGENT HELP NEEDED]

    Hey guys,
    I am very disappointed with the fact that I've been working on a school project on a Flash file for numerous days, and yesterday, I was close to completetion when I found out that none my saves were updated. Basically, I spent hours working on the project and I saved my Flash file multiple times; however, I just opened my Flash file today and found out that all of the updates that I had made on the file were gone. Is there any way I can still recover the file/updates through cache possible, and what may have gone wrong?
    What I have Tried To Solve The Issue:
    - I have done a full scan of the computer but only found the non-updated file.
    - I had dragged the saved file onto my USB the previous day before I turned off the computer, but the Flash file on the USB is the non-updated file as well.
    - Try to find a cache, unsuccessfully.
    - Browsed this forum but found nothing.
    - I even checked my Recycling Bin.
    Other Info:
    - I am using Flash CS3.
    - The folder which contained my Flash file has all of the images that I had edited with PhotoShop CS3, as well as the images that I had downloaded online. It's only the Flash file that is old.
    Please help me out on this as soon as possible as it's a school project. My hours worth of time is gone and I really don't want to have to start again while there may be a solution to this out there. Thank you very much.

    You best bet is to get your san folks to give you some disk space for a mount point on the last node in the cluster. Once they assign the lun (not raw) have your SAs make it a mounted file system such as /dbbackup.
    Run all of your rman backups on your last node on the cluster. The only draw back is, if that node dies, then you will not be able to run backups. but your backups would be safe as they are on the san.
    Only way to have a mounted file system on all nodes in your cluser is to have some sort of third party file system cluster ware .. such as veritas or OCFS2 - then all nodes could see it.
    I feel the first node in the cluster (the primary node) is the most busy out of the rest .. so thats why the suggestion of running rman on the last node in the cluster.

  • Can't use "save target as" feature in Firefox 7.0.1, all files are saved with .htm extension! Why?

    I'm no longe able to save a file using "save target as" feature, when I'm googling for a file.
    No matter what the file extension is (ppt, pdf, doc, etc.), Firefox 7 downloads a .htm useless file.
    I rember I had this issue in FF long time ago! Is this a regression?

    Now up to Firefox 8 and the problem persists. Cannot go to the www.turnitin.com page and login as I used to do -- Firefox does not remember my username or password.
    Still works on Windows, and with other browsers... It would be great if a fix is available.

  • I am using Unix sites and they use links to files. If I use IE I can save target and it works. If I use save as in Firefox it only saves the link. I have res

    http://code.google.com/p/mkgmap-style-sheets/source/browse/#svn%2Ftrunk%2Fstyles%2Fworld
    Is the website. I am trying to download the files. Yes I can open and manually save them but the stock standard IE save target does not exist in Firefox and the Save Link only saves the link. The whole world has struck this problem so please do not say it works. It does not!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    Ever thing works as it should in IE.

    On code.google.com, when I compare Fx22 and IE8, the links on that page both want to save the HTML and not the actual code. In both cases, I need to go to the HTML view then right-click and save the "View Raw file" link on the right side to get the actual code file.
    If you need to save a lot of files while browsing, perhaps a subversion client and/or subversion add-on would make it more efficient?

  • Cant get FF to auto save .txt files like it does .doc files.

    when i change the action in the application section for a .doc file (ie open with... or save) it works. But if i try same for a .txt file it just opens the file and wont auto save it like a doc or rtxt file. Using FF 13.0.1. Windows 7.

    Hi,
    One way you could try is to right-click the link and '''Save Link as'''.

  • I would like Flash files to open in Flash after download but the only option is to save the file. I do not find flash in content type.

    Flash is not listed the Content type list in the applications tab Firefox prefs.

    I can download Flash files and save them but they will not automatically open Flash when downloaded . . . normally a mime or what FF class Content type . . .

  • Flash CS5.5 Auto-Saves Even When Auto-Save is Turned Off In Preferences

    So I'm using Adobe Flash Professional CS5.5, and in the preferences, I have the "Auto-Recovery" set to "5 minutes", and it's turned OFF. However, about every minute or so, my projects auto-save. It's annoying because it freezes it for about 2 seconds. It's especially annoying when I'm in the middle of drawing something or doing something like that. It screws me up, and it's annoying. It's DEFINITLEY turned off, and it auto-saves for me still. Yes, I KNOW it's definitley auto-saving, because the asterisk (*) in the project title disappears after it's done loading for 2 seconds every minute. Help. Thanks.
    Here's my PC's specs if you needed to know......
    OS - Windows 7 Home Premium 64-bit SP1
    Motherboard - GIGABYTE P45T-ES3G
    Processor - Intel Pentium Dual-Core E5400 @ 2.7GHz
    Memory - 8GB of Dual-Channel DDR3 @ 1333MHz
    Video - EVGA NVIDIA GeForce GTS 450 1GB
    Storage - 1x SATA 750GB HDD @ 7,200rpm, 1x IDE 160GB HDD @ 7,200rpm (910 GB Total)
    Power Supply - Ultra LSP650 Pro (650w)
    Optical Drive - DVD Multi Recorder

    Hi ,
    Autosave and Auto- recover is two different option . If you need to disable or set  the Autosave options please  follow the steps below  :
    1 ) Create a New Document dialog box has an option to set Autosave OFF & ON
    2) In Document PI under Properties section click on wrench  image i.e  Edit document properties button and turn ON / OFF Auto -Save option.
    I hope this help.
    Thanks
    Sukhbir
    Flash Authoring

  • Flash CS5.5 Auto Save Issues

    Alright, I've been having this annoying issue with flash. Flash auto saves my project every 10 minutes, but, I would rather have flash save every thirty minutes. This can be very aggravating, because, when every I return to use flash It is saving. When I am in a rhythm working on a project flash interrupts me to autosave.
    Autosave is great in that It has saved me having to redo work, but, I would rather choose to save when I am ready.
    I tried to change the auto-recovery setting to a different amount of time. FlashPreferences>General>Auto-Recovery
    This does not work. Flash will continue to save every 10 min.
    Any thoughts or solutions would be appreciated.
    Thanks in advance!
    -Pat
    Bike Lust Comics
    http://www.BikeLustComics.com

    Thanks Sukhibir!  I found the setting and set it to 30 min. I can stop pulling my hair out now!
    At first, I was a little confused about where to find the wrench so I made some screenshots to help people find this:
    Thanks again!
    -Pat
    Bike Lust Comics
    http://www.BikeLustComics.com

  • After I upgraded to OSX Mountain Lion, QuickTime no longer auto names and auto saves, my recorded files.

    After I upgraded to OSX Mountain Lion, QuickTime no longer auto names and auto saves, my recorded files.

    Try using one of these video players. VLC usually works with most files.
    Video Player - Divx
    Video Player – Flip4Mac
    Video Player - VLC

  • Premiere CC - no auto save files since yesterday

    Hi
    I have been working all day in Premiere CC - then crash. That happens, but when I realize that there is no auto-save file from today I get quite frustrated to put it mildly (yes I know I should have saved manually). Does anyone have a clue what can cause such a fatal error? I have searched the system for newer auto-save files with no luck. This is going to be a terrible night!
    Here is a screenshot of my auto-save folder:
    I am working on a Retina Mac - OS X Version 10.9.4 2,7 Ghz 16GB ram. Premiere CC 2014.0.1

    I just had the same problem and lost a project due to this.  I was working on something for the past two hours and there have been zero auto saves since the other day.   Sucks, it's setup to do this every 15 mins and it didn't even do it once during this most recent session.

Maybe you are looking for