Test your Forum Posts

Talk about anything
User avatar
gregster
Posts: 9224
Joined: 30 Sep 2013, 06:48

Re: Test your Forum Posts

Post by gregster » 25 Jul 2023, 15:46

@V0RT3X, you can put codeboxes (or other things) behind a spoiler - are you looking for this?
Spoiler
There are three kinds of spoiler tags available in the editor. This one is [spoiler][/spoiler].
User avatar
V0RT3X
Posts: 362
Joined: 20 May 2023, 21:59
Contact:

Re: Test your Forum Posts

Post by V0RT3X » 25 Jul 2023, 16:00

That is it. Thank you!
User avatar
joedf
Posts: 9097
Joined: 29 Sep 2013, 17:08
Location: Canada
Contact:

Re: Test your Forum Posts

Post by joedf » 26 Apr 2024, 15:33

testing @joedf 123 :cookie: :rainbow:
Image Image Image Image Image
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]
Peabianjay
Posts: 101
Joined: 07 Nov 2015, 22:50

Re: Test your Forum Posts

Post by Peabianjay » 20 Jun 2024, 13:33

Does this work?
Image

Nope. No it doesn't. How does one post an image? Perhaps not allowed?
RussF
Posts: 1440
Joined: 05 Aug 2021, 06:36

Re: Test your Forum Posts

Post by RussF » 20 Jun 2024, 13:45

Simply copy the image into your clipboard and paste it directly into the message you are creating.
image.png
image.png (5.82 KiB) Viewed 4568 times
Russ
User avatar
gregster
Posts: 9224
Joined: 30 Sep 2013, 06:48

Re: Test your Forum Posts

Post by gregster » 20 Jun 2024, 13:48

@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.
davidahlstroem
Posts: 4
Joined: 07 Jun 2024, 12:11

Re: Test your Forum Posts

Post by davidahlstroem » 19 Aug 2024, 15:07

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
Post Reply

Return to “Off-topic Discussion”