Chủ Nhật, 15 tháng 5, 2016

The new spots, new features on Windows 10 Mobile
Join with _TienAnh _  points through the new features, changes, new spots on Windows 10 Mobile official Microsoft's newly released for the device.
On 18/3/2016, Microsoft has officially launched Windows Mobile 10 for Windows Phone devices running 8.1, though Microsoft only allows for updated Windows Mobile 10 with most of the new devices, and still has some equipment did not reach the Windows 10 Mobile (see how to Windows Mobile 10 as named in the list but cannot find the update). However, the thing to do now, is to learn about the new features, the new point on Windows Mobile 10. To make better use of this operating system.

Change the UI/UX

After you update your device to Windows Mobile 10, and almost did not see any major change isn't it? Yes, the first hits is just like the old interface, the only other is the distance between the Live Tiles were much smaller.

However, it is only superficially, changing, will be hidden deep in the installation of the operating system Windows Mobile 10. The same point through changes in the interface.
1. Background images, adjust the transparency Live Tiles
No longer as Windows Phone with Windows Mobile 10, 8.1, background images were shown on the full screen, no longer obscured by the dividing line between the Live Tiles.

In addition, the All apps (app screen Section when the claws to right), appeared a background picture instead of black like WP 8.1.

Next up, you can change the transparency of the Live Tiles, 100% color can be coated as WP 8.1 or reduce the transparency down to be able to see the photo should be below.

Small changes like this, was giving Windows Mobile 10 a new interface, more vivid.


2. Quick Action, many more custom
Notifications, part is when you paws the screen from the top down, with Windows Phone 8.1, then you only have 4 buttons to Quick Action was shown out (5 machines with screens larger than 5 "). At this time, the very limited, when you have so many options necessary for themselves.

With Windows Mobile, you will have 10 really Quick Action button 16, to show all 16 buttons, you only need to click on "Expand", or top-down claws more again. All the Quick Action required are available, such as the open Note, change the brightness, turn off Wifi ... In addition, with 4 (or 5) Quick Action when collapse, you can still customize as Windows Phone with 8.1.


3. New installation interface and more beautiful
Before you complain that the install of WP 8.1 full text with the word and fuzzy, now, Microsoft has greatly improved the interface settings.


The new interface on Windows 10 Mobile has included similar options together in the same group, before the group will appear the icon shown for that group. Next up is taken exactly the search button up the first section, help you can easily search the custom install.

4. Change in multitasking screen

Multitasking screen of Windows Phone or Windows Mobile 10 is at you press and hold the Back button. Now it has multitasking screen backgrounds, and both the horizontal rotation interface.


On the larger screen devices 5 ", then the multitasking interface appears 1 time 4 application with 2 rows. Still the Paws to shut down applications, more beautiful, more great effects. And the ability to run multitasking also improved a lot.

Changes to the application
Up Windows 10 Mobile, you should start to get familiar with a new term: Universal Apps. Is the application created to run on many devices have different sizes, from running on the phone, to the tablet or on your computer. Only an application, but runs on all devices, it is Universal Apps.

All the required application on Windows Mobile 10 now has a redesigned interface with Universal Apps. You will quite familiarity when using the default Microsoft's new application on Windows 10. Completely different than the Windows Phone application at 8.1. Most of the Universal application will have a Hamburger menu to access the features and custom settings.

The new Microsoft Office
8.1 on Windows Phone, you already own a set of Office. However, it's disappointing when it is almost only used to read the file is mostly, so few features. But, all that has changed on the Windows Mobile 10.


Now, you already own an Office suite with Word, Excel, PowerPoint is the Universal application with full features like changing the font, formatting, image insertion ... and so many other features like file sharing, export. This is one of Microsoft's value changes on Windows Mobile 10.
Instructions to create the new year fireworks for Blogspot
Today is day 30-12-2015 and then, 1 days to new year Tet i.e. West; There also was the end of November, more than a month of the Vietnamese new year to us. The air new year busy who's well liked, and also at the people enlist the travel time Fireworks at locations across the country.
Think of the Fireworks, why not create Fireworks new year decorated for the blog page, web, in particular here is for your Blogspot. Because of this idea, I will guide you how to make Fireworks for Blogspot to welcome the new year. Well as for your blog, web page, there are more new year atmosphere.

Guide to creating fireworks for Blogspot.

Simple, easy to do and anyone can do it, that's all that needs saying about the tricks of creating fireworks for this Blogspot. Along the track.
-Access the admin page of your blog.
Form (Template)-> edit HTML (HTML Edit)
-Then click on the code, and press Ctrl + F to open the search box, and then navigate to this card:
  </head>
-Add the following code to the right above it, here is the code to create the Fireworks:
...<script type="text/javascript">
// <![CDATA[
var bits=80;
var speed=40; // Tốc độ như thế nào, càng nhỏ càng nhanh
var bangs=10; // Số pháo hoa có thể xuất hiện cùng lúc (Nhiều quá sẽ có thể gây lag cho trình duyệt)
var colours=new Array("#03f", "#f03", "#0e0", "#93f", "#0cf", "#f93", "#f0c");
//                     Xanh    Đỏ     Xanh lá   Tía  Xanh cyan  Cam   Hồng
var bangheight=new Array();
var intensity=new Array();
var colour=new Array();
var Xpos=new Array();
var Ypos=new Array();
var dX=new Array();
var dY=new Array();
var stars=new Array();
var decay=new Array();
var swide=800;
var shigh=600;
var boddie;
window.onload=function() { if (document.getElementById) {
  var i;
  boddie=document.createElement("div");
  boddie.style.position="fixed";
  boddie.style.top="0px";
  boddie.style.left="0px";
  boddie.style.overflow="visible";
  boddie.style.width="1px";
  boddie.style.height="1px";
  boddie.style.backgroundColor="transparent";
  document.body.appendChild(boddie);
  set_width();
  for (i=0; i<bangs; i++) {
    write_fire(i);
    launch(i);
    setInterval('stepthrough('+i+')', speed);
  }
}}
function write_fire(N) {
  var i, rlef, rdow;
  stars[N+'r']=createDiv('|', 12);
  boddie.appendChild(stars[N+'r']);
  for (i=bits*N; i<bits+bits*N; i++) {
    stars[i]=createDiv('*', 13);
    boddie.appendChild(stars[i]);
  }
}
function createDiv(char, size) {
  var div=document.createElement("div");
  div.style.font=size+"px monospace";
  div.style.position="absolute";
  div.style.backgroundColor="transparent";
  div.appendChild(document.createTextNode(char));
  return (div);
}
function launch(N) {
  colour[N]=Math.floor(Math.random()*colours.length);
  Xpos[N+"r"]=swide*0.5;
  Ypos[N+"r"]=shigh-5;
  bangheight[N]=Math.round((0.5+Math.random())*shigh*0.4);
  dX[N+"r"]=(Math.random()-0.5)*swide/bangheight[N];
  if (dX[N+"r"]>1.25) stars[N+"r"].firstChild.nodeValue="/";
  else if (dX[N+"r"]<-1.25) stars[N+"r"].firstChild.nodeValue="\\";
  else stars[N+"r"].firstChild.nodeValue="|";
  stars[N+"r"].style.color=colours[colour[N]];
}
function bang(N) {
  var i, Z, A=0;
  for (i=bits*N; i<bits+bits*N; i++) {
    Z=stars[i].style;
    Z.left=Xpos[i]+"px";
    Z.top=Ypos[i]+"px";
    if (decay[i]) decay[i]--;
    else A++;
    if (decay[i]==15) Z.fontSize="7px";
    else if (decay[i]==7) Z.fontSize="2px";
    else if (decay[i]==1) Z.visibility="hidden";
    Xpos[i]+=dX[i];
    Ypos[i]+=(dY[i]+=1.25/intensity[N]);
  }
  if (A!=bits) setTimeout("bang("+N+")", speed);
}
function stepthrough(N) {
  var i, M, Z;
  var oldx=Xpos[N+"r"];
  var oldy=Ypos[N+"r"];
  Xpos[N+"r"]+=dX[N+"r"];
  Ypos[N+"r"]-=4;
  if (Ypos[N+"r"]<bangheight[N]) {
    M=Math.floor(Math.random()*3*colours.length);
    intensity[N]=5+Math.random()*4;
    for (i=N*bits; i<bits+bits*N; i++) {
      Xpos[i]=Xpos[N+"r"];
      Ypos[i]=Ypos[N+"r"];
      dY[i]=(Math.random()-0.5)*intensity[N];
      dX[i]=(Math.random()-0.5)*(intensity[N]-Math.abs(dY[i]))*1.25;
      decay[i]=16+Math.floor(Math.random()*16);
      Z=stars[i];
      if (M<colours.length) Z.style.color=colours[i%2?colour[N]:M];
      else if (M<2*colours.length) Z.style.color=colours[colour[N]];
      else Z.style.color=colours[i%colours.length];
      Z.style.fontSize="13px";
      Z.style.visibility="visible";
    }
    bang(N);
    launch(N);
  }
  stars[N+"r"].style.left=oldx+"px";
  stars[N+"r"].style.top=oldy+"px";
}
window.onresize=set_width;
function set_width() {
  var sw_min=999999;
  var sh_min=999999;
  if (document.documentElement && document.documentElement.clientWidth) {
    if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
    if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  }
  if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
    if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
    if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  }
  if (document.body.clientWidth) {
    if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
    if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  }
  if (sw_min==999999 || sh_min==999999) {
    sw_min=800;
    sh_min=600;
  }
  swide=sw_min;
  shigh=sh_min;
}
// ]]>
</script>...
After the add to card and customize the parameters as desired and then saved. Enjoy the result!
The instructions show the correct number of posts in home Blogspot
Are you are having error Blogspot does not show correct number of articles outside the home? As you install is showing 6 posts but when checking in the home, the number of posts shown are just 1-5.
The majority of you this error is what you exposed new Blogspot and little experience in article writing as well as optimal use Blogspot. Those you have more exposure and experience, who must also know that this error is caused, whether in any template would be the one you use, the error cause is still only have 1:

Error does not show the correct number of posts in the home is by you post Blogspot too long, while the limit shown by Blogspot again. For example, you have a very long article 6, article 6, display settings, but due to the limits shown in the home page of Blogspot can only show the content of article 4, the home at this show only 4 articles.

How to fix error does not show the correct number of posts

How to fix this error is also extremely simple. Not difficult or cumbersome. You just need to pay attention in the process of writing articles is:

-Fix to this error, as mentioned, the error is because the article is too long. Then blogspot delivers a tool in the editor to the article, which is "the dance break marks".
The purpose of this is to cut the jumper switches mark the section posts shown in the home page, label; also the following section will be hidden on the jump break marks in the "Readmore", this will solve the problem of the article is too long to make the home page does not show the correct number of posts.
So, every time the article is finished, the beginning of the content, you should insert the seal into the dance break. What you've written articles and made errors in this article, can on this page the most recent articles and inserts a break into dance to show again as the number of posts were installed.

Other uses of the seal breaker jump in posts

In addition to uses is to interrupt the article helps show the correct number of posts in the home. Then the dance break marks also have other uses. That is the.

Help you create Auto Readmore in RSS and will help you minimize the situations of other people using the tool to steal the content of the article.