fusah 0 Posted November 19, 2017 So I am trying to get the number of objects I have selected in editor and copy it to my clipboard. After some searching I came up with: _selected = get3DENSelected "object"; _cnt = count _selected; copyToClipboard _cnt; Have no idea why this is not working :/ Any help is appreciated. Share this post Link to post Share on other sites
soolie 189 Posted November 19, 2017 copyToClipboard needs a string copyToClipboard str _cnt; Share this post Link to post Share on other sites
fusah 0 Posted November 19, 2017 40 minutes ago, soolie said: copyToClipboard needs a string copyToClipboard str _cnt; <333 worked ! Share this post Link to post Share on other sites