Help with RM Remote .key KeyEventRemap scanco

Can someone tell me what are the scancodes used in these .key files. Are they in fact key scancodes ? Is there a list somewhere to show what they are and what they do ? I have various keyboard scancodes and virtual key codes but they don't seem to relate to the ones in the .key files. Most of my lists show hex numbers, are the ones in the .key files in another format. There must be some methodology to this problem I'm having.
[RC Key Map Information]Name=Microsoft Windows Media Player 7
[KeyEvent6923]KeyName=Play/PauseNotification=2KeyEventRemap=32808HandleByApp=
32808 code should = ctrl+p
I have in my lists
Scancode for ctrl is D and p is 9 hex or Virtual key code ctrl is A2 and p is 50 hex
So where does 32808 come from ?
Lastly how does the .key files relate to the .exe ? is it my the Name field (Name=Microsoft Windows Media Player 7)
Thanks, if you can help.

Can someone tell me what are the scancodes used in these .key files. Are they in fact key scancodes ? Is there a list somewhere to show what they are and what they do ? I have various keyboard scancodes and virtual key codes but they don't seem to relate to the ones in the .key files. Most of my lists show hex numbers, are the ones in the .key files in another format. There must be some methodology to this problem I'm having.
[RC Key Map Information]Name=Microsoft Windows Media Player 7
[KeyEvent6923]KeyName=Play/PauseNotification=2KeyEventRemap=32808HandleByApp=
32808 code should = ctrl+p
I have in my lists
Scancode for ctrl is D and p is 9 hex or Virtual key code ctrl is A2 and p is 50 hex
So where does 32808 come from ?
Lastly how does the .key files relate to the .exe ? is it my the Name field (Name=Microsoft Windows Media Player 7)
Thanks, if you can help.

Similar Messages

  • Need Help with the Remote App

    I am able to get this to work on my iMac at home but I was trying to help my dad get his remote App working and have not had any luck. Well, slight luck but only for about 1 minute. His computer is hard wired into the wifi router, ipod touch is wifi from same router. He uses CA Firewall (what Time Warner has as a perk to their road runner service). He has windows XP with the latest Microsoft, iTunes, and Remote software. Here is the problem, the iPod touch generates the pass code but the device list with the remote icon never appears. I got it working for 1 minute when I completely turned off the firewall but even with the firewall off it still then lost connection and couldnt find the library. Any ideas?? I am so confused. I made sure that iTunes was allowed through the firewall. I really want to get this working for him. Any help would be awesome!

    Hrmm... nice job doing homework... Do you know, or can you find out, if port 3689 is open or blocked? If it's blocked, open it up. I believe this is the same port used for Music Sharing in iTunes, but it's also the port used by the Remote app.
    CG

  • Help with NAS Remote Access

    Here's what I have:
    Synology DS212J
    Airport Extreme Base Station Gen 4 running latest firmware
    Running Lion
    Here's what I have done:
    Changed NAS to use Manual Configuration. IP set to: 10.0.1.14 (after reading some forums here and there I have now changed this to 10.0.1.202 (to be outside the range of DCHP address)
    In Airport Extreme I have configured Port Forwarding for port 80 and 7000 entering the private ip of the NAS 10.0.1.14 and now 10.0.1.202 and filled in the TCP ports with the appropriate port, restarted router.
    After reading more posts in the forums I checked the NAS and my Mac Firewalls. Nothing...not turned on. I have since gone back into the NAS Firewall settings after reading a post to allow access for Photostation, File station...just in case it makes a differnece
    Obtained a static IP from my ISP - ISP does not block any ports
    Canyouseeme.org always gives a Timed out message when I try and check port forwarding
    Everything works perfect on LAN...just remote I can't seem to get.  Some nice iphone apps I'd like to use remotely and use my Air to access when away from home.
    Questions:
    Is it necessary to also configure a Static IP on my Airport Extreme...I haven't as my understanding is that only the DS needs one?  If I do could some kindly step this out for me?
    I have previously changed some settings in my router for unblock-us http://support.unblock-us.com/customer/ ... 27...could this be the problem?
    Thanks to anyone that might be able to help. I can post screen shots also or could send privately! I have noted that you must be at an outside computer to test access and of course tried that as well...but understand Canyouseeme.org should still say it can see the open port when I test from my network? I also have a DDNS and everything there shows Normal.
    Hoping for something obvious and stupid on my part that someone can point out!

    so if i understand correctly this should work?
    WAN IP 208.160.90.22
    router ip address 192.168.1.1
    camera ip 192.168.1.200
    to access the camera i would type in http://208.160.90.22:1024
    thanks greatly!  i'm trying to use this camera to monitor a boiler to make sure it's operating in this cold weather we are having...

  • Need help with adding a Key flex field to a seeded OAF page

    We have a seeded OAF page on which we already have Account Key Flex Field.
    Properties of this flex field are:
    The ApplShortName - SQLGL
    Name - GL#
    Type - Key
    As per the client requirement, in the KFF screen, we have disabled the seeded structure for Accounting Flexfield and created a custom structure.
    Our custom structure for the KFF is displayed correctly on the OAF page.
    But now the requirement is to add a new KFF on the OAF page which is duplicate of the existing KFF, along with the existing KFF field; the structure and segments are same. Only difference being the display name of the existing KFF field is Account; the new one needs to be Tax structure.
    Using personalization we added a new flex item and added the properties same as the existing KFF.
    ApplShortName - SQLGL
    Name - GL#
    Type - Key
    But the page is giving following error:
    The data that defines the flexfield on this field may be inconsistent. Inform your system administrator that the function: KeyFlexfieldDefinitionFactory.getStructureNumber could not find the structure definition for the flexfield specified by Application = SQLGL, Code = GL# and Structure number =
    We tried options like compiling the flexfield definition, but the error persists.
    Any help in this regard is highly appreciated.
    Regards,
    Kiranmayi.

    Hi,
    Please check whether your key flex structure is frozen or not. If now please freeze it and re compile and try.
    This may helps too
    error while developing KFF in oaf
    Thanks
    Bharat
    Edited by: Bharat on May 10, 2013 4:51 AM

  • Need help with locating a key using a value in a HashMap.

    I am quite new to Java and programming, and am just learning this in High School (enjoying it thoroughly). Sorry if I don't respect the etiquette or formatting of this board (it's unintentional).
    I am using the book, Objects First Wth Java A Practical Introduction Using Blue J and am working on extensively improving the "World of Zuul" project. Which is a text-based adventure game.
    Here is a code sample;
    public String getNameFromList(String name)
      boolean found = false;
      Set pairSet = xItemList.entrySet();
      for(Iterator iter = pairSet.iterator(); (found == false && iter.hasNext());){
      Item currentItem = (Item) iter.next().getValue();
      String currentKey = currentItem.getName();
      if(name.equals(currentKey)){
        String changedName = iter.next().getKey();
        return changedName;
    error; cannot resolve symbol:
    method: getValue()xItemList is a HashMap with String keys, and Item values.
    The relevant field of Item is name, which is a string.
    The currentKey local variable is a little misleading, it is the current name, but acts as the 'key' when looking for the actual key.
    changedName (if the parameter name is found from the item.getNames()), is what the method returns, the key associated with a object (by looking at the object's field).
    My objective for this method is for it to have a name as a parameter, which it searches for in the HashMap (by Iteration over the entrySet - or I suppose iteration over Set values(), but this loses which object value is tied to which key, doesn't it?), and returns the respective key.
    Any help would be very much appreciated (even if it is telling me that this can't be done with HashMaps!).

    It's not clear to me what your question is, or if indeed you even have a question.
    You seem to be having a problem with types. Iterators return Objects.
    So in this line:
      Item currentItem = (Item) iter.next().getValue();The iterator's next() method is returning an Object, and you're trying to call getValue() on that Object. But Object doesn't have a getValue() method. That would explain your error message. Map.Entry does; you apparently meant to call Map.Entry's getValue() method. You would cast the result of iter.next() to Map.Entry before you call getValue().
    Also you're calling next() on your iterator twice in the body of the loop, which means you're getting two different values... this is probably not what you intend.
    But you're making this more complicated than it needs to be anyway.
    Why are you iterating through the set of entries in the HashMap?
    The whole point of a Map is that you get an item using an object as the key. Just do xItemList.get(name). Right?

  • Help with setting primary key in table

    Hi,
    I have created a table in Oracle and populated it with information, but I need a primary key (like an autonumber in Access) to identify each record. How can I do this for an existing table?
    Thanks so much for any help you can provide!

    Hello,
    I am assuming you have created the sequence and trigger i posted in my earlier post, here run this and if this answers your question mark post answered and reward points for helpful posts.
    INSERT INTO customer1 (FIRST_NAME,
                           LAST_NAME,
                           TITLE,
                           ADDRESS1,
                           ADDRESS2,
                           CITY,
                           STATE,
                           ZIP,
                           PHONE,
                           EXTENSION,
                           FAX,
                           WORK_PHONE,
                           WORK_EXTENSION,
                           MOBILE_PHONE,
                           EMERGENCY_PHONE,
                           PHONE_NOTES,
                           EMAIL)
       SELECT   FIRST_NAME,
                LAST_NAME,
                TITLE,
                ADDRESS1,
                ADDRESS2,
                CITY,
                STATE,
                ZIP,
                PHONE,
                EXTENSION,
                FAX,
                WORK_PHONE,
                WORK_EXTENSION,
                MOBILE_PHONE,
                EMERGENCY_PHONE,
                PHONE_NOTES,
                EMAIL
         FROM   CUSTOMER;
         COMMIT;Regards

  • Help with Keynote remote

    Can someone help me set up the Keynote remote, please?
    I was told the app no longer exists...
    My MacBook is not "seeing" my iPhone.
    All software up to date, all new devices...
    What am I doing wrong?

    I have installed the latest IOS 7.1 on both my iPhone and iPad 3. I use Keynote quite extensively and was using the Keynote Remote app on my iPhone until Apple recently trashed it out of the App store (I paid $ for this) and it worked for me. I thought that the built in app a good idea. That was until recently when I have had kinds of problems getting it to sync. I usually put the Keynote presentation together on my iMac. On the Cloud it goes to all my devices with no problem with updates, etc. Now when I try to show it on my iPad using my iPhone as a remote the iPhone does not seem to connect. This is even when trying both Bluetooth and WiFi and after I tried all of the solutions of shutting down and restarting, etc. I do see the iPhone is recognized as a remote, but it still does not pick up the connection. Somehow I wonder if the new upgrade to IOS 7.1 has something to do with this??? I am really exasperated as I need to get this working for my next presentation! Can anyone give me any idea of how to fix this? I have even quit the Apps in both the iPad and iPhone and restarted Keynote thinking this might be the problem.........still no solution.

  • Help with linking remote to menu and title?

    I have my DVD finished to be mastered. I have an opening animation, that leads to a main menu. Whatever submenu I am in, and I want to press the button on the remote to go back to the main menu, it takes me to the opening animation and I have to wait to get to the menu.
    Any thoughts on how to link that?

    First, hopefully having all your code mushed onto the same line is a copy/paste error, otherwise it should look like...
    stop();
    btn_recipe.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);
    function mouseDownHandler(event:MouseEvent):void {
         gotoAndStop(1, "Recipe");
    If the intention is to click the buttons to make them work, then you should use CLICK instead of MOUSE_DOWN.  MOUSE_DOWN can be a persistent state whereas CLICK involves releasing it afterwards.
    As for the code to get you back home, where is it located on the timeline?  Are you getting any error messages when you try to use it?
    One thing you should learn to use is the trace() function.  It is useful for troubleshooting.  You can use it now to see if your second button is talking to the function at all...
    stop();
    btn_home.addEventListener(MouseEvent.CLICK, mouse5DownHandler);
    function mouse5DownHandler(event:MouseEvent):void {
         trace("the button works okay");
         gotoAndPlay(1, "MainMenu");
    If you don't get that message in the output panel, you'll know the button is not properly coded to work.
    Most folks here will recommend you get away from using scenes in a design that includes navigation--they have a history of being problematic.  Instead of using scenes, divide the one main timeline up into sections or use movieclips for the sections and manage their visibility... or do a bit of both.

  • Help with entering product key

    I have just down loaded Photoshop album starter edition, registered it, have a product key and I am the administrator for my computer. However, when I enter the key, the "Unlock" button remains grayed out and will not let me put in the code. How can I get into the program. Thanks for assistance.

    Barb, Thanks for the timely reply. You're right I do have v. 3. Unfortunately, the solution suggested did not work. The product key is asked for on the registration page. The unlock button appears dimmed. You can enter the code but that does not change the unlock button (whether or not you press enter). Attempting to delete invisible characters has no effect - although this would more likely get some sort of a "wrong code" error after pressing unlock, which can not be done!? More ideas?

  • Need help with Diffie-Hellman key-exchange protocol

    How can i show that the Diffie-Hellman key-exchange protocol is vulnerable to a man-in-themiddle
    attack and Devise a protocol using digital signatures which overcomes this vulnerability

    Given that the error is "Invalid Parameters", you might want to show us how "dhparameters" is being set up on both sides...
    Grant

  • Remote System and Remote Key Mapping at a glance

    Hi,
    I want to discuss the concept of Remote System and Remote Key Mapping.
    Remote System is a logical system which is defined in MDM Console for a MDM Repository.
    We can define key mapping enabled at each table level.
    The key mapping is used to distinguish records at Data Manager after running the Data Import.
    Now 1 record can have 1 remote system with two different keys but two different records cannot have same remote system with same remote key. So, Remote key is an unique identifier for record for any remote system for each individual records.
    Now whenever we import data from a Remote System, the remote system and remote key are mapped for each individual records. Usually all records have different remote keys.
    Now, when syndicating back the record with default remote key is updated in the remote system that is sent by xml file format.
    If same record is updated two times from a same remote system, the remote key will be different and the record which is latest contains highest remote key.
    Now, I have to look at Data Syndication and Remote key.
    I have not done Data Syndication but my concept tell if there is duplicate record with same remote system but different remote keys both will be syndicated back. But if same record have two remote keys for same remote system then only the default remote key is syndicated back.
    Regards
    Kaushik Banerjee

    You are right Kaushik,
    I have not done Data Syndication but my concept tell if there is duplicate record with same remote system but different remote keys both will be syndicated back.
    Yes, but if they are duplicate, they needs to be merged.
    But if same record have two remote keys for same remote system then only the default remote key is syndicated back.
    This is after merging. So whichever remote key has tick mark in key mapping option(default) , it will be syndicated back.
    Pls refer to these links for better understanding.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/80eb6ea5-2a2f-2b10-f68e-bf735a45705f
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/7051c376-f939-2b10-7da1-c4f8f9eecc8c%0c
    Hope this helps,
    + An

  • Maintaining Remote key in look up tables for Production data

    Hi,
    me
    SEE in DEV and QA to maintain the Remote key for Look up tables.First i have exported those look up table values and again imported with mapping Remote keys (clone the field and map it to Remote key.). By this i have maintained the Remote keys to all look up tables. Now for Production what should i do. Is it the same process extract all records from production into our desktop and then again import it using IM, clone the field and map it to Remote key.
    1. Is this the right process?
    2. What happens if there are huge data present in production how to proceed furthr then?
    Required your suggestion please.
    Thanks,
    Pradeep

    HI Pradeep,
    I dont see any problem with this method if I am getting it right
    You are updating remote keys by reimporting lookup data, and this way you have multiple remote keys for data in lookup table,right?
    This will help you to automap entries in Import process for different Remote systems.
    I did not get your 2nd point?
    Thanks,
    Ravi

  • Remote key concept

    Hi Guys,
    I am confused with the remote key concept.
    If we have  tow remote system attached  with MDM then
    How we can create remote key automatically when the data come from systems.
    Is  remotekey+remote system is  unique key for each record.
    If the same data will come from different system but some fields value is different then  how its maintain in MDM and when we tranfer same data to different system from where it came previously then in taht case which data will transfer to each system.
    Query regarding import
    Yesterday i was trying to import the  different languages data in hierarchy lookup table .In the import manager i map each language fields to each destination fields but after importing i get same value in all language fields i.e. whatever info maintain in english.I read  somewhere  how to import multilingual data in hierarchy lookup nad its mentioned that you have to map remote key also.so i want to know  why is necessary to map remote key and if my table is not remote key enabled then in that case how i can trabsfer this multi language data.
    Please help me on these issues.
    Thanks,
    Sudhanshu

    "Two records coming from two different remote systems which hold different values in some fields" looks to me like a race condition between two remote systems updating for example an typo in an address or name field.
    Typical situation: you have local companies holding their indepnedent set of customer data.
    Assume that a customer orders at two local companies at the same time.
    Assume further that during the entry process there was an address update or a small change in the comapny name.
    Assume further someone makes a typo.
    Because of the independency they will update the customer locally and send the update to the mdm.
    So we have now two differnent values for the same record. In this case typically last one wins. So at the end the last record sent will update the mdm to the last golden master value.
    To avoid this situation you can either use MDM as the only entry/update system or put some processes (not only workflows) in place which helps to avoid this situation. In any case bacause of the key mapping both records will map to the single golden master record in the mdm as already mentioned.
    d'accord with the hint: this has to be part of the steady consolidation scenario.
    regards
    lpk

  • Import Manager Remote Key issue

    Dear All,
    I have imported all the records from R3 system in Material repository. Since the full MATMAS xmls were of bigger size I devided it into 5 ports MARA, MARC, MARM, MVKE, MBEW.
    Now while importing MARA, remote key was not mapped by mistake.
    But we want local Material numbers (i.e. material numbers from R3).
    so now do i need to reimport everything again or is there any workaround to it.
    -Poonam

    Hi Poonam,
    In lines with what nitin has said
    I feel is the right way to go about with the scenario when you have to deal with remote sytems and remote keys.
    To explain:
    When ever you are importing data from an external system you need to maintain a remote key which will identify that these set of records are coming from a differnt remote system.
    For this we use Remote sytem mapping.
    The unique key of the incoming source file is to be mapped with the remote key in the destination side in Import manger.
    This remote key will then act as your primary key and can be used in the matching field tab.
    The unique key then can be cloned to map it with its correcponding field in the MDM rep.
    Eg Material no -> Remote key
         Material no(cloned) -> Material no
    Then when you syndicate these field you need to do proper mapping in the syndicator for the remote sytem and then on your local id will be store in the value field and global id in the remote key field
    Hope it helped
    Kindly reward points if found useful
    Thanks
    Simona

  • Is it possible to Update Remote Key

    Hi,
    I have a remote system which create remote key while syndicating to ERP...
    ERP will create the material number which inturn needs to be updated in MDM using import manager..
    While importing I am mapping Material number to remote key.. which is creating new remote key along with defualy remote key generated while
    syndication... Is it possible to have one key as it is of same material from  same system? And at the same time it is again syndicating after
    I import with material number (Remote Key)..
    Thanks
    Rajeev

    HI Ravi,
    by doing so I am having the dublicates in the Data Manager...
    Steps I peffromed :
    I have a main table of fields FName(DF),LName,City ....I created a remote Sytem (Remote1) with range of 1000 to 2000 .. Imported two records say ((A,AA,City1)(B,BB,CITY2)) using FName as matching filed (I didnt mapped remote key).. MSS is started so I see the keymapping as A,Remote1 and 1000 and B,Remote1 and 1001 for these two records..
    NNow I created a dummy remote system and added a new field to the main table MatNumber.... I importing the file with (A,AA,City,Mat1) and remote system as dummy where I am mapping MatNumber to Remote Key... By doing so I see three records with one record dublicating as It got imported from new remote system with key value Mat1..
    Can you please guide how to havve only two records by just updating the key value....
    Thanks
    Rajeev
    Edited by: rajeev raj on Jun 22, 2010 10:53 AM

Maybe you are looking for

  • How Do I Sync Photos With iPad Using i Tunes?

    Since updating to OS X 10.10.3, iTunes 12.1.2.27, and Photos, I cannot sync any photos to any devices.  Previously, I would connect a device, choose photo albums in iTunes, and sync.  Now, I connect a device and no matter what I choose in the photos

  • Issue with gamecenter?

    I updated my OS on my iPod touch 4th gen on a Mac,  I run off a windows xp professional laptop.  It did erase all my apps, music, etc. but thought it would not be a big deal since I had a backup on my laptop's external drive.  I was able to reload al

  • Inserted video disappears when window is enabled

    Please help.  I am trying to add a video to a pdf using Acrobat 9 Pro Extended on windows 7 64 bit.    First I tried a .wmv that I wrote out of Premiere Pro CS4.  Acrobat will only complete transcoding a file if it is less than 10 Mb.  Once I get a 1

  • I hv a US bought Iphone 5..using in India..having several problems!

    Its a US phone..i need to make it compatible with Kuwait..

  • Code PAge 1250

    Hi! Can anybody help me? I would like to load with sqlldr a text file into the database, and it is in code page 1250. How can I load it under Linux? I am using Debian 2.0, with kernel 2.2.13. The database type is code page 1250. Thanx for your answer