- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
print get selected from list box
Hello,
I want to vizualise the file who was selected from my list box with "print", but I don't see it appear in the window LOG.
Thank you.
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: print get selected from list box
<< Get Selected is correct message to use, but the placement for it seems to be a bit wrong. When do you want to print it to log? When selection is changed? When some button is pressed?
Below are few examples, maybe you just placed some brackets to wrong place:
Names Default To Here(1);
nw = New Window("Example",
b = List Box({"single", "double", "triple"}, nlines(10));
);
wait(1);
b << Set Selected(2);
wait(1);
show(b << get selected);
wait(1);
nw << Close Window;
New Window("Example",
b = List Box({"single", "double", "triple"}, nlines(10), show(b << get selected));
);
-Jarmo
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: print get selected from list box
<< Get Selected is correct message to use, but the placement for it seems to be a bit wrong. When do you want to print it to log? When selection is changed? When some button is pressed?
Below are few examples, maybe you just placed some brackets to wrong place:
Names Default To Here(1);
nw = New Window("Example",
b = List Box({"single", "double", "triple"}, nlines(10));
);
wait(1);
b << Set Selected(2);
wait(1);
show(b << get selected);
wait(1);
nw << Close Window;
New Window("Example",
b = List Box({"single", "double", "triple"}, nlines(10), show(b << get selected));
);
-Jarmo