ActionScript 3.0 :: Make A Password Changeable In .swf Or .exe Projector?
Jan 31, 2012
I have created a projector/swf for a friend. He wanted it password-protected, which I did, but he wants to be able to change it - without using Flash (which he doesn't have). I thought about writing to an XML file, but that would be way too easy to crack, wouldn't it?Is there any way to write to the .exe file's shell?
View 4 Replies
Similar Posts:
Jun 13, 2010
im making a flash animation in which i made a symbol called #_mc which is in a symbol called #_anim_mc withhin the sceane.the #_mc contain "#". the #_anim_mc contain motion tween of the the "#" coming in from the left to the right. now within the main timeline i duplicated the #_anim_mc 100 times and i need to switch them with numbers but not all togethor. one by one.for ex: the 1st after 20 frames the 2nd after 28 frames etc. now i dont know how to make changes in each one to time them when to switch to a number. the only think i can think about is to make 100 differnt symbol each one allready set to its own timing.
View 1 Replies
Nov 2, 2005
I'm working on a puzzle like game where you need a password to get to the next level, but I am not sure how to make a password box.
View 15 Replies
Dec 20, 2010
I am creating a text class for label purposes with the code below. This works as expected when added to stage within a container. But after reassigning the textfield.text a different text, all the formatting is gone.
Code:
package {
import flash.display.Sprite;
import flash.text.TextField;
[Code].....
View 6 Replies
Aug 2, 2011
I have an FLV file that I want to be able to make a text box that acts as a password field.When the user enters the correct password, I want it to route the internet explorer page to a different website.
View 21 Replies
Oct 10, 2009
I am just learning AS. I am trying to make a username and password box that will return a welcome message if the two text fields are entered correctly and a "Sorry Charlie" message if they are not.
I am using an If-Else statement. If I have the Else part commented out, I am able to enter text into the two text fields and get a welcome message. With the else statement though, I am not able to finish entering text in the second text field before the "Sorry Charlie" message appears.
[Code]...
View 3 Replies
Sep 3, 2009
just playing around with stuff and i was wondering if i were to make a small internal site... how i'd go about making it so when you enter your password that it came up with those black dots instead of the letters?
View 4 Replies
Sep 19, 2009
I'm attempting to make a Username and Password input box, with a set username and password that will take you to the next frame, but whenever I test it it just stays in the same frame.
The code I'm using is
on(release, keyPress "<Enter>"){
if (password eq "###") {
if (username eq "###") {
gotoAndPlay(2) ;
[Code]...
but with the ### being what I actually have the username and password set to. As I said before, when I try this, nothing happens. I have the values for both the username and password boxes set to username and password respectively, but I still cannot get it to work. What am I doing wrong?
View 8 Replies
Nov 21, 2011
How can i make a Password Input Box for a Game, I am creating? I'm using Flash CS3.
View 3 Replies
Mar 29, 2005
How to make a random password generator using only action script??
View 2 Replies
Jan 28, 2009
I am trying to make a password to access a certain level. heres the code ive come up with.
[Code]...
where the input text box var is "input" but for some reason, its not working. the "else" command is working perfectly, but when i try and use the password "35" to get to frame 35 it treats it treats it as "else" as if its not recognizing the password.
View 14 Replies
Mar 29, 2005
how to make a random password generator using only action script??
View 2 Replies
Sep 21, 2009
I have planned to create an educational application / movie in Flash 8 (contains exercises and final tests etc.). I want to protect my application with username and password. The script inside movie should generate the password for given key say in my case username it will output the hex key which can be your password and no need to store it. cause you put same logic in your app which will generate the same hex key for same key i.e. is your username
View 1 Replies
Sep 23, 2008
Im new at actionscript, and I am making a very project. Basicly, I have some thing were there is a page you can get to by beating other parts of the 'game'. I want to add some sort of a password or save feature to people can type in the password of something at the opening screen and jump to that page.
View 1 Replies
Nov 25, 2007
I have a Mac (intel) CS3 flash fla that I am exporting asprojector. The exported Mac projector and windows exe file will notopen full screen w/o the flashplayer's top toolbar. I have testedthe projector file on Mac 10.4 and Windows XP and all show theflashplayer's top tool bar. The only way to go full screen is tomanually select view/full screen in the player toolbar. I havetried the fscommand("fullscreen", "true"); toggle (true/false/true)workaround w/o any success. Any other workarounds I can try
View 4 Replies
Nov 15, 2011
I want to make an SWF2EXE application that will run Flash Player inside but will show SWF in transparent window.
View 2 Replies
Aug 19, 2004
I will be making flash projector. How do I make windows pop up on flash projector when you click on buttons while exploring the contents inside?
View 1 Replies
Oct 14, 2010
I am trying to make a flash player 10.1 projector file (both .app and .exe) and I am having some issues when I go fullscreen.This was originally a web project, and everything works okay online (or even locally when I click on my .html file). However when I make an .app projector file, and play it, some (not all) of my buttons stop working on fullscreen mode).I seem to be having problems with any buttons that have an alpha Tween (I am using TweenLite/TweenMax) applied to them on the MOUSE_OVER event.Buttons with Blur tweens work in both fullscreen and normal screen mode.
View 2 Replies
Aug 25, 2011
Im trying to make a projector movie that links to a pdf (in the same folder) on a CD that needs to run in both windows and mac. Im able to get it to work on a pc but not on mac. here is the code for the button i used in the projector.
on (release) {
fscommand ("exec", "manual1.bat");
and bat file open a pdf file.so i want to do the same thing for mac, that is using the fscommand to open up a pdf in acrobat. I read messages here that use applescript but i dont understand it too well so what id like to know if possible is the applescript, what it does and do i apply it to the button in my projector or do i tell the button to look at the applescript or what? I guess thats it for now.
View 1 Replies
May 29, 2010
i'm trying to finish an educational cdrom done in flash, how can i make a window less projector, or position the window on the center of the screen without a 3rd party software?
View 1 Replies
Dec 8, 2009
Is it possible to have a flash Projector control the timeline of another flash Projector.
example: Projector1: has a button to start/play Projector1 and trigger to start/play frame 7 in Projector2 at the same time.
So both external projectors are in sync.
View 0 Replies
Apr 24, 2004
I will be making flash projector. How do I make windows pop up on flash projector when you click on buttons while exploring the contents inside?
View 7 Replies
Dec 9, 2010
I am having a problem trying to make a little game. I want to create a password box using input text but i dont know how to put a variable on my input text. It's telling me i can only do it with AS2. What I am trying to do is that if you enter (in the password box) a specifically word like ''Pizza'', your sended to ''Question 1'' using go to and stop. I tryed to create once myself with this tutorial [URL] but I think it's for AS2 cause i cant place a Var on as3. Can someone tell me how to put a Var on my inputtext? My Input text occurence is called ''Pass'' and is already set as ''Password'' (not single line or multi line). how to cade a var myself and i juste dont understand.
View 8 Replies
Jul 29, 2002
that is there any way to protect the Flash source (FLA) file with password. So that if any body wants to open the file in flash it should ask the password before opening.
View 2 Replies
Mar 22, 2010
I am currently using Flash CS4. Trying to do a very simple redirect via a password. What I want to do is whatever password they enter (variable defined as code) I want it to direct them to the keyframe. The below works if they enter hi (sometimes it seems to work sometimes not). The password "no" does not seem to work. I have attached simple fla based on the logic I am using.
[Code]...
View 6 Replies
Feb 10, 2001
Does anyone know if you can have two passwords for one input text box, if so, is there syntax that concatenates the two or something, i.e set variable pass=mypass1+mypass2?
View 2 Replies
Jul 11, 2010
I'm developing an AIR application and I need to store password there so user don't have to write it everytime when he launch the application. I want to ask you if you know some way how to store the password in no plain string. I can store it in the file but everybody can read it there... Is there any way how to encrypt and then decrypt saved password?
View 2 Replies
Dec 22, 2010
my question is about multiple password boxes and multiple ''if'' . I explain, i want to have a page that you need to enter multiple password, let's say 3, and if the 3 password are the good one, you can go to another frame. My actual code is this one
{if(Pass.text == "Coco"){
gotoAndStop("Pizza");
}
[code]......
View 3 Replies
Mar 26, 2011
I have a build server that generates our signed packages for deployment. However, I would prefer not to embed our passwords for signing the package in our ant file. Is there a way to get around this? It would be nice if I could setup something like how password-less ssh works or even use the keychain.<rant>Why do Adobe products seem so unfriendly in terms of working in a team environment or when it comes to trying to automate them as part of a tool chain/regression suite?! Don't get me started on the Adobe updater either.</rant>
View 2 Replies
Apr 30, 2009
This is probably very simple but here goes...How do I hide text in a password field? You know, the dots in place of text?
View 2 Replies