ActionScript 2.0 :: Save Usernames And Passwords For The Modules?

Mar 28, 2004

I have been trying to save usernames and passwords for the modules i develop in flash ......and finally i came across sharedObjects which really come in handy for saving information on local machine.........

Now comes the problem ........the data is stored in the form of *.sol files by flash and now i am unable to add data to previously saved information.....Is there any way to save data in sol files as an array the thing is i need to develop a login screen for multiple users not for single user ...........

View 2 Replies


Similar Posts:


ActionScript 2.0 :: FMX- Case Sensitivity In Login Usernames?

Jan 15, 2004

if it is possible to have username logins not be case sensitive in a switch/case statement. For instance, Herbert, herbert, hErBeRT, etc would all get in, without adding a new case statement for each possibility. (just one for 'herbert')

View 5 Replies

ActionScript 2.0 :: FMX - Case Sensitivity In Login Usernames

Jan 15, 2004

Just wondering if it is possible to have username logins not be case sensitive in a switch/case statement. For instance, Herbert, herbert, hErBeRT, etc would all get in, without adding a new case statement for each possibility. How to disable case sensitivity?

View 5 Replies

ActionScript 3.0 :: Get Flash Webpage To Show Ones On The Page In List With There Usernames

Nov 14, 2011

how to get an flash webpage to show the ones on the page in an list with there usernames.In simple words; how to make an list in adobe flash that shows the current usernames that is on the page where my list is.Now il explane what this is needed and gonna be used for.Ive readed tutorials on creating an chat page and now.ive gotten to the last part but have not done the part where the tutorial says how to make an input for the users (guest) to choice there own name.

View 9 Replies

ActionScript 2.0 :: Have Multiple Passwords Instead Of One

Jun 14, 2005

I am working on a client log-in page, and I would like to have multiple passwords instead of one. This is the code I am using:

password = inputName
if (password == "kirupa") {
inputStatus = "Access granted!" ;

[Code]....

I have tried making two action frames and on this: if (password == "kirupa"){ I just did this: if (password == "kirupa""WandMan""Lizrds""Foz"){

View 8 Replies

Setup Multiple Passwords For One Result?

Mar 18, 2010

Below is my code and it is working. What I need to know is how to setup multiple passwords for one result. So look at the first four actions.. they go to the same page. I also want it to go if it is small caps verses large. How do I put all in one statement or do I have to do it this way. How do I put this in a text file if I have multiple passwords going to different pages. So as you see below if they put in password1,PASSWORD1,cash,CASH this all goes to page1.html If this put in password2,PASSWORD2 it goes to page2.html[code]...

View 1 Replies

ActionScript 2.0 :: Multiple Passwords In One String?

Jan 29, 2011

I have a simple kids game where they need to enter a password to move on in the game. The password is a string "Explore solutions and plans".I would like them to be able to move on if they have it partially right; e.g. if they type just "explore" or "Explore" or "Explore solutions" or "Explore plans" etc. Current script:

stop();
var myPassword:String = 'Explore solutions and plans';
submit_btn.onRelease = function (){

[code]....

View 5 Replies

ActionScript 2.0 :: Code For Multiple Passwords (if/else)?

Mar 9, 2009

I found a Kirupa code for creating a password:

if (password == "kirupa") {
inputStatus = "Access granted!" ;
} else {
inputStatus = "Access denied!" ;
}

I'm wondering if it's possible to modify this code so it can accept multiple passwords, with each correct password offering a different action.

View 8 Replies

Actionscript 3 :: Using A For Each Loop To Check List Of Possible Passwords?

Apr 6, 2012

What am trying to do is match an Array of possible passwords to the correct password and trace if the password is correct or not. This is what I have so far.

var passWords:Array = ["catdog", "fatcow", "yoda", "petergriffin"];
var userPassword:String = "petergriffin";
var wrongPassword:Boolean = false;

[Code].....

View 1 Replies

ActionScript 2.0 :: Shared Objects As User Passwords?

Aug 17, 2006

flash site that has a login screen...i used Shared Objects to allow the user to save their password when they visit the site (like cookies)...this all works fine...however, to save you all from an exhaustive explanaition of why i did this, there is a log-in page for EVERY individual page on the site (there's roughly 20 in all).this way, when the user clicks Log In, it takes them to the specific page they are requesting, instead of just defaulting to the home page (god i hope that made sense).

so here's the issue:for some reason the user info is only being saved on a page-by-page basis...meaning, that if the user clicks to the photos page, logs in and then closes their window...then later, clicks to some other page, their info is not retrieved on this new page...i understand that i am using different flash files for each log in page, but its the same script referencing the same shared object (which from what i see creates a .txt file), so it seems like it should workhere is the code:first frame:

Code:
stop();
user_so = SharedObject.getLocal("user");

[code]......

View 1 Replies

ActionScript 2.0 :: Use One Input Field And Have Multiple Possible Passwords

Dec 19, 2007

I'm trying to create password protection something like this site's:[URL]..I've tried looking up tutorials, but all I can find are ones that tell me how to create one password for one movie. What I'd like to do is use one input field and have multiple possible passwords that would take you to their corresponding movies.

View 1 Replies

ActionScript 2.0 :: Dynamic Textbox To Randomly Show Set Passwords

Mar 9, 2011

I have a password engine already made. But I got this idea of making 3 different passwords each time the game is being played. I already achieved to set these 3 password and the Input textbox accepts them. The thing is when the game ends, it give a password for another game. I want to set that dynamic text box that give you the password to randomly shows one of the 3 passwords I've set. So, how do I make a function that everytime the game is being played,set a different text on the dynamic text box, from one of the 3 passwords I've set?

if (youHelpMe == true) {
iWill.Helpyou(For_Sure)
} else { GAME.OVER }

View 2 Replies

ActionScript 3.0 :: Navigate To Scenes Using Passwords And A Submit Button

Mar 20, 2010

I'm using AS3 in timeline. I have an input text box and a button. I would like to navigate to scenes using passwords and a submit button. On timeline I have four labels: intro_1 to intro_4. The input text box is called main_sections. The submit button is called main_btn. Both text box and button are on a layer that goes from intro_1 to intro_4. PROBLEM The only scene I can go without errors is section_4. All other scenes show error

[Code]....

View 1 Replies

ActionScript 3.0 :: Making Exam Login - Input Username And Passwords

Jan 14, 2012

I tried to make an exam and I came up with a few issues. The exam is located here: [URL]. One problem is that I don't know how to make the login and input usernames and passwords. How do I make the Start Exam button work so when an appropriate username and password are entered it takes you to the test.

View 11 Replies

ActionScript 2.0 :: CS3 Create A Password Input Area Where A Player Can Insert Several Passwords And Be Correct

Mar 21, 2010

I'm trying to create a password input area where a player can insert several passwords and be correct, each password triggering the typing of that password in a separate area (which is what the numbers one to ten in the script below refer to). However, there is some flaw I can't find in the script and if I try to enter anything in the box, it is changed to "orangemarmalade" (see below) and only enters there (acting as if I typed "orangemarmalade" every time).

[Code]...

View 3 Replies

Asp.net :: Get Flex Modules From MVC?

Aug 18, 2010

We´re developing an ASP MVC application witch the View (aspx) has a Flex embed. This aspx/flex view is composed by a flex application and several modules. when we call the application url [URL] the server invoke the method the will return the ActionResult that represents this action, in this case the ~/Views/Flex/Index.aspx (with the Flex app). However when the ModuleLoader, in the Flex application, try to load a module an error occurs. The problem is that the Flex application can´t directly access the modules folder (~/Views/Flex/modules/module.swf). Are there any way to get the module through an ASP MVC action? Or the best approach is to allow the access to this folder through web.config?

View 1 Replies

ActionScript 3.0 :: Sub Applications With Modules?

Sep 21, 2011

We have several applications, each having a main mxml file with code that calls remote data services using BlazeDS and several modules. The applications communicate with the modules through a shared interface.
 
We are considering creating a main application that can integrate the above as sub-applications. Is there an issue due to our current apps having modules and remote data services?

View 2 Replies

Flex :: Using RSLs With Modules

Feb 23, 2010

We are building a fairly complex application that we need to be able to release different parts of at different times. To help us solve this problem we are using RSLs and Modules.so let me describe the projects (names have been changed to protect the innocent)[code]We have one application client that loads the areas of the application as modules. We have a core RSL that does things like login and holds entitlements and provides an API for the modules to access this sort of state and also to communicate with each other.

When we load client we only want the core rsl to be loaded as that is that is currently required. When the groceries module is loaded we want the groceries rsl to load and likewise when the bakery module is loaded we want the bakeryCore rsl to load.In reality this isn't what happens. If we set the projects up like that at run time the core rsl loads at application startup but the module RSLs do not load when the module is loaded. If we run an application from the project that houses the groceries module then he rsl loads when the application loads but not when the module does. We need a way of loading the rsl when the module loads.At the moment we specify groceriesCore and bakeryCore in the client application so they all load when the client loads. This is obviously not a good idea as when we add another 30 departments we don't want all these departments being downloaded at application startup - we only want them to be downloaded when they are required - when the application loads.

View 1 Replies

Flex :: Why Do Modules Keep Getting Rebuilt

Aug 26, 2011

I have a flex project, which has a main application, and then a number of small modules (17 of them). For reasons I have not been able to figure out, when I do a 'debug-compile' to test, frequently (but not always), it decides to rebuild the modules, though, nothing within the modules has changed in any way. Without the modules re-compiling, it takes about 5 seconds to build the app, but with it, it's upwards of 2 minutes. I assume its that something the modules all need is getting changed, but for the life of me, I can't figure it out.

View 1 Replies

Flex :: Flash - How To Access Modules

Jul 8, 2009

I have build a module in Flex that I call myModule, this module has a method myMethod. Now I use the ModuleManager to load this module.

mod = ModuleManager.getModule("myModule.swf");
mod.addEventListener(ModuleEvent.READY, modEventHandler);
mod.load();

now I want to access the method

(customComp as myModule).myMethod()

where customComp is the DisplayObject created by the factore.create() method of the module info. This code will not compile as myModule is not a defined property. Can someone help me with that? What do I have to import? The myModule.swf is not an asset, it lies in the bin directory of my project.

View 1 Replies

Flex :: Share Components IDs Through Modules?

Apr 16, 2010

Are IDs attributes shared between different modules in Flex ?

i.e. I have a text area with id="text1" in my menu.mxml file.

And I want to write on it from another module mainArea.mxml

The debug gives me error, so how can I share different components ?

View 1 Replies

Flex :: Flash - XML Declaration Available In Modules?

May 20, 2010

I'm building a Flex/Flash Builder 4 application that loads data using E4X/XML, like this:I originally build an application that was a single MXML file which loaded this XML file and built a form from the data.I've now build a main menu screen with a button to load the form screen as a seperate module. How do I get the XML declaration to work in this module without loading it again.

View 1 Replies

Flex :: Loading Modules From A Certain Folder?

Jan 20, 2011

I'm working with modules and each of it will be compiled (deployed) in a common folder in a webproject. In the main class I defined an array of module paths which I need for loading all these defined modules.

How can I make that more dynamically, for instance, I want to say, load all modules in a certain folder an its subfolders without to know each module by name.

View 1 Replies

Flex :: Common Function Across Modules?

Jun 25, 2011

We are working on a project where we have multiple modules- all these share a common set of functions like rounding, string parsing etc.Currently, we have added these functions into the parent container (which calls these modules) and use them in the respective modules. Likewise, if we have to share variables between modules, we add them to the parent module- so it becomes shareable across.Is this the right approach- both from a performance and structure perspective?

View 2 Replies

Actionscript 3 :: What Is The Sense Of Flex Modules

Jul 20, 2011

As far as my understanding goes Modules kann be used to split an Application into different parts. A big advantage seems to be to be able to load Module after Application Start, to get a better Startup performance. I personally would like Modules to make me able to have an own Code Sandbox for the Module Code. So neither the Main App Code nor the Module Code should influence each other. But for examples CSS Styles from modules influence the Main Application an visa vers. My Question:

1. What can I use Modules for beside Runtimeloading ?

2. Are there options to run code in an own sandbox ? For Example via Loading swf assets ?

View 2 Replies

ActionScript 2.0 :: LMS - Modules Starting On Last Page

May 14, 2010

I am working on some legacy Flash training modules created in AS2 in 2006 & 2007. They are being tested with the LMS vendor at the moment and a certian number of them (created by the same guy) are starting on the last page, even after the tester has cleared browser, restarted etc....would anyone know where to start with this problem? I am fairly green with actionscript but am gradually learning bits and pieces. The training modules run from a main template SWF that houses all the code - this SWF loads an array of other content swfs inside it. THis is why I am confused as the last 'page' would be the last secion of the last SWF loaded.

View 2 Replies

Flex :: Add VOs Into A Library Project When Developing Using Modules?

Sep 4, 2009

I'm developing a module based applications in Flex and I was thinking about moving all my Value Objects (VOs) into a library project

Current Structure: I have a project that consist of a shell application and 3 modules. The modules contain about 10 custom components in each that are dynamically loaded at run time. My problem is component A ( in module A) needs to pass data to component B (in module B). So when this happens I move the VO that component A was using to a common folder. I then pass the VO and have component B pick that up and do what ever it needs to do with it.

So what I was thinking was using an existing library project and adding all my VOs to it. This way I'll never have to move a VO from the module to a common folder so both module A and module B can access it. The basic idea is I want to be able to complete abstract any module from shell into its own widget or Air app with out depending on any other modules.

View 2 Replies

Flex :: Loading Embedded Fonts From Modules?

Nov 28, 2009

As some of these languages have very big font sizes (e.g. Chinese), I do not want to load all these fonts into the app. at once but was thinking to put them into different modules and then load only the specific module (depending on which language is chosen in the main app). For this I moved the style part from the main app:

<mx:Style>
@font-face
{
font-family:DedicatedFont;

[Code]....

into the different modules. Above one is e.g. for the Chinese font (cma.ttf).

The modules are created and I can also use the fontstyle (DedicatedFont) in the module itself, but I can not access it from my main application.

View 1 Replies

Flex :: IDE Does Not Treat Mx:Module Descendants As Modules?

Jan 12, 2010

I'm playing with Modules and they work as advertised: the module swf's ares built and deployed in the output directories automatically. My problem is that if I use descendants of mx:Module, the IDE does NOT do all this nice work for me. I've listed the module in the Flex Modules section of the project properties, but still nothing. I'm going to end up repeating a lot of code in each module (to fulfill an interface) if I cannot figure out how to make the IDE do its thing.

View 1 Replies

Flex :: Organizing Functionality Modules In Project?

Apr 19, 2010

What's the best way to organize functionality modules in a flex project? I saw some people put all modules in one view stack ,and so the application interface is only load once, but when the application get larger, the whole compiled swf would be very big. If we put swfs in different pages, we pass request parameters through HTTP request, we lost the benefits from flex RPC services, slow loading, and we can't see any superior comparing to php,asp,jsp... what's the best practice to organize front end architecture?

View 3 Replies







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