4images Forum & Community

4images Modifications / Modifikationen => Mods & Plugins (Requests & Discussions) => Topic started by: elsonar on March 17, 2006, 12:42:04 PM

Title: Need a programmer to do some light work to my 4images site
Post by: elsonar on March 17, 2006, 12:42:04 PM
Hey

I need the BB code, HTML code and ImG code added to my 4images gallery, an example of this can be seen on

http://usersigs.com/files.php?cat=Internet

I'd also like it to be able to "Copy to Clipboard" function beside each one when you go to the image details.

Paying $25, PM me if you can do this.

J

Title: Re: Need a programmer to do some light work to my 4images site
Post by: V@no on March 17, 2006, 02:58:41 PM
In jpeg.html (all media templates) (you also can try add it in details.html template, but it might not work properly) insert:
Code: [Select]
<input type="text" name="directurl" value="http://example.com/{media_src}" class="directurl" onFocus="this.select();" readonly> <input type="button" name="clipboard" value="add to clipboard" onClick="window.clipboardData.setData('Text', window.directurl.value);"><br />
<input type="text" name="directurlbbc" value="[img]http://example.com/{media_src}[/img]" class="directurl" onFocus="this.select();" readonly> <input type="button" name="clipboard" value="add to clipboard" onClick="window.clipboardData.setData('Text', window.directurlbbc.value);">
The clipboard only works in IE browsers.
Title: Re: Need a programmer to do some light work to my 4images site
Post by: elsonar on March 17, 2006, 05:25:31 PM
Thank you <3