I have an array [1, 2, 56, 32, 54] or something.
How do i send it to clipboard
1 2 56 32 54
I tried this.
Loop % table.MaxIndex() {
meow := table[A_Index]
Clipboard := meow"`r"
}
I have an array [1, 2, 56, 32, 54] or something.
How do i send it to clipboard
1 2 56 32 54
I tried this.
Loop % table.MaxIndex() {
meow := table[A_Index]
Clipboard := meow"`r"
}
Your problem was trying to loop with table.MaxIndex() which will potentially give you an unexpected amount since you can have an array with 2 values but very far apart in terms of Index i.e.
and also each loop was overwriting your meow value. The method you want to use is concatenate i.e.