266 Blogumus: a flash animated label cloud for Blogger!
Thursday, August 28, 2008 /



"Blogumus" is an Flash based tag cloud widget which uses scripts converted from Roy Tanck's WP Cumulus plugin for Wordpress. I fell in love with Roy's original Cumulus plugin when I saw it, and simply had to learn how to convert this for use in Blogger powered blogs. The result is the widget you can see in action at the top of this post. Hover your mouse over the Flash object to see the animation begin.

In this post, I'll explain how you can add Blogumus to your own Blogger layout with ease!


Update: Improved Widget Code


I have updated the code required to run this widget to activate links in the tag cloud Flash movie. If you have already installed Blogumus, please replace your widget code with the new updated code, or reference the additional lines to modify your existing installation.

How it works

This widget uses a combination of JavaScript and Flash animation to parse and display your blog labels. Once installed in your template, it should work "out of the box" without any additional tweaking required, though of course you may prefer to change the variables for color, background and size if appropriate :)

You should also be able to move the Label Cloud widget through the Page Elements page of your dashboard if you prefer display in a different layout location.

To see Blogumus in action, both Flash and Javascript must be installed and enabled for your internet browser. However, it does degrade relatively gracefully, and label links will still be clickable (though not animated) for those who do not use JavaScript of Flash (including search engine spiders).

How to install Blogumus in your Blogger layout


Installing Blogumus in your Blogger layout is surprisingly simple! You should only need to copy and paste a section of code to your Blogger template, though any tweaks for the style of display will require some manual editing.

Here are the steps required to install Blogumus in your Blogger layout:

Go to Layout>Edit HTML in your Blogger dashboard, and search for the following line (or similar):

<b:section class='sidebar' id='sidebar' preferred='yes'>
Immediatly after this line, paste the following section of code:

<b:widget id='Label99' locked='false' title='Labels' type='Label'>

<b:includable id='main'>

<b:if cond='data:title'>

<h2><data:title/></h2>

</b:if>

<div class='widget-content'>

<script src='http://halotemplates.s3.amazonaws.com/wp-cumulus-example/swfobject.js' type='text/javascript'/>

<div id='flashcontent'>Blogumulus by <a href='http://www.roytanck.com/'>Roy Tanck</a> and <a href='http://www.bloggerbuster.com'>Amanda Fazani</a></div>

<script type='text/javascript'>

var so = new SWFObject(&quot;http://halotemplates.s3.amazonaws.com/wp-cumulus-example/tagcloud.swf&quot;, &quot;tagcloud&quot;, &quot;240&quot;, &quot;300&quot;, &quot;7&quot;, &quot;#ffffff&quot;);

// uncomment next line to enable transparency

//so.addParam(&quot;wmode&quot;, &quot;transparent&quot;);

so.addVariable(&quot;tcolor&quot;, &quot;0x333333&quot;);

so.addVariable(&quot;mode&quot;, &quot;tags&quot;);

so.addVariable(&quot;distr&quot;, &quot;true&quot;);

so.addVariable(&quot;tspeed&quot;, &quot;100&quot;);

so.addVariable(&quot;tagcloud&quot;, &quot;<tags><b:loop values='data:labels' var='label'><a expr:href='data:label.url' style='12'><data:label.name/></a></b:loop></tags>&quot;);

so.addParam(&quot;allowScriptAccess&quot;, &quot;always&quot;);

so.write(&quot;flashcontent&quot;);

</script>


<b:include name='quickedit'/>

</div>

</b:includable>

</b:widget>

Then preview your template. If installed correctly, you should see the tag cloud appear in your sidebar. Then you are free to save your template, edit the colors and dimensions as required, or move it to a different location.

That's all!

Customizing Blogumus

In this default installation, Blogumus includes the following preset variables:

  • Width is set to 240px

  • Height is set to 300px;

  • Background color is white

  • Test color is grey

  • Font size is "12"

If you would prefer to make your widget wider, shorter, change the color scheme, etc, you will need to do this by editing various parts of the code. I'll go through these options in the order they appear in the widget code.

Editing width and height

The variables for width and height are found in this line of the script:

var so = new SWFObject("http://halotemplates.s3.amazonaws.com/wp-cumulus-example/tagcloud.swf", "tagcloud", "240", "300", "7", "#ffffff");


The width (currently 240) is highlighted in red, while the height (300px default) is highlighted in blue. These numerical values specify the width and height in pixels, so you can alter these of you prefer.


Editing background color

You can change the background color from white to any other color by altering the hex value in the same line:

var so = new SWFObject("http://halotemplates.s3.amazonaws.com/wp-cumulus-example/tagcloud.swf", "tagcloud", "240", "300", "7", "#ffffff");


For example, if you prefer a bright red background, you may replace #ffffff with #ff0000. Take a look at this page for a list of commonly used hex color codes.

Alter the color of text

By default, the text is set to display as dark grey ( hex value #333333). You can alter this variable in the following line:

so.addVariable("tcolor", "0x333333");


Be aware that "tcolor" is a Flash variable and doesn't include the usual hash symbol of hex color codes. Be sure to only replace the numbers!

Adjust the font size

The maximum font size of tags is specified in this line:


so.addVariable("tagcloud", "<tags><b:loop values='data:labels' var='label'><a expr:href='data:label.url' style='12'><data:label.name/></a></b:loop></tags>");


You can alter this to ensure tags are displayed in a bigger or smaller font if you prefer by changing "12" to a larger or smaller number.

While making any of these changes, you should be able to preview your widget and be certain that your new choice of color, dimensions and background are suitable for your needs.


Credits, support and requirements

Blogumus is based on the original WP Cumulus plugin by Roy Tanck, and was converted for use with Blogger layouts by myself.

Please leave the credit links in the widget code intact. These will not be seen by the majority of your blog readers (as they will only display if JavaScript and Flash is not activated) but leaving these links intact is a great way of passing some link love on to Roy for all his hard work, and to inform other Blogger users that they can find the widget codes on this site.

Support/Issues

If you have any problems installing or using this widget, please leave your comments below or direct these to the Blogger Buster forums as Roy will be unable to provide support for installation in Blogger blogs!

Requirements

For Blogumus to display properly in your template, you will need to have Flash Player 7 or higher. You can download the latest Flash Player plugin for your browser from Adobe.

I'm not sure that this installation will support special characters as tags (only Latin characters supported at present). If you do experiecce issues with labels displaying incorrectly, please let me know. I'll try to add more support, but have very little experience using Flash!

Your thoughts?

I hope that you enjoy using Blogumus in your own Blogger blogs! Please feel free to share or syndicate this page with your favorite bookmarking service if you think it is worth a mention, or subscribe to the newsfeed to learn of more great Blogger tutorials as they are posted.

266 comments:

«Oldest   ‹Older   1 – 200 of 266   Newer›   Newest»
February 3, 2009 at 1:36 AM Brown Skin said...

terima kasih!! thnk q!!

February 4, 2009 at 12:20 AM Tech-Tweak said...

Thanks Check out:

http://tech-tweak.blogspot.com

February 4, 2009 at 11:46 AM
SYCG said...

no pude hacerlo será que me puedes ayudar. si es tu gusto comunicate conmigo por este correo seriepeliculas@hotmail.com
Muchisimas gracias de antemano.

February 5, 2009 at 6:54 AM
Om Bani said...

thanks infonya

February 6, 2009 at 7:21 AM
Anonymous said...

hiiiiiiiiiiiii amanda good widget thanks for it

see how it works on my blog

www.smsformobile2008.blogspot.com
sms for mobile

make money

www.mobmani.blogspot.com

February 6, 2009 at 8:22 AM duqi said...

thank you.... I can do it...!
so much.

February 6, 2009 at 6:33 PM Courtney Fizzle said...

Thank you so much for this breakdown of what to do, I appreciate it!

http://www.courtneykicks.blogspot.com

February 7, 2009 at 10:09 PM aLx194 said...

Im still getting a blank square

http://the-lake-effect-erie.blogspot.com/

February 7, 2009 at 10:55 PM Zi said...

Amanda, please help me, i only get a blank widget.

voiceofteenagers.blogspot.com

Please contact me on my site, thank you.

February 7, 2009 at 11:00 PM Zi said...

Hey amanda,

it's not working for me though.... i just get a white blank widget.

voiceofteenagers.blogspot.com

Please contact me on my site. Please and thank you.

February 8, 2009 at 7:26 PM OBP said...

Wondering why my blogumus label suddenly disappeared since a week a ago. Tried to reinstall it, but still doesn't work. Any ideas?

February 10, 2009 at 10:30 AM Slims said...

i looked around this post, and the one with the alternative version. Here is my solution.
1.if your tag cloud shows a taf less, try to find this: so[dot]addVariable("distr", "true" and change the "true" with a "false"
2. If your tag cloud shows a blank box even though you tried the alternate version, it's probably because you do not have this line:
b:section class='sidebar'.... (the first one), but a altered one. so change it with the appropriate one ( the one you can see at the top of this article), this is what i did. I have no knowledge of java script, but i tried messing around with the code so i can make it work. Hope i explained it okay ? Sry if you can't understand me: |

February 12, 2009 at 1:09 PM BlackXicer said...

Simply amazing.
Worked like a charm :D

February 14, 2009 at 4:46 AM aZoed said...

Hi Amanda... :)
I'm not sure whether this thread is still alive, but i 'll post my query anyways...
I added the code as described by you... but all I get is a widget in the sidebar with white background... HELP!!! :(

February 14, 2009 at 6:12 AM М.Врединка said...

Is this gadget chooses only English words or no? My blog is in Russian language. So, in cloud I see only English tags. How can I improve this gadget?

February 15, 2009 at 3:44 AM polimerowe said...

Amanda great widget! Looking forward for supporting POLISH language. Thanks.

February 16, 2009 at 12:11 AM Leonardo said...

AWESOME! i'm a beginner-blogger. i searched google and found this wonderful site! and this post rocks! BIG FAN! great work

February 16, 2009 at 6:19 AM
Tezy said...

Hi amanda! Thanks so much for this. i've been searching for this, but i don't know what it is called. i've successfully installed it on my blog. your instructions are easy to follow.

February 16, 2009 at 1:05 PM polimerowe said...

Amand grat widget! Looking forward for supporting POLISH language

February 16, 2009 at 2:57 PM firdaus zahari a.k.a FaKE said...

well, a great post indeed, i have found what i need all this time. this widget works really great in my blog, keep up the good work amanda! can't wait to read your next post =)

February 16, 2009 at 3:06 PM firdaus zahari a.k.a FaKE said...

good post amanda, works great with my blog though..thanks for your help. =)

February 17, 2009 at 4:17 PM Kid said...

Hey Amanda!
I used to use this code on my blog and it works (eventhough there's some missing words). But after I changed the template, and try to put the same code again, all I get is blank..What's wrong with it?

February 17, 2009 at 7:28 PM kenmax said...

I found this error
"The widget with id Label99 is not within a section (actual parent element is: div.) Every widget should be in a section."

How I fix this?

February 18, 2009 at 8:11 AM Rahul J said...

Impressive stuff.....
really good

February 19, 2009 at 11:25 AM Renato said...

Pretty cool! Thanks!

February 20, 2009 at 5:30 PM
Gerry Ching said...

Amanda, i love your widget, but whenever I click on a link in the cloud, the cloud goes blank.

http://holy-spirit-driven.blogspot.com/

any help would be appreciated

February 20, 2009 at 8:56 PM jim said...

thanks for the great tips. I will be using these tips on my blog.

rate my sexy dance

February 21, 2009 at 12:52 PM Depresso said...

Hi, I just saw this on someone else's site and loved it, then decided to find a version for my own blog. I can't make it work, unfortunately, and am hampered by my own pathetic HTML skills. Any suggestions to help would be greatly appreciated!

February 21, 2009 at 5:11 PM Fred F said...

Hello Amanda,
Thanks for all this amazing job you are doing!
This blog is a bible for all of us
I just instaled this widget on one of my blogs and works perfectly.
But I have another blog with a lot a tags on it and I want to ask you if you know a way to choose or limit the number of tags displayed? maybe putting a link with only the tags that I want to use. Any idea?
Wainting for your answer, sincerly


Fred Fraces

February 22, 2009 at 2:29 AM peanjofreeware said...

I fell in love with it the first time I saw it. Thanks Roy and Amanda for this great plug-in.

February 25, 2009 at 3:49 AM xXxKiraraxXx said...

help~
im using the old blogger template, so widgets arent enabled... is there a way to solve this??

February 25, 2009 at 8:17 AM Alex said...

I've noticed it with a blog with only three different labels.

It always shows only TWO of them randomly
With 5 labels only show 4 and so on....

Have you checked this?

February 25, 2009 at 10:06 AM Marcelo Dantas said...

Amanda tank very much, worked perfectly on my blog. Keep up the good work.

Marcelo from Salvador, Bahia, Brazil

February 26, 2009 at 1:30 AM Islam In Us said...

Simply wonderful!
thanks Amanda.

February 26, 2009 at 4:44 AM SYED MUBALLIGH said...

koool technique......... i hav added in my blog www.tricksystem.com

February 27, 2009 at 12:26 AM Joe! said...

Grea8!
Thnks Amanda !

http://songsjoelikes.blogspot.com/

February 27, 2009 at 6:24 PM Mohan Adha Rifa'i said...

It's work, but no all label can displayed, Why??????????????

March 1, 2009 at 11:03 AM
Zia said...

Superb...Works on my blog. Only problem, I have too many tags! What is the workaround?

March 2, 2009 at 8:11 AM aZoed said...

Hi Amanda,
I know I've posted here before. I so love Blogumus that I want to have this amazing widget on my blog by any possible means, with the current template on. My blog is - http://aseems-infinity.blogspot.com/
Please mail me back at: sdaseem@gmail.com if you think you can help. Please do....

March 2, 2009 at 10:45 PM cuidalacuadra said...

Amanda! Solo carga la primera vez que entro, luego, si refresco o entro a cualquier post, dsaparece... ayúdame porfavor!!!

cuidalacuadra@gmail.com

cuidalacuadra.blogspot.com

March 5, 2009 at 9:34 PM Maria said...

Love it! Thank you so much! Keep up the good work!

March 10, 2009 at 9:20 PM Glyniss® said...

Amanda: your scripts works superb for me... only I wish it could loop on forever, because I see that it spins a number of times and then it stops, but it's a minor fault... your work was astonishing, i never thought that it could be done in blogger. keep up the good work!

March 11, 2009 at 8:47 PM Hill Rat said...

Dear Amanda,

Thanks for hooking this up, but like so many people who have commented I can't get this to work on my blog.

Since I maintain/contribute to three blogs I experimented to see which one it worked with and which one it didn't. The code and cloud works fine on my one plain jane blog that has no modifications to the base template minima.

The code you have here doesn't work with the other blogs where I've added some canned javascript to make my posts expandable. I tried taking that javascript and removing all other modifications I've made to the template before adding your code, but nothing seems to work.

Is my only option to go all the way back to the base template, add your code, get it to work, and the add the other modifications back?

Thanks for any and all assistance!!!

Best,

HR

March 12, 2009 at 2:36 AM boiGeniusbeats.com said...

this is soooo sick wow...thank you so much for this!!!

March 12, 2009 at 6:23 AM Hill Rat said...

I thought I posted a comment last night but it seems to have disappeared.

I can't seem to make this thing work. I have a couple of different blogs that I contribute to/maintain and I can get it to work on one but not the other. Originally I thought the problem was with some changes I had made to the template, but even once I reverted back to the default the animated tag cloud still won't work on one of them. Got any suggestions Amanda?

Also, thanks for posting this, it's mad cool!!

Best,

HR

March 12, 2009 at 6:37 AM
Winter said...

Looks great! Thanks for writing the code. Used it on http://3wbps.blogspot.com/

March 12, 2009 at 7:03 PM patora said...

Fantastic work! It looks great and was easy to install. Only complain: links with UTF-8 characters don't work.

March 13, 2009 at 10:54 PM harish said...

I installed it.It was working like a charm utill my labels number increased beyond 6.Its showing 6..randomly 6 labels....why is this happening??

March 14, 2009 at 10:47 PM Daily Wrap said...

Any1 know how top get this to work for a custom blog

March 18, 2009 at 10:47 AM Rinku said...

great work
keep it up

March 20, 2009 at 12:30 PM Stefaan Boel said...

Works great, just added it to my website

http://www.inventorwizard.be/hotnews.html

Only had one remark what could help others.
I had labels named: Tips 'n Tricks and Macro's.
I had to change them all because the code doesn't except the " ' " in labels.
So changing the names to Tips n tricks and Macro solved it, all of a sudden the cloud appeart and looks so great, thx girl!!!

March 22, 2009 at 2:52 PM PanagiotisP said...

Amazing widget. Unfortunately I can't use it because it doesn't support utf-8.

March 24, 2009 at 7:15 PM lafemmereva said...

amazing.....worked on mine...many thanks!!!

March 24, 2009 at 7:16 PM lafemmereva said...

amanada.. works on my blog..awesome!!

March 27, 2009 at 4:28 AM sergioaraujo said...

Parabéns pelo trabalho de conversão para o blogspot. Ficou muito bom
Obrigado!

March 27, 2009 at 2:16 PM barukutau said...

:)Amanda, this is great thanks for the hard work...

thanks to Roy...


http://barukutau.blogspot.com

March 27, 2009 at 10:44 PM AJ said...

Is there any way to add a black border around the entire box? It would really go with the look of everything I have going.

March 29, 2009 at 7:27 AM Alex Aylett said...

Hi Amanda,
I'm also having the blank box problem.
openalex.blogspot.com
I'd love to use the widget -- any suggestions

March 29, 2009 at 12:12 PM Alex Aylett said...

I'm having the blank box problem as well. Let me know if you have any suggestions; I'd love to be able to include blogumus on my blog.
openalex.blogspot.com

March 29, 2009 at 5:28 PM Daily Wrap said...

Thanks Deezy - Your post cracked it for me. Too many tags. That should be in the above text. I have 18 at the moment and it seems to be working ok

Thanks again

March 31, 2009 at 2:25 PM Alek Tomanov said...

Hello Dear,

I see that above someone asked already, but really can you make it to work as well with cyrillic fonts. You will make lot of Bulgarians happy! ;D

April 1, 2009 at 2:37 AM nguyenlc said...

Is's support UTF-8 ?

April 1, 2009 at 7:14 PM Alek Tomanov said...

Hello Amanda, your page is just amazing! You are doing one of the greatest works around the net. I would like to tell you about all the Bulgarians who also visit it. Is it possible to try and make this app work with the cyrillic alphabet tags. I am sure you will make a lot of your Bulgarian fans happy :D. Thanks Regards

April 4, 2009 at 1:39 PM YveLotus said...

Kudos to the site, Amanda. =)
Unfortunately, after following the instructions as you have provided, the coding does not work on my Blogger page at all. When I insert the code as you have presented, no changes appear on my blog. This would be a most useful tool, wish I could get it to run.

April 4, 2009 at 2:42 PM lmroces said...

This is wonderful!!! Thanks for sharing. I found this, which might help with posting in Blogger:
http://www.blogger-templates-designs.blogspot.com/2008/10/how-to-add-flash-animated-label-cloud.html

April 7, 2009 at 6:30 AM Euqirneto said...

Great job! I tried it on my blog but after a while I noticed the links don't work when they contain special characters like our Spanish á, é, í, ó, ú... Well done anyway!

April 7, 2009 at 1:03 PM Kawshalya said...

you r wonderful!!! no words to explain!!!
thx a lot!!! works for me!!!
2thumbs up!!!

April 7, 2009 at 2:42 PM
kanchi said...

Hi amanda,
I need ur help I want to categorize the blog posts
I tried it by creating one post under particular category with old date,added links of all posts under that category upto here its ok but as I explore through archive it is showing category post too.Could u tell me another way of categorizing the posts?I don't want to use label cloud,I want to use one category and under that particular category when i will click subcategory,it must show links to all post in that subcategory(not post description)and when i will click on a particular links in sucategory it must show only that post.I know its a bit lengthy....... :D
Thanks!

April 7, 2009 at 3:17 PM Chelseamaniac said...

this method : blank
alternative method : i can't click

please help me
http://chelseamovies.blogspot.com/

April 8, 2009 at 9:00 AM Chelseamaniac said...

works perfect
thanks Amanda

http://chelseamovies.blogspot.com/

April 8, 2009 at 2:38 PM Alonso Padilla H. said...

hello and thanks for this great work of yours...one of my favs

April 9, 2009 at 5:44 AM security said...

very good

http://bloggeriz.blogspot.com/

April 9, 2009 at 3:30 PM Zahir Shah said...

Hi ! Amanda First Of all Thanx for such a nice widget. Now i need a little help from u. I want to use this tag cloud in a multi-tabbed widget. Can u plz tell me how it can be done.
This is my blog.
www.trickstour.co.cc
The the multi-tabbed widget that i want to use for the tag cloud is on the right side with the tabs=> "Recent Posts","Popular", "Cloud".
Wating for your reply.
Thanx in advance.

April 10, 2009 at 10:28 PM Alos said...

Yes, my costume made blog template will not allow this to work. Do you have any idea about this problem?

April 10, 2009 at 10:35 PM Alos said...

I got it, the problem starts with tags or labels that contain a " ' " character o.O

April 10, 2009 at 11:53 PM
Nguyễn Thanh Bình said...

Oh dear! Does it work out with unicode Label? So why I can do it

April 11, 2009 at 4:26 AM Hawk said...

It works and its great but can we tweak it to shaow random posts instead of labels

April 12, 2009 at 12:48 PM ruchira said...

Thanx a Lot!!!
I was searching for this for a long time but could not get it done so easily!

April 13, 2009 at 6:33 AM Chaotically Calm said...

My cloud disappeared. There were no errors with the code, can someone help get it back.

April 13, 2009 at 7:05 AM cidadedooriente said...

no meu blog não funcionou

April 13, 2009 at 7:41 AM CV said...

Hello as you would to put the text of various colors blogumus? like the original WP-Cumulus!

thanks

April 15, 2009 at 4:55 AM Girard said...

Hi Amanda.

I need help with setting up a Blogumus on my blog. I've been reading thru the comments and like the rest, I am still getting a blank white box. The only thing I managed to do is I changed the background to transparent, so now I have a blank black box, which appears to be nothing at all on my black background.

I'm not sure if it's an issue, but I have 45 labels. I'm afraid it's too many if the cloud is to fit in the sidebar, but I totally have no idea as well. And I have a few other live plugins (like my last.fm radio) which I'm afraid might be causing issues too. I really like this concept, but I just can't make it to wor. Hope you can help me.

momentsinentropy.blogspot.com

April 15, 2009 at 7:33 PM choonhong said...

dude, it cannot display Chinese characters.. how am i going to solve it?

April 15, 2009 at 8:26 PM rio safri said...

I Tried edit my label according with your tutorial, But I was failed to display all of my label on cumulus tag cloud animation. Help Amanda :-( thanks before

April 16, 2009 at 9:47 AM 5:4 said...

Installed precisely as instructed: blank space.

Any chance of help Amanda, or have you lost interest in this now...?

April 17, 2009 at 5:20 AM agapetòs said...

thanx a lot Amanda. I was just wondering what does that "7" stand for in the parameters.

Giovanni (Italy)

April 17, 2009 at 8:56 AM humanlinux said...

hello tahnx a lot!!!!!!!
it works for me, horeyyyyy.....thankyou very much for deploying this to the blogspoter's.....
:)

April 18, 2009 at 12:30 PM LyricBod said...

Working fine for me at Words and Music (just a little plug there). Thanks!

April 20, 2009 at 5:16 AM Ananda Ganesha said...

nerver work for my blog. =((

April 21, 2009 at 6:42 AM
Anonymous said...

Hello everybody, I am desperate I tried the cloud of tags of a thousand ways and still be moving, if I get two close links pointer but nothing else. I can help you leave a picture as I was: http://img21.imageshack.us/img21/6930/etiqueta.jpg


Thanks for helping me :-)

April 21, 2009 at 7:07 AM Kirsten Jo said...

Thank you so much! Yours is the first one that has worked:)

April 21, 2009 at 1:39 PM
Awdrey said...

Hey, I installed this a few weeks back with no problems what so ever. Now all of the sudden it will not display any more, and I have not messed with my html. Do you know how I can get it back?

April 23, 2009 at 6:48 PM mimi said...

Hi..i recently added you to my links lists
Just link back to me at http://totalcompetition.blogspot.com/

April 24, 2009 at 4:58 AM Big Mike said...

Two things.

a) What is the "7" in the params?
b) How can I require a minimum label amount before it is included in the cloud? Like filter any label with less than 3 entries.

Mike

April 24, 2009 at 4:59 AM Big Mike said...

I've edited it to work on a two sidebar page with taking the entire width. Check out my page if you are into Day Trading:

http://ctrlbrk.blogspot.com

Mike

April 24, 2009 at 9:26 AM Text Messages said...

My html coding no have the line who first find. Please Help Me.

April 25, 2009 at 4:30 PM Coisa Frágil said...

Hi, I am very happy in my blog that has some application.
thanks, very cool and easy to explain

my blog: http://coisasfrajeis.blogspot.com/

kiss

April 25, 2009 at 6:12 PM RetireNation said...

Worked perfect the first time! Love your stuff...thank you!

http://www.retirenation.blogspot.com

April 26, 2009 at 1:42 AM T and S said...

Amanda : I use blogger and my browser is firefox. I installed the widget yesterday. It is still showing has a blank box. Pl. let me know how do I make this work.

The widget is at the bottom of the post in case you want to check it out.

Thomas (http://walkthewilderness.blogspot.com)

April 27, 2009 at 3:15 AM Abhilash said...

Thats an insane control.
great work.
thanks.

April 27, 2009 at 3:29 AM me said...

now it works!
thank you so much.
i am happy. i love this widget

April 27, 2009 at 3:18 PM
mas_tiyo said...

I want to Try it's, thanks Amanda...

April 27, 2009 at 9:30 PM MovieZ on Fire said...

Hi,
I wanted the widget to display the Blog Posts instead of displaying blog labels..
is that possible...if yes please help me to change the code.
Thanks in advance.

April 28, 2009 at 1:43 AM alfan said...

I love this, thank you!!

April 28, 2009 at 10:07 AM philbert said...

Blomugus: Labels not showing on the cloud - Fixed

Visit my site: http://pillboxusa.blogspot.com

Cheers.

April 30, 2009 at 7:47 PM Nefarious said...

Hi, Even after copy pasting it.. it does not seem to display on my blog!

http://wwwthedarkasylum.blogspot.com/

pls help!!

May 2, 2009 at 5:14 AM HamiWeeRAé @ Wee said...

cool widget! thanx a lot 4 the tutorial!

May 2, 2009 at 10:33 PM Softpump said...

Nice ......it worked in my blog

http://gamespump.blogspot.com

May 6, 2009 at 9:40 AM The Cheese Omelette said...

Hello. I just added this widget to my blog and I love it! Thanks Amanda.
http://thecheeseomelette.blogspot.com/

May 6, 2009 at 9:43 AM The Cheese Omelette said...

Hey. I just added this widget to my blog and I love it! Thanks Amanda.

http://thecheeseomelette.blogspot.com

May 8, 2009 at 4:07 PM PaintDog said...

Worked fine for me - thanks :)

http://annran.blogspot.com

May 9, 2009 at 12:27 AM ilham wicaksono said...

I did it..very very big big thank's to all of u that make blog society so bright and colourfull. especially for newbie like me....
Keep goin ya.....

May 9, 2009 at 8:26 AM Βάσκες said...

Any luck with the UTF8 characters? Most of my labels are in Greek and they do not display!

Thanks in advance

May 10, 2009 at 7:13 AM CJovem said...

Hi, i'm from Portugal and, aldow the widget is working "fine" it doesn't recognize the portuguese accents, returning me a empty search... is there a way for me to solve it?

May 11, 2009 at 1:05 AM CJovem said...

Hi Amanda, I have the same problem as others, the language issue. My blog is in Portuguese and words with accents just return zero results in their querry... have you already found a way to solve it?
Anyway, nice work :)

May 12, 2009 at 1:11 AM
itvlive said...

ahaan :D its working :D thank you so much :D

http://itvlive.blogspot.com

May 12, 2009 at 1:25 AM
itvlive said...

hi, its work on labels but i want to add links my self in it,
i dont want to get labels in it,
can i do it ?????

May 12, 2009 at 5:34 AM La Mercerie Impériale said...

Thanks but it doesn't work for me. Only a white square appears without any labels. How can I do ?

May 12, 2009 at 10:50 PM
Awdrey said...

Well I had this up and it just disappeared one day.

I have tried to put it back in and now when I do, all I get is a blank widget. I can see where the cloud is suppose to be, but there is no tag cloud there. Any one know what I should do.

May 13, 2009 at 2:32 AM Aaron said...

Hey Amanda,

Not just me but others have this question:

"The widget with id Label99 is not within a section (actual parent element is: div.) Every widget should be in a section."

Is there a solution?

May 14, 2009 at 10:59 AM cassgnow said...

thanks amanda...it works
but i can't seem to change the background color to transparent...
is it possible to change it to transparent?

May 15, 2009 at 5:54 AM Ricardo said...

Cacho said...

"I tried installing as per instruction but it only shows an empty space where the widget should be. I can right click it and change settings for Adobe Flash so it means that it recognizes the code but it has problems displaying it. Please take note that i have an existing custom tag cloud. Please help!"

Hi!, in my case, the widget works perfectly all the time in Firefox and Opera it works but in Internet Explorer when you click a link, then the widget disappears. I´ve tried to refresh cache too. My version of the flash is 10 and the latest Internet Explorer. What may be due, "Are you going to someone else," Does this solution?.

Thanks!

P.D: Excuse my bad English...

May 16, 2009 at 4:04 PM El blogudo said...

Hi, Amanda. Terrificly cool job!
The thing is I don't use labels (all my posts are for different things), but I would LOVE to have this working for my bloglist.
I tried to replace the word "labels" with "bloglist" and blog.url (or something like that), but nothing happens (it is obvious I know nothing about html).
¿Could you help me with this?
My blog is blogudo.blogspot.com and my e-mail is queblogudo@hotmail.com

Thanks a lot and congrats once again for your terrific job.

Cheers,

Juan.

P.D.: your blog in Safari (Mac) has some issues (when you open the comments for a post, it goes all blank, except for the footer).

May 17, 2009 at 4:10 PM मनोज said...

Amanda i am so happy to see this kind of widget. But i attended with a problem(not exactly a problem). I am trying my blog in different font i.e. nepali. I have labels in nepali and english i.e. both languages but my lables are showing only english labels. http://entnepal.blogspot.com

May 17, 2009 at 7:48 PM मनोज said...

last night it was working suddenly it stopped working

May 18, 2009 at 10:16 AM Allied Blogger Admin said...

good post. But, how do you make this enable with the old blogger template?

May 18, 2009 at 11:24 PM Christina said...

I installed it on my blog...it worked fine for awhile, but now it only shows a blank box. I use firefox, have adobe flash 10, only changed the widget name on the Page Elements page (no change in HTML other than the imensions when I first installed it)....can you figure this out?

http://mamasmoneysavingtips.blogspot.com/

May 19, 2009 at 1:49 AM *KHUSHI* said...

thanks , I added animated label cloud into my blog , it looks nice but cant change color & size... cant even find html code to edit... plzz guide me.

May 19, 2009 at 7:50 AM tippopotamus said...

This is great. Thanks so much for putting it out there...

May 20, 2009 at 4:34 AM Sam Ruddock said...

Hi Amanda - this code seems to be installed okay but wont display properly in my blog

http://bookstimeandsilence.blogspot.com/

Do you have any idea what could be the cause?

May 21, 2009 at 6:42 PM muranoandtagua said...

hey this is pretty cool but it only shows up in my preview screen and not on my blog...

:(

May 23, 2009 at 6:33 AM APIH YAYAN said...

thanks my friend i love blogumus..

May 23, 2009 at 8:13 AM hendrie k_bejo said...

tanks all brother....keep bandung beautiful euy...

May 24, 2009 at 11:46 PM
ENJOY by MiHai said...

d;ont work :(((( please help http://4youenjoy.blogspot.com/

May 25, 2009 at 7:23 PM chris said...

that's pretty neat Amanda, I'm just new in the blogging community and want to tweak my own profile layout, and I want to thank you for this!

Thanks again!

May 27, 2009 at 8:01 AM udienjai said...

sorry amanda..
its doesnt works for my blog too.. T_T
http://udienjai.blogspot.com

May 27, 2009 at 8:34 AM Sandeep said...

I have pasted the cloud code in my template and i am happy to see the label cloud in my sidebar.Thanx

www.techieway.blogspot.com

May 28, 2009 at 4:51 PM da5id said...

arriving a bit late to the party as it were..
but thanks for your conversion work on Blogumus and an excellent installation guide =)

http://black-sun-club.blogspot.com/

May 28, 2009 at 6:29 PM
clevergames said...

Hi Amanda, I've tried to insert this widget on my blog but it dosen't work.
I've followed the procedure step by step, I don't know why it dosen't work. http://clevergames.blogspot.com
Can you help?
Thanks
Luk

May 29, 2009 at 12:16 AM SVUBITFREE BLOG TEAM said...

pls add support for cyrillic symbols... pls...

May 29, 2009 at 8:08 AM
Anonymous said...

please make the version for xanga site. thx

May 29, 2009 at 11:14 PM kimihu said...

Can replaced color Because my Blogger the background is black if mouse touch Menu "word no see".help me!!

June 3, 2009 at 10:31 AM Raches said...

i dont have a clear grasp of html and have been trying for days to introduce a tag cloud to my blog unsuccessfully.

i came across yours this morning and had a very lovely one up and running within minutes.

THANK YOU!

June 6, 2009 at 1:32 AM Charles said...

If I refresh the page, it sometimes work sometimes not, very strange. I get syntax error at the lower-left corner of IE,
http://cyberjedizen.blogspot.com/
I will keep trying and let post back when I find a solution.

June 6, 2009 at 3:09 AM srikanthrayabhagi said...

Hi.. Is there any restriction that no of labels displayed will be only ten.. if not please help with me..

http://srikanthrayabhagi.blogspot.com/

June 6, 2009 at 4:46 AM
Anonymous said...

When accesing a web with this blogumus code (like this one) using iexplorer and adobe flash player 10 I get an internet explorer error telling that iexplorer can´t open this site

June 6, 2009 at 6:48 AM cupcakes.gr said...

Hi, just like Acis above, it doesn't bring up my Greek language labels. If a label is using standard latin characters, it gets included. Otherwise it doesn't show up.

Great work, though!

June 6, 2009 at 1:57 PM Mardi @eatlivetravelwrite said...

Hi Amanda,
I love this tag cloud - my blog is fairly new and so every label just had (1) after it - a bit lame. This is much nicer. How do I give you credit for that on my site?

June 7, 2009 at 5:19 PM FLiTz Ferdinand said...

how can i change it's speed? thanks

June 7, 2009 at 11:46 PM nadnye said...

Thanks.. I manage to make this within second.. credit to you..

June 9, 2009 at 2:34 PM Anne said...

It works and easy to make. Thanks.

June 11, 2009 at 3:49 AM Text Messages said...

I install this script in my blog. it is properly work. thank you

June 11, 2009 at 5:54 AM steddy said...

i'm also getting just the blank space. i'd love some help, as this is a great tool!

http://xpurtwitness.blogspot.com

June 11, 2009 at 10:22 AM serinajane said...

hello 1st of all thank you for haring this converted Tag cloud with us I love it and REALLY wanted it on my Bloogger Blog :)

Roy made an upgrade so an limit the number of tags displayed then it shows only the most used tags

it was added in version 1.1
adds the ability to pass parameters to the WordPress wp_tag_clound function.

Is it possible to add that to your Blogger version as well? otherwise my tag cloud is a "little crowded"

Thank you very much in advance

Greetings SJ

June 11, 2009 at 3:00 PM Hisham said...

Thank you! Worked like a charm!

June 12, 2009 at 11:43 AM
Reba said...

Hello Amanda,

First let me say I love your site; your love for blogging and instructing are demonstrated in the way you respond to comments and questions; that mean a lot to newbie bloggers like me. I love the cloud and I've listed you under my site credits for the cloud and the breadcrumb trail. The cloud works wonderful for me; However, visitors have told me that the animation stops after a few minutes. my site address is www.touchinglivespositively.com

And if I may ask another question unrelated to the cloud... I am having the most difficult time tyring to configure an anchor link... I found from your site a link to the blog doctors toc w/preview. The anchor works good in my browser only, it's probably something simple but I've spent countless hours trying to figure this out... the challenge is I'm using a 3rd party template and I'm trying to create the hyperlink within that structure. I know this may be a huge request but can you tell me what I am doing wrong?

June 12, 2009 at 12:12 PM Alisha said...

Fantastisk Amanda. Thank you so much. I ♥ Blogumus.

June 12, 2009 at 7:37 PM Kevin said...

hi Amanda,

great widget, old problem, blank cloud? it is positioned in the right sidebar labelled as MAF Tag Cloud

June 13, 2009 at 2:01 AM Anders said...

Hi Amanda!

And thanks for a great port.

Is there any chance the widget will be updated to support international characters?

Any tags I have with the Swedish å ä ö does not work (they get URL-translated to %E5, %E4, %F6 wich Blogger doesn't seem to like).

/AndersL

June 13, 2009 at 6:28 AM antoine brea said...

Hi Amanda !

Thx for your work.

I need help with Blogumus on my blog.

When I click on most of the labels in the cloud, the system does not find the corresponding posts (I have a blank page with a message telling me : "no posts under this label").

I've been reading thru the comments and like the rest, I am still getting a blank white box. The only thing I managed to do is I changed the background to transparent, so now I have a blank black box, which appears to be nothing at all on my black background.

I really like blogumus, but I just can't make it work well. And I tried to return to the original version of my blog, but I can't find the code that you gave us anymore !!

Could you please help me ?

Thx again,

www.antoinebrea.blogspot.com

June 16, 2009 at 2:58 PM Antonio Sarabia said...

awesome effect!
thank you very much

June 17, 2009 at 12:13 PM Chris said...

I discovered what the problem was with the labels. I don't know why nobody else discovered this one. I assumed what it was and came out right. It has to do with certain characters in your labels.

Go through your labels and remove anything that is not a letter or number, such as single quotes, double quotes, colons, semi-colons, etc.

It wasn't the number of labels, but the extra characters. That being said, I'm deleting all of my labels and starting over with more meaningful labels.

June 17, 2009 at 4:35 PM Newsy Chick said...

This worked for me but had to delete it because similar to coco, there were too any labels. Is there a way of setting a minimum of posts before they appear in the cloud?

June 17, 2009 at 8:37 PM nadnye said...

Thank you Amanda for the great work

June 18, 2009 at 6:53 PM
AEL21 said...

I put everything where you guys said to, but it didn.t show up. What is wrong?

June 20, 2009 at 6:20 AM
Sensory Escape Images said...

Hi,

Mine worked for a while then stopped all of the sudden: http://sensoryescapeimages.blogspot.com/

Nathan

June 20, 2009 at 6:21 AM
Sensory Escape Images said...

Hi mine stopped working all of the sudden: http://sensoryescapeimages.blogspot.com/

Nathan

June 20, 2009 at 10:52 PM
Reba said...

Amanda,

Thanks for all you do! I'm using the cloud and I absolutely love it, unfortunately it does not refresh it IE; Do you know if there is a fix for this?

Thanks again!
Reba

June 21, 2009 at 1:37 AM TANUJ said...

Dear amanda this widget is not working in my blog

June 21, 2009 at 1:41 AM TANUJ said...

dear amanda i am not instaling flash player . so after some time its work thanks dera

June 21, 2009 at 7:23 AM Maple Leafs said...

Worked perfectly!. Thank you for this amazing tip!
http://foxterrierwirehair.blogspot.com

June 21, 2009 at 4:46 PM
Sensory Escape Images said...

Hi,

I tried using this on my site and had it working just fine. All of the sudden it doesn't show up anymore. Would you mind having a look please?

sensoryescapeimages.blogspot.com

June 21, 2009 at 8:27 PM
Pushkar said...

Hey how can i use this code inside the tab menu, i have seen bloggerstop.net is using this one in the tab menu, please help me

June 21, 2009 at 10:52 PM shawnn loo said...

Nice... It works great but little error (i guess), coz I found out it always missing 1 tag of the original 1...

TQ

June 22, 2009 at 2:21 AM besore said...

is there a away to make the bavkground color trasparent??

thanks in advance

June 24, 2009 at 7:07 AM Hooi said...

it's 2009 now, but i just found this.
ANyway, it works out well in my blog..
http://h00i.blogspot.com

:)

Thanks Amanda.

June 25, 2009 at 1:02 AM princejuno said...

i tried but it failed...
i really like this tag cloud..but it didnt work on my blog site...

http://princejuno.blogspot.com

here is the screen shot after i added it in my html editor...

http://farm4.static.flickr.com/3308/3659630820_c4b45e0e84.jpg?v=0

thanks!...[^^>]

June 26, 2009 at 7:12 AM Analog Designer said...

I don't want tochange the existing lable list. I would like to create tag cloud apart from the existing. Kindly help me for the same.

June 27, 2009 at 11:31 PM Nirbhay Choubey said...

Superb widget! Thanks!!

June 28, 2009 at 4:21 AM b_cak suroboyo is boy said...

thank u amanda
now i get it...but i can't move that widget to another position on sidebar, it must first position (on top sidebar)..right amanda??

(patut dicoba, awalnya ada masalah..tapi direfresh berulang jd bisa)

http://sekitardiriku.blogspot.com

June 29, 2009 at 2:48 AM Hector the Vet said...

Oh! Thanks God!
Even words fail to express my gratitude to you.
Thanks a million!!!!! Great job.

July 2, 2009 at 5:26 PM wasserman-filiberti said...

problems with accents, any solution?

noiseart.blogspot.com

July 3, 2009 at 10:35 AM Ichald Cavalera said...

Thank you Very Much..
i'm show happy for your plugins

July 4, 2009 at 10:27 AM Westminster Book Discussion Group said...

I installed on my new blog, and it worked at first. Then I added more tags to my posts, and now I have empty space. ): Any suggestions?

July 5, 2009 at 8:00 PM Jeri said...

Amanda, I'm having the blank space issues as well. It worked for a while then as I kept adding labels it stopped. Could this be the problem? Too many labels? Please respond with a solution.

July 8, 2009 at 1:21 PM Gigi Purcescu said...

I love you you are the best take a look gigipurcescu.blogspot.com and calatorulhoinar.blogspot.com. you are simple the best thanks

July 8, 2009 at 10:52 PM SLK said...

Thanks! I added it, changed the color, now it makes navigation so much easier on my blog. Not to mention it looks super cool.

Thanks loads.

http://backcovers.blogspot.com/

July 10, 2009 at 4:04 AM Javi said...

Hi Amanda.

I just started blogging a couple of weeks ago and messing around with widgets I found yours. Great work, congratulations and thank you for making our blogs look sharp,

Cheers,
Javi

July 12, 2009 at 8:53 AM Aman S. Aneja said...

Really Cool!!!
I have used it in my blog thats looking damn good

http://punjabirapstar.blogspot.com
http://amanrulesit.blogspot.com

July 13, 2009 at 1:55 PM Cynthia said...

I am not able to get the floating look, only text?????

July 13, 2009 at 2:45 PM Moms For Life said...

Hi..I am trying to install this on my blog, but all I am getting is a blank white rectangle. I made sure to install the latest version of flash still not working. Can you help?
http://www.momsforlife.blogspot.com/
Thanks, Georgia

July 13, 2009 at 2:48 PM Moms For Life said...

Help..I tried installing this on my blog and all I am getting is a blank white rectangle. I made sure to install the latest version of flash prior to installing, but it is still not working! Please help! Thanks much, Georgia
http://www.momsforlife.blogspot.com/

July 16, 2009 at 5:54 AM Yodz said...

Hi, it's a great tweak, but it's not showing in my blog, just a blank whit box.
Need Help
Thanks and more power!

http://yodi967.blogspot.com/

July 17, 2009 at 4:44 AM B4YM said...

Your site is very cool Amanda! I found out about blogumus from someone else's site. But he didnt give credit to you. I apply it in my blog, it works fine except one thing, the width didnt fit in. So I found the link to Roy Tanck in the code and decided to went back to the source, luckily from there he leads me to this wonderful site of yours.

Now I got Blogumus fit in perfectly in my blog! Thanks to u!!

July 17, 2009 at 5:51 AM T. Zambelli said...

Hi, it seems like I am the only one dumb enough to install what you smartly taught.

I added it to my BLOG, but the only thing I see is: "Blogumulus by Roy Tanck and Amanda Fazani"

Take a look if you want, pls:
http://www.todahelohim.blogspot.com

Hope you can help me. I am from Brazil. Thanks a ton!

July 18, 2009 at 7:17 AM Jayric said...

great post bro...thanks for the info...

http://ultimatesupremacy.blogspot.com

«Oldest ‹Older   1 – 200 of 266   Newer› Newest»

Post a Comment