Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 7 of 7

Thread: ASCII code?

  1. #1
    Join Date
    Oct 2000
    Location
    Peoria, AZ USA
    Posts
    810

    ASCII code?

    Does anybody know of a utility or program or app that finds the ASCII code of a typed or inputed word, phrase, sentence? I need it to be usable online??? Usable in Flash also? thanks!

  2. #2
    Corey is offline Indigo Rose Staff Alumni
    Join Date
    Aug 2002
    Posts
    9,746
    Is this what you are asking for or am I misunderstanding?
    http://www.vortex.prodigynet.co.uk/misc/ascii_conv.html

  3. #3
    Join Date
    Oct 2000
    Location
    Peoria, AZ USA
    Posts
    810
    I dont think it would work within flash. I need something that can work in flash and export the ASCII as a var within flash. Thanks though. Nice link.

  4. #4
    Corey is offline Indigo Rose Staff Alumni
    Join Date
    Aug 2002
    Posts
    9,746
    Doesn't Flash 8 run Javascript? Anyhow I'm sure this can be done in actionscript, I'll take a boo.

  5. #5
    Corey is offline Indigo Rose Staff Alumni
    Join Date
    Aug 2002
    Posts
    9,746
    How's this?

    Code:
    function stringToAscii (someString){
        var arry = someString.split("");
        for(var i in arry){
            arry[i] = arry[i].charCodeAt(0);
        }
        return arry;
    }
    function asciiToString (asciiArray){
        var str = "";
        var len = asciiArray.length;
        for(var i=0; i<len; i++){
            str += String.fromCharCode(asciiArray[i]);
        }
        return str;
    }
    var myString = "Sample";
    var myAsciiArray = stringToAscii(myString);
    trace(myAsciiArray);
    var myAsciiToString = asciiToString(myAsciiArray);
    trace(myAsciiToString);
    Credit goes to someone named "Pixelwit" who posted this code to the actionscript.org forum...


  6. #6
    Join Date
    Oct 2000
    Location
    Peoria, AZ USA
    Posts
    810
    Darn close to what i am looking for. I think I will use this. thanks!

  7. #7
    Corey is offline Indigo Rose Staff Alumni
    Join Date
    Aug 2002
    Posts
    9,746
    Eggsellent.

Similar Threads

  1. Article: Using Authenticode Code Signing Certificates
    By Ted Sullivan in forum Setup Factory 8.0 Examples
    Replies: 4
    Last Post: 10-31-2007, 09:03 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts