Jump to content

control+foward slash for the enter key


llyando
 Share

Recommended Posts

All right. So here is the story. My parents gave me an old laptop but the enter key is missing. It does not work at all. I was wondering what the script would be to make the buttons control and foward slash pressed simultaneously function as the enter key. I'm terribley new to scripting of any kind and any help would be greatly appreciated. Thank you.

Link to comment
Share on other sites

your notebook does not have an ENTER key ? And you want to press another key ( like F1 for example ) to send CTRL+/ ? Do I understand you correctly?

My Projects:[list][*]Guide - ytube step by step tut for reading memory with autoitscript + samples[*]WinHide - tool to show hide windows, Skinned With GDI+[*]Virtualdub batch job list maker - Batch Process all files with same settings[*]Exp calc - Exp calculator for online games[*]Automated Microsoft SQL Server 2000 installer[*]Image sorter helper for IrfanView - 1 click opens img & move ur mouse to close opened img[/list]
Link to comment
Share on other sites

Search help file for Send in this case:

^ = CTRL

!=ALT

+=Shift

HotKeySet("^{BACKSPACE}", "_Send")
HotKeySet("{esc}", "_Quit")

While 1
    Sleep(100)
WEnd

Func _Send()
    Send("{Enter}")
EndFunc   

Func _Quit()
    Exit
EndFunc
My Projects:[list][*]Guide - ytube step by step tut for reading memory with autoitscript + samples[*]WinHide - tool to show hide windows, Skinned With GDI+[*]Virtualdub batch job list maker - Batch Process all files with same settings[*]Exp calc - Exp calculator for online games[*]Automated Microsoft SQL Server 2000 installer[*]Image sorter helper for IrfanView - 1 click opens img & move ur mouse to close opened img[/list]
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...