I am making a simple tool for use around the office that takes up to maybe up to 8 inputs (text, combo box, t/f, etc)What is the best way to make sure that each field has something entered or selected? I am not worried about malicious code.
I am working on a CD project in flash. I have a main Projector(.exe) file which call other swf files. I compile all these files(.exe and swf) to installable CD which copy all the files on the local hard disk and make a shortcut on the desktop.
Now the problem is that I want to run my .exe file only if CD is in CDROM otherwise it loads another swf(from the local hard disk) which shows the message "please insert the CD and restart the application".
What I want to do is what parseInt and parseFloat does..basically I want to take ANY string and a radix value from 2->36, and then cut the leading part of the string that makes it a value in that radix.Let's call this method "cutValueFrom( str:String, radix:uint ):String".[code]and yes I could technically bang this out in some long ugly loop... but I want it faster then that. parseInt does it speedy like, I'm looking for something comparable, hence my desire for a good RegularExpressio.
I am working on a CD project in flash. I have a main Projector(.exe) file which call other swf files. I compile all these files(.exe and swf) to installable CD which copy all the files on the local hard disk and make a shortcut on the desktop.
Now the problem is that I want to run my .exe file only if CD is in CDROM otherwise it loads another swf(from the local hard disk) which shows the message "please insert the CD and restart the application".
[AS3] import flash.events.SampleDataEvent; var data:SampleDataEvent = new SampleDataEvent(SampleDataEvent.SAMPLE_DATA); [/AS3]
compile it with Flex 3.6 and run local works, then run in browser, works. compile it with Flex 4.5.1 and run local works, then run in browser, throws exception:
I am a total newbie and just learning from resources available here.. Today i was trying If statements to verify if the password entered in input box named "pass" . I code is as following.. on (release){ if (pass =="acc"){ gotoAndPlay(10); }else{ gotoAndPlay(15); }} Even if I enter the correct password it displays the content in frame 15.
Using Flash CS4, whenver I try to publish anything, I get this message: The file 'toplevel.as', which is required for typechecking ActionScript 2.0, could not be found. Please make sure the directory '$(LocalData)/Classes' is listed in the global classpath of the ActionScript Preferences. $(LocalData)/Classes is listed, and toplevel.as is in C:Program FilesAdobeAdobe Flash CS4CommonFirst RunClasses What is the problem? How do I verify or change the value of $(LocalData)
I am uploading files, jpgs, pngs, gifs, using filereference ... no problems.
my concern is the validity of the files that a user might upload.
for instance, I took a .txt file, changed it's extension to .jpg, and filereference was able to upload it to my server ( furthermore my php script was able to create a copy of it, resize the copy, and save it also ).
I have made my contact form and it works, but I need some kind of script to work with the "email" text field. I need it to only send me mails with real email addresses. Btw. the form is off of this: [URL]
I'm working on a simple non-XML-based slide show where the container MC dynamically loads sequentially numbered files (01.swf, 02.swf, 03.swf, etc). As you may already be gathering, I want to write a little loop that returns true if the file is there, e.g. if there's only files, 01.swf � 07.swf and the loop checks for 08.swf and doesn't find it, it returns false. BTW, in this particular case checking loader MC's _width won't work, so I need an alternative to that.
I am trying to create a form in actiocsript that verifies correct user input before submitting. So far I have the form checking that NewEmail contains characters, an "@" symbol and a "." symbol. However is there code that can check that the layout of the email is correct before submitting i.e. <"sometext"@"sometext"."sometext">
Also I need to insert a seperate name verifier to check that there are no numbers included in a text box. This is my code so far: _global.detailsCheck = function() { if ( _root.NewEmail.length == 0 | _root.NewEmail.length == "" | _root.NewEmail eq "") { // Alerts the user that their password is incorrect _root.Guide2 = "Please Fill All Detail Fields"; [Code] .....
I am working on a CD project in flash. I have a main Projector(.exe) file which call other swf files. I compile all these files(.exe and swf) to installable CD which copy all the files on the local hard disk and make a shortcut on the desktop.Now the problem is that I want to run my .exe file only if CD is in CDROM otherwise it loads another swf(from the local hard disk) which shows the message "please insert the CD and restart the application".
I found this script on the web. What it is trying to do is verify the url so that if the swf is running on another url, the script will either give a message or do an action. Yet I have not got it to work?
Code: protocol=_url.substr(0,_url.indexOf(":")); if (protocol=="file") { // Let's be nice:
I have 2 input boxes one i will add an email the second i want it to compare the details.So i add a persons email, the second box the same email would be added and when i press submit it compares the two and if correct goes here... im using something like this.
Wanted to know if it is possible to make a bool-variable in flash that is set to 'false' by default. It then checks if a file exists at a certain location, and if so, the bool-variable is set to 'true' ? Something like: if (c:/myTextfile.txt == true){*do stuff here*;} What would be the correct code?
I'm creating an exercise where I have five movieclips that at first their alpha are at 0% and then they are shown randomly and I want to verify if they are all visible (100%) a text message (a dynamic text field) will be displayed. What I want you to explain me is how do I do this verification. Do I need to do this with an IF condition?
We have a typical Flash+J2EE application that makes multiple requests from client to server (over Flex remoting), which is taking quite a long time on some client systems (and hence results in poor application performance on such systems).
Now, suspecting issues with network connectivity (latency) on such client system(s), we need to identify how far does it contribute to the slow response of the application (rather than performance issues in the application itself).
So, what are the best way(s) to diagnose this on a client system (Windows)?
Note that we have tried profiling our application, which does not indicate bottlenecks there, so we just need to clearly identify the possible network issues.
I was testing this little prototype method I made up (in a file, Array_Update.as) (I do realize I could've used "for each...in" instead of "for...in", but I just didn't...),
[Code]...
That means it will remove any elements with a property value the model array's own elements don't have, and add any elements with properties from the model that its own elements don't have, without touching any elements with matching values. Maybe it doesn't have many applications but the real problem is it gives that runtime error above. I don't understand what's wrong. [URL]
If i have two or more input boxes to create a crossword puzzle, how can i make the cursor automatically jump to the second input box after the first input box is filled with a character?
i created an input text box that puts the users input into a global variable, but when i test it it gives me not only what i have typed in but all the html formatting for the font that my input text box has on it.I only want the text that i have typed in to go into the variable but the wackload of html is going in there too. ive tried a few different things, rewriting my code, recreating the text box, changing settings, dont know what im missing.
I'm trying to build a fahrenheit to celsius convertor in AS3. How can I test to see whether what is input into a text input box (flash component) is not a number? This isn't correct but you can get an idea of what i'm trying to do:
if (celsius_txt.text == NaN || fahrenheit_txt.text == NaN) { //do something; }