Skip to content

AHK Skript #103

@zuphilip

Description

@zuphilip

Mit dem Skript kann man Text eine ID markieren und durch Drücken einer Tastenkombination die Suche (entweder ISBN oder PPN im SWB) in malibu im Browser öffnen. Dies ist insbesondere auch bei Email-Nachfragen für eine RVK-Stelle o.ä. nützlich:

#SingleInstance force
#Warn

; Open a browser window to malibu website searching the selected ISBN or PPN


; Copies the selected text to the Windows clipboard, adds it to a
; resolver URL and opens that URL

; hotkey ctrl-shift-i for searching an ISBN
^+i::
  Send, ^c
  Run, "http://data.bib.uni-mannheim.de/malibu/isbn/suche.html?isbn=%Clipboard%"
  Return

; hotkey ctrl-shift-p for searching an PPN in the SWB
^+p::
  Send, ^c
  Run, "http://data.bib.uni-mannheim.de/malibu/isbn/suche.html?verbund=SWB&ppn=%Clipboard%"
  Return

Inspiriert durch @jneubert von https://github.com/jneubert/gnd-wd-link vgl. auch https://www.autohotkey.com/download/

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions