This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#26 2011-12-30 10:45:44

gbear605
Scratcher
Registered: 2008-03-06
Posts: 1000+

Re: lets make a new img tag

rookwood101 wrote:

I'm guessing it's because they use capital letters in the image tag.

Edit: it also could be because they use images within links (and I'm not sure why that doesn't work)

Any problem with capitalization should now be fixed.

It only does the first one on the page.


Yeah, I'm mostly inactive.  I check in once in a while though.  If you want to contact me, I have a contact form at my website, http://escratch.org

Offline

 

#27 2011-12-30 13:55:24

cocolover76
Scratcher
Registered: 2011-10-09
Posts: 500+

Re: lets make a new img tag

bobbybee wrote:

@cocolover76
There was a couple of errors. Try this.

Code:

<script>
function imagify(){
var bodyElement = document.getElementsByTagName("body")[0];
var bodyInner = bodyElement.innerHTML;
var replaceOne = bodyInner.replace("[url]", "<img src='");
var replaceTwo = replaceOne.replace("[/url]", "'>");
document.write("<h3>Optimized by a script by Coco! :)</h3>" + replaceTwo);
}
</script>
<body onload="imagify();">
[url]http://firemmo.site50.net/firemmo.png[/url]
</body>

yikes


http://i.imgur.com/HfEPZ.gifhttp://i.imgur.com/pvKb6.png

Offline

 

#28 2011-12-30 13:58:05

cocolover76
Scratcher
Registered: 2011-10-09
Posts: 500+

Re: lets make a new img tag

Put this(all one line) in your bookmarks bar.

Code:

javascript:var bodyElement = document.getElementsByTagName("body")[0]; var bodyInner = bodyElement.innerHTML; var replaceOne = bodyInner.replace("[img]", "<img src='"); var replaceTwo = replaceOne.replace("[/img]", "'>"); document.write("<h3>Optimized by a script by Coco and Bobbybee! :)</h3>" + replaceTwo);

When you click it, images will show up!
Also, thank you bobbybee, I have no idea why w3schools told me to do it that way.  smile
EDIT: Test it on this:
http://www.google.com/logos/classicplus.png
EDIT2: Problems.  mad

Last edited by cocolover76 (2011-12-30 13:59:34)


http://i.imgur.com/HfEPZ.gifhttp://i.imgur.com/pvKb6.png

Offline

 

Board footer