Load Variables From Address + Username Add
i am trying to make a login for my site and i have the save text files to my server and that takes what ever you put in as your username and save a txt file that is username.txt so if you put in steven as your username it would save steven.txt
Any way i have that working and i need a login but i cannot get it to look somewhere on my server and what ever is in username it will load up that file +".txt" can you help me get it looking in say /members/username add ".txt"
FlashKit > Flash Help > Flash ActionScript
Posted on: 09-15-2001, 05:19 AM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Load Variables From Address Bar
i founded out, there is a way to load vars from addressbar like ../movie.swf?user=fphilipe .
i don't know how it works but i know it works. ultrashock uses this in the main page:
<param name=movie value="homepage-new78.swf?initData=Hey+Fphilipe%2C+welcome+back+%21%21%21%0AYour+last+visit+was+on%0A2004-01-19+18%3A32">
does somebody knows how it works???
Load Variables From Address Bar
is there a way to load variables from the address bar?
i mean like "../flash.html?name=BlaBla&email=blabla@bla.com"
it shoulds appear in the flash movie inside the html in dynamicfields.
Load Variables From What The User Types In Address Bar
Hi,
I was just surfing and suddenly I found this site... www.youaremyfriend.com
How this site function really surprised me and I really want to learn how I can do the same thing myself. I hope some of you help me
What the site does is that you can put your first and last name before the domain name in the address bar and the flash file will use your enterd first and last name in the playing animation! Try this... www.Jack.Smith.youaremyfriend.com
Have any idea how it works?
Hadi
Load Variables Email Address From Text File Anyone?
I have the code below attached to a movieclip which i am attempting to use to call in an email address from a text file. The idea being that the textfile can be altered by a luddite, and the recipient email adress changed in the flash file.... but i'm not doing too well...!
The best i have achieved is undefined email or garbage.
all help greatfully received. thanks.
___________________________________
on (rollOver) {
this.gotoAndPlay(2);
}
on (release) {
loadText = function(){
loadText = new LoadVars();
loadText.load("email.txt");
loadText.onLoad = function() {
emailAddress = this.eAddress;
}
}
submit.onRelease = function(){
getURL("mailto:"+emailAddress);
}
}
on (rollout) {
this.gotoAndPlay(1);
Sending Username & Password Variables
Hey all,
I realy dont know where to start here,
But i need to send the variables from the USERNAME and PASSWORD
to a URL...
To PUT it simply...
I HAVE NO IDEA!!
Ill attach the FLA, and see frame 3 where you can find the login form
This is kinda Urgent!!
If some one has a few spare minutes, can you help me out!
Thanks very much!
Can You Load The Username And Password From Txt File?
i have a login screen and i need the username and password to load from a txt file. how would i do that?
heres what i have applied to the button:
Code:
on (release, keyPress "<Enter>") {
if (pw == "mypassword" && un == "myusername") {
gotoAndPlay("correct");
} else {
gotoAndPlay("wrongpass");
}
}
if someone could help me out that would be great!
thanks!
austin
XML To Load .swf If USERNAME & PASSWORD Are Correct?
how can i make this code load a swf into a container clip if username & password are correct in an XML file?...
code:
// create object load the xml
var my_xml = new XML();
my_xml.ignoreWhite = true;
// when it loads
my_xml.onLoad = function(ok) {
if (ok) {
// parse the xml
temp_xml = this.firstChild.childNodes;
temp_xml_n = temp_xml.length;
for (var i = 0; i < temp_xml_n; i++) {
// check if username and password match
if (username == temp_xml[i].attributes.name && password == temp_xml[i].attributes.pass){
// as they match, get the frame number from the xml
myFrame = temp_xml[i].attributes.frame;
break;
}
}
// no match
if (myFrame == undefined) {
trace("wrong username or password");
}
// it matched
else {
trace("validated!");
trace("now I can move to frame " + myFrame);
}
}
delete myFrame;
};
// input text field:
password_txt.password = true;
//
//
submit_btn.onRelease = function() {
// get the text in the text fields
username = username_txt.text
password = password_txt.text
// time to verify
my_xml.load("details.xml");
};
The XML file looks like this:
code:
<details>
<user name="joe" pass="joepass" frame="1" />
<user name="john" pass="johnpass" frame="2" />
<user name="simon" pass="simonpass" frame="3" />
</details>
The only change (i think) that needs to be made in the XML is that instead of loading a frame #....i want to load swf files.....such as agent1.swf, agent2.swf, agent3.swf, etc.
also.... for some reason i can't AUTOFORMAT the ActionScript above......i keep getting a message that there are syntax errors that need fixing, but when i check the code, i get a message that this script contains no errors???? any ideas??
ANY HELP is appreciated.... TIA
Variables From Address Bar
How would I set a variable in my flash movie from the address bar if possible. Like say I made a flash that said "Hey " + name and someone would send their friend a linnk that specified mike as the name , then the flash would say "Hey mike" in a dynamic text.
Variables & Address
Attached is the file with the code applied. I'm trying to get each menu item to open a new window with the website listed in sitelist. Can anyone tell me why it keeps opening a blank page that says "about blank" in the title bar and the address bar?
Thanks
ActionScript Code:
Movieclip.prototype.openWinCentre = function(url, winName, w, h, toolbar, location, directories, status, menubar, scrollbars, resizable) { getURL("javascript:var myWin; if(!myWin || myWin.closed){myWin = window.open('"+url+"','"+winName+"','"+"width="+w+",height="+h+",toolbar="+toolbar+",location="+location+",directories="+directories+",status="+status+",menubar="+menubar+",scrollbars="+scrollbars+",resizable="+resizable+",top='+((screen.height/2)-("+h/2+"))+',left='+((screen.width/2)-("+w/2+"))+'"+"')}else{myWin.focus();};void(0);");};var menuItems = [ "Wizard of the Coast", "Realms Quest LARP", "Midland LARP", "Adventure Seekers", "Zephn Photography", "Taco Bell"];var siteList = ["http://www.wizards.com", "http://www.realmsquest.org", "http://www.adventuresinmmidland.org", "http://www.adventureseekersofdoom.20m.com", "http://www.zephn.com", "http://www.tacobell.com"];for (i=0; i<menuItems.length; i++) {mc = container.dynamicButton.duplicateMovieClip("button"+i, i);mc.menuLabel.text = menuItems[i];mc._y = i*(mc._height-1);mc.siteToLoad = siteList[i];mc.actualButton.onPress = function() { address = siteToLoad; target_winName = "TRPA"; width = 780; height = 640; toolbar = 1; location = 1; directories = 1; status = 1; menubar = 1; scrollbars = 1; resizable = 1; //sends data back to the function openWinCentre(address, target_winName, width, height, toolbar, location, directories, status, menubar, scrollbars, resizable);};}
Variables In Loadmovie Address?
Hello peeps,
Is it possible to set a variable to act as the folder name for use in specifying the path for a loadmovie operation?
To make things clearer, here's what I'm doing...
I have collections of images I want to load (01.swf, 02.swf, 03.swf etc) each placed in seperate folders by artist name.
To simplyfy things, I want to load the swfs using a variable that is set at the root level to specify the folder in which they're placed, kinda like this...
(set at root level)
ArtistName = johnsmith
(then load corresponding swfs)
loadMovieNum(ArtistName + "" + "01.swf", 5);
I've tried loads of different permutations but to no avail. Does anyone know if this is possible or not???
Cheers
Loading Variables In The Address Bar
Hi, I want that when I press some button in my flash, its send the variables from the flash on the Address Bar of the html of this same flash. So, my flash can't be reloaded, the page cannot be refreshed.
Can I do this only with JAVASCRIPT???
Thanks.
Hiding Variables In Address Bar
Hello everyone.
I am developing a flash game but have hit a brick wall every since. Once my game completes, I store the user's score in a variable. From there, I use the 'Get' method to pass this variable to an asp page. My problem is that the variable appears in the query string of the address bar of the asp page. I would like to hide it for security reasons. Any idea?
[F8] Variables From Actual Address
Hi everyone, I'm making some flash headers for a site that need to be dynamic. Is there a way I can update dynamic text in my flash files by reading the actual url of the page its embedded in?
the url will take the form of "...header.swf?header=Puzzle" I would need to retrieve the 'Puzzle' bit.
I've read around and lots of answers to this involve editing the html of the page, since the pages themselves are dynamically created this might not be possible so I really could do with a solution that literally just reads the address. Is this possible?
thanks in advance
Variables From Address Bar To Flash
I would like to make a website in which I can pass variables from the Address Bar to the Flash movie such as the website http://www.forces.ca/
My website is http://www.294air.org/
What is the best way to pass variables the same way they are passed with the forces site?
Regards, The Honorable, Sven Arsenault
Please Help Me With Passed Variables In GetURL Address
Hello, I haven't asked anything here in a looong time so I hope you'll be kind with me because I really don't know how to go about this...
I am building a multi-lingual PHP website with Flash menus.
I know how to DISPLAY a variable within a Flash movie that is passed to the movie in the url (ie "movie.swf?var=value" or "movie.swf?var=$phpvar") but I don't know how to use that variable... In other words, if I wanted to DISPLAY that particular variable within Flash MX I would simply create a text dynamic field and enter the name of the variable (var) in the Var property field of the dynamic text field. When loaded the movie will display the word "value" in the first example or whatever is stored in the $phpvar variable.
My problem is: how do I use the variable's value in an URL???
Here is my situation. When on an english page I am calling my movie like this:
movie.swf?l=en
This should tell my menu to change all the menu's link to english links, which would mean adding ?l=en after all of them.
So now I am in Flash MX and I have to create link with getURL.
What is the value of the URL field? How to I use the variable I sent to my movie within that field? That is my question basically...
I know that in PHP I would simply do this:
echo '<a href="link.php?l='.$l.'">link</a>';
but how do I do it in Flash???
I hope somebody is nice enough to give me the solution!
Sending Variables To An Email Address
Hi all,
What's the best way to send variables to an email address? I'm trying to avoid an email client from opening up on the host machine...
Is it possible? - or do I need to send to a backend script that then forwards on to an email address?
Thanks...
SS
How Do I Pass The Address Of Variables To Functions?
Hi All,
Im new to Flash MX and ActionScript but have some experience with C/C++. What i'm wondering about is:
How do i pass the address of a variable to a function, say add 10 to it, then retain this value outside the functions scope?
In C I would write:
Code:
int x = 10;
void addTen( int *x )
{
*x += 10;
}
addTen( &x );
Is there an ActionScript eqivalent?
Cheers all.
Dave.
Sendind Variables Into Flash From A PHP Page Or The Address Line
I need to load up a flash movie, and the variable has to be thrown into flash somehow.
I'm making a backend, where there is a map. The user can drag a dot on the map and when they click update, it will add the xy co-ordinates to a database. I've got that all sorted, BUT I need to pass the id number of the location into the flash movie, so that when it "updates" the database, it knows which database entry to change.
Hope this makes sense and that someone can help me.
Cheers,
Benners.
Absolute Address In Load Movie
sorry for the newbie question, using MX on mac 10.2.6
How do I do an absolute address. Say the file is "menu.swf", and the folder it is in is "source" and I am using the load movie command:
loadMovieNum("menu.swf", 5);
And the file that is loading it is "top.swf" and it resides just outside the "source" folder in the "all" folder.
all (folder)
top.swf
source (folder)
menu.swf
I just don't know what the correct labeling/mark would be ( / , _ " ) etc...
what would be the full load movie command for this example.
thanks in advance for this simple question.
[F8] AS2 Load A Variable Via IP Address Link?
Hi All
I'm currently having a problem with loadVariables.
Is it possible to load a variable in a text file into flash player via the IP address to the text file?
i.e.: loadVariables ("\172.17.62.5animation$FSCOMMANDkey.txt", this);
The above code does not work
================================================== ==============
What I'm trying to do:
I have developed Flash projects for a client Company that are run via flash exe's.
These projects sit on a network server. This company is now concerned about the security of these projects.
If someone should copy the files off the server they should not play.
I thought of a solution that has a text file on the server with a variable that is loaded into the player at runtime. The link to this txt should be absolute, so if the folder is copied off the server and taken off site the flash player will no longer be able to find the network folder with the text file.
Does this required php, asp etc?
Or is there another way to load a variable into flash player from a IP addressed folder?
================================================== ==============
PATH on server:
\172.17.62.5animation$FSCOMMAND
Txt file text is:
&Keylock=786
The code in my flash file:
loadVariables ("key.txt", this); //load the Keylock variable into flash
trace(Keylock);//trace "786"
KeyDisplay=Keylock//Dynamic textbox to show 786 on screen
LockVar = parseInt(Keylock);//Set LockVar variable to Keylock value and convert 786 string to int
trace("Lock = "+LockVar);
//
if (LockVar == 786) {//if statement checks value and sends the playhead accordingly
gotoAndStop("Menu", 1);
} else if (LockVar != 786) {
gotoAndStop(20);
}
Thanks for your time and assistance it is appreciated
-Aslam
Load A Variable Via IP Address Link?
Hi All
I'm currently having a problem with loadVariables.
Is it possible to load a variable in a text file into flash player via the IP address to the text file?
i.e.: loadVariables ("\172.17.62.5animation$FSCOMMANDkey.txt", this);
The above code does not work
================================================== ==============
What I'm trying to do:
I have developed Flash projects for a client Company that are run via flash exe's.
These projects sit on a network server. This company is now concerned about the security of these projects.
If someone should copy the files off the server they should not play.
I thought of a solution that has a text file on the server with a variable that is loaded into the player at runtime. The link to this txt should be absolute, so if the folder is copied off the server and taken off site the flash player will no longer be able to find the network folder with the text file.
Does this required php, asp etc?
Or is there another way to load a variable into flash player from a IP addressed folder?
================================================== ==============
PATH on server:
\172.17.62.5animation$FSCOMMAND
Txt file text is:
&Keylock=786
The code in my flash file:
loadVariables ("key.txt", this); //load the Keylock variable into flash
trace(Keylock);//trace "786"
KeyDisplay=Keylock//Dynamic textbox to show 786 on screen
LockVar = parseInt(Keylock);//Set LockVar variable to Keylock value and convert 786 string to int
trace("Lock = "+LockVar);
//
if (LockVar == 786) {//if statement checks value and sends the playhead accordingly
gotoAndStop("Menu", 1);
} else if (LockVar != 786) {
gotoAndStop(20);
}
Thanks for your time and assistance it is appreciated
-Aslam
Load Movie Based On Explorer Address?
Hi!
I've got a question for all of you FLASH-masters out there.
I'm currently working on a website, based on ASP and a database. It loads the content on the page from a database.
Now to the problem. I've got a flash menu/image viewer at the top of the page. ( ex. When I klick on "About" the menu/movie clip shows an "About" image). The problem is that the website is based on only ONE page (default.asp) So, whenever I klick on a link, let's say "About" the page reloads and the About page is shown, BUT! the flash menu/movie is reloaded and moves back to the start of the timeline ( In this case the "welcome" image).
My question is: Is there a way to tell what part of the movie clip to be shown based on the explorer address, or is there another way around this problem?
I don't want to use frames on my website because then the scroller is "miss placed".
I hope I have explaind my problem fairly well, so you all can understan what the h*ll I'm talking about.
Thank you!
HOW TO : Load Email Address From A .txt File For A Mailto Button
I have been trying to do this for a while and have fallen on my face.
I can't get my head around loadvars..... can't spot similar anywhere on the board, so here goes....
i wish to have a button which on release loads an email address from a text file, then sends using on(release); "mailto:email@email.com"
So that the recipient can be altered in a text file by changing the variable there, not in the flash file.
any ideas how i do that !?!
thanks very much for any hints in advance.... C
"this" Keyword Not Working To Address Local Variables In Mc
I have like 10 grasshopper movie clips. Each one has its own set of variables.
I need to attach to each mc at different times
onClipEvent (enterFrame) {
this.gotoAndPlay("loop2");
}
Where "loop2" is a certain frame inside the clip.
The problem is that none of the grasshoppers are obeying!! Mutiny! How do I solve this probelem?
My Variables Load With LoadVars...how Do I Execute A Loop To Assign Variables?
I have 52 (one for each week) duplicated MCs, a loadVars(), and variables "sermonTitle" and "airDate," which I'm trying to assign with the following:
this.airDate=_root.loadContent["airDate" + sermonDate];
this.sermonTitle=_root.loadContent["sermonTitle" + sermonDate];
which is placed in an onClipEvent (enterFrame) handler of the button which is duped . The vars load when I click Video > 2001.
The vars loaded have values named sermonTitle1, sermonTitle2, etc. and the same for airDate. The numbers attached reference the sermonDate which has already been assigned though my duplicateMovieclip loop:
num = 52;
ystart = b._y
n = 1;
while (n <= num) {
duplicateMovieClip("b", "b" + n, n);
setProperty("b" + n, _y, ystart + n*17);
this["b"+n].sermonDate = n ;
trace(this["b"+n].sermonDate);
n = n + 1;
}
I've tried attaching the assign code to the dupMovieClip loop:
num = 52;
ystart = b._y
n = 1;
while (n <= num) {
duplicateMovieClip("b", "b" + n, n);
setProperty("b" + n, _y, ystart + n*17);
this["b"+n].sermonDate = n ;
this["b"+n].airDate = "airDate" + n;
this["b"+n].sermonTitle = "sermonTitle" + n;
trace(this["b"+n].sermonDate);
n = n + 1;
}
setProperty("b", _visible, 0);
and it works - as far as assigning the correct value to the correct button, but it does not associate the loaded vars with them.
The SWF is VERY sluggish, though, which makes me think the onclipEvent is not the best way of assigning vars. I get the trace(this) showing all of the variables loading, so I know that's not the problem.
Does anyone know how to best assign these? I have been advised to use a loop for it. How would I go about executing a loop for this, as I will have navs loading in different text files - Thanks
Link to SWF:
HERE
Return Variables From Php To Load In Flash Text Variables
Im having an issue using the kirupa flash login. I already have the actual login working with php and mysql but i need to change it up a little bit and i don't know enough about php to write it myself. But here's the situation.
Flash login is a basic script, I've already modified this part and it works great
What I need to know is how to modify it so when a user logs in, php captures the $_POST and returns the alternate variable fields that consist of ("co","fname","lname","cph","email") within the ID for user and pass
also i have already made a common loadMovie to load random variables i just need the php to point to the movie
Scrollpane - Load Swf - Load Movie Symbol Controled By Buttons And Variables?
Ok i have searched the board, and racked my brain and read hundreads of bit and pieces. So far 'not happy jan'. Anyhow I thought well I shall start a thread where first I ask a question of 'can it be done' then go away try and do it and if fail 'ask how to do it' or if suceed then say 'how i did it'. Of course all questions are going to relate back to this original post so no new threads need to be started. Anyhow onto my question!!
I have a website I want to make. so I started... called it 'site.swf'. now site.swf has a scrollpane in it called 'content'.
Now I have also created 'home.swf' which has 2 movie symbols in it. one called 'homein' the other 'homeout'.
'Homein' is located in frame1 of home.swf and 'homeout' is located in frame2.
When site.swf loads I want to load home.swf into 'content' and home.swf plays 'homein'.
When the user clicks on the first button (in site.swf) 'content' plays 'homeout' before loading 'button1.swf' into 'content' and playing 'button1in'
see the pattern forming. Now I am sure this has been asked thousands of times, but I haven't found it once. At least in a form that is easy to understand.
Now can this method be done, or do i need to go away and rethink it. (my main reason for loading external.swf's is because i wish to preload where needed).
If all this can be done tell me now... I am sure I need to use 2 variables.... 'loadedmovie' and 'tobeloaded' to communiticate with 'content' and to follow the users clicks of buttons.
Thanks for any help.
Trent
Load Variables, Remembering Variables
I am trying to load variables from a text file, and have them available from then onwards in the movie, globally so to speak.
While I can read the variable values in a loader function which executes when the text file is loaded, I don't seem to be able to keep those variables available afterwards.
How do I that? Isn't AS3 wonderful? :(
John
Attach Code
var urlRequest:URLRequest=new URLRequest("index.as3.txt");
var urlLoader:URLLoader = new URLLoader();
urlLoader.dataFormat=URLLoaderDataFormat.VARIABLES;
urlLoader.addEventListener(Event.COMPLETE, urlLoader_complete);
urlLoader.load(urlRequest);
var sspColourBG;
function urlLoader_complete(evt:Event) {
trace("During: " + urlLoader.data.extColourBG); // returns correct value
}
trace("After: " + sspColourBG); // returns undefined
Log In Box That Won't Let You Use The Same Username
HELP, I manage to create login box using actionscript that let you login, but i need to create the follwoing and i need a code how to create log in box in flash that checks if the username is taken already, if it is it should ask to pick a new one,
Please help
toothforatooth@yahoo.com
Username?
How do i make a login screen just like that one tutorial exsept with no php, just actionscript!!
Username?
How do i make a login screen just like that one tutorial exsept with no php, just actionscript!!
Get Username?
On my site i am making custom module headers in flash... i want the header to display the username of the active user...
the php command to do this with regular text is <?php echo $my->username;?>... how can i make the flash document display what that command pulls?
Load Movie And Load Variables
on my current project
www.enhancedinnovations.com/brp/news.html
I have 2 text boxes and I have 2 problems. So far, the bio page and the news pages are completed and there are two text boxes on each page. When you go the the news page (www.enhancedinnovations.com/brp/news.html), it all loads dandily and the text loads too.. but when you click on bio, the information doesn't come up.. but if you go to the bio page (www.enhancedinnovations.com/brp/bio.html), then it all works nice and dandy..also, if you are on the news page, click the bio button, when the bio page is loaded, click the news page, and quickly glance below the buttons, you can see the "biography." which is the current text there.. can someone help me so that the text always loads no matter what? or am I just retarded and should uninstall flash?
Username To Appear In Movie?
I have a login scene set up that has text fields with variable names set for "username" and "password". In my login button script I am using:
on (release, keyPress "<Enter>") {
if (password == "password01" ) {
gotoAndPlay ("01access", 1);
}
if (password == "password02" ) {
gotoAndPlay ("02access", 1);
}
else if (password != "password01" || "password02") {
gotoAndPlay ("denied", 1);
}
}
Only the "password" is being used to allow the user to go to the next scene. Having different scenes for different [correct] passwords.
The trick I'm trying to work out is this:
I want to have the text entered by the user in the textfield of "username" to appear in the accessed scene. If the name entered was 'Jim' then a textfield contained in the scene would have "Welcome Jim!"
If the textfield of "username" was left blank then the scene would just have "Welcome!"
Is this possible?
Is my script right so far?
Thanks in advance for any help!
Visual Approach
Sending Username To JS
Hi Flashbacks !
We have set up a chatbox in Flash (thanks to this list I found Moock Comm !) and added a userlist which, well, lists all users connected.
Now we need to set up a system where the "master" user can give control of drawing box to a user from the list. How can I get the name from the list and send it with a click of a button as an argument of FSCommand to JS ?
TIA,
Vesa
Username & Password Help
alright folks,
im really pants at anything that isnt visual design and im tryin to set up a couple of input boxes (username & password) and i have no idea where to start...
i want the submit button to check wot the user has inputed...if they enter the correct info, it loads movie 1 and if they enter the wrong info, it loads movie 2. basically a normal login screen.
its not connected to any kind of database and is not for online use...its merely a presentation tool to run off a cd, but i would like it to function properly.
cheers andy
Username,password,get URL
Need a little actionscript help...
I have 2 movies...Movie1 has an area for username and password plus and "enter" button...Movie2 is the main content. I would like to attach actionscripting to the "enter" button that confirms the 2 variables and then does a "get URL"
In other words, if the username=variable1 and the password=variable2, get URL, http://www.movie2.com
I need the proper syntax to accomplish (if possible)....any help would be greatly appreciated.
Oh, by the way..I realize that server-side password would be much safer, but in this case, not necessary.
Password AND Username
ok i added a password section to my site (flashtr1ck.tripod.com/Erm.html) but i want to able to load both usernames and passwords, is there a way to do this a remote .txt file?
Username/login
I want to make a place were I can have sertain people login to it, and depending on there username, load a different text in a text box.
I don't know if i am making sense...
*someone signs in
*a page comes up with a text box
*depending on username different text in text box
Any help would be great!!
Username/password
Can anyone help me with this?
I want that people can play my game when they login.
This must be several members.
After they login the game starts, and when they have stopt the game and come back the next day, the games starts where they have left it.
Is this possible?
Ron
Username/Welcome Situation
I need a username to be entered into a box field...
and then have it go to a screen that says the name of w/e they typed in.... I know how to make it get to the screen.... But i cant seem to get the name they typed to pop up...
I'm tryin to use something to the effect of...
set variable...
userwelcome == "UserInput"
but it seems to only write: "UserInput" on the "welcome screen"
Help....
pls...
Username On Network
I`m running a FlashMX intranet and would like to display the username
of the visitor on our network in a variable text field.
Can anyone help me get the username on Win 2000 / XP / ME and display it.
Help appreciated.
Username & Password
Hello everyone,
I created a simple and quick log in movie with flash mx,
the trouble is i do not know how to set it up to send the user name and the password enterd to the correct destination.
The movie is located on the home page of
http://www.distanthost.com
however the url of the cpanel members currently log in to is situated at:
http://application.distanthost.com/clients/
that page asks for a username and password.
However i want to be able to get the flash movie i created to send the username and password to that page and succesfully log the user in to the cpanel.
I hope someone can help me i have not got a clue how to do this and im desperate.
Derek
Username Change....?
Just wondering if you can change your username for flash kit? I have tried to re-registar but I need to keep the same e-mail address....
Using Username In Another Spot
Hi all,
Just trying to use visitors usernames again on the next page. Eg. Username: rbetts33 Password: ******** ------>
On next page, Welcome rbetts33
On the login screen I have 2 input text boxes with names:
(instance Name) username_txt - (Var) myName
(instance Name) password_txt - (Var) myPass
1st, does the username text box have to be a dynamic one? Or is input ok?
Secondly, on the next page should I have a dynamic text box calling the username from the first page. What is the code I would use to do this.
Thank you in advance for your help.
Ryan
Using Username In Another Spot
Hi all,
Just trying to use visitors usernames again on the next page. Eg. Username: rbetts33 Password: ******** ------>
On next page, Welcome rbetts33
On the login screen I have 2 input text boxes with names:
(instance Name) username_txt - (Var) myName
(instance Name) password_txt - (Var) myPass
1st, does the username text box have to be a dynamic one? Or is input ok?
Secondly, on the next page should I have a dynamic text box calling the username from the first page. What is the code I would use to do this.
Thank you in advance for your help.
Ryan
|