Hex | str2hex and hex2str

the other day one of my clan-members started talking in leetspeak ..
and called me a noob so, i decided to show him;
told him real men speak in hex; not leet/hex -speak
but of course i can't remember the ascii codes .. so i wrote these two scripts to do the conversion..
#!/usr/bin/env python
#* hex2str.py
#* Copyright Shane Lane
#* [email protected]
#* this code is released under GNU GPL (General Public License)
import sys, signal
from string import replace
_head = "hex2str.py | converts a hex2str.py string back to text\npress Ctrl+C to exit.\n"
print _head , ' - '*(len(_head)/4)
#signal handle is just cosmetik? to prevent the ugly error
#if you kill the script with ctrl+c
def signal_handler(signal, frame):
print "\n"
sys.exit(0)
signal.signal(signal.SIGINT, signal_handler)
def hex2str(st):
out = ''
while len(st) > 0:
out += chr(int(st[0:2], 16))
st = st[2:]
return out
while True:
_in = raw_input('hex2str:> ')
if len(_in) > 0:
print ' ',hex2str(_in).replace('x',' ').upper()
#!/usr/bin/env python
#!/usr/bin/env python
#* hex2str.py
#* Copyright Shane Lane
#* [email protected]
#* this code is released under GNU GPL (General Public License)
import sys, signal
from string import replace
_head = "str2hex.py | converts a string of characters to hex\npress Ctrl+C to exit.\n"
print _head , ' - '*(len(_head)/4)
def signal_handler(signal, frame):
print "\n"
sys.exit(0)
signal.signal(signal.SIGINT, signal_handler)
def str2hex(word):
out = ''
for char in word:
out += hex(ord(char))
return out
while True:
_in = raw_input('str2hex:> ')
if len(_in) > 0:
_in = str2hex(_in).replace('0x','').upper()
print ' ',_in

lfoitek wrote: ...  i am creating a state machine and then translating it into string representation ... i just can't figure out how to do the conversions to display the correct output.
If by "correct output", you mean you want something like 4bytes (0xBADDF00D) converted to 8bytes ("BADDF00D" in normal display), then there are several ways ...
Message Edited by Donald on 08-31-2006 04:17 PM
=====================================================
Fading out. " ... J. Arthur Rank on gong."
Attachments:
HexHeadaches.jpg ‏24 KB

Similar Messages

  • Hex string and normal string concatenat​e issue

    Hello,
    what i have is a hex string and a normal string which i want to concatenate into one string.  the problem is that in the output concatenated string you need to select either "normal display" or  "hex display" in the properties.  the problem is if you select hex display then the normal string is converted into hex and if you select normal display then the hex value is not correct.  is there a way to display the hex value in normal display mode?
    attached is a vi showing the problem
    Attachments:
    hex to string.vi ‏7 KB

    lfoitek wrote: ...  i am creating a state machine and then translating it into string representation ... i just can't figure out how to do the conversions to display the correct output.
    If by "correct output", you mean you want something like 4bytes (0xBADDF00D) converted to 8bytes ("BADDF00D" in normal display), then there are several ways ...
    Message Edited by Donald on 08-31-2006 04:17 PM
    =====================================================
    Fading out. " ... J. Arthur Rank on gong."
    Attachments:
    HexHeadaches.jpg ‏24 KB

  • Compile asm to hex file and send to microcontroller pic...

    Hi,
    I would like to know if is it possible on new labview8 to compile code asm to hex file and send the file to pic micro pic16f84??.
    Actually, I did application on lv7.1 that modified the asm code and later call to System Exec.vi to use mspanwin to compile the file to hex file, and later call to icprog program to send the file hex to pic by serial port with programer JDM. It works but i would like the external program would be invisible to user. Therefore i would like to get all with labview, but i dont know if it is possible compile any language code programming to hex file to send pic, and if it possible send the hex file with labview algorithm on new version...
    Can anyone advise me?. Thanks Fonsi.

    Hi,
    There is Labview Embedded software to program microcontrollers (http://www.ni.com/labview/embedded) but this software is only for 32-bit processors so there is no way to do that for your pic controller (8 bits).
    Unfortunatelly, I think the solution you have done (calling the other programs from labview) is the only one you can use right now.
    Regards,
    Jaime Cabrera
    NI Applications Engineer 
    Regards,
    Jaime Cabrera
    NI Applications Engineering Spain

  • Convert date/time to HEX command and write to a bin file

    Hello,
    I have to do the following thing. I have the date/time string, let's say 08:45:23, 12.08.09, where the hour, the minutes, the seconds, the day, the month and the year represent hex number or in other words I have the following command:
    Byte 0 - Byte 5
    0x08; 0x45; 0x23; 0x12; 0x08; 0x09;
    Now I want to write this command in a binary file in order to send thefile later throught serial RS232 connection.
    Now, I am not sure whether I write the command in the binary file in the correct format. What I simply do is to write it as a string
    ("084523120809"). Is this the correct way. I guess no, because when transmitted it does not work as expected.
    How can I write this string as a HEX command in the binary file?
    Thanks for the replies in advance
    IG
    Message Edited by igurov on 08-12-2009 01:51 AM
    Attachments:
    1(2).JPG ‏39 KB

    Do you know the difference between decimal and hex values? It's not the same, that the whole point, and it's why it doesn't make sense. Decimal 32 is not the same as hex 32. These are two different values, even though they both have the digits "3" and "2". The hex value will be the same as the decimal value up to the value of 9. In your example the hour is 8. In decimal this is 8, in hex this is 8. The minutes is 45. That's decimal. In hex, this is 2D, not 45, as you claim in your example. Hex 45 is a completely different number (and a completely different "pattern").
    Attachments:
    time hex.vi ‏12 KB

  • How could I choose some bytes from HEX string and then convert it to a decimal value?

    Hi I am working with an OMRON E5EN temperature controller using VISA serial to get data, I send the Read from Variable Area command and get this string  in hexa 0230 3130 3030 3030 3130 3130 3030 3030 3030 3030 3041 3203 71 or .01000001010000000000A2.q in ASCII this string means:
    02 STX
    3031 3030 Node and subadress
    3030 End Code Normal Completion
    3031 3031 Command Read from Variable Area
    3030 3030 respt code Normal completion
    3030 3030 3030 4132 Hexadecimal A2 = 162  (this is the temperature data that I want to show in decimal)
    03 ETX
    71 Block Check Character
    I want to choose the eight bytes for the temperature data and convert it to a decimal number. I have seen the examples to convert a Hexa string to decimal but I do not know how to choose the specifics bytes that I need.
    I have look for a driver but i didn´t find any. I am a beginner so please include especific topics for me to study in your answer.
    Thanks
    Carlos Fuentes Silva Queretaro Mexico 

    If the response always has the temperature starting with byte 15 and is always 8 bytes in length, you can use the String Subset function to get those bytes out of the string.  Then use Hex String to Number to convert to a decimal number.
    Well someone already beat me to the solution:
    Message Edited by tbob on 01-04-2008 04:42 PM
    - tbob
    Inventor of the WORM Global
    Attachments:
    HexStr2Decimal.png ‏7 KB

  • How do I read a hex value and then convert to the binary equivalent?

    I am reading hex values from a register on my unit under test. I only want to monitor certain bits in the hex value to check a status. I have everything down to run the program except how to read my hex values in binary form. Any suggestions out there?

    If this is just a matter of display, then right click and choose "Format & Precision...". Beware, this works only with integer indicators (I8/16/32 and U8/16/32).
    If the problem is to extract a bit value in a specific position, then go to the "Advanced >> Data manipulation" sub-palette where are all bit manipulation functions (rotate, shift, split...).
    Don't forget either the logical functions (And, Or...) in the boolean sub-palette, where is also the "number to boolean array" function (to be used in conjunction with an index array node).
    Another option is to use string conversion functions, in the "String >> String/Number conversion" sub palette.
    Have a look to the attached image.
    Enough ?
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        
    Attachments:
    Hex_&Bin.tif ‏20 KB

  • Hex code and java

    Hi to everyone!
    I must write a java application that converts files from html to xml using jtidy package(particularly,using the parse method).But after this conversion the hex code 0D0A appears in the xml files;
    so,for example,the sentence(in the html file):
    Login or Password is incorrect
    becomes(in the xml file):
    Login or Password is
    incorrect
    How can I do to have the whole sentence on the same line,even in the xml file?I need to have this change in the string because I've to do xpath queries on it,and java doesn't recognize hex code.Could I apply any jtidy setting?If yes,which one??Otherwise..how could I solve my problem?
    Please,help me!!!

    Yes, but your question isn't clear to me. Where are these 5 values coming from? Do you have an array with 5 values? To convert an int to a hex String, use Integer.toHexString(yourInt);

  • Getting hex value and coordinates of pixel

    Gud day! I just want to ask if getting the hexadecimal value and coordinates of the pixel are possible? Is there a class than can do this?

    Some things are not clear yet. Do you want to access a pixel from the screen or from an image? If image: what kind of image are you working with - BufferedImage? With "value" do you mean the RGB(A) value of the pixel? About coordinates: Usually you need to know the coordinates of the pixel you want to access.
    Assuming you have a BufferedImage and want to get the RGB value of - say - the pixel at (10,15) and display that value as a hex string:
    BufferedImage bufferedImage = ...
    int x = 10;
    int y = 15;
    int rgb = bufferedImage.getRGB(x, y);
    System.out.println(String.format("0x%08x", rgb));

  • The TCP/IP Write Function is transmitting Hex data as ASCII; E.g. 5 bytes of Hex (010518001E)and TCP/IP transmits 10 bytes in ASCII(30 31 30 35 31 38 30 30 31 45).

    Our TCP/IP Server sent a 8 binary bytes (a float number) and from our TCP/IP Client, we try to convert it back into a float number ... but failed. We did try to use the same sample in com./TCP/IP also use type cast but failed the same! Some one can help us? Thanks
    Attachments:
    Test_TCP_IP.vi ‏45 KB

    Sorry guys, It is me ATC ... by mistakes the I did post with wrong title messages! Please ignore the title ... read the detail & attachement!
    Thanks for understanding (I could not remove my post questions)

  • Converting BLOB to HEX and HEX to BLOB

    Hi!
    I have a table that stores pictures as BLOB. Due to some project rules, I need to be able to convert this image to a CLOB (represented as a HEX String) and, after that, I need to convert this HEX String back to BLOB.
    I already created the function that converts BLOB to HEX. See below:
    CREATE OR REPLACE FUNCTION blob_to_hex (blob_in IN BLOB)
    RETURN CLOB
    AS
        v_clob    CLOB;
        v_varchar VARCHAR2(32767);
        v_start   PLS_INTEGER := 1;
        v_buffer  PLS_INTEGER := 32767;
    BEGIN
        DBMS_LOB.CREATETEMPORARY(v_clob, TRUE);
        FOR i IN 1..CEIL(DBMS_LOB.GETLENGTH(blob_in) / v_buffer)
        LOOP
           v_varchar := DBMS_LOB.SUBSTR(blob_in, v_buffer, v_start);
           DBMS_LOB.WRITEAPPEND(v_clob, LENGTH(v_varchar), v_varchar);
           v_start := v_start + v_buffer;
        END LOOP;
       RETURN v_clob;
    END blob_to_hex;But, I´am having some difficulties to convert the HEX CLOB back to BLOB.
    Does anybody know how could I do this?
    Thanks a lot!!!
    Regis

    try this procedure
    first create directory BLOB_DIR
    CREATE OR REPLACE DIRECTORY
    BLOB_DIR AS 'C:\temp';
    CREATE OR REPLACE PROCEDURE BLOB_LOAD(filename varchar2)
    AS
    lBlob BLOB;
    lFile BFILE := BFILENAME('BLOB_DIR', filename);
    BEGIN
    INSERT INTO O_CONTRACT_IMAGES
    (CONTRACT_NO,CONTRACT_Year,CONTRACT_blob)
    VALUES (1,2, empty_blob())
    RETURNING CONTRACT_blob INTO lBlob;
    DBMS_LOB.OPEN(lFile, DBMS_LOB.LOB_READONLY);
    DBMS_LOB.OPEN(lBlob, DBMS_LOB.LOB_READWRITE);
    DBMS_LOB.LOADFROMFILE(DEST_LOB => lBlob,
    SRC_LOB => lFile,
    AMOUNT => DBMS_LOB.GETLENGTH(lFile));
    DBMS_LOB.CLOSE(lFile);
    DBMS_LOB.CLOSE(lBlob);
    COMMIT;
    END;
    Edited by: Hossam Kasem on 20-Apr-2011 05:56

  • Display hex and decimal

    Hi everybody,
    I'm getting real-time data and I would
    like to know if it is possible to change the display to show the
    results in hex format and decimal, using the same display. I mean, use
    a push botton to change between them.
    Regards
     Felipe

    You can also have both in one indicator.
    For an example, have a look at this old nugget. The advantage is that you don't need any extra controls and code (such as buttons, property nodes, and associated logic).
    Message Edited by altenbach on 07-20-2009 10:49 AM
    LabVIEW Champion . Do more with less code and in less time .

  • Is possible compile .asm code to hex code?? and read&program from lb pic16f84 serial port??

    Hi,
    I would like to use my aplication, i use a pic 16f84, in my vi application i modify the asm code, and save it. LAter i need to use mplab to compile to hex and use icprog to pass to the pic by serial port...
    Is possible do all on labview???.
    Or maybe call the mplab directly to open and convert to hex file, and later call the icprog to program the pic.. without use this programs. Directly with commands do it and close the programs...
    I hope any help..!
    Regards, Fonsi.

    Fonsi,
    You certainly could write an assembler for the pic code in LV. I wrote an assembler for the old 6502 processor in LV4. The project got cancelled before everything was finished, but the concept is valid. It is a lot of work, parsing strings and tracking all the addressing modes, etc.
    Whether it is worth the trouble as opposed to using the existing tools is something you will have to decide.
    If the other software can be called from a command line, the system Exe.VI might be useful.
    Lynn

  • Created Menu in JS in Acobat 7.0 that works and Don't work in 9.2

    I created a menu that does a "Save As" which converts pdf to jpeg in Acorbat 7.0 on XP Pro OS.  In MS VBA code, I do the following VBA Code that execute the menu in Acrobat using "MenuItemExecute".
                Set gApp = CreateObject("AcroExch.App")
                Set AVDoc = CreateObject("AcroExch.AVDOC")
                If (AVDoc.Open(Path, Path)) Then
                    Set AVPageView = AVDoc.GetAVPageView
                    Set pdDoc = AVDoc.GetPDDoc()
                    Set jso = pdDoc.GetJSObject
                    'gApp.Show
                    gApp.MenuItemExecute "SaveToJPEG"
                    Set jso = Nothing
                    pdDoc.Close
                    Set pdDoc = Nothing
                    AVDoc.Close (NoSave)
                    Set AVDoc = Nothing
                End If
    In order to run my custom Menu "SaveToJPEG" which is really a "Save As" to jpeg, I had to set the Edit>Preferences>JavaScript to "Enabled menu items JavaScripts execution privileges" and "Enable Acrobat JavaScript".    The above code works in my MS Access VBA program in Acrobat 7.0 running in XP Pro OS.
    I am having problems running Acrobat 9.2 on Win 7 Pro, and I get the following error "An Internal Error Occurred" when it execute the code line gApp.MenuItemExecute "SaveToJPEG"
    I made the changes to Edit>Preferences>JavaScript to "Enabled menu items JavaScripts execution privileges" and "Enable Acrobat JavaScript" too.
    I am able to select "SaveToJPEG" from the menu bar only when I have a pdf file open, and it does make a jpeg !   This means my JavaScript of my menu works in Acrobat 9.2.
    I also checked the registry HEY_KEY_Computer_User\software\adobe\adobe acrobat\9.0\JSPrefs\bEnableJS   ,   bEnableMenuItems,  bEnableGlobalSecurity
    The bEnableJS is Hex 1, and the bEnableMenuItems is Hex 1, and the bEnableGlobalSecurity is Hex 1
    I do know that acrobat 9.0+ does have the ability in the menu to do the same thing, but I want to keep my code compatible with acrobat 7.0
    Then the MenuItemExecute will not work in multiple menu flow down like Export>Image>Jpeg.   I would also appreciate how to reference this menu too !
    Can someone please help me !!
    ThankYou,

    I got the app.listMenuItems() to work.   I have to use the lower right side Enter key.  It appears that the two Enter keys don't work the same here.
    I used the following script to list the menu items:
         var menuItems = app.listMenuItems()
         for( var i in menuItems)
         console.println(menuItems+ + "\n")
    I got the following:   It was very long, but I will just print a few of them.   How do I spot the formal name for my "SaveToJPEG" menu item???  It is the second one.
    This is what I see from app.listMenuItems() :
    [cName:File, oChildren:[[cName:Open],[cName:SaveToJPEG],[cName:Organizer, oChildren:[[cName:OpenOrganizer],[cName:AddToOrganizer],[cName:OrganizerNewCollection]]], [cName:endOpenGroup],[cName:NewCollection],[cName:Collection, oChildren:[[cName:CollectionEditInAcrobat],[cName:],[cName:AddFilesToCollection],[cName:A ddFolderToCollection],[cName:CreateFolderInCollection],[cName:],[cName:SecureCollection]]] ,[cName:],[cName:NewDocument, oChildren:[[cName:NewDocFromFile],[cName:ScanMenu, oChildren:[[cName:ScanPreset1],[cName:ScanPreset2],[cName:ScanPreset3],[cName:ScanPreset4 ],[cName:Scan],[cName:],[cName:ScanConfigurePreset]]],[cName:Web2PDF:OpnURL],
    It give me a message at the bottom that it "cannot continue printing to the console"
    Can I send this to a file or some where else where I can see everything??   Maybe the formal names are toward the end ???   I don't see the formal name here????
    Please Help ! !
    Thank You,
    Gary

  • Problem consistently printing via new (summer 2011) AIRPORT EXTREME BASE STATION and Brother wireless printer (model HL5370DW). What am I doing wrong?

    Thanks in advance for any help you folks can offer. I'm a newb here and will try to offer as much detail as I can about the dilemma at hand.
    Scenario: Home network has been recently set up for wireless internet access via NEW Airport Extreme Base Station (purchased September 2011). Units accessing the network include: 2011 Macbook Pro, 2011 Macbook Air, 2007 Macbook, 2009 Macbook Pro, 2 iPhone 3GSs, and a 1st-gen iPad (and a partridge in a pear tree AEBS is configured to run WPA2 encrypted network, as well as a WPA2 guest network. I am attempting to yoke a BROTHER HL5370DW wireless B or G/ ethernet / usb-capable printer to the main network such that any and all units can print wirelessly or its equivalent (i.e., via printer hooked to AEBS through USB hub)
    Problem: Despite configuring the Brother printer to recognize the main WPA2 network I created, I am unable to get wireless printing to work. My workaround was to physically connect Brother printer to AEBS via USB, specifically using a Belkin USB hub (after all, I wanted access to usb drives, as well as the printer). This workaround works ONLY SOME OF THE TIME. Generally, after a fresh boot of any computer or after a restart of the AEBS, any given computer will be able to print (i.e., any computer wirelessly connected to the main WPA2 network recognizes the printer). HOWEVER, at random times, printer access is gone (as is access to USB drives connected to AEBS's usb hub). Wireless networks are still up and running when that happens. IS THERE A WAY TO GET THE USB HUB's devices (i.e., printer and usb drives) to ALWAYS REMAIN AVAILABLE AS LONG AS THEY STAY CONNECTED TO THE AEBS? In other words, what accounts for the intermittent loss of the usb peripherals?
    Sometimes, I just shut the airport off on whatever computer is having this problem, and the problem goes away. Sometimes, the problem is present across all computers in the house, sometimes only a few are affected. I can ALWAYS see the AEBS in the Airport Utility if the AEBS is connected to the particular computer via ETHERNET CABLE.
    My theories:
    - true wireless printing (i.e., without usb hub workaround) doesn't work because the N network somehow isn't backwards compatible with the Brother printer, which, i believe, is B/G. Although...isn't Wireless N networking supposed to work with BG devices? I did find a thread (https://discussions.apple.com/thread/2570774?start=0&tstart=0 ) that explains some of the particulars of WPA2 encryption and Wireless B/G issues, but it was beyond my level of comprehension (I'm a psychologist, but not an Apple Genius
    - The usb workaround is only intermittently viable because of some flaw in the Airport or Airport Utility that causes dropouts to happen when a Macbook Pro or Air's lid gets closed or one gets opened after having been at a different network (e.g., at my office).
    QUESTIONS:
    - Should I try to use my old router (7 year old Linksys WRT54G) as an access point and connect the Brother printer to that G-router? How do I do that?
    - I wouldn't mind just relying on the usb hub method if I could just insure more consistency (i.e., no random dropouts of peripherals). How could I do this?
    Rule out:
    - wireless printing works on my printer - it was being recognized back before the AEBS. I had the Linksys router running a WEP network and had the wireless printer talking with no cables to the router and the computers. (I just don't want to revert to using WEP encryption given its lack of security and my trying to protect HiPAA related health information on behalf of patients)
    Any help will be greatly appreciated.
    Thanks in advance!

    13 ASCII characters = 104 (aka 128)-bit WEP
    encryption
    If turning off WEP works, then you just need to
    provide the cameras with the "Equivalent Network Password".
    One of the problems with WEP is that the actual
    standard relies on a 10 character HEX key for 40bit
    WEP and a 26 character HEX key for 128bit WEP.
    In order to make things easier, vendors use certain
    algorithms to convert simple alphanumeric passwords
    (or passphrases) into HEX keys, thus enabling the use
    of simple easy to remember WEP password rather than
    lengthy HEX keys. The problem is that different
    vendors use different algorithms to generate the HEX
    key and therefore a ASCII password on an AEBS will be
    hashed differently on a non-Apple client and vice
    versa.
    You may find the following article helpful:
    - Apple article, especially the part about
    "Third-party client to Airport".
    Brilliant idea about trying the system with No encryption on... that DID solve the problem... almost.. once I turned off the encryption option, and restarted the Airport, I got a dialog box showing that the "Base station needs attention" but it didn't indicate WHAT kind of "assistance" it needed. Nonetheless, I closed out of the Airport program only to find that the indicator light, which had been Green, was now, flashing Yellow and I could not connect anything, including my computer. I opened the Airport program again and found the ONLY way I could get the Green light on was to select some sort of encryption option... then the light would go Green again but my cameras would not hook up again, and when I went back in and ONLY changed the option to NO encryption, I got the yellow flashing light and the "this base unit needs attention" warning...
    I think your suggestions are almost on the mark... is there any way of reconciling the WEP coding between the cameras and the Airport??? Or turning off the encryption option and STILL have Airport work?
    Thanks again for your help and suggestions... I really appreciate it.
    geoff

  • Java (.jar) applications and games on 5530XM

    Hello
    I have used the search option before asking, and I have manually searched some of the sub-forums (or boards) I thought could and would be relevant to my issue, and have seen no similar questions being asked. I have also worked with my good friend Google, and had no luck there, either. Most of the results were pirated software links, which is not necessarily bad, but does not help me resolve my issue.
    Now, I'm not sure this is the correct board to post this in, but I'm not too far off even if it isn't; so bear with me. Now, onto the question.
    I would like to know if it is possible to turn off the D-Pad emulator, and how one would go about doing that?
    Let me elaborate, for those who are not familiar with what I'm talking about:
    Namely, the 5530XM has an elegant solution for running non-touch apps and games (i.e.. those made for earlier revisions of the S60 OS, or even those legacy apps for S40), and it is as follows - the phone places the app/game interface in a window, scaled to the apps original rendering resolution, and then places a set of touch command buttons. It makes a Directional Pad, consisting of concentric circles, divided into 5 areas, 4 directions (up, down, left, right), and a general "OK" button (center). It also displays four "Letter-buttons", labeled "A", "B", "C" and "D", which have variable or no functions, depending on the app that is run. Finally it displays two function buttons, Left and Right Menu buttons, usually placed near the red and green phone button on phones with keypads. This works flawlessly for old apps and games, with the limitation that the interface is not multi-touch, meaning it will only accept one virtual keypress at a time.
    My problem with this setup is that some of the more recent Java applications are run as legacy as well; meaning ALL of the touch-aware apps and games that I have tried running. This is unacceptable for several reasons. First, some of them don't recognize the simulated commands, rendering the virtual D-Pad useless. What's more, the virtual interface covers a good portion of the app's original interface, making it impossible to use it. The apps and games I have tried are shipped as .jar, and are supposed to work with a touch interface. And they do, it's only that they're half-covered with an unneeded virtual D-Pad!
    I am open for all suggestions, I have the latest firmware installed, 20.0.080.C01.01, the phone is, as mentioned, 5530 XM (RM-604), and I haven't manually altered Java in any way. I am, however, ready and willing to go for some more serious tinkering if need be, even if it involves altering system files, hex editing and whatnot, and I won't cry to mama if I brick the phone, I know full well the range and scope of possible consequences. This would probably constitute breaking the rules, maybe even voiding the warranty, so I'm not asking for anyone to give an answer of that level here, publicly, but feel free to send a personal message or ask for my e-mail / IM screen name, so that we can communicate about such taboo topics
    One more note, probably relevant: .sis and .sisx apps and games work flawlessly, bot the old ones needing the D-Pad (they get a virtual one) and the new ones, which are correctly recognized as touch-capable. Even some that are reported incompatible by the phone work without a hitch. It really is a pity to see the Java apps fail after everything else is flawless.
    Perhaps, if there is no known solution or a dirty workaround, we can file an official recommentadion/bug report/feature request to the developers in charge? I can wait.
    Thanks to those brave enough to read my wall of text, and thanks in advance to all who reply something useful
    Careful what you wish for... You just might get it.
    Solved!
    Go to Solution.

    McSteel wrote:
    Thanks a million!
    Can't believe I missed that one... You truly are a "Mobile Overlord".
    Although that kinda sounds like there is a Fixed/Immobile Overlord out there
    Anyway. Kudos for this, I suppose there are others who would find this useful as well.
    Thanks again
    Didn't you notice his wings?
    ‡Thank you for hitting the Blue/Green Star button‡
    N8-00 RM 596 V:111.030.0609; E71-1(05) RM 346 V: 500.21.009

Maybe you are looking for

  • Macbook Pro behaving extremely strangely

    Today I took delivery of a new 11 inch Macbook Air. Started migrating over wi-fi from my 2009 Macbook Pro and obviously it was taking forever so I stopped it after a few hours. Now doing a backup restore to the Macbook Air from Time Capsule which see

  • Creating a set of characters

    This seems simple, but it is really bothering me because it is not working. How do I make a simple set of characters. For example: I would like to make a set called "operators" and i would like it to include '-', '+', '*', '%', etc. I will also have

  • To Reopen the Completed Status Global outline agreements

    Hi, We have got some Global Outline Agreemtns with 'completed' status by the user. We want to reopen it for additional processing,but the change icon in the global outline agreement is greyed out. Could anybody tell me how to reopen the 'completed' s

  • Jerky video playback after installing adobe flash player for forefox

    I switched to Firefox the other day from MSIE. I immediately had problems with jerky / intermittemnt delivery of video training. I noted that one of the causes could be the adobe flash player so i uninstalled the windows one and installed the firefox

  • Updating Intel HD Graphics 4600

    Dear HP rep, I've got a new HP Envy 17t-j100. I keep getting erros from multiple programs telling me my intel graphics driver is outdated. I've tried all of the HP driver updaters, as well as installing the driver from the intel website itsel to no a