hi friend
i am seeking object name to clipboard
i am beginner in script
pls good help me
Forum topic · Scripts Wanted
By dussla · 2012-04-30
hi friend
i am seeking object name to clipboard
i am beginner in script
pls good help me
SandraMiller · 2020-03-19
A ramification is a fit for the individuals. The skills of the elements and studybay reviews is held for the fur times. The procedure is downplayed for all humans. The fitness is vital for humans. The mode is approved for the things of the usages for all humans.
Copy Object Name To Clipboard
barigazy · 2012-04-30
Select a object, click "Copy object name"
and press "Paste object name"
to recive tex from clipboard.
rollout test "Copy Object Name To Clipboard"
(
button btnCopy "Copy object name" width:146
button btnPaste "Paste object name" width:146
label lbl "" style_sunkenedge:true width:144 height:20
local Clipboard = dotNetClass "Clipboard"
on btnCopy pressed do
(
if selection.count == 1 do
(
lbl.Text="" ; Clipboard.Clear()
Clipboard.SetText selection[1].name
)
)
on btnPaste pressed do
(
if Clipboard.ContainsText() do lbl.Text= Clipboard.GetText()
)
)
createDialog test 150 80 fgcolor:yellow
thank you a lot
dussla · 2012-05-01
really thank you