Spoiler
There are three kinds of spoiler tags available in the editor. This one is [spoiler][/spoiler].Test your Forum Posts
Re: Test your Forum Posts
@V0RT3X, you can put codeboxes (or other things) behind a spoiler - are you looking for this?
Re: Test your Forum Posts
That is it. Thank you!
Re: Test your Forum Posts
testing @joedf 123
Windows 10 x64 Professional, Intel i5-8500, NVIDIA GTX 1060 6GB, 2x16GB Kingston FURY Beast - DDR4 3200 MHz | [About Me] | [About the AHK Foundation] | [Courses on AutoHotkey]
[ASPDM - StdLib Distribution] | [Qonsole - Quake-like console emulator] | [LibCon - Autohotkey Console Library]
-
- Posts: 101
- Joined: 07 Nov 2015, 22:50
Re: Test your Forum Posts
Does this work?
Nope. No it doesn't. How does one post an image? Perhaps not allowed?
Nope. No it doesn't. How does one post an image? Perhaps not allowed?
Re: Test your Forum Posts
Simply copy the image into your clipboard and paste it directly into the message you are creating.
Russ
Russ
Re: Test your Forum Posts
@Peabianjay:
Img-tags work only with direct image links, not with images embedded on html pages, like the link you used above (https://ibb.co/pvtvm1W). You could use img-tags with this direct link to the same picture though: https://i.ibb.co/mCLCxRv/DSCF0010.jpg
Or you upload it to the forum - see RussF's method or use the Attachments tab of the full editor.
Img-tags work only with direct image links, not with images embedded on html pages, like the link you used above (https://ibb.co/pvtvm1W). You could use img-tags with this direct link to the same picture though: https://i.ibb.co/mCLCxRv/DSCF0010.jpg
Or you upload it to the forum - see RussF's method or use the Attachments tab of the full editor.
-
- Posts: 4
- Joined: 07 Jun 2024, 12:11
Re: Test your Forum Posts
Mouse drag rotate camera. Test post
Code: Select all
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%
; Speed settings in pixels per loop iteration
speeds := {1: 1, 2: 3, 3: 5, 4: 10} ; Very slow, Slow, Normal, Fast
currentSpeed := 3 ; Default to normal speed
dragging := false
autoRotateLeft := false
autoRotateRight := false
; Toggle speed with F1 key
F1::
currentSpeed := (currentSpeed + 1 > 4) ? 1 : currentSpeed + 1
return
; Rotate camera left with Left Arrow key
Left::
dragging := true
While dragging {
MouseMove, -speeds[currentSpeed], 0, 0, R
Sleep, 10 ; Control the smoothness of the rotation
}
return
; Rotate camera right with Right Arrow key
Right::
dragging := true
While dragging {
MouseMove, speeds[currentSpeed], 0, 0, R
Sleep, 10 ; Control the smoothness of the rotation
}
return
; Stop camera rotation when arrow keys are released
Left Up::dragging := false
Right Up::dragging := false
; Auto-rotate camera left with Shift + Left Arrow key
+Left::
autoRotateLeft := !autoRotateLeft
if (autoRotateLeft) {
SetTimer, AutoRotateLeft, 10
} else {
SetTimer, AutoRotateLeft, Off
}
return
; Auto-rotate camera right with Shift + Right Arrow key
+Right::
autoRotateRight := !autoRotateRight
if (autoRotateRight) {
SetTimer, AutoRotateRight, 10
} else {
SetTimer, AutoRotateRight, Off
}
return
; Function for auto-rotating left
AutoRotateLeft:
MouseMove, -speeds[currentSpeed], 0, 0, R
return
; Function for auto-rotating right
AutoRotateRight:
MouseMove, speeds[currentSpeed], 0, 0, R
return