No offense to Stramm, but I thought I'd share my edit of the warning message to Netscape/Firefox users.
I corrected a couple of typos and tried to make it friendly and a little more informative.
Sorry, but due to your Firefox or Netscape security settings it may not possible to use the copy button. Please manually select the code by first clicking once into the text area. Then press ctrl+a to select all. Then press ctrl+c to copy. Then simply press ctrl+v to paste.
Since the javascript checks for Netscape I thought I'd include that in the message.
Looking forward to putting this plug-in to work. Stramm, thanks for all your efforts!
Mod:
No doubt I'm an idiot, but I was trying to get the "credit" line to work below the thumb link as mentioned in the thread and coded here:
http://forum.coppermine-gallery.net/index.php?topic=36302.msg222486#msg222486I've read the entire thread at least 3 times.
That post above makes no sense since my codebase file is only 78 lines long and it references lines in the hundreds.
I also don't have those code strings.
I'm using Stramm's V 1.2
To add a line with a link and formatted text below the thumbnail I tried this:
$bbcode_data .= '<td><textarea name="bbcode" rows="1" cols="40" style="overflow:off;">'.$img_url.','[br][size=35][b][url=http://www.aeronauticpictures.com/royalty-free-stock-footage/]Stock Footage[/url] from AeronauticPictures.com[/b][/size]'</textarea><input type="button" value="Copy" onclick=\'copy_clip("'.$img_url.','[br][size=35][b][url=http://www.aeronauticpictures.com/royalty-free-stock-footage/]Stock Footage[/url] from AeronauticPictures.com[/b][/size]'"
and I got parse errors.
Also tried it this way first with same result:
$bbcode_data .= '<td><textarea name="bbcode" rows="1" cols="40" style="overflow:off;">'.$img_url.[br][size=35][b][url=http://www.aeronauticpictures.com/royalty-free-stock-footage/]Stock Footage[/url] from AeronauticPictures.com[/b][/size]'</textarea><input type="button" value="Copy" onclick=\'copy_clip("'.$img_url.'"
A misplaced ' or " or syntax error or massive case of moron. I can't figure it out.

Any help would be much appreciated.
Thank you!
Mod:
Okay, getting closer. Yes, the font size was way too big. And would not display with an SMF forum w/out the "pt" call for size. Fixed that. And got the credit to show now without the parse errors but too stupid re: javascript to figure out how to include it in the button capture. Here is code now:
$bbcode_data .= '<td><textarea name="bbcode" rows="1" cols="40" style="overflow:off;">'.$img_url.'[br][br][size=13pt][b][url=http://www.aeronauticpictures.com/royalty-free-stock-footage/]Stock Footage[/url] from AeronauticPictures.com[/b][/size]</textarea><input type="button" value="Copy" onclick=\'copy_clip("'.$img_url.'")\'></td>';
Solved:$bbcode_data .= '<td><textarea name="bbcode" rows="1" cols="40" style="overflow:off;">'.$img_url.'[br][br][size=13pt][b][url=http://www.aeronauticpictures.com/royalty-free-stock-footage/]Stock Footage[/url] from AeronauticPictures.com[/b][/size]</textarea><input type="button" value="Copy" onclick=\'copy_clip("'.$img_url.'[br][br][size=13pt][b][url=http://www.aeronauticpictures.com/royalty-free-stock-footage/]Stock Footage[/url] from AeronauticPictures.com[/b][/size]")\'></td>';
Mod: Arrrrrgh.
Works fine it seems in IE. Won't even display the correct string for manual copy in FF or Netscape. Soooo. I changed the rows to:
<textarea name="bbcode" rows="2"
In both text areas and added the error message about select all (see top of this post) because 3 clicks would not select all in FF.
Over and out.