IDE :: Save And Open Custom Screensaver

Apr 3, 2010

ive made a screensaver for work, and i was wondering if anyone could help, basically ive set it up with 2 scenes first scene u enter the details of a pc, memory processor hdd, etc, then on scene 2 with the help of a chatbox it sends the text from scene 1 over to scene 2, now my problem is everytime i switch the pc off, i then have to re-enter the data, is there any way of saving the data so when the movie is clicked on it comes up as a default with the data from the last input??? or can i save the text, and open it in the flash movie??

View 1 Replies


Similar Posts:


Open A Save As Window For Jpeg?

Apr 2, 2009

Is it possible to open a save as windows from flash to download a jpeg? At the moment I can download a zip file using the following code, but when I change the extension to .jpg it opens up a new browser window showing the image. [code]...

View 1 Replies

ActionScript 3.0 :: Save Data Outside Of Flash And Open It Later?

Aug 18, 2009

I want to save data my computer, that i got from playing my flash movie.

i'd prefer it if i'd be able to save the data on the computers of other people aswel, but i mainly need to save it on my own comp while developing the flash movie.

So want to be able to dynamically save/load data from actionscript.

View 2 Replies

Professional :: Save A Specific Set Of Open Files?

Feb 9, 2011

I'm trying to figure out if it's possible to save a specific set of open files in Flash so that when you close the app and then reopen it, you would either see the files that were open when you closed Flash or at least have the option to select it and it woud then open those files in the order that you left them.
 
With all my class files open at one time, I hate having to reload them into the order that makes sense to me every time I launch Flash.I was looking into the Projects panel which seems like it's in the direction of what I would like but I can't seem to find anwhere that saves open files.

View 1 Replies

IDE :: Save The Custom Gradient?

Dec 12, 2009

I really need to save this gradient, but i don't know how to?

View 2 Replies

ActionScript 3.0 :: Save Custom Class To Database?

Dec 8, 2009

I have a complex custom class which contains custom subclasses and so on. I want to save the state of an instance of this class to a database.Currently I'm using a ByteArray.writeObject which seems to work well as I am using registerClassAlias, so all custom classes are being picked up and serialised correctly.writeObject uses the AMF standard to "flatten" classes, but is AMF the best way to go to store the entire state of a class into a database?

View 9 Replies

ActionScript 2.0 :: Force A Pdf File To Save To Disc Rather Than Open In A Browser Window?

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

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

Way To Save A Custom Component That Enters Lines Of Code Automatically?

May 10, 2010

I work as a Flash Developer. There are lines of code I use maybe hundreds of times a day that I have to type out each time. Is there any way to save these custom lines of code to the ActionScript tools library?Or would there be a way to save a custom component that enters the lines of code automatically?

View 1 Replies

ActionScript 2.0 :: Save Instance Of Custom Class With Local Shared Object?

Mar 26, 2008

I am programming a web based application with Actionscript 2.0 classes for flash 8, and I want to save user data using the local shared object.As the data is potentially rather complex I would prefer to store it in an instance of a custom class that I then stick in an array property of the local shared object data property.However, when I try to do this, if I retrieve the stored object it seems to have lost all its instance methods. If I do a for in on it, I can see the private properties to which I have assigned my data, but as they are private I cannot retrieve them.how I can store an instance of a custom class in a local shared object without it being corrupted in this way?

View 4 Replies

ActionScript 2.0 :: Creating Open Source Custom Player?

Mar 18, 2009

I've created a custom video player which links to a specific Video with:

theVideo.attachVideo(ns);
ns.play("videoName.flv");

I have a client who wants multiple players on a page, each playing a different video. The tricky part is that they want to be able to add videos to their website with this custom player on their own, without having to go into the flash file.

Anyone have an idea or where I can find out how to do this? I dont' think XML would work, because it would still have to call a specific node inside flash...and this one swf should be able to work with any .flv they want.

View 2 Replies

Actionscript :: Image Download Open Custom Viewer?

May 26, 2010

i am downloading tiff images from WAMP server using our Flex AIR client. Using the following code for that.

public static function requestDownload(id:int, defaultName:String):void {
//POST params
var urlVars:URLVariables = new URLVariables();

[Code].....

No issues with the download. It automatically prompts for a Save dialog. Works well. But i want to open the image being downloaded in a viewer(flash viewer or any) instead of the save dialog.

View 1 Replies

Web Development :: Save Cropped Image From Custom Shape Mask Action Script 3?

Jun 3, 2011

I've managed to draw a custom shape onto a canvas and use that shape as a mask over an image. Is there anyway possible to crop the image and save it out in the custom shape?making whatever is outside the shape transparent? The only image cropping i can find is using rectangles, whereas i need a polygon shape.

View 1 Replies

Flash - Open Custom Context Menu On Text Area Cortrol In Flex?

Dec 27, 2011

How i open my custom menu over right click on Text Area control, currently default menue of paste, Copy, Cut etc is opened.Please keep in mind that i want to open custom context menu over TextArea Control of Flex.

View 1 Replies

Flex :: Air - Get The Parent Of A Custom Grid Column Filter Editor And Open A Popup Window?

Jan 31, 2012

I am trying to figure out how to open a pop up window in my Air application, in a secondary Window, instead of the main application window.I am using the ReusableFX components, which include a custom DataGrid with filtering and other capabilities. The filtering feature displays a pop up window via PopUpManager when you click on the top of a column in the grid.

PopUpManager.addPopUp(this, FlexGlobals.topLevelApplication as DisplayObject);

The problem is that the pop up window opens in the main application - I am assuming because of the 'topLevelApplication' reference.So, I need a way to open this window in the current Air "s:Window". I am assuming I need a way to walk up : this.parent.parent or this.owner.owner - though I have tried that and it did not seem to work (it said null reference).OR, is there a way to get the current top most window / component (NOT the main application / window)?

Update:I decided to create a new project for the component, and add in the Air libraries. Now I am able to access the "NativeApplication.nativeApplication.activeWindow" call. That gives me the correct Air window. However, it does not seem to be working:

PopUpManager.addPopUp(this, NativeApplication.nativeApplication.activeWindow as DisplayObject);

My popup does not appear. I am assuming because "activeWindow" is not actually a DisplayObject?(so how do I get the DisplayObject if that's the case?)

View 1 Replies

ActionScript 2.0 :: Convert Swf To Screensaver

Feb 8, 2008

i did a search on google to try to convert swf to scr but all i can find is software that you have to pay $40 for. Screensavers are silly little things so I'm not really interested in shelling out $40 for em. does anyone know of a free conversion tool or trick that you can do to get windows xp to play a screensaver from an swf file?

View 1 Replies

Flash - Servering Mulitple Flv Files From Custom Webserver While Keeping The Sockets Open Stops After The 6th Connection

Jun 28, 2010

This is driving me nuts and because it's a combination of various technologies together I have a hard time tracking the problem. I wrote a tiny HTTP server that serves .flv files; these flv files are encoded on the spot. The flv files are encoded with adobe's screencodec (I started with libflv but that was too buggy so I ended up implementing my own flv encoder). For the problem below it doesn't matter which codec I use or if I serve plain flv files instead of on-the-spot generated ones (the problem also occurs if I just send 12 h264 encoded files).

I also have a swf that I coded in as3. The as3 opens 12 connections to my server and requests 12 different flv's and just displays them as 12 different videos on the page. I tested the setup with Firefox and chrome and am using the latest flash client (version 10). The HTTP server is pseudo streaming those files; e.g. it tells the client the file is of mime type video/x-flv, tells the filesize is 2GB and just starts streaming. For sake of completeness here's a header it generates:

[Code]....

View 1 Replies

Flash :: Make A SWF Into A Screensaver For Windows 7?

Jun 16, 2011

Is it possible to make a SWF into a screensaver for Windows 7? How about without the compiler tool?

View 1 Replies

Tools - Screensaver With Flash Running On Win And Mac?

Aug 1, 2011

I was asked to create a screensaver capable to run on both win and mac. I am ActionScript developer, so I prefer to solve this using Flash/SWF. I know this is possible using several tools:Projectors such as Zinc or SWF Studio (os independent, $$$)Converters creating screensavers that use the Flash Player (one converter per os necessary, requires Flash Player on user machine, freeware)Adobe Air created screensavers (os independent, requires Air on user machine, no costs)I do not have control over the machines the screensaver will run. So everything needs to be simple and safe. I would go for option 2, but I am not sure if the tools I discovered are reliable.What tool you recommend to create the screensaver descibed using existing SWF files?Is there another (single) tool to create the screensaver without using Flash/AS/SWF?

View 1 Replies

ActionScript 3.0 :: Convert A Movieclip Into A Screensaver?

Dec 24, 2009

How to convert a movieclip into a screensaver?Or anybody know dynamic screensaver sample

View 1 Replies

ActionScript 3.0 :: Make A Screensaver In Flash?

Mar 13, 2009

Anyone know to go about making a screensaver in Flash or can direct me to any tutorials?

Looking specifically how to make a screensaver the plays a new animation(MC) on a each day during an 18 day cycle, then starts over again.

View 2 Replies

ActionScript 2.0 :: Open The "save As" Box Through Flash?

Aug 9, 2005

i have a button and a external zip file. i want the button to open save as box to save the zip file...

View 1 Replies

ActionScript 2.0 :: Screensaver That Starts When No Mouse Activity?

May 6, 2003

I have a very large projector movie with many loaded in swf files. I want to make it so as you are reading and viewing the whole movie the screensaver is not active. I then want it so after 10 minutes of no activity a screensaver (or movieclip in the movie) starts playing and then goes away when there is activity again. How do I do this? What would be the best way... just have the screensaver (movieclip) the only thing in the first scene and it just goes to this after 10 minutes?

View 18 Replies

ActionScript 3.0 :: Screensaver That Interacts With Time And Date?

Jul 12, 2009

I have been asked to create a screensaver that will show a different movie/message all week, then at the end of the week I would need to have it revert back and do the same all over.All 7 movies (one for each day of the week) will be located inside the SWF file, I just need to know if it's possible for the movies to change over with the computers time and date.

View 3 Replies

Actionscript 3.0 :: Screensaver Load Files From Internet?

Aug 24, 2010

I've been trying to create a screensaver that dynamically loads images and text from a server, but it seems like I am not able to load anything outside of my own computer at all.It seems like the problem is coming from the Security Sandbox, the sandbox type for the screensaver stays "Local_with_file" meaning it can access local files but cannot access files from the network. What can I do to make the Sandbox "Local_with_network" as I do not need to load anything locally, but images and text from a server.

View 1 Replies

ActionScript 3.0 :: Flash Screensaver Behavior Using Timer?

Sep 22, 2010

I'm trying to imitate screensaver behavior using the timer class. A movie clip should play after 5 seconds of not being idle. The problem is everytime I go to the homepage, the timers stack and the adspace runs multiple times. (try switching between button 1 and 2 over and over) timer.reset(); doesn't seem to work for me. Here is my code and FLA file:

[Code]...

View 3 Replies

ActionScript 3.0 :: Flash - Screensaver To Load Files From Internet?

Aug 24, 2010

I've been trying to create a screensaver that dynamically loads images and text from a server, but it seems like I am not able to load anything outside of my own computer at all.t seems like the problem is coming from the Security Sandbox, the sandbox type for the screensaver stays "Local_with_file" meaning it can access local files but cannot access files from the network. What can I do to make the Sandbox "Local_with_network" as I do not need to load anything locally, but images and text from a server.

View 1 Replies

ActionScript 2.0 :: Registering Whether Mouse Has Moved So That Can Create A Screensaver

Jan 4, 2012

I'm basically looking to create a screensaver within the flash file i'm using. So if the person doesn't move the mouse for say a minute, actionscript will detect this and play a movie ( screensaver type one )It's within a digital application and the client wants a built in one rather than making a proper one.

View 4 Replies

ActionScript 2.0 :: Screensaver Effect - Resetting Timer On User Input

Mar 30, 2007

I am currently trying to create a kind of 'screensaver' effect in one of my Flash movies, and I have the following code which counts down from ten to zero:

Code:
displayTime = 10;
countDown = function () {
displayTime--;
if (displayTime == 0) {
trace("Time Out")
clearInterval(timer);
}};
timer = setInterval(countDown, 1000);

The problem I am having is finding the right code to use to RESET this countdown back to ten if the user moves the mouse, clicks a button, presses a keyboard button, etc.

View 1 Replies

ActionScript 3.0 :: Disable A Computer's Screensaver When A Flash Program Is Running?

Mar 27, 2009

Is there any way to disable a computer's screensaver when a flash program is running?
It's for a program that I run locally (converted .swf to .exe).

The program is also used on other computers so changing stuff in the registry or something like that isn't really what I'm looking for.

I tryed changing mouseX but it's read-only..

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved