Welcome to the tech blog copacopi

Showing posts with label blog posts. Show all posts
Showing posts with label blog posts. Show all posts

Smart Blogger Assistant for Simple Blog Publishing

Developer Description:
Smart Blogger allows centralized management of your all diaries and blogs regardless of its Internet location. The software has a single universal interface for reading and sending messages to all blogs; it makes text formatting possible. With this application, you can monitor your friends' diaries checking their blogs for new postings. You can also look through commentaries to your postings as well as other peoples, place comments in blogs, and leave answers to threads.


The software supports three web-blogs:
- LiveJournal
- Blogger
- WordPress

Disadvantages:
This post has been made in Smart Blogger. I already see several disadvantages of using this free software for blogs publishing:

1. No possibility of the text alignment options.
2. Very basic text formatting: color and bold/itallic/under only.
3. No spell checking option.
4. No advanced features as horizontal lines or tables generation.
5. Small publishing field, not very convenient for big posts.

Advantages:
1. Nice and pleasant interface.
2. Easy to use.
3. Portable software exists, so you do not need to install the software on your PC

Developers WebSite: http://www.smartpctools.com/smart_blogger/index1.html


Assessment: The software is good for the light operations, small notes in your Journal, but is lacking functionality for serious blogging.

Software carries rating 3 of 5 in the RateItAll List of 29 free software titles:
http://www.rateitall.com/t-24825-blog-publishing-freeware.aspx

If you have personal experience using this software, you are welcome to leave your feedback in the rating widget below:

Read More

Disabling Right Click in Blogger Blog

Have you noticed, that some web sites do not allow their visitors using right mouse click while pointer is on the blog area. This option is useful for the site and blog owners, who want to minimize the possibilities of the content direct copying to other posts.

Provided cross browser DHTML script from dynamicdrive will help you achieving the same result on your own blog, preventing default right menu from popping up when right mouse is clicked. There are actually two options for this script are provided: Alert Option and Non-alert Option. If the Alert Script is enabled, if someone tries to execute Right click on the blog, then a Message, which can be customized per your desire, appears. If the Non-alert script is activated, then no message is displayed.

To setup this tool in your blog Copy the Following code and paste it to your blog by adding a new page element.

Message Alert Script:

<script language=JavaScript>
<!--

//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com

var message="Function Disabled!";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

// -->
</script>


Message Non-Alert Script:

<script language=JavaScript>
<!--

//Disable right click script III- By Renigade (renigade@mediaone.net)
//For full source code, visit http://www.dynamicdrive.com

var message="";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}

document.oncontextmenu=new Function("return false")
// -->
</script>
Read More

© Copacopi, AllRightsReserved.