Search the Community
Showing results for tags 'easy'.
-
hellow guys I am a blind young man I started a project to make an audio player with recorder I ended the player and i did not know how to recorder This player is Compatible with the blind and visually impaired and ordinary users Unfortunately I do not see so I could not merge images and icons So I hope you will be able to help me in this matter I will bring you the open source project and please help me to add images, icons and recorder, the project is requires easy access in order to be compatible with the screen readers, Please take this into account. the software is organized so the recorder is In a special menu that Contains stop and start and pause and save. The same is true for player Please help And greetings to all easy player.zip
-
Hello Auto IT I wanna keep it short, so let's get started. I like to store my account details for various sites and programs on a simple log file, It's personal preference and I know it's risky. I'm using somewhat a "form" when I'm typing in my accounts, so that It's easier for me to keep track on what site/program the account is for. The form looks somewhat like this: Would it be possible to create a script in which makes a UI where i can type in those fields, and it will automaticly add it to my log file? I would love to know how this could work, and what kind commands i should look into. - AliOzturk
-
Pretty sure this is a one line problem on a easiness factor of "1" on a scale from 1-100 with 0 being the easiest... I want to make a re-usable hotkey that spams 1 and 2 when I press it, an cancels when I press it again. Problem is, after I close it once (pressing the hotkey a second time) the script finishes. I want it to recall the hotkey so that I can use it to time and time again. Where do I call the HotkeySet again? HotKeySet("{F1}", "spam") While 1 Sleep(100) WEnd Func spam() $i=0 HotKeySet("{F1}") HotKeySet("{F1}", "quit") Do Send("2") Sleep(50) Send("1") Sleep(50) Send("2") Sleep(650) Until $i=1 EndFunc Func quit() Exit EndFunc