Professional :: Flash Login Managed By Xml File?

Feb 29, 2012

I have a site template I customized. in this site there is the possibility to have a loginit works very well, but the problem is that the users rights are managed in the movieclip (action) which is not very easy in useso I would like to manage the users in an xml file outside flash, but I'm not able enough to create the good codemay
 
here below the login code :
stop();
//disables right click menuvar myMenu_cm:ContextMenu;myMenu_cm = new

[code].....

View 4 Replies


Similar Posts:


Flash :: Can't Find Managed Query Or Managed Operation Name Flex?

Feb 28, 2011

Apparently I am experiencing a can't find managedQuery or ManagedOperation named:getStudentprofile error

As I researched in some forums, I learned that the one causing this error is that I have duplicate instances of my data services in other components...So my question is how can I share my data services to other components? I don't have an idea how. These are the declarations that I need to share to other components:

parentinfoservice:ParentinfoService id="parentinfoService" fault="Alert.show(event.fault.faultString + '
' + event.fault.faultDetail)" showBusyCursor="true"/
studentprofileservice:StudentprofileService id="studentprofileService" fault="Alert.show(event.fault.faultString + '
' + event.fault.faultDetail)" showBusyCursor="true"/

View 1 Replies

Professional :: Created Plain Text Field And Managed To Load It From External File?

Feb 10, 2011

i have created plain text field and managed to load it from external file using the AS3 code below. Now i want to load multiple text field but this time in a button, how can i do that?

this is my button code: proposal_btn
var textLoader:URLLoader = new URLLoader();
textLoader.addEventListener(Event.COMPLETE, textLoaded);

[code].....

View 2 Replies

Flash Login Page For Multiple Separate Login Accounts

Aug 17, 2009

I have a need to build a flash login page. No big deal, but I need to have six seperate login accounts. For example:
Username: user1 Password: pass = link to [URL]
Username: user2 Password: pass = link to [URL]
Username: user3 Password: pass = link to [URL]
and so on for up to six users.

Again the usernames and passwords would not change, but need to redirect the particular user to a certain page.
stop();
var user_input = "";
var pass_input = "";
login_button.onRelease = function(){
if(user_input == "user1"
&& pass_input == "pass"){
getURL([URL], "GET");
}else{
gotoAndStop (3);
}}

View 7 Replies

Flash - Build A Memory Managed Carousel Type Navigation?

Aug 8, 2011

I need to build a memory managed carousel type navigation. Like scrollviews on iOS. What's the best framework to use and are there any good tutorials on this?It's for various mobile devices and perhaps the web aswell.

View 1 Replies

ActionScript 2.0 :: Make A Login Form For People To Use To Login To A Certain Area?

Nov 10, 2004

how could i make a login form for people to use to login to a certain area?? like for instance on this website [url]..... at the bottom he has a client login form....how could i do that?

View 4 Replies

Professional :: Load A Login.swf From Localhost?

Mar 1, 2010

i have realy pain start with af3 when i was fine with as2.one of my probleme is i load a login.swf from localhost .
 
Probleme1. i test on my pc "wamp" then i test on a remote server let call it  "Lamp". my code in main swf (As3.swf)  look a something like this.

var chemin = new URLRequest( "http://localhost/As3_login.swf" ) ;cadre.load ( chemin );cadre.x = 40;cadre.y = 100;addChild(cadre);

what happen is in localhost test everithing does the job but when i upload on my distant server "Lamp"  as3.swf and As3_login.swf,the main swf (As3.swf) don't load the As3_login .swf that is on my distant server "Lamp" .in fact it try load the swf that is on my local "wamp" server (my own hard disk).so if i close my "wamp" what happen is As3.swf from "Lamp" load then it can't load As3_login.swf.seem totaly ilogique to me since when localhost isn't local?

Probleme 2. the code above addChild(cadre) add the As3_login.swf from here all is finel) .now the probleme is i have a button cancel on the As3_login.swf and i want this button remove what we loaded previously(itself then).i tryed a lot of thing like.how to remove a loaded child from the child itself???

View 2 Replies

Actionscript 3 :: Managed To Connect Php With Flex But After 'reconstruction'?

Nov 12, 2009

I am working with php, Flex and zend's AMF Server using this guide. I successfully managed to connect php with Flex but after 'reconstruction' of my MySQL query I get a little bit different objects - some of their values are NULL. That confuses Flex and I get an error from my RemoteObject:Was expecting mx.messaging.messages.AcknowledgeMessage, but received null I was searching around the web, and I believe it is happening because some values are NULL, but I couldn't find appropriate solution..

View 1 Replies

ActionScript 2.0 :: Managed To Create A Method Which Changes Colour Of A Line

Jan 25, 2007

I have managed to create a method which changes the colour of a line.I now...need a seperate method which changes the thickness of the line, however whatever I try messes up.[code]

View 1 Replies

Professional :: Make A Login That Allows The User To Create An Account?

Jan 9, 2011

I am trying to make a login that allows the user to create an account and be able to access it at anytime. Like if I was going to go on to facebook I can login. Something like that except I want it in my swift and not like a php or whatever you call it now.

View 9 Replies

ActionScript 3.0 :: Larger Projects Managed Where Content Loaded Isn't Known Ahead Of Time?

Aug 31, 2010

I'm very used to building things with hard references in mind using AS2. I build it knowing I'm going to put a panel A in _level0.panela_mc and interface B in _level0.interfaceb_mc and Login Prompt in _level0.login_mc.login_com, etc etc.. I always know these will exist and you simply reference them via _level0.whatever. What is the new strategy to managing references to lots of sprites?
 
If I build a panel in a class method, the var somepanel:Sprite = new Sprite() I create inside the method to hold the panel I'm making will be up for garbage collection if I don't make sure a reference stays intact (via either add it to a display list, add an event handler, etc..). The reference "somepanel" I made in the method will go out of scope at the end of the method as well. Should I expect to have needed to make a class variable ahead of time to store a reference to this? Should I be keeping a class genericObject:Object that holds a list of references to everything I ever make almost like a global registry?I'm just used to AS2. You just create a movieclip and when the method ends, the clip still exists and you know the _level0.ref.ref.ref will always exist and how to get back to it.
 
How are larger projects managed where content loaded isn't known ahead of time and the layout is rather dynamic. What are the strategies used to manage all that dynamic chaos?Lastly I'm so overly used to being able to target a movieclip using a single daisy chained list of clips, like: _level0.this_mc. that _mc.those_mc. I noticed I can't seem to do this approach with the getChild() approach. using someSprite.getChildByName('this').getChildByName ('that') .get ChildByNa me('those') doesn't work. How do you drill down into nested clips? I did notice I can do it one level at a time, such as: refA = someSprite.get ChildByName('this'); refB = refA.getChildByName('that'); refC = refB.getChildByName('those'); .. Is that what I'm expected to do?

View 7 Replies

Professional :: Social Group To Login In And View Certain Things Posted By The Owner?

Feb 19, 2011

I am trying to build a flash website for my social group to login in and view certain things posted by the owner, me, and I only want certain members to view certain things like if I post a message to my treasurer about an invoice to design a graphic for a company and that I request this ammount to intialize the project, I would only want her to see that and nobody else. Is there a way to make that happen in AS3?

Like FaceBook: You can login and register for a new account. Post on your wall (which I don't want that feature). Send messages and receive messages to and from people. Invite people to upcoming events (which I would like to have a calendar that I can create new events and have my members view the calendar and RSVP). And like when your posting on your wall you can make privacy settings change (similar to what I want just not friends only or just me option, I want Everyone, 'names of everyone that is a member to post this to'.).

View 7 Replies

Flash :: IDE - Login Using Php And Sql

Jan 19, 2009

I found the following tutorial which looks good but i cant get it to work [URL] i have setup the db connections etc and i never see the error screen or sucess screen, it just hangs at 'Begin Login Process - Wait...' setting up the db i had to remove the DEFAULT '0000' as mysql qould not acsept it the code given is

[Code]...

View 1 Replies

Professional :: Convert Flash File With Page Turns To A File Useable On An IPad?

Sep 23, 2010

I have created a booklet in InDesign cs4 that includes page turn transitions. I have saved it as a SWF file and it works perfectly on my PC with the ability to sweep through the page turns. My issue is now, what type of file can I export the SWF file to so that I can view it on an iPad and am still able to have the page curls?

View 3 Replies

Flash :: Professional - Store The Variable Values In An .txt File Where The File Is Saved

Jul 22, 2011

I have a problem with SharedObject. I created SharedObject using AS2.0 it's working fine.... my question is can it possible to store the variable values in an .txt file where the flash file is saved... basically the SharedObject will store the vallues in localdrive with file extention. not only using SharedObject if any other way to store the vaules in .txt file will be helpfull for me... my requirement is to store the the position of the swf file and when the time it reopen, it should start from previous position.

View 2 Replies

Professional :: Copy Unchanged Object From Old Flash File To New Work File?

Mar 7, 2012

I changed a layer entry of my Flash file by moving around various elements within the layer. I sitll have the original file, too. I'd like to put it back exactly like it was in the original file. How do I replace the changed sprite element from the new file with the original from the old file?

View 5 Replies

Flash :: Professional - Publish .fla File To .exe Without The File Menu And The Default Icon And Tile Appearing

May 22, 2010

Is it possible to publish my .fla file to .exe without the File menu and the default Flash icon and Flash tile appearing.

View 1 Replies

ActionScript 3.0 :: Login Through Flash?

Oct 7, 2009

flash web base application. Which has login page in flash when the user enters username and password this is sends to server in binary format through binary socket. Server sends the responce in same format I am stuck here how could I proceed to for this.

View 10 Replies

ActionScript 3.0 :: Flash Login With Php?

Mar 23, 2011

Everything I've tried with this script has ended with no positive result, this was developed in flash 9, but attempting to publish in flash 10 since its no longer working after updating flash. I have also upgraded from CS3 to CS5 recently also if that makes any difference. Well, here's the code:

[URL]

AS3 code:

Code:
stage.align = StageAlign.TOP_LEFT; stage.scaleMode = StageScaleMode.NO_SCALE; stage.showDefaultContextMenu = false; //path to the php file on your server var phpPath:String = "login.php"; //make password text field (when you type the characters will be like "******") pass.displayAsPassword = true; login.addEventListener(MouseEvent.MOUSE_DOWN, loginDown); function loginDown(e:MouseEvent):void{

[code]....

View 4 Replies

Professional :: Put A Video Player Swf File Inside A Flash File?

Aug 17, 2010

i want to know how i can put a flash file inside a flash wbsite. i have found a tutorial [URL] that says something like that but in this tutorial if i understand correctly it creates a new flash project and add another swf inside. i have my website created and i just want to add video gallery, image gallery etc that are already swf. how i can do that?

View 1 Replies

Flash :: Professional - File Unexpected Format Can't Open File

Jun 1, 2011

I have been working on a project for a week and suddenly it crashed during save (nothing strange had been imported or anything i just saved after moving content around) and now i cant open my file again. I contacted adobe support who claim that since the problem is related to the file this is not their problem, what a load of HORSE ****, who should i contact about this dell if its an FLA FILE!? I have already renamed the file to flash.zip then opened with WinRar and repaired as a new zip file to a different folder (which removes the corrupt content which is document something.xml) then i tried renaming this folder back to flash.fla however the file still does not open.

View 4 Replies

ActionScript 2.0 :: Make A Login In Flash?

Jan 19, 2004

I'm trying to make a login in flash but i don't know how to code it.

View 1 Replies

IDE :: Creating Login Page In Flash CS3 / CS4

Sep 10, 2009

I am trying to create a simple login page, once the user has logged in successfully they will be taken to another site which contains their photos. I have created the login page already, it has a Username and password plus the Submit button. I guess 2 things need to happen here:

1. I would like to be able to access an xml document which contains the Username and Password in order to validate the details.
2. Upon successful validation, the user is directed to another page which contains their gallery, I guess I need to add a navigateToURL here in actionscript where the URL is passed from the XML file to the code (the URL needs to come from an the same XML file, if possible).

I am trying to design this site so I don't need to keep accessing the actionscript in flash to add user details and URL links.

View 3 Replies

ActionScript 2.0 :: (mx) Login Page In Flash

Dec 2, 2003

I need a simple login for an interactive cd I'm doing I don't need it to be password protected or anything I just need to set it up so when a user types in text in two fields it allows then to proceed to the interface and when they don't a pop up box says "please sign in" or whatever.

View 4 Replies

ActionScript 2.0 :: Make A Login In Flash?

Jan 19, 2004

I'm trying to make a login in flash but i don't know how to code it.

View 1 Replies

ActionScript 2.0 :: Login From Flash To Php Page?

Mar 16, 2004

There's been a long time since i dont ask questions here... not that i dont need to, coz i know nothing , is just that im not using flash that much lately.

ok then, heres the question, I have a simple username/password form in a swf file, and i want to launch, in a new window, a login php page when i hit the submit button, with the variables passing from the swf form to this page. the problem is: i have no idea how the script of the submit button should look like

View 3 Replies

Professional :: Use A .ICO File Instead Of A .PNG Or .JPEG File In Flash Project?

Apr 18, 2011

I'm trying to find out if it's possible to use a .ICO file instead of a .PNG or .JPEG file in my Flash project. Is this even possible? The reason I'm asking is that the project I'm putting together uses ActionScript 2.0 code (not sure if that makes a difference or not) and displays a bunch of images for a bunch of different applications. So instead of creating a .PNG file for each application, since I've already got .ICO files on hand, I'd rather use those (saving me a ton of time).

View 4 Replies

Flash :: Professional - Publish Is Generating A Swz File - What Is A Swz File

Oct 11, 2011

trying to work out why Flash is publishing an unexpected swz file with one recent project. From what I can tell this is an optional run-time library used to reduce file size. My problem is that it is causing all sorts of text formatting grief when I try to import my swf into Adobe Captivate. how I can publish a swf without generating a swz? Why on earth has Flash opted to generate this unexpected file in the first place (assuming user error, but can't work out what I've done)?

View 3 Replies

ActionScript 2.0 :: Flash Login Isn't Working Correctly?

Jan 13, 2009

The page I created can be found here: [URL]

The login info should be "letmein77"

This is my AS (2.0):

Code:
loginbutton.onPress = function() {
if (password == "letmein77") {
gotoAndPlay("correct");}
else {

[Code].....

I don't work much with input variables (my focus is more in animation/design than forms and scripting) in my flash movies and i've been scratching my head for days now.

View 3 Replies

Simple Login Flash Stuff Not Working

Sep 21, 2010

I am fairly new to Flash and I am creating a simple Flash login programme in Flash. If I type in the correct password or even if I type in the wrong password it always goes to frame 3 which is "Login Failed! Username or password was wrong". I have attached .fla file. Note I created in Macromedia Flash 8.

View 8 Replies







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