overlay - What programming languages have access to the WinAPI? -


i'm looking start new programming language , first task want overlay text on applications window, similar guy in post:

overlay text on else's window - hud

clearly post, can done in vb.net, , extrapolating that, can safely assume c++\c# can similarly.

my question is; there other languages can same? can ruby it? :)

i'm looking following capabilities:

  1. enumerate open windows find 1 want overlay on top of.
  2. overlay text on 3rd party apps window. (rich text bonus)
  3. detect window bounds can resize text when user resizes window.
  4. allow click-through of created text doesn't interfere 3rd party apps functionality.

any ideas?

if want use ruby, have 2 options: ironruby , "classic ruby".

i guess ironruby preferred option on windows runs on top of .net , has access full windows api through that.

if .net needs , need simple, classic ruby might better fit.

for classic ruby, check out these pages:

beware: argument packing , unpacking not convenient.


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

html - Instapaper-like algorithm -

c# - How to execute a particular part of code asynchronously in a class -