New: autohotkeyAll contenthive-129948hive-196917krzzanhive-183959steemhive-180932hive-166405photographyhive-185836uncommonlabhive-150122hive-183397lifehive-144064bitcoinhive-188619krsuccesshive-103599hive-139150hive-101145hive-124908hive-109690hive-180301hive-184714TrendingNewHotLikersfrankielc (25)in autohotkey • 2 years agoAutoHotKey, the magic keyboardAs a developer, I'm constantly pushing for automatization. First target? The keyboard. If I were Microsoft, I'd buy AutoHotKey just to natively integrate it into Windows. AHK (AutoHotKey) is one…nilson44 (36)in pt • 6 years agoScript para copiar postagem do Steemit para um outro blogEste script permite fazer backup e mover postagens do steemit para outra plataforma de blog (blogspot ou wordpress, por exemplo). Talvez porque você queira gerar receita com seu conteúdo por mais…nilson44 (36)in steemit • 6 years agoScript to backup and move posts from steemit to other blogs platformThis script allows you to backup and move steemit posts to another blogging platform (blogspot or wordpress, for example). Maybe because you want to monetize your content longer, or because…nilson44 (36)in language • 6 years agoSome new words related to cryptocurrenciesCreated with SttPscriptBellow, the sentences with words that I didn't know in the text Why businesses should accept cryptocurrencies? by @flowingman. (Tip: use right mouse click to open the…nilson44 (36)in language • 6 years agoLearning Words With SttPscript – Words about TravelingCreated with SttPscript Bellow, the sentences with words that I didn't know in the text " The Benefits of Travelling" by @jassennessaj.(tip: use right mouse click to open the dictionary links in…nilson44 (36)in language • 6 years agoLearning Words With SttPscript - Output #1Created with SttPscript Bellow, the sentences with words that didn't know in the text "Publish your book on Amazon for free" by @voiceoftruth. (tip: use right mouse click to open the dictionary…nilson44 (36)in language • 6 years agoSttPscript (Straight to the Point Script – A Learning English AutoHotkey Script)SttPscript is an AutoHotkey script (Code – Mod 2) that allows the users to select only the words they don’t know the meaning or pronunciation in a text. So, they don’t need to read all the text to…sjc333 (57)in kr • 6 years ago오토핫키 윈도우 사이즈 조정 소스 수정SysGet, workArea, MonitorWorkArea workAreaWidth := workAreaRight - workAreaLeft workAreaHeight := workAreaBottom - workAreaTop r1 = 0.20000 lr := r1 * workAreaWidth main_w := (1- r1 2)…ideias (42)in pt • 6 years agoProgramar é uma DelíciaNem sei se eu é que programo, ou se são esses algoritmos que programam o meu cérebro. O fato é que eu nunca programo o que programara programar. E de tanto mudar, ajustar e refinar, e de me…skate702 (35)in technology • 6 years agoWorkflow-Optimierung - Ein UpdateDrei Monate sind seit meinem letzen Blog-Post zum Thema Workflow-Optimierung vergangen. In dieser Zeit ist unglaublich viel passiert - mehr noch, als ich erwartet hätte. Eine gute Gelegenheit…sjc333 (57)in kr • 6 years ago윈도우 창 크기 조절하는 간단한 오토핫키 스크립트r1 = 0.2 lr := r1 * A_ScreenWidth main_w := (1- r1 2) A_ScreenWidth ^k:: ; 중앙 ResizeWin(lr,0,main_w,A_ScreenHeight) return ^j:: ; 왼쪽 ResizeWin(0,0,lr,A_ScreenHeight) return ^h:: ; 왼쪽…ideias (42)in pt • 6 years agoAutoHotkeyO AutoHotkey é um programa extremamente útil para automação de tarefas no windows. Ele permite automatizar inúmeras tarefas, independentemente do aplicativo em uso. Por exemplo, permitiu a criação…skate702 (35)in technology • 6 years agoMaximale Workflow Optimierung!In einem früheren Blog-Eintrag habe ich mich bereits mit der Optimierung meines Produktions-Workflows beschäftigt. Der Fokus lag damals jedoch auf simplen Let's Plays, welche mit Hilfe von…pctomfp (25)in coordmode • 7 years ago2-4 오토핫키 이미지 , 픽셀 찾기 기능을 사용해 보자.CoordMode ImageSearch ,PixelGetColor ,PixelSearch, 마우스 이동을 스크린으로 한정할것인지 아니면, 창모드로 지정할것인지 선택 하는 부분입니다. ImageSearch 지정한 영역에서 찾고자 하는 이미지를 검색하여 X,Y좌표를 반환한다.…pctomfp (25)in autohotkey • 7 years ago2-3 오토핫키를 사용하면서 자주 사용하는 명령어 ...MSGBOX -> 해당 결과값을 표시 하는 역활을 합니다 스크립트 중간에 데이타 를 보고 싶을때도 많이 사용합니다. LOOP -> 오토핫키에서 사용하는 반복문입니다. LOOP의 기능이 많으니 아래에서 설명하겠습니다. IF , ELSE IF -> 조건문 입니다. 스크립트 내에서…pctomfp (25)in function • 7 years ago2-2장 오토핫키 함수의 사용 및 정의함수란? 간단하게 설명해서 반복적이고 중복되는 스크립트를 간단한 구문으로 실행할수 있도록 하는 것이라고 보시면 됩니다. 함수를 사용하는 목적. 프로그램의 수정이 쉬워진다. 프로그램의 가독성을 높어준다. 코드의 재사용이 쉬워진다. 작업을 적은 단위로 코딩할수 있어 향후 관리가 쉬어진다. 함수의 형태는 아래와…pctomfp (25)in autohotkey • 7 years ago2-1장 오토핫키 가장많이 사용하는 내장변수의 종류오토핫키는 기본적으로 다른 언어에 비해서 변수 선언에 대해서는 상당히 관대 합니다. 별도의 선언이 없으며, 오히려 내장 변수들이 있어 사용하기 변합니다. 기본적으로 가장 많이 사용하는 변수 들입니다. 변수를 사용 할때는 변수양쪽에 % 넣어 주면 변수 사용할수 있습니다. data := 123 --> data에 숫자 123을…pctomfp (25)in ahk • 7 years ago1장 오토핫키란 ?마우스및 키보드의 단축키를 정의 하여, 버튼 재생 및 맵핑을 하거나 대체 할수 있습니다. 오토핫키는 원도우전용 무료오픈소스 스크립팅 언어 입니다. 자동 클릭, 매크로, 기타 원도우즈 OS상에서의 모든 종류의 작업이 가능합니다. 실력이 된다면, 조금더 어렵고 복잡한 작업도 가능합니다. 오토핫키는 초보자를 위해 내장명령어가 다양하게…pctomfp (25)in autohotkey • 7 years ago안녕하세요 settmit 을 처음 시작하는 초보 입니다.처음 글을 올립니다. 전 오토핫키로 컴퓨터 자동화 프로그램을 공부하는 마음으로 올려 볼까 합니다. 부족하지만 열심히 해보겠습니다.codingnick (32)in programming • 7 years agoHow to make programming less annoying for beginnersMany commands are very commonly used in code, like if statements(if(condition == true): do that...) But always having to type them can get a bit annoying for beginners, so this post will show you…