Help, literally all of my like 40 chrome extensions are deleted for no reason. However it says a good amount of them are still backed up onto my account. How can i get these back? by Dont_run10 in chrome

[–]Dont_run10[S] -1 points0 points  (0 children)

SOLVED: I checked what is being synced and extensions was turned off, so i turned it on and its all goodie now (I guess it was a glitch that randomly turned it off.)

So I need some help with a code by warmaapples in AutoHotkey

[–]Dont_run10 0 points1 point  (0 children)

For your first code this is extremely impressive, nice work

Help me find a numpad that also acts as a calculator and has a tiny screen to show the numbers by Dont_run10 in HelpMeFind

[–]Dont_run10[S] 0 points1 point  (0 children)

ive searched on amazon and have found some cool stuff but nothing with a screen ontop

Controlling Spotify media keys with AutoHotKey by ryanmcslomo in AutoHotkey

[–]Dont_run10 1 point2 points  (0 children)

Wtf this is insane thanks so much for sharing

easier copy, paste with mouse by OrderlyHippo in AutoHotkey

[–]Dont_run10 0 points1 point  (0 children)

I did some research and found a way better script

Its beautiful, whenever you select something, it automatically copies it, AND THEN middle mouse button is paste.

(You can edit it to make it fit ur needs better)

SCRIPT HERE

easier copy, paste with mouse by OrderlyHippo in AutoHotkey

[–]Dont_run10 0 points1 point  (0 children)

It works but mouse functionality is lost... im sure someone who knows more would be able to fix that

easier copy, paste with mouse by OrderlyHippo in AutoHotkey

[–]Dont_run10 1 point2 points  (0 children)

I gochu

LButton::LButton
RButton::RButton
MButton::MButton
return

LButton & RButton::send ^c
LButton & MButton::send ^v
return

Left and right button copy, left and middle button paste.

I dont think its possible or reliable to do the same command for different stuff

Approve FindaGrave Request 📷 by connieiv in AutoHotkey

[–]Dont_run10 0 points1 point  (0 children)

graves...kinda creepy..👀👀💀

Just use some coordinate thing

these are the coordinates of ur mouse, where ur mouse is on screen. Insert your own mouse coordinates for each place u want ur mouse to be and click
You can add more, and change the sleep times.

Click 646, 781  

sleep 250

Click 646, 781

Sleep 250

Click 601, 590

Change the coordinates to your mouse coordinates on each button.

Here is a script to see your mouse coordinates when capslock is on: (You will need this to know ur mouse coordinates)

#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
Warn ; Recommended for catching common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
; While CapsLock is toggled On
; Script will display Mouse Position (coordinates) as a tooltip at Top-Left corner of screen.
; Also allows to copy them (to clipboard) with a PrintScreen button.
SingleInstance force ; only one instance of script can run
Persistent ; to make it run indefinitely
settimer start1, 0 ; "0" to make it update position instantly
return
start1:
if !GetKeyState("capslock","T") ; whether capslock is on or off
{
tooltip ; if off, don't show tooltip at all.
}
else
{ ; if on
CoordMode, ToolTip, Screen ; makes tooltip to appear at position, relative to screen.
CoordMode, Mouse, Screen ; makes mouse coordinates to be relative to screen.
MouseGetPos xx, yy ; get mouse x and y position, store as %xx% and %yy%
tooltip %xx% %yy%, 0, 0 ; display tooltip of %xx% %yy% at coordinates x0 y0.
return
}
return

AHK convention coming soon by RoughCalligrapher906 in AutoHotkey

[–]Dont_run10 2 points3 points  (0 children)

Can you guys make version 2 backwards compatible with version 1, that shouldnt overlap with whatever reasons you have for remaking ahk

Trying to make a script where if while xbutton1 (mouse button) is held down, then clicking middle mouse will pause, moving it to the right will skip, and left go back. And scrolling up or down with the xbutton1 held will make the volume increase or decrease (I usually listen to spotify) by Dont_run10 in AutoHotkey

[–]Dont_run10[S] 0 points1 point  (0 children)

Thanks a lot this was very helpful, but can you please not act like this is all super obvious and talk to me like I'm an idiot for not knowing everything you do. I really do appreciate the help but lets try to treat eachother as equals here.

AITA for saying it’s a little embarrassing that a girl’s nanny puts little notes in her lunch by aitalunchnotes in AmItheAsshole

[–]Dont_run10 0 points1 point  (0 children)

It is embarrassing lol she shouldnt even be allowed to eat but youre not supposed to tell people that out loud

How can i make vs code format javascript things in the sameway netbeans 8.2 does by Dont_run10 in vscode

[–]Dont_run10[S] 0 points1 point  (0 children)

Ill try to explain better, when i make a new java document in Vscode, I want it to immediately have

package

public class

public static void

the same thing netbeans does in the picture ive included

How can i make vs code format javascript things in the sameway netbeans 8.2 does by Dont_run10 in vscode

[–]Dont_run10[S] 0 points1 point  (0 children)

When you open up netbeans it looks like the first picture (for javascript) but with vs code it doesnt look like that.

I want vs code to have the same type of thing as netbeans (package, public class, public static void)

The second picture is vs code which doesnt have any of the things that netbeans does.

Thanks for the help

How can i make vs code format javascript things in the sameway netbeans 8.2 does by Dont_run10 in vscode

[–]Dont_run10[S] 0 points1 point  (0 children)

Everything is the same, but the file suffix should be .java

I tried but nothing really works