ActionScript 2.0 :: Create A Button For The User To Click And Then Have A Choice To Save Or Open File?
Jul 28, 2005
I'm developing Flash for a CD.I want to create a button for the user to click and then have a choice to save or open file (like PDF or Word file).
i have the following code:
Code:
myButton.onRelease = function()
{
getURL("abc.doc");
}
I can't see anything wrong with the above. I intend to use the code for a CD ROM.abc.doc will sit on the CD ROM. When I click on the button, it opens a browser window and tries to go to google.com.I had it working the other day.
View 2 Replies
Similar Posts:
Jan 19, 2006
I need to open a popup(html) form a Flash projector.
And I need save Files with "Save as window" from a CD to user choice...
View 1 Replies
Oct 21, 2010
i can only find info on this using AS3.i, however, am still using AS2.i need to create a button that a user can click to download an MP3.the only thing i could think to do was use a getURL, but when i do that, it opens the MP3 file and starts playing it in the browser. i need it to open a "Save As" dialogue, instead. I'm totally stuck on this one.the MP3 for download is located in a folder called "music" (music/A.mp3)
View 6 Replies
Apr 22, 2010
i have some code that looks like this
function main9Click(event:MouseEvent):void {
var main9URL:URLRequest = new URLRequest("N:ICTNationalsUnit 2PagesCars");
navigateToURL(main9URL, "_self");[code]....
I need to make it open so when you click on that button it opens the file
View 1 Replies
Dec 11, 2009
step1- I got an xml that is locally loaded(works fine)
step2- the content goes into a datagrid that is displayed (works fine)
step3- In AS3 I dynamically add some lines to this xml file(works fine)
step4- I save it locally (works fine)
step5-and want the datagrid to be updated..(works not-so-well)
So, in step 4, the data is saved into the xml file, but in order to finish the save, the user has to click on the "Save as" windows in order to have the file updated of course.. and that's where's my problem, how can i tell flash to wait till the user actually saves the file, before reload the xml file in the datagrid ? here's the code :
[Code]....
View 3 Replies
Dec 21, 2011
I have create a game and added keydown event on Stage but but problem is user need to click on stage then it start capturing keydown event. I want that when game window open after that user don't need to click on flash stage area for unable keydown event..
View 1 Replies
May 1, 2011
I have a flash project where I have two movies that are supposed to synchronize, depending on user choices. Most of the time they do, randomly they do not. So I thought perhaps there is something wrong with the code I am using.
Code:
on (press){
this.movie1.gotoAndPlay(random(this.movie1._totalframes));
if(this.movierandom.enabled == false){
this.movie2.gotoAndPlay(this.movie1._currentframe);
}}
What's supposed to happen is, when the button is pressed, movie1 goes to a random frame and plays. If movierandom is not enabled, movie2 is supposed to go to the same frame as movie1 and play. Movie1 and movie2 have the same number of frames. Occasionally, movie2 goes to a different frame.
View 1 Replies
Jul 27, 2009
I'm looking for a way to do this from a website. From what I can tell this is possible but if you're going to use flash you need flash media server?
View 1 Replies
Jun 25, 2009
I want to make a flash form where the viewer/user can watch a video clip of their choice (from a drop-down control or something else if there's a better way). I've found myself totally unable to find our how to do this. I mean, frankly, I don't even know what kind of file to start from the "New..." form at the beginning of Flash (CS 3.0, btw)!
I know how to create a Flash Player and link it to a single video. What I envision is that after the page comes up, with a single player component (initially empty), the user chooses a video from the drop-down list and that video starts playing in the player. What kind of file should I be starting with? {I kinda assume I'll be making an SWF to put on a web page.} Where on earth do I learn how to get the simplest things (e.g., button clicks, etc.) to work?
View 2 Replies
Sep 28, 2010
I am a developer in Web Flash Game.(I use AS3.0) I want to save and load the swf-file to a local disk of any user,Because I want to decrease the time for loading a flash movie from site.Is it possible?If it is possible, I hope the swf-file has only one loading from site and it will be loaded from a local disk of any user after that. (I know a concept of Internet temporary file. I want to know the other techniques of only using AS3.0.)
View 3 Replies
Apr 25, 2008
Its meant to be a background preloader, so it loads stuff in, but if the user selects something it stops, loads the choice item and removes it from the "to be loaded"...loadArray. so when it restarts it knows not to load it again
Setback/feature 1: if a user choices to select an item, it will continue to load whatever is loading and start to load the item they want.
Setback/feature 2: the preloader will not restart until the user calls userCont().... should I have a timer so after awhile it kicks back in?
Error: just realised I have to stop it when it gets the end of the list.
Code:
stop();
//loadArray = stuff to load
//targetArray = target for stuff to load into
//loader(loadArray, targetArray);
// call loader function
[Code] .....
View 1 Replies
Nov 27, 2009
I would like to force a pdf to be saved to disc rather than opening in a browser window? I am actually executing the command in flash in a button instance like this
on (release) {
getURL("http://website.com/pdfs/pdf_document.pdf", "_blank", "GET");
}
So how can I do this so it gives the pop up window of save to disc option?
This may be an ASP.NET issue too?
View 0 Replies
Mar 12, 2011
How can save data into a XML file without user prompt dialog in Action Script 3?
I'm writing an simple application (with adobe flash) that runs on client PC and save user state data in XML file in same directory of app. When i use FileReference it shows a user dialog for saving file. Is there any class to save just XML data directly into XML file?
I think writing just XML (text plane) data couldn't make any security problems?
View 3 Replies
Sep 8, 2011
I want to save logs of user's operation by accessing log script file(for example, log.php) with post or get parameter from my flash application.The flash is web application not desktop application.In jQuery, javascript can access other files on the web site by using the following code:
$.post("test.php", {a: 1, b: 2}, function(data) {
console.log(data);
});[code].....
View 1 Replies
Aug 14, 2009
i have some xml-files stored at a specific folder on my server.now i want the user to be able to choose one of those xml-files (best solution would be that he has to press a button and a "file browse"-dialog opens, which shows him the xml-files, which are stored on the server). what would be a good solution to implement this functionality?
View 1 Replies
Dec 29, 2011
I am trying to create an interactive animation which allows the user to click on objects which then starts a new animation and i'm having trouble with removing the old animation movieclip and adding the new one my code is this:
stop();
var snake:Loader = new Loader();
var box:Loader = new Loader();
var snake2:Loader = new Loader();
[code]....
(its after the box is clicked I want the snake animation to be removed and the 2nd snake animation to be added)now I reckon I dont need the boolean.
View 3 Replies
Aug 26, 2011
there are source files of a function which save the files on mouse drag, i just want that this function will start working on button click?
I am uploading the all source files for you!
the all functions are working very fine, but i want to know is it possible to capture the stage area when we click on a ENABLE button?
I just want that Snapshot functions will start working on button click, when we click enable button it should drag and save images, and when we click disable button it should stop the function.
View 0 Replies
Feb 21, 2004
Whats the AS for a quit button? I want to open a small window when the user clics on a button, and have a quit button on the corner
View 4 Replies
Dec 8, 2009
How can I open a browse dialog for user to select a file ;after selecting file, the address to be passed into a variable for later use?I mean I want btn1 to open a browse dialog and var1 to get the address of the selected file on my local drive.
View 6 Replies
Nov 22, 2010
Adobe Flash CS4 - ActionScript 2 Right now I have a button with a Up and Over frame. I already found a way to do this task but it gave me some problems so I want to find a more elegant way:I double clicked my button and clicked on either frame and added this code:
Code:
on (release){ getURL("javascript:LightboxDelegate('imgs/Lizart_1_x768.jpg','Scape oil 60x76cm / 24x30 inch')"); }
but it does not work. Where do I have to put this code in order to work?
View 4 Replies
Mar 23, 2010
in actionscript, is there a way to open CD ROM Drive when you click a button?
View 2 Replies
Jan 17, 2012
I have a tab navigator which contains the 4 tabs Account, Configuration, System and Dashboard. In the Configuration tab there is a button labeled add new config. If the user clicks this button the system tab should open - how to do this?
View 1 Replies
Sep 27, 2003
i'd like to know if its possible to save information obtained from users to files if the user is accessing the flash file from a cd. I would also like to know how it works if possible. And can the flash file be in .exe instead of .swf?
View 5 Replies
Dec 10, 2009
I'm creating a site and i want to let the user to click a button and open a windows componenet that will load a movieclip that will content a Loader that will load an external image
my problem is that I want to set the contentpath of the loader dynamically
so i create a global variable and it works well , my problem is how to set the contentpath with this value
how to get the reference on the loader , i have tried alot of things many times but when i try to trace the values , i'm always get undefined value
View 1 Replies
Jun 17, 2011
Is there a any way to create a txt file in as3 and save reports in that file?
View 1 Replies
Jul 11, 2010
I just want part of my flash movie to open a new window when the button is pushed instead of taking the user away from my site.
View 2 Replies
Jun 17, 2011
Is there a any way to create a txt file in as3 and save reports in that file?
View 2 Replies
Aug 19, 2010
how to make lightbox window open from flash. I just want to click a button to open a lightbox window.
View 1 Replies
May 5, 2003
Is anyone know how to write the actionscript to open the notepad and calculator when click on the button?
View 12 Replies
May 25, 2010
iam using a template, i designed everything alright but need to know how to click a thumbnail to open a file in the root directory.The XML file for the thumbnails looks like this currently and everything in the flash movie work and the explorer window opens to he link:
<?xml version="1.0" encoding="utf-8"?>
<thumbnails>
<thumbnail filename="ms.jpg" url="http://www.myspace.com/XXXX" [code]...
but instead of a URL I want a file to be opened (a mp3 or wmv or swf or exe) in its own window or default player...What is the code i would use? A similar flash template would be this http:[url]....but when you click each of the thumbnails, i want 1 to open a mp3, one ar flash movie etc
View 1 Replies