OK, let me say I decided to try doing this project as a way for me to better learn AS. Essentially what im trying to do here is recreate a tool that i use at work. All the program does is generate a password. The password changes daily and it based on a serial number, current date, and some basic calculations. Right now i just trying to plan out everything…Details listed below:
Application Detials:
1 input field and 1 output field. User will type in a numeric serial number into the input filed and hit submit button – The serial number will be displayed in the output field as a password but before its displayed I will need to have further calculations performed.
(1) My current question is how do I go about rearranging the input data. Example: Input (12345) rearranged to Output (52341).
I know how to have the input returned to the output field but im trying to figure out what the best way would be to to rearrange the numbers before returning to output field. Rearranging the input will only be the first step before I perform other calculations…
Thanks for the help!