ActionScript 3.0 :: Support Extended ASCII Codes?
Mar 18, 2010
I am working on a Flex project that is interfacing with physical hardware.Using the AS3 command of socket.send I can set a particular feature on the physical hardware.The problem I am having is I need access to send from the Extended ASCII codes.[code]This would be translated to me sending two numbers to the hardware.7F and 07. The Dec equivalent of these Hex codes are 127 and 7.The hardware takes these two numbers and calculates a length along with a third integer.[code]
Unfortunately the Hex 88 is in the extended ASCII table.The highest the regular goes up to is 7f which is a Dex of 127.I need the ability to send full 0 to 255 numbers in ASCII form.I can't send from 128-255 without using the codes from the ASCII extended table.I get an error every time I try to send something form the extended ASCII table back from the hardware.Can anyone confirm that AS3 does not support the Extended ASCII codes?
View 1 Replies
Similar Posts:
Sep 30, 2010
can i recognise a movement on a joystick with ascii codes???
View 1 Replies
Feb 9, 2010
I'm trying to allow ascii codes to be entered into a textField, using num codes (ALT+Num), and am seeing some very strange behaviour. If I enter: Alt + 14, I get a charCode of 9835, and ♫ is displayed in my trace output, but a placeholder square is entered in the textField. If I enter: Alt + 0014, I get a charCode of 14, placeholder square is displayed in trace, and ♫ is displayed properly in the text field.
View 3 Replies
Jan 23, 2011
In AS2 you had the functions ord() and chr() which specifically converted ASCII codes to their string equivalents.
However in AS3, String.charCodeAt() and String.fromCharCode() work with Unicode values.
Is there any way to convert a string character to its ASCII equivalent and back?
View 4 Replies
Nov 18, 2010
i don't understand flash plugin only support .swf file,not support .flv file? always require load a swf file for play flv file, for exampes:
<embed type="video/x-flv" src="http://www.my.com/test.flv"></embed>
must be use a swf for play
<embed type="application/x-shockwave-flash" src="http://www.my.com/player.swf" flashvars=""></embed>
View 2 Replies
Aug 18, 2009
I have 1 class (that is extending a UIcomponent) that is representing a component. In that component I create different instances of another class that is also a UIComponent but this class doesn't show up in de first class. I see that it is running and that it has the correct hights but I got the feeling that it doesn't show up with this hights. If I trace I see the width and height is 200 X 200 but there is still nothing visible in my component.
View 1 Replies
Aug 12, 2011
I am taking feed files from an XML, so in order to make those not throw out errors when reading the XML, I convert all entities to their numerical equivalents and write them as "�" for example.This then gets imported into a database, so that it now has "�" in the database.
I then take the text in the database and use that to generate a new XML file, which still contains the "".Flash then reads this XML file and displays the text.Now I think every character is fine (haven't seen all of them, but seen many), including "" (), however, for some reason, the ï symbol refuses to work () and it just displays and not the symbol.
View 4 Replies
May 23, 2009
This is really simple, but I can't it after spending 20+ minutes searching on google! I just want a function that turns a number into a character; basically the inverse of mystring.charCodeAt(0). For example-
[Code]...
View 2 Replies
Feb 20, 2011
I'm running some script using the charAt() function, that is supposed to return the character at specific indexes in a string, however for some reason it is returning ASCII values.
View 2 Replies
Oct 1, 2009
I want to create a board class from canvas, which will allow to track click position on it in coordinates like A2, where A...D is Y coordinate in some scale and 1...3 is X coordinate [URL]What I want to create is a kind of convertor from canvas localX and localY to my new coordinates like A2.I am thinking of implementing if condition this way if (0.4 - x*size(from 1-3 here)/canvas.width <= X <= 0.4 + x*size(from 1-3 here)/canvas.width)
X = x;
This way I can assigned needed coordinates in X range. e.g. 1, 2 ,3 etc But what to do with alphanumeric range. (if for example I want to make it extensible)...
View 2 Replies
Apr 28, 2011
How can I check if a string has any other character than the ones listed here: [URL]
I would like to know if the string was inputted in any other language than English. Is finding special characters in the string the best way to detect non-english characters?
View 2 Replies
Feb 13, 2006
I am trying to make a game where if you press down on a letter key, it fires a bullet. How do i assign the fuction to the keypress?[code]90 is the key number for key "z".fireBullet(); is the function to fire the bullet. It is working.
View 7 Replies
Aug 29, 2004
Just list them if you could or link. even if you just have letters
View 1 Replies
May 19, 2009
I know letters have a number code to them, or ascii code, how can I use this to trace a letter with a number, for example lets say the ascii code for the letter 'a' is 97, in AS3 is there a way todo something like:
trace(asciiToString(97));
to trace out 'a'.
View 4 Replies
Aug 29, 2004
Just list them if you could or link. even if you just have letters
View 1 Replies
Dec 22, 2003
In Sweden we have these characters (and of course also in caps). But my MySQL db can't store characters, so if I look in the db and search for my name, Bostm, i can't find it..The search is ran from within flash (mx2004, and from there to a php-script, wich then sends the matching row back to flash.I want to convert all thein a string, and to be able to reconvert them when flash gets the string back... So the string should be stored in the db with the encoded...(am I confusing you now?)And I can't use the html-code for 'cause if the php-script prints this: Wow... quite an explanation...Ok, short summary:
AS-sting: Bostrm
>encode (so that =ASCII or so)
>send to PHP-script
[code].....
View 4 Replies
Aug 2, 2011
I need for my little project know a way to do following things:
- Getting any character from string (preferably operating on strings like on 1 dimensional arrays)
- Get ASCII code for character
- Convert number which contains ASCII code to character
View 4 Replies
Dec 22, 2010
use unicode character 187 (hex:BB) or ascii character 174 as a seperation character in my mysql database.This was working great in one of my swf files but not flash keeps reading an extra character. [code]The trace output from this looks like this: 1«1.If I change the php so that it's sending a 1B1 (no special characters) it works ok.I tried using the ASCII version and the Unicode version alt-174 and alt-0187 and both return this extra %2c character.I have tried urlencode from php, but even sending a 1%BB1 provides the same results.I can't fathom why it would all of a sudden start adding extra characters. So should I change my seperation character. If so, what's recommend? If not, should I check every variables from php for this extra character and remove it?
View 7 Replies
Jan 28, 2011
does anybody wrote a class for convert the special characters in ASCII/ISO Latin-1 Character Code, passing a string? i need to return for example:
[Code]...
View 3 Replies
Apr 18, 2005
I've used a Kirupa tuto for loading externat txts in a dynamic text box and works...but the problem is I'm spanish and we use accents and the break c: �So I changed the externat txts to html files in order to use accents, but...as Flash uses the "wonderful" ampersand to change between texts blocks, everytime I write an accent or a � , Flash thinks this is the end of the text and hides the next text.So, there's is a way to use externat txts or html with non standard ASCII loaded in Flash?
View 2 Replies
Apr 18, 2005
I've used a Kirupa tuto for loading externat txts in a dynamic text box and works...
but the problem is I'm spanish and we use accents and the break c:
So I changed the externat txts to html files in order to use accents, but... as Flash uses the "wonderful" ampersand to change between texts blocks, everytime I write an accent or a , Flash thinks this is the end of the text and hides the next text. So, there's is a way to use externat txts or html with non standard ASCII loaded in Flash?
View 2 Replies
Nov 14, 2009
Let say, I am loading xml file. And I have done addEventListener for Event.Complet. while xml is loaded, After completion of complete event, I declare I passed value to my attribute but it does not show in.
E.g.:
....this is a class main
var keyword:KeyWord = new KeyWord();
View 3 Replies
Sep 8, 2011
I'm new to AS3 and I need some help putting something with the FLVPlayBack component together.
When I put this in the first frame of my timeline:
player.volume = 0; player._uiMgr._isMuted = true;
[Code]...
View 2 Replies
Sep 13, 2011
We are trying to build a game in flash with AS3 (Im no pro with this)I've got 7 Movieclips and 7 Buttons.none of the 7 Movieclips should be on stage, they only appear when you've clicked 3 of the 7 buttons. once these 3 are clicked 1 of the 7 Movieclips should appear.Now I've got the code to make 3 selections and make it show 1 movieclip.and I've gotten the code to make a random movieclip appear.My question: How do I combine these two to make them do what's supposed to for the game.[code]
View 1 Replies
Jan 8, 2010
does anyone know how to play a sound when a mouse is over an object (image, text, button)?
View 4 Replies
Sep 16, 2010
I have to connect my flash application with php+mysql .how can i integrate my php code into flash..?
View 1 Replies
Feb 15, 2011
I'm making a Flash piece consisting of a few different pages and clicks to take you to different chapters. The company I'm making it for have sent me URL's of pages that will track the person on it - what page they're on, what chapters they view etc.
So, where do I put these url's?If I put them in a getURL won't that just redirect the person away from the page with the SWF in it?
View 5 Replies
Nov 12, 2008
When I am loading external UTF-8 text files (or texts from an mySQL DB) with Flash, if those files contains enters (by the user that create them) I noticed that those enters are replaced by two char codes: 10 and 13 (new line feed + carriage return). If I put the loaded string to a TextField.htmlText I get 2 enters pressed, and thus instead of having 1 line change I got 1 paragraph change.
[Code].....
View 4 Replies
Oct 18, 2011
i will like to add a loop to this codes below
var myTimer: Timer = new Timer(1000);
myTimer.start();
myTimer.addEventListener(TimerEvent.TIMER, nextPic)
[code]...
View 7 Replies
Jun 23, 2011
Can I really do that with the phone? Perhaps I would have to call any of the native API's, but I am not really sure whether and what is possible. I am pretty sure that the camera is accessible, so at the worst case I could send the picture to the server, decode the QR code on the server, and get the results on the phone, right ?
View 1 Replies