ActionScript 2.0 :: Sharedobject - Give The User A Option To Save That Layout/arangment?

Oct 29, 2005

i want to create a custumaizable interface that utalises the shared object code.for an over viewi am going to have a series of movieclips that contain navagation elements , that when draged into the order they want will give the user a option to save that layout/arangment .. so everytime they log in its the same ..

View 10 Replies


Similar Posts:


ActionScript 3.0 :: Give User The Option To Skip A Mc/frame?

Sep 21, 2009

I am building a short "introduciton" movie that an orthodontist will show prospective patients. It has 32 pages (frames) each is it's own mc. I have a btn that the user can click and go to a screen that will allow them to choose to dispay or omit 6 of the pages (becasue they may not pertain to their practice). I have no clue how to do this since I am a graphic artist and a novice to Flash. I've watched as many tutorial movies as my brain can handle, and it's about to burst! From what I've read, I think I need to use Flash cookies (local), so that the choices will be remembered.

View 5 Replies

ActionScript 3.0 :: SharedObject - Save User Information And Score

Dec 16, 2009

I'm working on a project using AS3 and timeline coding. How to save user information and score. When I run the movie and complete form and answer quiz questions, information is displayed on closing section, but it doesn't save.

Here are the main sections by label:
// SECTIONS
Introduction (labeled "intro") -- contains directions
Information (labeled "inf") -- collects user information
quiz-questions (25 questions -- from q1 to q25) -- presents questions
closing (labeled "closing") -- displays user information plus score on quiz.

Here is the code by section
// SECTION INTRODUCTION
Section "intro" --- I have one button that goes to "inf" section
stop();
intro_bt.addEventListener(MouseEvent.CLICK, gotoInf);
function gotoInf(evt:MouseEvent): void{
[Code] .....

View 2 Replies

ActionScript 2.0 :: [FLASH CS3] Checkbox Component - Give The Viewer The 'don't Show This Again' Option

Sep 12, 2011

I'm working on a mini-site and there is this opening page with some text bla bla and I need to give the viewer the 'don't show this again' option. I've discovered the components in Flash (yoo-hoo) and so far I've dragged a checkbox to the stage and only been able to change its label in the parameters in components inspector.

The opening page is in scene 1 and I just need the movie to play scene 2 frame 1 if the checkbox is clicked. How do I go about this? I'm very confused with event listeners etc. Could anyone give me a "for dummies" walk through?

View 2 Replies

ActionScript 3.0 :: Save Quiz Score With SharedObject?

Dec 20, 2009

I'm working on a quiz using AS3 on timeline. I can't figure out how to save the score at the end of the quiz.  The result of quiz is displayed by its dynamic text box (out_score.text), but it isn't saved along with the rest of information. When I go back to section I, all information is displayed, but quiz score goes back to zero (0). I have section I, which collects user information. Section II, 25 question quiz, and section III, which displays information and score.
  
SECTION ONE (labeled "inf"):
// score variable
var i:Number=0;

[code]....

View 13 Replies

ActionScript 2.0 :: Creating Save File Using SharedObject?

Jul 31, 2010

I have attempted to create a save file using sharedObject but it doesn't work. I don't get any errors it just doesn't seem to save when I press the save button. In the main frame I have:

Code:
user_so = SharedObject.getLocal("user");
if(user_so.data.tclock != undefined) {
clock_txt.text = user_so.data.tclock;
gregism_txt.text = user_so.data.gregism;
} else {
gregism = 0
clock = -1
}

In the save button movie clip I have:
Code:
on(release) {
user_so.data.tclock = _root.clock_txt.text;
user_so.data.gregism = _root.gregism_txt.text;
user_so.flush()
}

View 2 Replies

ActionScript 2.0 :: Save Option In Right - Click Menu

Apr 12, 2005

I ve recently started to read about Context Menus, but i dont know how i can make a "save" command. Of course this has nothing to do with the context menu, but it would be nice if it was there. how can i make a save option so that a user would be able to save a picture (as if it was an html page)? Does it require use of xml in order a "save as" window can be opened?

View 3 Replies

ActionScript 2.0 :: Save Option In Right-click Menu

Apr 12, 2005

I ve recently started to read about Context Menus, but i dont know how i can make a "save" command. Of course this has nothing to do with the context menu, but it would be nice if it was there. Can anyone tell me how can i make a save option so that a user would be able to save a picture (as if it was an html page) ? Does it require use of xml in order a "save as" window can be opened ?

View 3 Replies

ActionScript 2.0 :: Flash8 Random Number Won't Save Using SharedObject

Mar 23, 2011

On my stage is a dynamic text box and a "save button".The text box shows a random number which somehow does not save.In the fla file I added is a circle whose color can be changed from red to green, just to point out what I mean.

View 3 Replies

ActionScript 3.0 :: SharedObject Data--> Where Is It On The User's Harddrive

Oct 26, 2010

I've looked on Adobe's Flash Player guide and in the official docs, but it's not mentioned. I'm creating a game that saves your progress to the local drive using SharedObjects and want to reassure users about what's going on

View 3 Replies

ActionScript 3.0 :: Give User Input In Flsh Animation?

May 22, 2011

create animation of dc motors whose parameters can be controlled by user input means current,voltage and speed of the rotor...how con i do it..and can i make these type of animation in flash professional CS5?

View 1 Replies

User Interface - Flex Give Yes/No Box For Checkbox Deselect?

Nov 21, 2011

I want to show the user a confirmation box when they deselect a checkbox. My code works although I think it is a bit of a hack. I listen to the checkbox click and then show the alert. Depending on the result I then set the checkbox to be checked again.

My code is

<?xml version="1.0"?>
<s:NavigatorContent xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" >
<fx:Script><![CDATA[

[code]....

the code is specific to cb1 and cannot be reused for other checkboxes the checkbox is deselected when the alert shows. Then when the user clicks no the checkbox is selected again. stop the uncheck event if the user clicks no on the alert box. Is it possible to intercept this in Flex?

View 1 Replies

Php :: Right Clicking On The Flash Image, The First Option Takes The User To Another Website?

Feb 22, 2012

Am working in a wordpress project. It uses many fash images. When right clicking on the flash image, the first option takes the user to another website. How can i remove it?

View 1 Replies

ActionScript 3.0 :: CSS Editor - Read The Code And Then Give The User One Simple UI?

Aug 2, 2009

how the editors work. Which will be the best way to read the code and then give the user one simple UI? I am thinking of using charCodeAt(num) == "{"? But would it be possible for me to read the code? give me example of how editors 'read' the data or point me some issues that i can look through.

View 2 Replies

Data Integration :: Create A Tree Layout That A User Can Navigate?

May 12, 2009

I have been given the task at work to create a interactive tree. A little like a family tree, but instead of people it will be branches (think of them as buildings). I've spent a day or so looking and finding out how to get the data from my SQL database in a format that flash can read it etc. Anyhow the problem is I don't really know where to start with the graphical aspect of it...

Each branch can have more than one child and i want the user to be able to scroll through the history of that branch, seeing it's parent branch and also it's child branches, each branch will have a certain amount of information to show. So it's almost as if i need to create a branch class and then use this and load all the data into it etc.

Should i create a new layer for each branch? Then when the user clicks a down button i just take them to a new layer? Do i create the whole thing on one layer and have navigation buttons so the user can scroll around the window and see all the other branches?

It would be nice if i could draw the damn thing at run time, and the user almost walks along lines from one branch to another, and has the option which path to take if one branch has more than one child etc.

View 3 Replies

ActionScript 3.0 :: Adobe AIR Nested Tables - Save The Information For A Layout Of Movie Clips On Stage

Jul 24, 2010

I am trying to save the information for a layout of movie clips on my stage. I am using the sqlite functionality in order to be able to save the layout to the local database. Each layout consists of several movie clips. My plan was to store pertinent information regarding these movie clips (such as x and y position) in order to be able to reload some new clips in the exact same place.

My problem here is that I want to create just one row in my database for each layout, but I want one column in that row to store the information for each of those clips (in a single row). Is there some kind of nested table functionality in sqlite?6564

View 2 Replies

ActionScript 2.0 :: Save Files With "Save As Window" From A CD To User Choice?

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

Flex :: Give MS Word Like Interface To User To Expand Or Contract Display Object's Like Canvas, Images

Dec 9, 2009

How to give a ms word like interface to a user so that he can enlarge and contract the display objects like Images, canvas, Hrules etc. at runtime in an web application?

View 1 Replies

ActionScript 2.0 :: Sending User-drawn Images To An Adaptable Grid Layout In The Next Scene

Nov 16, 2008

I've created a drawing application intended as an interactive art piece for a gallery. I'd like to have what each visitor draws in one scene to somehow be carried over into the next scene and be displayed on clicking a button. Ideally, the user-drawn images will scale and position themselves accordingly to maximize the screen space. This way, if only three people have visited and drawn something, their three images would enlarge to fill the screen. If 12 people draw something, those 12 images would shrink to fill the space.

I'm thinking I might need to look at creating adaptable/expandable grids, but I'm also just stumped on how to carry user-drawn images over to other scenes. I have very little AS background and need things spelled out for me explicitly...

I'm working in CS3, but writing in AS2. On the stage, I have a palette of colours the user can choose from, a movieclip called "canvas," and another called "controller." Here's my code:

Attached to a movieclip called "Controller" is:
onClipEvent (load) {
topDog = "window1";
_root.createEmptyMovieClip("holder",100);

[Code]....

View 2 Replies

Media Server :: SharedObject.NoAccess Error When Trying To SharedObject.getRemote?

Feb 18, 2012

I've installed developer version of Flash Media Server 4.5 and trying to get remote object, but no matter how I call my object all i get is this error .I've rad configuration guide and it told me that I should set StorageDir for shared objects, enable RPC (<RPC enabled="true">) and allow shared object (<Allow>users</Allow> in <RPC> - <SharedObject> tags)

View 1 Replies

ActionScript 3.0 :: User To Save As Swf Runtime?

Sep 14, 2009

Is it possible to make a feature that allows the user to save as swf?

lets say the user drag and drop something unto the stage.. the user got some sort of timeline to control the tween with.. the user make a second keynote. and moves the object earlier draged onto the stage, so now if user press "play", the object will move.. and now the 1million dollar question.. is it possible to save this tween/movement as a SWF? (or avi or whatever..) as long as it can be loaded again later? - using xml is not an option in this case.

View 6 Replies

ActionScript 3.0 :: Save User Location In A Course?

May 20, 2011

I am trying to save user location in a course. I am looking for the a simple way for a new Flash CS4 and Actionscript 3 user. The program will be copied to the users hard drive. I am creating a course that has 3 topics each with about 8 sections. The user can go to any of the topics in order and when they complete can do a final assessment. I am looking for a simple way to keep track if the user has finished any of the topics, then to keep track of where they are in a section, so when they return to the program they can pick up where they left off. Also, wondered if their is a next label command like the nextScene command?

View 4 Replies

ActionScript 2.0 :: Save The User Data?

Mar 21, 2012

I am trying to save user data and I keep on coming up with the same problem. The problem code is highlighted red in the ITEM.as file. The problem is that when I update the variable it updates the savefile also, when it should not! I do not have a clue what is wrong because I am putting the traces for the savefile in one right after the other so the code can't be executing elsewhere right?

SAVE.as

ActionScript Code:
class Save_mc extends MovieClip {
var nSaveAnim:Number = 0;
function onEnterFrame() {

[code]....

View 0 Replies

ActionScript 3.0 :: How To Save User Information And Score

Dec 15, 2009

I'm working on a project using AS3 and timeline coding. I can't figure out how to save user information and score. When I run the movie and complete form and answer quiz questions, information is displayed on closing section, but it doesn't save.
 
Here are the main sections by label:
 
// SECTIONS
Introduction (labeled "intro") -- contains directions
Information (labeled "inf") -- collects user information
quiz-questions (25 questions -- from q1 to q25) -- presents questions

[code]....

View 4 Replies

Flex :: Save User Login And Password?

Jul 27, 2010

What's the best way to save user credentials in flex? Local storage doesn't seem like good place for storing confidential data, because it saves information as a plain text.

View 5 Replies

ActionScript 3.0 :: Allowing A User To Save To Disk?

Jul 31, 2011

don't have any experience with it but I've designed a tool for people to use on my website.I need a way for them save a section of the flash interactive flash to their computer Hard disk.link here

View 1 Replies

Full Width Preloader For Fullscreen Layout/fluid Layout?

Jul 9, 2009

how to make the preloader works on the full screen website/ fluid layout.  I add the Stage.resize on the code for FYI When I added this code to the bar, it expanded to full screen, but there's no loading bar. The text is also no progress.

View 1 Replies

ActionScript 3.0 :: How To Have Flash Draw Pad Save A Pdf From User Side

Feb 5, 2010

I have found many drawing pad solutions. Some good, some not as good. All of them, however, fail to show how to save the file as a pdf  (would be happy with bmp right about now) from the drawing pad to a server side folder via php. Can someone show how to do that using as3?

On the advanced side, I also need to figure out how to make it recognize logged in users of the preexisting CMS in order to save out to specific user folders. The CMS is Joomla 1.5 latest build, with JomSocial and JSPT multi profile. It would save out to folders created by the JMarketPro system.

View 1 Replies

Professional :: Mutliple Forms Save User Input?

Aug 23, 2011

I have a site that contains approx 20 pages of lengthy forms. The forms exist on single frames within the flash movie. This application is used as a demo only, so I do not have a need to submit the form data. The demo is used to go back and forth from form to form and fill in mock data. The problem is when the user goes from form to form the data they have entered is not saved. Is there a way I can set all frames to remember the data entered into the form without having to set every form control instance? There thousands of fields in these forms and I am trying to avoid individually naming them and scripting them to save their values.

View 5 Replies

Flash :: Save An Image To Disk Without User Interactive?

Jul 2, 2010

I see flash has a save call to do this job, but it requires user interactive.

How to save it automatically?

View 3 Replies







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