BBCodeBox3

prosilver | subsilver2

Willkommen und Guten Tag, Guest  Beim nächsten Piep ist es zwischen 16:00 und 17:00 Uhr

It is currently Wed 26. Jun 2024, 16:57

All times are UTC + 1 hour [ DST ]




Post new topic This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
PostPosted: Tue 11. May 2010, 00:29 
Administrator
User avatar

Posts: 427

Last 3 Topics:
Tabmenu Test
[Snippet] Avatar Ev...
[DEV] Zero and X-P...

Joined:
Sun 13. Jan 2008, 23:44

Pop Up for [url]'ed [img]

With this Snippet u can easy add a linked Image into the Postbox via PopUp

Instruction

make a fake-bbcode

BBCode usage
Code:
[img_url][/img_url] 


HTML replacement
Code:
  


Help line text = Click to start the Wizard

Display on posting page = yes

------------------

open

styles/xxxxxx/template/editor.js

find

Code:
   // Open tag
   insert_text(bbopen + bbclose);  


replace with

Code:
        // IMG_URL Fake Tag
        if (bbopen == '[img_url]')
        {
            var Error = '';
            var URLL = prompt('Address of URL' , '');
            if (!URLL) {
            Error = "You haven't enter an URL Address";
            }
            if (Error) {
            alert("Error: "+Error);
            return;
            }
            var IMGURL = prompt('Adress of the Image' , '');
            if (!IMGURL) {
            Error = "You haven't enter an Image Address";
            }
            if (Error) {
            alert("Error: "+Error);
            return;
            }
            if (URLL + IMGURL) {
                insert_text('[url=' + URLL + '][img]' + IMGURL + '[/img][/url]');
            }
            else {
                return;
            }
        }  

        else
{
        // Open tag
       insert_text(bbopen + bbclose);}    


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC + 1 hour [ DST ]


Who is online

Users browsing this forum: No registered users and 0 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
cron
POWERED_BY
[ Time : 0.080s | 20 Queries | GZIP : Off | Board-Version: 3.0.7 PL1 ]