Sunday, April 28, 2013

Facebook Apps Money Change (July 2013 Breaking Changes)



Start from this morning untill July 2013 facebook will announce new feature for all user who use one of their social plug in to chaange their notification.
All users need to fix it on time for their use of Apps. Please see the screen shoot for an example to change your apps: 
 Screen 1: 



Screen 2: 


Enjoy your Breaking Changes  From FaceBook. :D

Thursday, April 25, 2013

How to find Product ID on your windows 8


Hello everyone today i will show you how to find Microsoft ID products in windows 8 in your own computers.

Did you that you can find Product ID for your windows 8 Microsft products just follow my tutorial:

Now let start:

1: for user useing windows 8

windows key + pause/break bottom to open system properties than you will see the prompt windows show up( see the picture bellow)

2. Scroll down to the buttom, and look under Windows is activated you will see the Products ID as show : example: 00178-70000-00011-AA579 ( see the picture bellow)


Enjoy it: :D

Thursday, April 4, 2013

Fix windows live and tweak.

Some of the editors migrated their home PCs from Windows XP or Vista to Windows 7, and we encountered a little glitch with Windows Live Mail that drove us bananas for the better part of an afternoon. We’d like to save you the same grief.
Our e-mails imported fine from XP’s Outlook Express, but we found that in the “Sent items” view in Live Mail, it was impossible to tell at a glance to whom we sent our mails. That’s because the columns in the default view didn’t include the one for the “To:” field. (Your mileage may vary. The missing “To:” field didn’t happen in another install we performed, but the next step—the grey-out issue—did.)
Simple enough, we thought—it’s easy to customize the view to show the “To:” field. You’d just hit Alt, go the View menu, choose the Columns item, and…hey wait a minute, the Columns menu option is greyed out! Hmmm. All we wanted was to restore this little column:
12-Tweak-Live-Mail
An afternoon of tweaking and searching later, we discovered that, strangely enough, repositioning the preview pane (the region of the screen that shows you a preview portion of a selected e-mail) was the only thing that would “un-grey” the Columns item on the View menu. This is likely a bug, and we’d expect it to be fixed before long. But how to work around it, for now?
In your Sent Mail view in Live Mail, hit Alt to bring up the menu bar, click View > Layout, and in the Layout dialog box, change the Reading pane (Mail) entry to At the bottom of the message list. (You can also uncheck the Show the reading pane box if you’d like to get rid of the pane altogether.) Hit OK, and you should be able to access the Columns entry in the View menu to tweak the columns that are displayed.

Wednesday, April 3, 2013

Download Windows Live to restore common windows application.

If you’re a Windows XP user who has just migrated to Windows 7, you’re likely to notice a few old friends missing: notably, a mail client (Outlook Express) and Windows Movie Maker. And if you’re using Vista, the Windows Mail, Movie Maker, and Photo Gallery apps might be conspicuous by their absence in 7.

In Windows 7, Microsoft has moved these programs off-OS and made them part of a downloadable package of apps called “Windows Live Essentials.” (Why, if they’re “Essentials,” they’re not included as part of the OS is another story, though.) This is the Live Essentials page.

11-Live-Essentials

You’ll need to sign up for a free Windows Live account to download the lot. (You may well already have one.) You may or may not need Live Essentials, depending on the e-mail client you tend to use and whether you already own some favorite photo- and video-editing software, but we think the download is worth the trouble, regardless. For one thing, the Windows Photo Gallery app has been bulked up a bit from Vista’s; it now has more editing functions, so it can be a time saver versus launching a full-featured photo editor. And Windows Movie Maker, as in Vista, incorporates the ability to burn a DVD Video direct from the app, so no need to fire up Nero, Roxio, or another big burning app for straightforward jobs. Check out the Live Essentials pack at http://download.live.com.

Tuesday, March 19, 2013

Start Learning CSS Part 2

The basic page template

Go to the Tutorfordesign home page and grab the practice HTML page that we will use as the starting template for this tutorial. You can find it under the heading: ‘To create the practice HTML page do the following:’ Follow the instructions there and create your basic HTML page.
Once you have created the template page, create a folder and name it something like: ‘myCSSwebsite’ and then drop the HTML page into it. In that same folder, create a new text document and call it: ‘myCSS.css’. Once created open that file and paste in this template CSS code and then save it:

/* Generic Selectors */
 
body {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 14px;
color: #333333;
background-color: #F9F9F9;
}
 
p {
width: 80%;
}
 
li {
list-style-type: none;
line-height: 150%;
list-style-image: url(../images/arrowSmall.gif);
}
 
h1 {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 18px;
font-weight: bold;
color: #000000;
}
 
h2 {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 16px;
font-weight: bold;
color: #000000;
border-bottom: 1px solid #C6EC8C;
}
 
/**************** Pseudo classes ****************/
 
a:link {
color: #00CC00;
text-decoration: underline;
font-weight: bold;
}
 
li :link {
color: #00CC00;
text-decoration: none;
font-weight: bold;
}
 
a:visited {
color: #00CC00;
text-decoration: underline;
font-weight: bold;
}
 
li a:visited {
color: #00CC00;
text-decoration: none;
font-weight: bold;
}
 
a:hover {
color: rgb(0, 96, 255);
padding-bottom: 5px;
font-weight: bold;
text-decoration: underline;
}
 
li a:hover {
display: block;
color: rgb(0, 96, 255);
padding-bottom: 5px;
font-weight: bold;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #C6EC8C;
}
 
a:active {
color: rgb(255, 0, 102);
font-weight: bold;
}
 
/************************* ID's *************************/
 
#navigation {
position: absolute;
width: 210px;
height: 600px;
margin: 0;
margin-top: 50px;
border-right: 1px solid #C6EC8C;
font-weight: normal;
}
 
#centerDoc {
position: absolute;
padding: 0 0 20px 0; /*top right bottom left*/
margin-top: 50px;
margin-left: 235px;
}
 
Don’t let the CSS freak you out, I will explain the important details and you will soon see how easy it really is. One last thing for you to do before I finish this part of the tutorial, we need to add some code to our HTML page.
In between the <body></body> tags you will need to insert this code:

<div id="navigation">
 
<h2>The Main navigation</h2>
</div>
 
 
<div id="centerDoc">
 
<h1>The Main Heading</h1>
 
<p>Go to the Tutorfordesign home page and grab the
practice HTML page that we will used as the starting template for this
tutorial. You can find it under the heading: 'To create the practice HTML
page do the following:'.</p>
 
<p>Follow the instructions there and create your basic HTML page
... and do it now!</p></div>
And in between the <head> </head> tags you will need to insert this:
<title>First CSS Tutorial</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="myCSS.css" rel="stylesheet" type="text/css">
With this in place we will be able to start styling our page. If you take a look at the HTML page now you may be surprised to see that we already started!

Start Learning CSS Part 1

In this CSS tutorial I will not be able to show you everything there is about CSS, but you will learn how to create nice looking CSS styled web pages.
After completing this tutorial, you should have enough information to explore CSS and web design even further.

Things to remember about CSS: 
Remember that CSS code is simply written instructions that tells Web browsers (like FireFox and Internet Explorer) how to display things on a page. For example:
  • make text bold.
  • position things a page.
  • set the font style for a page or paragraph etc.The sister language to CSS is HTML: code that tells the Web browser WHAT is actually in the page.
… I know you knew that already, I just wanted to remind you!

CSS reduces the number of tags used

Because of the power of CSS, we will be able to reduce the number of HTML tags we use in a page big time, all the while still being able to layout great looking pages using only 6 types (for lack of better words) of HTML tags.
The tags we will use to layout the content:
  1. <h> The Heading tags which range from ‘<h1></h1>’ to ‘<h6></h6>’, are going to be used to mark/tag headings in our pages. So the most important heading will be wrapped in a <h1> tag and the least important in a <h6> tag.
    An example of a heading:
    <h1><strong>CSS  Template Layout</strong></h1>
    This tells the browsers and the search engines too, that this page is primarily about: ‘CSS Template Layout’
    All browsers have a default size (for each<h> tag) as to how it renders text when placed between these tags. Many of these defaults can be unusable (especially<h1>) because they come out too big. But never fear, CSS is here. We will use CSS to make the text sizes more to our liking.
  2. <p> The Paragraph tag is used to mark parts of the pages as being ‘paragraphs’, simple enough. Paragraph tags are what they call a ‘block element’; that means that it acts like a block where a space is automatically inserted before and after each <p> tag pair. You see it work in the examples coming up.
  3. <ul> and <ol> List tags will be used to create our menus. The tag <ul> is the ‘un-ordered list tag’ that creates a list with bullets or other images/icons that do not specify or denote an order; hence the term ‘un-ordered’. The other list tag mentioned (<ol>) is the ‘ordered list tag’ and it creates a list that, instead of bullets, the list elements are marked with numbers or letters. Code examples to follow.
  4. <div> We all know what the <div> tag is about since we all read the previous article, right? We will use div’s to create containers for parts of our page. One div will be used to ‘hold’ our navigational menu and another div to ‘hold’ the main page.
  5. <a href> The most important tag in HTML: the ‘link tag’ or the ‘hyperlink tag’. This makes text ‘hyper’ so that when we click on it we can load another page or activate/call some JavaScript (otherwise known as ECMA script).
  6. <img> This is the ‘image tag’, allows you to link to images so that they show up in our pages. In HTML images are not embedded into the actual page, instead the image tag (<img>) only points to where the image is and the browser will attempt to load that image when a surfer loads your HTML page.
That covers the HTML tags we will use in our layout! No need for table tags, <br> tags and nasty <font> tags.

Monday, February 18, 2013

The Best New Features in Windows 8

The Best New Features in Windows 8

Windows 8 is available for download today, complete with a new tiled, touch-friendly interface as well as some enhancements to the traditional mouse-and-keyboard desktop. Here's everything you'll find in the newest version of Windows.

Microsoft's "re-imagining" of Windows is focused very heavily on a new, tiled, touch-centric interface for tablets. However, it's still somewhat usable with a mouse and keyboard-and no matter what device you're on, you can switch between the simple Metro interface and the traditional Windows desktop to fit whatever your needs are at that given moment.

Performance Increases
The Best New Features in Windows 8One of the issues that's been on our minds since they first previewed this new interface was whether this will keep bogging Windows down with more running processes, and whether running a full Windows desktop on a low-powered tablet was really a good idea (after all, we've seen Windows run on netbooks).


Microsoft knows your fears, and has addressed them: Windows 8 is slated to have better performance than Windows 7, even with this metro interface running on top of a desktop. We ran a few tests back when the the Developer Preview came out and found that to be the case, especially when it comes to boot times. Tablet users and netbook users especially should notice a fairly significant performance increase with Windows 8. Especially considering that any of your tablet-based apps will suspend themselves when you jump into the traditional desktop, so all they take up is a little of that extra RAM.

The Lock Screen

The Best New Features in Windows 8Windows 8's lock screen is pretty much what you'd expect: it's got a beautiful picture along with a few little widgets full of information, like the time, how many emails you have, and so on. You can swipe up to unlock, or press the spacebar if you're on a desktop keyboard. You can then proceed to type your normal password, or use one of Windows 8's "picture passwords," which let you swipe or draw an invisible gesture that only you know, using your lock screen photo as reference, to let yourself in (though this is really better on tablets than it is on a PC). For example, in Microsoft's original demo, they used a photo of a person, and the password was to tap on their nose and swipe left across their arm).

The Start Screen

Full size
Once you log in, you're taken to Windows 8's new Start screen, which replaces the old Start menu. The screen should be familiar to Windows Phone users: You've got a set of tiles, each of which represents an application, and many of which show information and notifications that correspond to the app. For example, your email tile will tell you how many unread emails you have (and who they're from), your calendar tile will show upcoming events, your music tile will show you what's playing, and so on. You can also create tiles for games, contacts, and even traditional Windows apps that will pull you into the Windows desktop. The tablet-optimized apps are all full screen and "immersive", though, and you can rearrange their icons on the home screen easily (just as you would on any other tablet platform). At any time, you can press Win+D or click on the Desktop tile to go to the familiar Windows desktop instead.

The Desktop
The Best New Features in Windows 8Once you get to the desktop, you'll be in much more familiar territory. You've got your taskbar, your desktop icons, and your normal windowed applications as you're used to (though they have a new, flatter, Aero-less theme). The Start menu, however, is gone—instead, you can move your mouse to the bottom left hot corner and click to return to the Start screen, or press the Windows key as normal. Like the old Start menu, you can start typing any time you're on the Start screen to start searching for an app or setting, giving you quick access to everything on your computer.

It isn't nearly as convenient as the old Start menu was, but you can get used to most stuff pretty quickly. Pressing the Windows button and typing in an app or setting is faster than browsing the Start menu anyway, so it's a good habit to get into, and you can always access a more traditional menu by pressing Win+X—this will bring up a small menu in the corner that has shortcuts to the Control Panel, Run, the Command Prompt, and other stuff advanced users may want to access.

Full Screen Apps

The Best New Features in Windows 8While you can pin your favorite apps to the taskbar, as usual, most of your apps will reside on the Start screen, just like they used to reside in the Start menu. Just fire up the Start screen and tap or click on the tile for the app you want to launch (or, as we mentioned above, type it in the search box). Tablet-optimized apps will go full screen, while others will shoot you back to the desktop.

The full-screen apps that come with Windows 8 are really nice: most have touch-based controls, like pinch to zoom and copy and paste, but you can also use them with a mouse and keyboard if you so desire. Each has options like search, share, and settings through the Charms bar, which you can get by swiping from the right edge of the screen or pressing Win+C. Apps can share information one another easily, such as selected text or photos. After picking your media from one app, you'll then be able to choose which app you want to share with, and work with it from there. For example, you can share photos to Facebook, send text from a web page in an email, and so on.

None of this is brand new to touch-based platforms, but what is new is the ability to not only multitask, but run these apps side by side. Say you want to watch a video and keep an eye on your news feed at the same time. Just like in Windows 7 for the desktop, you can dock an app to one side of the screen while docking another app at the opposite side, which is a seriously cool feature. Imagine being able to IM and play a game at the same time, or browse the web while writing an email. It's a fantastic way to fix one of the big shortcomings of mobile OSes, thus allowing you to ignore the full desktop interface more often and stay in the touch-friendly, tablet view.

The Windows Store
The Best New Features in Windows 8The Windows Store looks much like the home screen, with tiles that correspond to different categories and featured apps. From there, you can look at a more detailed list of the available apps in a given section. And, the store contains not only touch-based apps for the tablet interface, but some of the more traditional desktop Windows apps you're used to, so you have one portal to discover all your Windows apps no matter what interface you're using. The Store has free and paid apps, and you can try paid apps before you commit to buying, which is really, really nice.

Sync All Your Data to the Cloud

The Best New Features in Windows 8The cloud is taking center stage in Windows 8, with your Microsoft account driving all the syncing. Your address book, photos, SkyDrive data, and even data within third-party apps can sync up to the cloud, and you can access them on any Windows 8 device—even a brand new one. Just sign in, and you'll have access to everything (not unlike Chrome OS, which immediately loaded your themes and extensions when you logged in). The address book also syncs with other services like Facebook and Twitter as well. You can even sync all of your settings from one Windows 8 PC to another. Just sign onto your Windows 8 with a Microsoft account and you'll get all your themes, languages, app settings, taskbar, and other preferences will show right up. It's a pretty neat feature if you have multiple Windows 8 PCs and don't want to set them all up separately—just a few taps and you've got all your preferences ready to go (you will have to re-download your apps, though).

Windows Explorer

Full size
Windows Explorer has gone through a few changes this time around, most notably the "Ribbon" interface we've come to know from Microsoft Office. Instead of traditional menus like View, you now have three Ribbon panes: Home, Share, and View, that give you access to the features that used to be in the menus. If you're in a folder designed for certain file types—like the "Pictures" library—you'll get a few extra Ribbon panes centered around photos, which is pretty cool. Windows Explorer also has native mounting of ISO files, a one folder up button like the old days of XP (thank God), and a really cool "quick access" toolbar in the left-hand corner that lets you add your favorite shortcuts to the title bar. It also has a new file copy dialog that makes it easier to manage move-and-replace actions with lots of files.

A New Task Manager

The Best New Features in Windows 8Microsoft's finally redesigned the task manager, and it looks pretty great. You have a very simple task manager for basic task killing, but if you're a more advanced user, you can bring up the detailed task manager filled with information on CPU and RAM usage, Metro app history, and even startup tweaking—so you can get rid of apps that launch on startup without going all the way into msconfig.

Built-In Antivirus with Windows Defender

The Best New Features in Windows 8Remember Microsoft Security Essentials, our favorite antivirus app for Windows? Well, now it's built in to Windows 8 as Windows Defender. It has nearly the exact same interface and feature set; the main difference is that you no longer have to install it.

Other Features

Along with these cool features, Windows 8 also comes with other features we've come to know and love to see in desktop and mobile OSes alike. It's got system-wide spell checking, so you don't have to rely on a specific app to keep your writing top-notch, as well as a system-wide search feature, that lets you search anything from your music library to your contacts to the web itself. It also has a really cool feature for desktop users that lets your run the Metro UI on one monitor while running the traditional desktop on the other (not to mention better support for multiple monitors in general—like having the taskbar on both screens).

The Best New Features in Windows 8It also has a really cool feature called "refresh your PC", where you can do a clean install with the tap of a button. Whether you're selling your machine or just want a cleaner, faster installation of Windows, you can do it all in one click. You can even set refresh points, similar to restore points, so you can refresh your PC to the way it was at a certain point in time.