Anonymous
My feedback
2 results found
-
35 votesCompleted (Comments Open) · AdminIllustrator Engineering (Software Engineer, Adobe Illustrator) responded
Hi, all.
As per the investigation done by the engineering team, the issue is not a bug, but an expected scenario.
Variation means that it should go both above and below the set size.
So a 3pt stroke with 3pt variation will draw from 0 to 6 pt. Kindly reach out to us incase you have any queries.
Regards, Aishwarya G Gadodia
Illustrator Team
Anonymous supported this idea · -
69 votes
An error occurred while saving the comment An error occurred while saving the comment Anonymous commented@Kenneth I use a 3D connection CAD Mouse (and CAD Mouse wireless) with Ai and have an 'AutoHotKey' Script setup so that when I use the middle mouse button in Ai it clicks L Mouse and Spacebar to active drag panning. Very helpful and might save you some clicks and moves.
An error occurred while saving the comment Anonymous commentedYes Yes Yes Please!! The mouse use in Illustrator has always put me off. It should at least be customisable, like most other creative software. Adding 3D Connexion functionality to just Zoom and Pan would really improve workflow, especially when working between CAD and Ai
Anonymous supported this idea ·
#SingleInstance ignore
#IfWinActive ahk_exe Illustrator.exe
{
;Switches Alt+Wheelup with Wheelup
Wheelup::
send !{Wheelup}
return
;Switches Alt+Wheeldown with Wheeldown
Wheeldown::
send !{Wheeldown}
return
;Middle Mouse Button activates hand tool dragging.
MButton::
Send, {Space down}{LButton down}
KeyWait, MButton
Send, {LButton up}{Space up}
Return
}