Results 1 to 6 of 6
-
28th Jun 2009, 04:03 AM #1OPMemberWebsite's:
WarezDirect.net[Request] Copy Coded Links
OK so I need a code to be made up, I already know where to PUT IT but I just need somebody to find it or make it up.
It's pretty basic I just want to add a link beside the word "Code:" for all my coded links on my site so when somebody clicks it, all contents/links in the CODE box will be copied to clipboard...
Any help would be appreciated
EDIT: I am running vBulletinJointRolla420 Reviewed by JointRolla420 on . [Request] Copy Coded Links OK so I need a code to be made up, I already know where to PUT IT but I just need somebody to find it or make it up. It's pretty basic I just want to add a link beside the word "Code:" for all my coded links on my site so when somebody clicks it, all contents/links in the CODE box will be copied to clipboard... Any help would be appreciated EDIT: I am running vBulletin Rating: 5
-
28th Jun 2009, 08:16 AM #2Respected DeveloperWebsite's:
PlatinumW.org NexusDDL.com HD-United.org CheckLinks.org FLVD.orgWhat you need is flash + javascript.
Current projects:
Megaupload Premium Multifetch Script | FF Plugin: Tinypic and Imagevenue Image Remoter
Projects in hiatus:
IPB Linkchecker Bot | VB Linkchecker Bot
-
28th Jun 2009, 10:30 AM #3Member
this might help you
http://www.vbulletin.org/forum/showthread.php?t=172255
-
28th Jun 2009, 06:08 PM #4OPMemberWebsite's:
WarezDirect.net
-
28th Jun 2009, 06:21 PM #5MemberWebsite's:
darknessdownloads.orgInstall:
1. Open Temp: headinclude
Add below:
PHP Code:<script type="text/javascript">
function selectCode(a)
{
var e = a.parentNode.parentNode.getElementsByTagName('PRE')[0];
if (window.getSelection)
{
var s = window.getSelection();
if (s.setBaseAndExtent)
{
s.setBaseAndExtent(e, 0, e, e.innerText.length - 1);
}
else
{
var r = document.createRange();
r.selectNodeContents(e);
s.removeAllRanges();
s.addRange(r);
}
}
else if (document.getSelection)
{
var s = document.getSelection();
var r = document.createRange();
r.selectNodeContents(e);
s.removeAllRanges();
s.addRange(r);
}
else if (document.selection)
{
var r = document.body.createTextRange();
r.moveToElementText(e);
r.select();
}
}
</script>
2. Open bbcode_code:
find:
PHP Code:$vbphrase[code]:
Add below:
PHP Code:<a href="#" onclick="selectCode(this); return false;"><input type="button" value="Select All" /></a>
3. Open bbcode_html:
find:
PHP Code:$vbphrase[html_code]:
PHP Code:<a href="#" onclick="selectCode(this); return false;"><input type="button" value="Select All" /></a>
find:
PHP Code:$vbphrase[php_code]:
PHP Code:<a href="#" onclick="selectCode(this); return false;"><input type="button" value="Select All" /></a>
PHP Code:$code
PHP Code:
<pre>$code</pre>
-
28th Jun 2009, 07:02 PM #6OPMemberWebsite's:
WarezDirect.net
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
copy links from Fileserve list
By jayvee in forum File Host DiscussionReplies: 6Last Post: 30th May 2011, 02:07 PM -
make links clickable and coded [for vbulletin]
By saninokia in forum vBulletinReplies: 1Last Post: 5th Mar 2011, 10:04 PM -
Links When Coded Breaks
By Algore in forum IP.BoardReplies: 17Last Post: 4th May 2010, 03:42 PM -
[Request] Protect links script
By Ruriko in forum Webmaster ResourcesReplies: 4Last Post: 25th Jan 2010, 12:03 PM -
changing background color for coded links
By Alegria in forum phpBBReplies: 3Last Post: 9th Jul 2009, 04:19 PM
themaCreator - create posts from...
Version 3.24 released. Open older version (or...