Code: Select all
DefaultTemplate:="C:\Users\%A_UserName%\AppData\Roaming\blah\Blee.blu"
MsgBox % DefaultTemplate
Transform, DefaultTemplate, Deref, % DefaultTemplate
MsgBox % DefaultTemplate
Code: Select all
DefaultTemplate:="C:\Users\%A_UserName%\AppData\Roaming\blah\Blee.blu"
MsgBox % DefaultTemplate
Transform, DefaultTemplate, Deref, % DefaultTemplate
MsgBox % DefaultTemplate
Code: Select all
Loop, 500
{
i := A_Index
Loop, 3
{
;Send % i . Chr(96 + A_Index)
MsgBox % i . Chr(96 + A_Index)
}
}
I don't think that is possible because that would require the key 'SelectedText' to refer to an object and text at the same time. You could settle for Texty.SelectedText.Text and Texty.SelectedText.Length.GollyJer wrote:I'd like to be able to call Texty.SelectedText and Texty.SelectedText.Length.