Birt Report Designer Shortcut keys - birt

Anybody know if there's shortcut keys to run/view reports in BIRT Report Designer?

ALT R R then press Enter to run in the default web viewer. You could also use arrow keys to select your output format.
To see a list of other shortcuts type: CTRL+Shift+L.

Pressing Alt, R, R, then Enter will do it.
Here's an autohotkey snippet that will make F5 do the same:
#IfWinActive, ahk_exe eclipse.exe ;BIRT
;BIRT F5 to Run Web Viewer
F5::
Send {Alt}
Send r
Send r
Send {enter}
Return
#IfWinActive

Related

How can I run and close an exe file with a mouse key?

I have an exe file and I want to run it and close it by pressing a mouse button or a keyboard button. For eg. say it is a music.exe and I want to open it while I am gaming/doing spread sheet by pressing the key 'm' or mouse button.
I have access to a logitech macro supported mouse. Also a no macro generic microsoft mouse. I am thinking about some kind of macro , or tasker or some script that can do this easily. ( not that I dont want to directly click the exe file or close the exe file by clicking x on the window)
Any suggestion would be helpful ;)
I did it with AutoHotKey software. If anyone is interested , here is the code
XButton2:: if WinExist("WindowName") WinClose ; else Run *runas "%directory%\Music.exe" return
This code will run and close the Music app with admin previlages. ( Change "Run *runas" to "run" if you want it to run normally)

ahk send alternative in bash script

I want to achieve in a bash script, that when I press any key (e.g. F5) and then type any word (e.g. "hello world"), regardless of whether I positioned in the terminal, or text-editor or browser...
While I was using Windows, then I used Autohotkey for that.
How could I achieve that with bash script in Linux?
While as #Socowi mentioned, you will likely not be able to do this with bash alone, you can use AutoHotkey Linux alternatives like AutoKey for this.
For your specific question, see this guide for setting up and configuring AutoKey on Linux.
More specifically, scroll down to the section labeled "Inserting repetitive text using a hotkey" for how to configure a text-typing hotkey:
Inserting repetitive text using a hotkey
Abbreviations is only one way of inserting text using AutoKey. If you
prefer, you can also insert text using a keyboard shortcut, which
doesn't require typing an abbreviation.
To insert some text that you need to type frequently using a keyboard
shortcut, click the Set button next to Hotkey, then click Press to Set
in the newly opened window, and press the key combination you want to
use for this phrase:
Make sure you use a hotkey that's not already in use or else it may
not work / it will interfere with the already set hotkey. To try this
out, set it to something like Ctrl + F1 (which shouldn't be set by the
system at least).
Remember to click the Save button in the AutoKey toolbar after setting
the phrase hotkey, or else the changes won't have any effect. Now try
it out: focus a text editor, some text field in a web form, etc., and
press the hotkey you've set in AutoKey - the Testing AutoKey text
expansion on Linux phrase should be automatically inserted as soon as
you press the keyboard shortcut.

Replace default movement keys in Visual Studio menus

I am using VsVim and I would like to make the rest of the menus in visual studio to be navigated using j to go down and k to move up.
For example, when using the Go To All feature, it would be nice to be able to navigate the results using j and k instead of Down Arrow and Up Arrow
I am using autohotkey to bind alt + h/j/k/l to arrow keys.
There is script:
LAlt & h:: Send {Left}
LAlt & j:: Send {Down}
LAlt & k:: Send {Up}
LAlt & l:: Send {Right}

vb script for login ctrl alt del

When you start your system and see message press CTRL ALT DEL. after that normally you see security warning and you have to press OK. What I like to do is write a vb script which automatically press OK for me.
Can someone please let me know if its possible to write a script which will click on OK.
I can't disable CTRL ALT DEL on system as this is control by GPO.
You cannot accomplish this with scripting. However, I believe there is a registry trick you can do to accomplish what you desire.
Check out http://www.velikan.net/automatic-login-windows-account.

How do I click a control button with ID using AutoHotkey?

How do I click a control button with ID using AutoHotkey?
I tried Click and ControlClick, but no luck!
ControlClick Button40
Click Button40
You need to give it some information about the window that the control is on. For example, to close the About screen in Notepad on Windows you could use
ControlClick, Button1, About Notepad ahk_class #32770
The format of the command from the docs is
ControlClick [, Control-or-Pos, WinTitle, WinText, WhichButton, ClickCount, Options, ExcludeTitle, ExcludeText]

Resources