Labels

Friday, January 6, 2012

Skype 5.7.0.137 Beta

Skype is software for calling other people on their computers or phones. Download Skype and start calling for free all over the world. The calls have excellent sound quality and are highly secure with end-to-end encryption. You don't even need to configure your firewall or router or any other networking gear.
Additionally it doesn't just work on Windows. Skype is also for Mac OS X, Linux and PDAs using Pocket PC, with a native look and feel for each platform. Talking, sending instant messages or even file transfers work between different platforms like a charm.
  • Skype calling - Skype has all the features of an ordinary phone so it's even easier to manage your calls.
  • Video calling - see who you are talking to at the same time as speaking to them.
  • Add Skype and SkypeOut contacts - Add contacts who use Skype and those who use ordinary phones so you can call more people.
  • Organising groups - group contacts under certain names and share them with your contacts so they can talk to them too.
  • Basic chat and emoticons - when it's not convenient to call, chat or Instant Message (IM) your contacts.
  • Group chat - for when it's easier to chat or Instant Message (IM) all your friends at once.
  • Profile settings - change how you appear to the world and let people know a bit about you.
  • Conference calling - talk to more than one friend at a time.
  • Import contacts - search your address book to find friends and family that already have a Skype name and start calling them for free.
  • View Outlook contacts - view and call your Microsoft Outlook® contacts quickly and directly from your Skype contact list.
  • Quickfilter and Speed-Dial - find Skype contacts, recent chats and SkypeOut contacts quickly and easily, then enter their Skype name to call them back quickly.
Source : filehippo.com

How to Edit Your MySpace Background

There are several ways to edit and customize your MySpace Background, just as there are many ways to build a website: You can learn straight code (specifically CSS), or you can use an editor. Since HTML and CSS can be a little confusing, an editor (also referred to as a generator) can help you create the code you need to personalize your MySpace profile. Here's how to use both.

Basic

  1. Find an editor or generator. Go to a search engine and type in any of the following phrases:
  2. Choose your colors, layout, font, and whatever else you want to customize.
  3. Preview your choices to make sure they're what you want.
  4. Generate the code.
  5. Copy and paste the code into the "About me" section of your MySpace profile.
  6. Press the "Save All Changes" button to see the changes go into effect (the Preview button will not reflect background customization).

Advanced

  1. Edit the "About Me" section of your profile.
  2. Insert the following code, which is essential in order for your custom background to show up. See the Tips for an alternative code.

    <style type="text/css">
    table, td {
    background-color:transparent;
    border:none;
    border-width:0;}
    </style>

  3. Customize the background:

    • Change the color of your background by inserting the following code right before the </style> tag. Replace color_code with a 6-character HEX code, but do not insert the # sign. You can find HEX color codes through any search engine.

      body{background-color: color_code;}
    • Make a tiled picture as your background by inserting the following code instead (you can find the URL of an image by right-clicking, choosing "Properties" and looking for the "Location"--see Warnings below):

      body{background-image:url("BACKGROUND URL HERE");
      background-attachment:fixed;}

    • Make a centered picture as your background by inserting the following code instead:

      body{background-image:url("BACKGROUND URL HERE");
      background-attachment:fixed;
      background-repeat:no-repeat;
      background-position:center,center;}


      • To change the location of the image on the page, replace the green text by experimenting with combinations of the "top" "center" or "bottom" as the first word and "left" "center" or "right" as the second word, with the two words separated by a comma. For example, replacing the green text with center,right will put your image on the right side of the profile, centered vertically.
      • To use one of your MySpace pictures, go to view that picture and then right click and choose "Properties." There will be a descriptor that says "Location:" followed by a URL. That is the URL where your image is stored and should be used to replace BACKGROUND URL HERE in the code.
  4. Press the "Save All Changes" button to see the changes go into effect (the Preview button will not reflect background customization).

    Press the "Save All Changes" button to see the changes go into effect (the Preview button will not reflect background customization).
    Press the "Save All Changes" button to see the changes go into effect (the Preview button will not reflect background customization).
    Source : www.wikihow.com

Thursday, January 5, 2012

How to Insert a PowerPoint to MySpace Profile

You can use HTML coding to add color, graphics, & sound to my Profile page in Myspace. But PowerPoint can not be inserted into the Profile page for the web browser can not play it. If you can convert a PowerPoint to flash, you can insert it to this page. Then how to do it? Just follow the steps.
  1. Convert PowerPoint to flash
    Convert PowerPoint to flash, you have three options
     
  2. Upload the converted flash to web
    You can use FREE file upload service listed here to upload the converted flash to web
    .
    http://www.mediawart.com/
    When upload is done,copy the URL of the uploaded flash file.
  3. Insert the flash file to my Profile page in Myspace
    Insert the flash file to my Profile page in MyspaceA.
    Insert the flash file to my Profile page in Myspace
    A.

    A
    .Log into your account in Myspace.

    B.Click Edit Profile for edits

    C. Use HTML coding to insert the flash to one of the target section of the profile page.

    <object type="application/x-shockwave-flash"data=" URL of the uploaded flash
    file " height="300" width="400" align="middle">
    <param name="movie" value="URL of the uploaded flash file "/>
    <param name="allownetworking" value="internal" />
    <param name="allowScriptAccess" value="never" />
    <param name="enableJSURL" value="false" />
    <param name="enableHREF" value="false" />
    <param name="saveEmbedTags" value="true" />
    </object>

    Note:" URL of the uploaded flash file" included in the coding should be the URL of the uploaded flash to Google page or other severs.

Source : www.wikihow.com

Tuesday, January 3, 2012

How to Add a PowerPoint File to a Blog

You can upload a PowerPoint to web then put a link in your blog for your visitors to download. They must have PowerPoint or PowerPoint viewer to view your presentation. If you want your PowerPoint to be viewed directly when visitors come to you blog, you should insert it as a flash file.

  1. Convert PowerPoint to flash
    Convert PowerPoint to flash, you have three options
  2. Upload the converted flash to web.
  3. Insert the flash file to Google Blog. Google Blog does not have a native feature for you to insert flash to a blog post directly. You should use some HTML coding to insert it.
    • Create a new post or open edit an exciting one
    • Switch to Edit Html pane
    • Insert the flash to blog with the following html coding
      <object type="application/x-shockwave-flash"data=" URL of the uploaded flash file " height="300" width="400" align="middle">
      <param name="movie" value="URL of the uploaded flash file "/>
      <param name="allownetworking" value="internal" />
      <param name="allowScriptAccess" value="never" />
      <param name="enableJSURL" value="false" />
      <param name="enableHREF" value="false" />
      <param name="saveEmbedTags"value="true" />
      </object>
      Note:" URL of the uploaded flash file" included in the coding should be the URL of the uplaoded flash to web with the uploading services.
  4. Publish Google Blog  

Source : www.wikihow.com


Monday, January 2, 2012

How to hide, remove, delete blog post, sidebar, footer page element or body blog on blogger

Edit HTML section , and find the code below:

]]></b:skin>

Then, place the code below, after the code above

<style type='text/css'>
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
.post, .post h1, .post h2, .post h3, .post-body, .post-footer, .jump-link,
.post-timestamp, .reaction-buttons,
.star-ratings, .post-backlinks,
.post-icons, .date-header{display:none;}
</b:if>
</b:if>
</style>

So, in your template code, approximately will look like the following:

]]></b:skin>
<style type='text/css'>
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
.post, .post h1, .post h2, .post h3, .post-body, .post-footer, .jump-link,
.post-timestamp, .reaction-buttons,
.star-ratings, .post-backlinks,
.post-icons, .date-header{display:none;}
</b:if>
</b:if>
</style>
</head>

<body>

<div id='bgwraper'>

How to display only post title?


To do it, such as the above steps, but delete this code : .post, .post h1, .post h2, .post h3, , and will look like below :
]]></b:skin>
<style type='text/css'>
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
.post-body, .post-footer, .jump-link,
.post-timestamp, .reaction-buttons,
.star-ratings, .post-backlinks,
.post-icons, .date-header{display:none;}
</b:if>
</b:if>
</style>

Want to remove sidebar or footer or header..? , simply by adding each class code, for example:

Hide Sidebar

<style type='text/css'>
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
.sidebar{display:none;}
</b:if>
</b:if>
</style>

Hide Footer

<style type='text/css'>
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
.footer{display:none;}
</b:if>
</b:if>
</style>

Hide, Blog Post, Sidebar, Footer, Header

<style type='text/css'>
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
.post, .post h1, .post h2, .post h3, .post-body, .post-footer, .jump-link,
.post-timestamp, .reaction-buttons,
.star-ratings, .post-backlinks,
.post-icons, .date-header, .sidebar, .footer, .header {display:none;}
</b:if>
</b:if>
</style>

Hide all , anything inside your body blog?

Add this code into body code " visibility : hidden; "

Example will look like below:

body {
background: #000000;
color: #F6F4F4;
font-size: 12px;
font-family: Arial, Tahoma, Verdana;
margin: 0px auto 0px;
padding: 0px;
visibility : hidden;
}

Source :   http://seoblog7.blogspot.com/

How to Add a Blog Background

Bloggers usually change blog backgrounds to make their blog more visually appealing for visitors. However, a background image that is added incorrectly can confuse the viewer and cause visitors to browse away from your blog. To add a blog background correctly it is important to use the correct HTML codes.
  1. Go to the HTML page for your blog. If you are editing your blog offline then you can open it in Dreamweaver to change HTML. Blogging services like Blogger allow you to change HTML online by going to the Design page and selecting the "Edit HTML" tab. You need to be able to access the HTML codes for your blog, and how you do this can vary greatly depending on what blogging services and methods you use.
  2. Don't try to look for a separate image with a different color if all you want to do is change the background color. Instead, you can just edit your HTML to change the existing color to the one that you want.
    • Search for "HTML color chart" on the Internet. You should be able to find a table that displays different colors along with their color name and HEX (Hexadecimal) number. The HEX number is the number used within the HTML, so you need to remember the HEX number for the particular color that you want as your background.
    • Find the code on your blog that defines the background color. It will look like this.

body {
background-color:#XXXXXX;

You will see the HEX number of the existing color instead of the X's displayed in the sample code.
    • Change the HEX number to the number for the color that you want as your background. After you save and apply the new HTML, you will see the new color as the background.

Adding a Blog Background Image

  1. Select the image that you want to add as the background. There are many websites that allow you to download blog backgrounds or you can use an image that is already saved on your computer.
  2. Upload the image. Photo hosting websites such as Picasa, Flickr and Photobucket allow you to upload images for free. Your blog hosting service may also allow you to upload images in a similar way to how the rest of your blog is hosted.
  3. Get the image URL. To do this you need to open the image in your Internet browser and copy the URL where it is displayed.
  4. Insert the code for adding an image as the background. Here is the HTML code.

body {
background-image: url(image URL);

You need to add the code where the body of your blog HTML begins. Replace "image URL" with the full URL where your image is located.
  1. Save the changes after you edit HTML and view your blog. You should see the image added as the background.


  2. Source : www.wikihow.com

Sunday, January 1, 2012

Adobe Media Player 1.7

Adobe Media Player is a next-generation desktop media player, providing high-quality video playback of streamed, downloaded, or locally stored video content. Using the simple, intuitive interface of Adobe Media Player, you can subscribe to and watch online video content. You can also manage your own library of downloaded content and recommend and share favorite content with other viewers.
You can perform the following tasks in Adobe Media Player:

  • Find and watch video content.
  • Add shows to your list of My Favorites. Adobe Media Player automatically queues up new episodes from your favorite shows when they become available.
  • Manage your video content library, including videos previously saved to your computer.
  • Recommend episodes to other viewers.
  • Share a feed of your favorite episodes with friends.
  • Manage your user preferences and options.
Source : filehippo.com