<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-7314450340943444305</id><updated>2012-02-16T13:23:32.728+05:30</updated><category term='installation'/><category term='memory card'/><category term='n'/><category term='ns2'/><category term='e63'/><category term='qpushbutton'/><category term='__atomic_inc undefined'/><category term='phone'/><category term='windows 7'/><category term='tips'/><category term='apps'/><category term='symbian'/><category term='notepad'/><category term='metacafe'/><category term='column number in notepad'/><category term='laptop'/><category term='future'/><category term='shutdown remote computer'/><category term='qml'/><category term='meego'/><category term='iis'/><category term='windows explorer default explorer'/><category term='wifi'/><category term='creator'/><category term='removable disk'/><category term='success'/><category term='character display'/><category term='format'/><category term='pointer'/><category term='xgraph'/><category term='game'/><category term='gui'/><category term='message symbol stuck'/><category term='QMYSQL Driver not loaded'/><category term='batch'/><category term='stop watch'/><category term='maemo'/><category term='desktop'/><category term='FileUpload'/><category term='perforance'/><category term='ubuntu'/><category term='why'/><category term='nokia e63 music player does not update'/><category term='remove'/><category term='display device buffer address'/><category term='ccleaner'/><category term='n9'/><category term='default folder'/><category term='javascript'/><category term='web page'/><category term='cout'/><category term='Mysql'/><category term='display char without printf'/><category term='outbox symbol in nokia'/><category term='display character without using any library functions'/><category term='snake'/><category term='youtube'/><category term='application'/><category term='line and column notepad'/><category term='schedule windows shutdown'/><category term='nokia music player problem'/><category term='download'/><category term='nokia'/><category term='nokia music player playlist updation problem'/><category term='python'/><category term='restore outloox express'/><category term='pendrive'/><category term='Android'/><category term='qtoolbutton'/><category term='line number in notepad'/><category term='10.04'/><category term='connections'/><category term='qt sdk'/><category term='reset'/><category term='streaming'/><category term='videos'/><category term='files'/><category term='program'/><category term='rename'/><category term='simple'/><category term='website'/><category term='windows explorer'/><category term='e'/><category term='autocomplete'/><category term='assigining memory address to pointer'/><category term='delete autocomplete history in outlook express'/><category term='outlook'/><category term='stuck symbol'/><category term='transfer'/><category term='blogger'/><category term='icon'/><category term='Mobile phone'/><category term='no target'/><category term='shutdown after cleaning'/><category term='source code'/><category term='remote compiler'/><category term='reset outlook'/><category term='s60'/><category term='qt'/><category term='sending message symbol'/><category term='series'/><category term='nokia e63 music player problem'/><category term='reasons'/><category term='password'/><title type='text'>Techie's Home</title><subtitle type='html'>Program source codes, Mobile phone tips, Hobby Programs, Lazy algorithms .</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://www.techieshome.in/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://www.techieshome.in/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Raja</name><uri>http://www.blogger.com/profile/16429879169269790524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>28</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7314450340943444305.post-1935780878214870740</id><published>2011-12-30T00:40:00.000+05:30</published><updated>2011-12-30T00:40:22.108+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='qml'/><category scheme='http://www.blogger.com/atom/ns#' term='qt'/><title type='text'>Access QML Element properties from C++</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;Qt provides various method for working with QML. This following tutorial shows, how a QML Element properties can be accessed and modified from C++ code using &lt;a href="http://developer.qt.nokia.com/doc/qt-4.8/qdeclarativeproperty.html" target="_blank"&gt;QDeclarativeProperty&lt;/a&gt; class.&lt;br /&gt;&lt;br /&gt;It will show a simple idea on accessing properties which cannot be accessed directly.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;main.qml&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;import QtQuick 1.1&lt;br /&gt;&lt;br /&gt;Rectangle {&lt;br /&gt;    id: parentRect&lt;br /&gt;    property bool layoutValue : LayoutMirroring.enabled ? true : false;// Read Only&lt;br /&gt;    LayoutMirroring.enabled: false&lt;br /&gt;    LayoutMirroring.childrenInherit: true&lt;br /&gt;    width: 300; height: 50&lt;br /&gt;    color: "yellow"&lt;br /&gt;    border.width: 1&lt;br /&gt;&lt;br /&gt;    Row {&lt;br /&gt;        anchors { left: parent.left; margins: 5 }&lt;br /&gt;        y: 5; spacing: 5&lt;br /&gt;&lt;br /&gt;        Repeater {&lt;br /&gt;            model: 5&lt;br /&gt;&lt;br /&gt;            Rectangle {&lt;br /&gt;                color: "red"&lt;br /&gt;                opacity: (5 - index) / 5&lt;br /&gt;                width: 40; height: 40&lt;br /&gt;&lt;br /&gt;                Text {&lt;br /&gt;                    text: index + 1&lt;br /&gt;                    anchors.centerIn: parent&lt;br /&gt;                }&lt;br /&gt;            }&lt;br /&gt;        }&lt;br /&gt;    }&lt;br /&gt;}&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;main.cpp&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;#include &lt;qtgui qapplication=""&gt;&lt;br /&gt;#include &lt;qdeclarativeproperty&gt;&lt;br /&gt;#include &lt;qgraphicsobject&gt;&lt;br /&gt;#include &lt;qdebug&gt;&lt;br /&gt;#include "qmlapplicationviewer.h"&lt;br /&gt;&lt;br /&gt;Q_DECL_EXPORT int main(int argc, char *argv[])&lt;br /&gt;{&lt;br /&gt;    QScopedPointer&lt;qapplication&gt; app(createApplication(argc, argv));&lt;br /&gt;    QScopedPointer&lt;qmlapplicationviewer&gt; viewer(QmlApplicationViewer::create());&lt;br /&gt;&lt;br /&gt;    viewer-&amp;gt;setOrientation(QmlApplicationViewer::ScreenOrientationAuto);&lt;br /&gt;    viewer-&amp;gt;setMainQmlFile(QLatin1String("qml/Test/main.qml"));&lt;br /&gt;    QDeclarativeProperty propLayout(viewer-&amp;gt;rootObject(),"layoutValue");&lt;br /&gt;    QDeclarativeProperty propLayoutMargin(viewer-&amp;gt;rootObject(),"anchors.leftMargin");&lt;br /&gt;&lt;br /&gt;    qDebug() &amp;lt;&amp;lt; "Layout Property :" &amp;lt;&amp;lt; propLayout.read().toBool();&lt;br /&gt;    qDebug() &amp;lt;&amp;lt; "Layout Margin :" &amp;lt;&amp;lt; propLayoutMargin.read().toReal();&lt;br /&gt;&lt;br /&gt;    qDebug() &amp;lt;&amp;lt; "Property Modified? " &amp;lt;&amp;lt; propLayoutMargin.write(QVariant::fromValue(20));&lt;br /&gt;    if(propLayout.type() == QDeclarativeProperty::Invalid)&lt;br /&gt;        qDebug() &amp;lt;&amp;lt; "Invalid Layout Mirror property";&lt;br /&gt;    if(propLayoutMargin.type() == QDeclarativeProperty::Invalid)&lt;br /&gt;        qDebug() &amp;lt;&amp;lt; "Invalid Anchor Margin property";&lt;br /&gt;    viewer-&amp;gt;showExpanded();&lt;br /&gt;&lt;br /&gt;    return app-&amp;gt;exec();&lt;br /&gt;} &lt;/qmlapplicationviewer&gt;&lt;/qapplication&gt;&lt;/qdebug&gt;&lt;/qgraphicsobject&gt;&lt;/qdeclarativeproperty&gt;&lt;/qtgui&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7314450340943444305-1935780878214870740?l=www.techieshome.in' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.techieshome.in/feeds/1935780878214870740/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.techieshome.in/2011/12/access-qml-element-properties-from-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/1935780878214870740'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/1935780878214870740'/><link rel='alternate' type='text/html' href='http://www.techieshome.in/2011/12/access-qml-element-properties-from-c.html' title='Access QML Element properties from C++'/><author><name>Raja</name><uri>http://www.blogger.com/profile/16429879169269790524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7314450340943444305.post-1316258002300594556</id><published>2011-12-14T00:06:00.000+05:30</published><updated>2011-12-14T00:06:11.459+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='qt'/><category scheme='http://www.blogger.com/atom/ns#' term='Android'/><category scheme='http://www.blogger.com/atom/ns#' term='__atomic_inc undefined'/><title type='text'>Qt for Android - __atomic_inc undefined error!</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;span id="thread_subject_site"&gt;I have also encountered this error. This is how I rectified.&lt;br /&gt;&lt;br /&gt;Select Projects on the left panel (below Debug). Select "Build" in the top and make sure the Qt Version and arm configuration are same in &lt;br /&gt;1) Compilation Target (Android robot symbol)&lt;br /&gt;2) Edit Build Configuration (drop down list box)&lt;br /&gt;3) Qt Version (General category)&lt;br /&gt;&lt;br /&gt;Now click "Run" next to "Build". Now select atleast "android-8" as the Android target. Now clean the project and click rebuild. This should clear this error.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7314450340943444305-1316258002300594556?l=www.techieshome.in' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.techieshome.in/feeds/1316258002300594556/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.techieshome.in/2011/12/qt-for-android-atomicinc-undefined.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/1316258002300594556'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/1316258002300594556'/><link rel='alternate' type='text/html' href='http://www.techieshome.in/2011/12/qt-for-android-atomicinc-undefined.html' title='Qt for Android - __atomic_inc undefined error!'/><author><name>Raja</name><uri>http://www.blogger.com/profile/16429879169269790524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7314450340943444305.post-3474679782448335364</id><published>2011-09-27T19:19:00.001+05:30</published><updated>2011-09-27T19:25:07.422+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='nokia'/><category scheme='http://www.blogger.com/atom/ns#' term='password'/><category scheme='http://www.blogger.com/atom/ns#' term='reset'/><category scheme='http://www.blogger.com/atom/ns#' term='e'/><category scheme='http://www.blogger.com/atom/ns#' term='series'/><category scheme='http://www.blogger.com/atom/ns#' term='memory card'/><category scheme='http://www.blogger.com/atom/ns#' term='phone'/><category scheme='http://www.blogger.com/atom/ns#' term='n'/><title type='text'>Nokia phone asking memory card password!</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;After resetting your mobile phone for some reasons, you may see that any E - Series or N - Series Nokia phone will ask you the memory card password, even if you haven't set one.&lt;br /&gt;&lt;br /&gt;Just try the &lt;b&gt;Lock Code &lt;/b&gt;of your mobile phone and that is the &lt;i&gt;Abracadabra...&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;If you haven't set any &lt;b&gt;Lock Code &lt;/b&gt;for your phone, try the default code i.e., &lt;b&gt;12345&lt;/b&gt;.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7314450340943444305-3474679782448335364?l=www.techieshome.in' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.techieshome.in/feeds/3474679782448335364/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.techieshome.in/2011/09/nokia-phone-asking-memory-card-password.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/3474679782448335364'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/3474679782448335364'/><link rel='alternate' type='text/html' href='http://www.techieshome.in/2011/09/nokia-phone-asking-memory-card-password.html' title='Nokia phone asking memory card password!'/><author><name>Raja</name><uri>http://www.blogger.com/profile/16429879169269790524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7314450340943444305.post-7037410451437234351</id><published>2011-09-21T14:57:00.003+05:30</published><updated>2011-09-23T02:49:42.347+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='QMYSQL Driver not loaded'/><category scheme='http://www.blogger.com/atom/ns#' term='Mysql'/><category scheme='http://www.blogger.com/atom/ns#' term='qt'/><title type='text'>Install Qt MYSQL Driver for Linux (Ubuntu).</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;blockquote&gt;&lt;pre class="default prettyprint"&gt;&lt;code&gt;&lt;span class="typ"&gt;QSqlDatabase&lt;/span&gt;&lt;span class="pun"&gt;:&lt;/span&gt;&lt;span class="pln"&gt; QMYSQL driver &lt;/span&gt;&lt;span class="kwd"&gt;not&lt;/span&gt;&lt;span class="pln"&gt; loaded&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;pre class="default prettyprint"&gt;&lt;code&gt;&lt;span class="typ"&gt;QSqlDatabase&lt;/span&gt;&lt;span class="pun"&gt;:&lt;/span&gt;&lt;span class="pln"&gt; available drivers&lt;/span&gt;&lt;span class="pun"&gt;:&lt;/span&gt;&lt;span class="pln"&gt; QSQLITE QSQLITE2&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/blockquote&gt;&lt;br /&gt;You might have come across this error, if you are using Qt SDK from Nokia.&lt;br /&gt;&lt;br /&gt;Now follow these steps to get MYSQL working with Qt Creator.&lt;br /&gt;&lt;br /&gt;Go to &lt;b&gt;System-&amp;gt; Administration-&amp;gt; Synaptic manager&lt;/b&gt; and search "&lt;b&gt;libqt4-sql-mysql&lt;/b&gt;" (libqt3-sql-mysql if you are using Qt3) and install the library by right clicking and select Mark for installation.&lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-YRk_A2f7XDw/TnumYVnwQaI/AAAAAAAAAJ4/x60Q_YFcjqI/s1600/Synaptic+Qt+MYSQL+Driver+Install.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="179" src="http://2.bp.blogspot.com/-YRk_A2f7XDw/TnumYVnwQaI/AAAAAAAAAJ4/x60Q_YFcjqI/s320/Synaptic+Qt+MYSQL+Driver+Install.png" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Now, in your Qt code add this line&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;b&gt;qDebug() &amp;lt;&amp;lt; QCoreApplication::libraryPaths();&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;You will see something like this upon running your program.&lt;br /&gt;&lt;style type="text/css"&gt;p, li { white-space: pre-wrap; &lt;/style&gt;&lt;span style="color: #be1414; font-family: 'Monospace'; font-size: 9pt;"&gt;("/home/raja/QtSDK/Desktop/Qt/473/gcc/plugins", "/home/raja/Documents/QtProjects/SyncTest-build-desktop")&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Now copy &lt;b&gt;libqsqlmysql.so&lt;/b&gt; (search it or find it as shown in the above picture) to the above path. You can also use the library by using &lt;b&gt;QCoreApplication::addLibraryPath(QString path)&lt;/b&gt;.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7314450340943444305-7037410451437234351?l=www.techieshome.in' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.techieshome.in/feeds/7037410451437234351/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.techieshome.in/2011/09/install-qt-mysql-driver-for-linux.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/7037410451437234351'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/7037410451437234351'/><link rel='alternate' type='text/html' href='http://www.techieshome.in/2011/09/install-qt-mysql-driver-for-linux.html' title='Install Qt MYSQL Driver for Linux (Ubuntu).'/><author><name>Raja</name><uri>http://www.blogger.com/profile/16429879169269790524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/-YRk_A2f7XDw/TnumYVnwQaI/AAAAAAAAAJ4/x60Q_YFcjqI/s72-c/Synaptic+Qt+MYSQL+Driver+Install.png' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7314450340943444305.post-6005448488759417471</id><published>2011-09-19T20:56:00.000+05:30</published><updated>2011-09-28T11:47:44.339+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='qml'/><category scheme='http://www.blogger.com/atom/ns#' term='desktop'/><category scheme='http://www.blogger.com/atom/ns#' term='qt'/><category scheme='http://www.blogger.com/atom/ns#' term='perforance'/><category scheme='http://www.blogger.com/atom/ns#' term='future'/><title type='text'>Some random things about Qt &amp; QML!</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;b&gt;Someone asked a question in stack overflow about the future of Qt and Qt's future support for Desktop. A thought of sharing you what my answer was to him.&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://blog.qt.nokia.com/files/2011/02/qt-logo.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://blog.qt.nokia.com/files/2011/02/qt-logo.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style="background-color: #fce5cd;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="post-text" style="background-color: #fce5cd;"&gt;The future of Qt is never uncertain. The one  who said, "there is not interest in desktop" is not the owner. The  future of Qt is well mentioned after the Feb'11 (announcement of WP7  collaboration). In fact, QML is Good way to go for future UIs.&lt;br /&gt;&lt;br /&gt;For your proof, the new Unity Interface for Ubuntu is going to have a  2D QML interface and the future editions are going to have QML 3D  interface for some applications. The new Ubuntu is highly integrated  with Qt.&lt;br /&gt;&lt;br /&gt;The way Qt is going is too good so far. As a regular reader of Qt  blogs and labs, I can say it for sure. The new Qt 5 is going to have lot  of features and performance improvements. Also, they have committed its  development to the successful Open Governance model. So, everyone can  contribute.&lt;br /&gt;&lt;br /&gt;Since the future of development is going to be for Mobiles and  Tablets, most of the tutorials you will find may seem to create an  illusion that Qt has no support for Desktop, but its not the case.&lt;br /&gt;&lt;br /&gt;Download the latest Qt SDK 1.3 and you will find the Qt 4.7.4 for Desktop. &lt;br /&gt;&lt;br /&gt;&lt;b&gt;To ease the use of Qt, for developing both mobile and desktop  applications, Nokia has combined both development environment into one  SDK called Qt SDK, unlike the previous Nokia Qt SDK.&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Moreover, I think no other C++ development framework can support a wide range of platforms like Qt supports now.&lt;br /&gt;&lt;br /&gt;I supports:  -&lt;br /&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;Desktop OSs: Windows, Linux, Mac OSx.&amp;nbsp;&lt;/li&gt;&lt;li&gt;Mobiles OSs: Symbian, Android (Community cupported), IOS (Comunity    supported), Windows CE, Embedded Linux devices, Meego, Maemo.&amp;nbsp; &lt;/li&gt;&lt;li&gt;Tablet OSs: Android, Meego,    Tablet Linux ports.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;i&gt;A new opportunity for porting it to  is available in the name of  Qt Necessitas- The Android port and IOS port of Qt are based on this  only.&lt;/i&gt; If you have doubts check the YouTube for videos.&lt;br /&gt;&lt;br /&gt;And regarding Java, I have read it is not that cross platform as Qt  is. I also doubt whether any IDE, other than Qt can give you the comfort  of cross compiling.&lt;br /&gt;The Documentation is too good that, for rare cases where cross  platform is not supported (for some Window functions) is mentioned  explicitly along with alternative methods to implement it in that  particular OS.&lt;br /&gt;&lt;br /&gt;QML is awesome, since its behind the scene actions are performed  using C++ to give you similar performance (85% as fast as Qt C++). And  you don't have the head ache of Memory Management (if you are not used  to with C++). If you really want a beautiful GUI and fast performance go  for QML and C++.. Else the easy option is to use QML and Javascript. &lt;br /&gt;I'm developing an application for Symbian, using heavy animations in  my Nokia E63 with a CPU clock speed of 386 MHz and QML performance is  smoother and doesn't hangs at all.&lt;br /&gt;&lt;br /&gt;You can even find the OS and version with an if else statement, that  easy. Give it a try before deciding it by reading some reviews.&lt;/div&gt;&lt;div style="background-color: #fce5cd;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="background-color: #fce5cd;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7314450340943444305-6005448488759417471?l=www.techieshome.in' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.techieshome.in/feeds/6005448488759417471/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.techieshome.in/2011/09/some-random-things-about-qt-qml.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/6005448488759417471'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/6005448488759417471'/><link rel='alternate' type='text/html' href='http://www.techieshome.in/2011/09/some-random-things-about-qt-qml.html' title='Some random things about Qt &amp; QML!'/><author><name>Raja</name><uri>http://www.blogger.com/profile/16429879169269790524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7314450340943444305.post-2646453683308919187</id><published>2011-09-05T20:12:00.000+05:30</published><updated>2011-09-28T11:55:51.338+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='format'/><category scheme='http://www.blogger.com/atom/ns#' term='removable disk'/><category scheme='http://www.blogger.com/atom/ns#' term='gui'/><category scheme='http://www.blogger.com/atom/ns#' term='pendrive'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><title type='text'>Format pendrives, removable disks in Ubuntu!</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.crackpot.ws/wp-content/uploads/2009/08/ubuntu-logo.gif" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://www.crackpot.ws/wp-content/uploads/2009/08/ubuntu-logo.gif" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;I don't know whether you already know about this. You may even feel this post as silly, but yet this will help some newbies in Ubuntu.&lt;br /&gt;&lt;br /&gt;To format your &lt;b&gt;pendrive&lt;/b&gt; or any &lt;b&gt;removable disk&lt;/b&gt;, you don't have to use any shell commands. Just select from the taskbar&lt;br /&gt;&lt;br /&gt;&lt;b style="color: red;"&gt;Places -&amp;gt; Computer -&amp;gt; Right click the (pendrive or removable disk) and select &lt;i&gt;Format.&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;You can select the file system according to your usage. If you are just going to use it under Linux, select &lt;i&gt;"EXT"&lt;/i&gt; file system or choose &lt;i&gt;"FAT"&lt;/i&gt; file system.&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;iframe align="center" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=0596005903&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;iframe align="center" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=0132396556&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7314450340943444305-2646453683308919187?l=www.techieshome.in' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.techieshome.in/feeds/2646453683308919187/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.techieshome.in/2011/09/format-pendrives-removable-disks-in.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/2646453683308919187'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/2646453683308919187'/><link rel='alternate' type='text/html' href='http://www.techieshome.in/2011/09/format-pendrives-removable-disks-in.html' title='Format pendrives, removable disks in Ubuntu!'/><author><name>Raja</name><uri>http://www.blogger.com/profile/16429879169269790524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7314450340943444305.post-2962809905381339416</id><published>2011-08-29T01:07:00.001+05:30</published><updated>2011-08-29T01:14:43.999+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='program'/><category scheme='http://www.blogger.com/atom/ns#' term='blogger'/><category scheme='http://www.blogger.com/atom/ns#' term='source code'/><category scheme='http://www.blogger.com/atom/ns#' term='web page'/><title type='text'>Use this code to paste Program source codes in blogger (or any HTML web page).</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;The program source code to be posted/pasted has to go between the &lt;b&gt;&amp;lt;pre&amp;gt;&amp;lt;/pre&amp;gt;&lt;/b&gt; tags.&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;div style="background-color: #cfe2f3;"&gt;&lt;/div&gt;&lt;div style="background-color: #cfe2f3;"&gt;&amp;lt;div style="background-color: peachpuff; height: 600px; overflow: auto; width: 99%;"&amp;gt;&lt;/div&gt;&lt;div style="background-color: #cfe2f3;"&gt;&amp;lt;pre&amp;gt;&lt;/div&gt;&lt;div style="background-color: #cfe2f3;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="background-color: #cfe2f3;"&gt;&amp;lt;/pre&amp;gt;&lt;/div&gt;&lt;div style="background-color: #cfe2f3;"&gt;&amp;lt;/div&amp;gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;br /&gt;The results will look like as it appears in the post. &lt;a href="http://www.techieshome.in/2011/08/simple-application-in-qml-stop-watch.html"&gt;&lt;b style="color: #0b5394;"&gt;A Simple QML application&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;iframe align="middle" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=0470916591&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;iframe align="middle" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=076450214X&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7314450340943444305-2962809905381339416?l=www.techieshome.in' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.techieshome.in/feeds/2962809905381339416/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.techieshome.in/2011/08/use-this-code-to-paste-program-source.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/2962809905381339416'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/2962809905381339416'/><link rel='alternate' type='text/html' href='http://www.techieshome.in/2011/08/use-this-code-to-paste-program-source.html' title='Use this code to paste Program source codes in blogger (or any HTML web page).'/><author><name>Raja</name><uri>http://www.blogger.com/profile/16429879169269790524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7314450340943444305.post-5440131938675027510</id><published>2011-08-29T00:49:00.005+05:30</published><updated>2011-08-29T01:22:29.364+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='javascript'/><category scheme='http://www.blogger.com/atom/ns#' term='qml'/><category scheme='http://www.blogger.com/atom/ns#' term='application'/><category scheme='http://www.blogger.com/atom/ns#' term='stop watch'/><category scheme='http://www.blogger.com/atom/ns#' term='simple'/><title type='text'>A simple application in QML - Stop Watch.</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;I've been playing around with Qt and QML for almost eight months and the new declarative language from the Troll Tech Engineers has impressed many people out there. If you don't know what QML is then don't hesitate to take a look at &lt;a href="http://qt.nokia.com/"&gt;Nokia's website,&lt;/a&gt; you will find many things about Qt and QML.&lt;br /&gt;&lt;br /&gt;QML is a wonderful language especially for developing mobile applications, where people always want to have fun with the UI. Thats why the legend Symbian seemed to lost its glory, but soon after Nokia's announcement of Symbian port of Qt, there is been a huge increase of interest from the people to develop for mobile.&lt;br /&gt;&lt;br /&gt;QML, the declarative language has the strong Qt C++ on its backend and is a very simple environment for Web Programmers and New Programmers who don't have much experience with traditional programming languages like C++, C# and Java.&lt;br /&gt;So here is my &lt;b&gt;Stopwatch&lt;/b&gt; code snippet programs source code.&lt;br /&gt;&lt;br /&gt;&lt;span style="background-color: #cfe2f3;"&gt;MainUI:&lt;/span&gt; &lt;span style="color: #0b5394;"&gt;StopWatch.qml (Best viewed in Landscape View)&lt;/span&gt;&lt;br /&gt;&lt;span style="color: #0b5394;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;div style="background-color: peachpuff; height: 600px; overflow: auto; width: 99%;"&gt;&lt;pre&gt;import Qt 4.7&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Rectangle {&lt;br /&gt;&lt;br /&gt;    id:parentContainer&lt;br /&gt;&lt;br /&gt;    width:320&lt;br /&gt;&lt;br /&gt;    height: 240&lt;br /&gt;&lt;br /&gt;    focus:true&lt;br /&gt;&lt;br /&gt;    Image {&lt;br /&gt;&lt;br /&gt;        id: background&lt;br /&gt;&lt;br /&gt;        width:parentContainer.width&lt;br /&gt;&lt;br /&gt;        height:parentContainer.height&lt;br /&gt;&lt;br /&gt;        source: "background.jpg"&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    FontLoader{&lt;br /&gt;&lt;br /&gt;        id:digitalFont&lt;br /&gt;&lt;br /&gt;        source:"trana.ttf"&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    Keys.onSelectPressed:{&lt;br /&gt;&lt;br /&gt;        startButton.startFunction()&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    Keys.onSpacePressed:{&lt;br /&gt;&lt;br /&gt;        startButton.startFunction()&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    Keys.onEnterPressed:{&lt;br /&gt;&lt;br /&gt;        startButton.startFunction()&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    Keys.onLeftPressed:{&lt;br /&gt;&lt;br /&gt;        resumeButton.resumeFun()&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    Keys.onRightPressed:{&lt;br /&gt;&lt;br /&gt;        stopButton.stopFunction()&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;http://www.techieshome.in/2011/08/simple-application-in-qml-stop-watch.html&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    Keys.onUpPressed:{&lt;br /&gt;&lt;br /&gt;        newLapButton.createNewLapRecord()&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    Keys.onDownPressed:{&lt;br /&gt;&lt;br /&gt;        resetButton.resetFun()&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    Keys.onAsteriskPressed:{&lt;br /&gt;&lt;br /&gt;        Qt.quit()&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    Keys.onContext2Pressed:{&lt;br /&gt;&lt;br /&gt;        Qt.quit()&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;   Grid{&lt;br /&gt;&lt;br /&gt;        id:lapRecordView&lt;br /&gt;&lt;br /&gt;        rows:4&lt;br /&gt;&lt;br /&gt;        columns:3&lt;br /&gt;&lt;br /&gt;        spacing:3&lt;br /&gt;&lt;br /&gt;        anchors.top:parent.top&lt;br /&gt;&lt;br /&gt;        anchors.horizontalCenter:parent.horizontalCenter&lt;br /&gt;&lt;br /&gt;        NewLapL{&lt;br /&gt;&lt;br /&gt;            id:lap1&lt;br /&gt;&lt;br /&gt;            text:""&lt;br /&gt;&lt;br /&gt;            states: [&lt;br /&gt;&lt;br /&gt;                State {&lt;br /&gt;&lt;br /&gt;                    name: "created"&lt;br /&gt;&lt;br /&gt;                    PropertyChanges {&lt;br /&gt;&lt;br /&gt;                        target: lap1&lt;br /&gt;&lt;br /&gt;                        opacity:1.0&lt;br /&gt;&lt;br /&gt;                        height: (parentContainer.height*7)/100&lt;br /&gt;&lt;br /&gt;                        width: (parentContainer.width*29)/100&lt;br /&gt;&lt;br /&gt;                    }&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            transitions: [&lt;br /&gt;&lt;br /&gt;                Transition {&lt;br /&gt;&lt;br /&gt;                    to:"created"&lt;br /&gt;&lt;br /&gt;                    NumberAnimation { target: lap1; property: "width"; from: 0; duration: 200 }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        NewLapL{&lt;br /&gt;&lt;br /&gt;            id:lap2&lt;br /&gt;&lt;br /&gt;            text:""&lt;br /&gt;&lt;br /&gt;            states: [&lt;br /&gt;&lt;br /&gt;                State {&lt;br /&gt;&lt;br /&gt;                    name: "created"&lt;br /&gt;&lt;br /&gt;                    PropertyChanges {&lt;br /&gt;&lt;br /&gt;                        target: lap2&lt;br /&gt;&lt;br /&gt;                        opacity:1.0&lt;br /&gt;&lt;br /&gt;                        height: (parentContainer.height*7)/100&lt;br /&gt;&lt;br /&gt;                        width: (parentContainer.width*29)/100&lt;br /&gt;&lt;br /&gt;                    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            transitions: [&lt;br /&gt;&lt;br /&gt;                Transition {&lt;br /&gt;&lt;br /&gt;                    to:"created"&lt;br /&gt;&lt;br /&gt;                    NumberAnimation { target: lap2; property: "width"; from: 0; duration: 200 }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        NewLapL{&lt;br /&gt;&lt;br /&gt;            id:lap3&lt;br /&gt;&lt;br /&gt;            text:""&lt;br /&gt;&lt;br /&gt;            states: [&lt;br /&gt;&lt;br /&gt;                State {&lt;br /&gt;&lt;br /&gt;                    name: "created"&lt;br /&gt;&lt;br /&gt;                    PropertyChanges {&lt;br /&gt;&lt;br /&gt;                        target: lap3&lt;br /&gt;&lt;br /&gt;                        opacity:1.0&lt;br /&gt;&lt;br /&gt;                        height: (parentContainer.height*7)/100&lt;br /&gt;&lt;br /&gt;                        width: (parentContainer.width*29)/100&lt;br /&gt;&lt;br /&gt;                    }&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            transitions: [&lt;br /&gt;&lt;br /&gt;                Transition {&lt;br /&gt;&lt;br /&gt;                    to:"created"&lt;br /&gt;&lt;br /&gt;                    NumberAnimation { target: lap3; property: "width"; from: 0; duration: 200 }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        NewLapL{&lt;br /&gt;&lt;br /&gt;            id:lap4&lt;br /&gt;&lt;br /&gt;            text:""&lt;br /&gt;&lt;br /&gt;            states: [&lt;br /&gt;&lt;br /&gt;                State {&lt;br /&gt;&lt;br /&gt;                    name: "created"&lt;br /&gt;&lt;br /&gt;                    PropertyChanges {&lt;br /&gt;&lt;br /&gt;                        target: lap4&lt;br /&gt;&lt;br /&gt;                        opacity:1.0&lt;br /&gt;&lt;br /&gt;                        height: (parentContainer.height*7)/100&lt;br /&gt;&lt;br /&gt;                        width: (parentContainer.width*29)/100&lt;br /&gt;&lt;br /&gt;                    }&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            transitions: [&lt;br /&gt;&lt;br /&gt;                Transition {&lt;br /&gt;&lt;br /&gt;                    to:"created"&lt;br /&gt;&lt;br /&gt;                    NumberAnimation { target: lap4; property: "width"; from: 0; duration: 200 }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        NewLapL{&lt;br /&gt;&lt;br /&gt;            id:lap5&lt;br /&gt;&lt;br /&gt;            text:""&lt;br /&gt;&lt;br /&gt;            states: [&lt;br /&gt;&lt;br /&gt;                State {&lt;br /&gt;&lt;br /&gt;                    name: "created"&lt;br /&gt;&lt;br /&gt;                    PropertyChanges {&lt;br /&gt;&lt;br /&gt;                        target: lap5&lt;br /&gt;&lt;br /&gt;                        opacity:1.0&lt;br /&gt;&lt;br /&gt;                        height: (parentContainer.height*7)/100&lt;br /&gt;&lt;br /&gt;                        width: (parentContainer.width*29)/100&lt;br /&gt;&lt;br /&gt;                    }&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            transitions: [&lt;br /&gt;&lt;br /&gt;                Transition {&lt;br /&gt;&lt;br /&gt;                    to:"created"&lt;br /&gt;&lt;br /&gt;                    NumberAnimation { target: lap5; property: "width"; from: 0; duration: 200 }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        NewLapL{&lt;br /&gt;&lt;br /&gt;            id:lap6&lt;br /&gt;&lt;br /&gt;            text:""&lt;br /&gt;&lt;br /&gt;            states: [&lt;br /&gt;&lt;br /&gt;                State {&lt;br /&gt;&lt;br /&gt;                    name: "created"&lt;br /&gt;&lt;br /&gt;                    PropertyChanges {&lt;br /&gt;&lt;br /&gt;                        target: lap6&lt;br /&gt;&lt;br /&gt;                        opacity:1.0&lt;br /&gt;&lt;br /&gt;                        height: (parentContainer.height*7)/100&lt;br /&gt;&lt;br /&gt;                        width: (parentContainer.width*29)/100&lt;br /&gt;&lt;br /&gt;                    }&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            transitions: [&lt;br /&gt;&lt;br /&gt;                Transition {&lt;br /&gt;&lt;br /&gt;                    to:"created"&lt;br /&gt;&lt;br /&gt;                    NumberAnimation { target: lap6; property: "width"; from: 0; duration: 200 }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        NewLapL{&lt;br /&gt;&lt;br /&gt;            id:lap7&lt;br /&gt;&lt;br /&gt;            text:""&lt;br /&gt;&lt;br /&gt;            states: [&lt;br /&gt;&lt;br /&gt;                State {&lt;br /&gt;&lt;br /&gt;                    name: "created"&lt;br /&gt;&lt;br /&gt;                    PropertyChanges {&lt;br /&gt;&lt;br /&gt;                        target: lap7&lt;br /&gt;&lt;br /&gt;                        opacity:1.0&lt;br /&gt;&lt;br /&gt;                        height: (parentContainer.height*7)/100&lt;br /&gt;&lt;br /&gt;                        width: (parentContainer.width*29)/100&lt;br /&gt;&lt;br /&gt;                    }&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            transitions: [&lt;br /&gt;&lt;br /&gt;                Transition {&lt;br /&gt;&lt;br /&gt;                    to:"created"&lt;br /&gt;&lt;br /&gt;                    NumberAnimation { target: lap7; property: "width"; from: 0; duration: 200 }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        NewLapL{&lt;br /&gt;&lt;br /&gt;            id:lap8&lt;br /&gt;&lt;br /&gt;            text:""&lt;br /&gt;&lt;br /&gt;            states: [&lt;br /&gt;&lt;br /&gt;                State {&lt;br /&gt;&lt;br /&gt;                    name: "created"&lt;br /&gt;&lt;br /&gt;                    PropertyChanges {&lt;br /&gt;&lt;br /&gt;                        target: lap8&lt;br /&gt;&lt;br /&gt;                        opacity:1.0&lt;br /&gt;&lt;br /&gt;                        height: (parentContainer.height*7)/100&lt;br /&gt;&lt;br /&gt;                        width: (parentContainer.width*29)/100&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                    }&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            transitions: [&lt;br /&gt;&lt;br /&gt;                Transition {&lt;br /&gt;&lt;br /&gt;                    to:"created"&lt;br /&gt;&lt;br /&gt;                    NumberAnimation { target: lap8; property: "width"; from: 0; duration: 200 }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        NewLapL{&lt;br /&gt;&lt;br /&gt;            id:lap9&lt;br /&gt;&lt;br /&gt;            text:""&lt;br /&gt;&lt;br /&gt;            states: [&lt;br /&gt;&lt;br /&gt;                State {&lt;br /&gt;&lt;br /&gt;                    name: "created"&lt;br /&gt;&lt;br /&gt;                    PropertyChanges {&lt;br /&gt;&lt;br /&gt;                        target: lap9&lt;br /&gt;&lt;br /&gt;                        opacity:1.0&lt;br /&gt;&lt;br /&gt;                        height: (parentContainer.height*7)/100&lt;br /&gt;&lt;br /&gt;                        width: (parentContainer.width*29)/100&lt;br /&gt;&lt;br /&gt;                    }&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            transitions: [&lt;br /&gt;&lt;br /&gt;                Transition {&lt;br /&gt;&lt;br /&gt;                    to:"created"&lt;br /&gt;&lt;br /&gt;                    NumberAnimation { target: lap9; property: "width"; from: 0; duration: 200 }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        NewLapL{&lt;br /&gt;&lt;br /&gt;            id:lap10&lt;br /&gt;&lt;br /&gt;            text:""&lt;br /&gt;&lt;br /&gt;            states: [&lt;br /&gt;&lt;br /&gt;                State {&lt;br /&gt;&lt;br /&gt;                    name: "created"&lt;br /&gt;&lt;br /&gt;                    PropertyChanges {&lt;br /&gt;&lt;br /&gt;                        target: lap10&lt;br /&gt;&lt;br /&gt;                        opacity:1.0&lt;br /&gt;&lt;br /&gt;                        height: (parentContainer.height*7)/100&lt;br /&gt;&lt;br /&gt;                        width: (parentContainer.width*29)/100&lt;br /&gt;&lt;br /&gt;                    }&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            transitions: [&lt;br /&gt;&lt;br /&gt;                Transition {&lt;br /&gt;&lt;br /&gt;                    to:"created"&lt;br /&gt;&lt;br /&gt;                    NumberAnimation { target: lap10; property: "width"; from: 0; duration: 200 }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        NewLapL{&lt;br /&gt;&lt;br /&gt;            id:lap11&lt;br /&gt;&lt;br /&gt;            text:""&lt;br /&gt;&lt;br /&gt;            states: [&lt;br /&gt;&lt;br /&gt;                State {&lt;br /&gt;&lt;br /&gt;                    name: "created"&lt;br /&gt;&lt;br /&gt;                    PropertyChanges {&lt;br /&gt;&lt;br /&gt;                        target: lap11&lt;br /&gt;&lt;br /&gt;                        opacity:1.0&lt;br /&gt;&lt;br /&gt;                        height: (parentContainer.height*7)/100&lt;br /&gt;&lt;br /&gt;                        width: (parentContainer.width*29)/100&lt;br /&gt;&lt;br /&gt;                    }&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            transitions: [&lt;br /&gt;&lt;br /&gt;                Transition {&lt;br /&gt;&lt;br /&gt;                    to:"created"&lt;br /&gt;&lt;br /&gt;                    NumberAnimation { target: lap11; property: "width"; from: 0; duration: 200 }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        NewLapL{&lt;br /&gt;&lt;br /&gt;            id:lap12&lt;br /&gt;&lt;br /&gt;            text:""&lt;br /&gt;&lt;br /&gt;            states: [&lt;br /&gt;&lt;br /&gt;                State {&lt;br /&gt;&lt;br /&gt;                    name: "created"&lt;br /&gt;&lt;br /&gt;                    PropertyChanges {&lt;br /&gt;&lt;br /&gt;                        target: lap12&lt;br /&gt;&lt;br /&gt;                        opacity:1.0&lt;br /&gt;&lt;br /&gt;                        height: (parentContainer.height*7)/100&lt;br /&gt;&lt;br /&gt;                        width: (parentContainer.width*29)/100&lt;br /&gt;&lt;br /&gt;                    }&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            transitions: [&lt;br /&gt;&lt;br /&gt;                Transition {&lt;br /&gt;&lt;br /&gt;                    to:"created"&lt;br /&gt;&lt;br /&gt;                    NumberAnimation { target: lap12; property: "width"; from: 0; duration: 200 }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    Row{&lt;br /&gt;&lt;br /&gt;        id:buttonRow&lt;br /&gt;&lt;br /&gt;        spacing:5&lt;br /&gt;&lt;br /&gt;        anchors.bottom:parent.bottom&lt;br /&gt;&lt;br /&gt;        anchors.bottomMargin:5&lt;br /&gt;&lt;br /&gt;        anchors.horizontalCenter:parent.horizontalCenter&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        Rectangle{&lt;br /&gt;&lt;br /&gt;            id:startButton&lt;br /&gt;&lt;br /&gt;            width:start.width + 9&lt;br /&gt;&lt;br /&gt;            height:start.height + 10&lt;br /&gt;&lt;br /&gt;            radius:5&lt;br /&gt;&lt;br /&gt;            smooth:true&lt;br /&gt;&lt;br /&gt;            gradient: Gradient{&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:0.0}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:0.5}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:1.0}&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            Image {&lt;br /&gt;&lt;br /&gt;                id: startIcon&lt;br /&gt;&lt;br /&gt;                source: "qrc:/ok.png"&lt;br /&gt;&lt;br /&gt;                opacity:0.75&lt;br /&gt;&lt;br /&gt;                anchors.horizontalCenter:parent.horizontalCenter&lt;br /&gt;&lt;br /&gt;                width:parent.width - start.width/2&lt;br /&gt;&lt;br /&gt;                height:parent.height-3&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            SequentialAnimation{&lt;br /&gt;&lt;br /&gt;                id: startButtonAnimation&lt;br /&gt;&lt;br /&gt;                running:false&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: startButton; property: "y"; to: startButton.y - 15; duration: 300 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: startButton; property: "y"; to: startButton.y; duration: 200 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: startButton; property: "y"; to: startButton.y - 8; duration: 200 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: startButton; property: "y"; to: startButton.y; duration: 200 }&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            Text {&lt;br /&gt;&lt;br /&gt;                id: start&lt;br /&gt;&lt;br /&gt;                text: "Start"&lt;br /&gt;&lt;br /&gt;                smooth:true&lt;br /&gt;&lt;br /&gt;                font.bold:true&lt;br /&gt;&lt;br /&gt;                font.italic:true&lt;br /&gt;&lt;br /&gt;                font.pixelSize:(((parentContainer.width*9)/100)*50)/100&lt;br /&gt;&lt;br /&gt;                style:Text.Raised&lt;br /&gt;&lt;br /&gt;                color:"indigo"&lt;br /&gt;&lt;br /&gt;                styleColor:"slateblue"&lt;br /&gt;&lt;br /&gt;                anchors.horizontalCenter:parent.horizontalCenter&lt;br /&gt;&lt;br /&gt;                anchors.verticalCenter:parent.verticalCenter&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            MouseArea{&lt;br /&gt;&lt;br /&gt;                anchors.fill:parent&lt;br /&gt;&lt;br /&gt;                onClicked: {&lt;br /&gt;&lt;br /&gt;                    startButton.startFunction()&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            function startFunction()&lt;br /&gt;&lt;br /&gt;            {&lt;br /&gt;&lt;br /&gt;                clock.running = false;&lt;br /&gt;&lt;br /&gt;                timer.milliSeconds = 0;&lt;br /&gt;&lt;br /&gt;                timer.seconds = 0;&lt;br /&gt;&lt;br /&gt;                timer.minutes = 0;&lt;br /&gt;&lt;br /&gt;                timer.hours = 0;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                milli.text = "00"&lt;br /&gt;&lt;br /&gt;                second.text = "00"&lt;br /&gt;&lt;br /&gt;                minute.text = "00"&lt;br /&gt;&lt;br /&gt;                hour.text = "00"&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                lap1.text = ""&lt;br /&gt;&lt;br /&gt;                lap2.text = ""&lt;br /&gt;&lt;br /&gt;                lap3.text = ""&lt;br /&gt;&lt;br /&gt;                lap4.text = ""&lt;br /&gt;&lt;br /&gt;                lap5.text = ""&lt;br /&gt;&lt;br /&gt;                lap6.text = ""&lt;br /&gt;&lt;br /&gt;                lap7.text = ""&lt;br /&gt;&lt;br /&gt;                lap8.text = ""&lt;br /&gt;&lt;br /&gt;                lap9.text = ""&lt;br /&gt;&lt;br /&gt;                lap10.text = ""&lt;br /&gt;&lt;br /&gt;                lap11.text = ""&lt;br /&gt;&lt;br /&gt;                lap12.text = ""&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                lap1.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap2.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap3.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap4.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap5.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap6.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap7.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap8.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap9.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap10.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap11.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap12.opacity = 0&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                lap1.state = ""&lt;br /&gt;&lt;br /&gt;                lap2.state = ""&lt;br /&gt;&lt;br /&gt;                lap3.state = ""&lt;br /&gt;&lt;br /&gt;                lap4.state = ""&lt;br /&gt;&lt;br /&gt;                lap5.state = ""&lt;br /&gt;&lt;br /&gt;                lap6.state = ""&lt;br /&gt;&lt;br /&gt;                lap7.state = ""&lt;br /&gt;&lt;br /&gt;                lap8.state = ""&lt;br /&gt;&lt;br /&gt;                lap9.state = ""&lt;br /&gt;&lt;br /&gt;                lap10.state = ""&lt;br /&gt;&lt;br /&gt;                lap11.state = ""&lt;br /&gt;&lt;br /&gt;                lap12.state = ""&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                newLapButton.lapCount = 0;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                clock.running = true;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                startButtonAnimation.running = true&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;        Rectangle{&lt;br /&gt;&lt;br /&gt;            id:stopButton&lt;br /&gt;&lt;br /&gt;            width:stop.width + 9&lt;br /&gt;&lt;br /&gt;            height:stop.height + 10&lt;br /&gt;&lt;br /&gt;            radius:5&lt;br /&gt;&lt;br /&gt;            smooth:true&lt;br /&gt;&lt;br /&gt;            gradient: Gradient{&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:0.0}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:0.5}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:1.0}&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            Image {&lt;br /&gt;&lt;br /&gt;                id: stopIcon&lt;br /&gt;&lt;br /&gt;                source: "qrc:/right.png"&lt;br /&gt;&lt;br /&gt;                opacity:0.75&lt;br /&gt;&lt;br /&gt;                anchors.horizontalCenter:parent.horizontalCenter&lt;br /&gt;&lt;br /&gt;                width:parent.width - stop.width/2&lt;br /&gt;&lt;br /&gt;                height:parent.height-3&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            SequentialAnimation{&lt;br /&gt;&lt;br /&gt;                id: stopButtonAnimation&lt;br /&gt;&lt;br /&gt;                running:false&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: stopButton; property: "y"; to: stopButton.y - 15; duration: 300 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: stopButton; property: "y"; to: stopButton.y; duration: 200 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: stopButton; property: "y"; to: stopButton.y - 8; duration: 200 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: stopButton; property: "y"; to: stopButton.y; duration: 200 }&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            Text {&lt;br /&gt;&lt;br /&gt;                id: stop&lt;br /&gt;&lt;br /&gt;                text: "Stop"&lt;br /&gt;&lt;br /&gt;                smooth:true&lt;br /&gt;&lt;br /&gt;                font.bold:true&lt;br /&gt;&lt;br /&gt;                font.italic:true&lt;br /&gt;&lt;br /&gt;                font.pixelSize:(((parentContainer.width*9)/100)*50)/100&lt;br /&gt;&lt;br /&gt;                style:Text.Raised&lt;br /&gt;&lt;br /&gt;                styleColor:"slateblue"&lt;br /&gt;&lt;br /&gt;                color:"indigo"&lt;br /&gt;&lt;br /&gt;                anchors.horizontalCenter:parent.horizontalCenter&lt;br /&gt;&lt;br /&gt;                anchors.verticalCenter:parent.verticalCenter&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            MouseArea{&lt;br /&gt;&lt;br /&gt;                anchors.fill:parent&lt;br /&gt;&lt;br /&gt;                onClicked : {&lt;br /&gt;&lt;br /&gt;                    stopButton.stopFunction()&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;            function stopFunction()&lt;br /&gt;&lt;br /&gt;            {&lt;br /&gt;&lt;br /&gt;                clock.running = false&lt;br /&gt;&lt;br /&gt;                stopButtonAnimation.running = true&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        Rectangle{&lt;br /&gt;&lt;br /&gt;            id:resumeButton&lt;br /&gt;&lt;br /&gt;            width:resume.width + 9&lt;br /&gt;&lt;br /&gt;            height:resume.height + 10&lt;br /&gt;&lt;br /&gt;            radius:5&lt;br /&gt;&lt;br /&gt;            smooth:true&lt;br /&gt;&lt;br /&gt;            gradient: Gradient{&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:0.0}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:0.5}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:1.0}&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            Image {&lt;br /&gt;&lt;br /&gt;                id: resumeIcon&lt;br /&gt;&lt;br /&gt;                source: "qrc:/left.png"&lt;br /&gt;&lt;br /&gt;                opacity:0.75&lt;br /&gt;&lt;br /&gt;                anchors.horizontalCenter:parent.horizontalCenter&lt;br /&gt;&lt;br /&gt;                width:parent.width - resume.width/2&lt;br /&gt;&lt;br /&gt;                height:parent.height-3&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            SequentialAnimation{&lt;br /&gt;&lt;br /&gt;                id: resumeButtonAnimation&lt;br /&gt;&lt;br /&gt;                running:false&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: resumeButton; property: "y"; to: resumeButton.y - 15; duration: 300 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: resumeButton; property: "y"; to: resumeButton.y; duration: 200 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: resumeButton; property: "y"; to: resumeButton.y - 8; duration: 200 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: resumeButton; property: "y"; to: resumeButton.y; duration: 200 }&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            Text {&lt;br /&gt;&lt;br /&gt;                id: resume&lt;br /&gt;&lt;br /&gt;                text: "Resume"&lt;br /&gt;&lt;br /&gt;                smooth:true&lt;br /&gt;&lt;br /&gt;                font.bold:true&lt;br /&gt;&lt;br /&gt;                font.italic:true&lt;br /&gt;&lt;br /&gt;                font.pixelSize:(((parentContainer.width*9)/100)*50)/100&lt;br /&gt;&lt;br /&gt;                style:Text.Raised&lt;br /&gt;&lt;br /&gt;                styleColor:"slateblue"&lt;br /&gt;&lt;br /&gt;                color:"indigo"&lt;br /&gt;&lt;br /&gt;                anchors.horizontalCenter:parent.horizontalCenter&lt;br /&gt;&lt;br /&gt;                anchors.verticalCenter:parent.verticalCenter&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            MouseArea{&lt;br /&gt;&lt;br /&gt;                anchors.fill:parent&lt;br /&gt;&lt;br /&gt;                onClicked: {&lt;br /&gt;&lt;br /&gt;                    resumeButton.resumeFun()&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            function resumeFun()&lt;br /&gt;&lt;br /&gt;            {&lt;br /&gt;&lt;br /&gt;                resumeButtonAnimation.running = true&lt;br /&gt;&lt;br /&gt;                if(timer.milliSeconds &amp;gt; 0 || timer.seconds &amp;gt; 0 || timer.minutes &amp;gt; 0 || timer.hours &amp;gt; 0)&lt;br /&gt;&lt;br /&gt;                    clock.running = true;&lt;br /&gt;&lt;br /&gt;                else&lt;br /&gt;&lt;br /&gt;                    return;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;        Rectangle{&lt;br /&gt;&lt;br /&gt;            id:newLapButton&lt;br /&gt;&lt;br /&gt;            property int lapCount: 0&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            width:newLap.width + 9&lt;br /&gt;&lt;br /&gt;            height:newLap.height + 10&lt;br /&gt;&lt;br /&gt;            radius:5&lt;br /&gt;&lt;br /&gt;            smooth:true&lt;br /&gt;&lt;br /&gt;            gradient: Gradient{&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:0.0}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:0.5}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:1.0}&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            Image {&lt;br /&gt;&lt;br /&gt;                id: newLapIcon&lt;br /&gt;&lt;br /&gt;                source: "qrc:/up.png"&lt;br /&gt;&lt;br /&gt;                opacity:0.75&lt;br /&gt;&lt;br /&gt;                anchors.horizontalCenter:parent.horizontalCenter&lt;br /&gt;&lt;br /&gt;                width:parent.width - newLap.width/2&lt;br /&gt;&lt;br /&gt;                height:parent.height-3&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            SequentialAnimation{&lt;br /&gt;&lt;br /&gt;                id: newLapButtonAnimation&lt;br /&gt;&lt;br /&gt;                running:false&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: newLapButton; property: "y"; to: newLapButton.y - 15; duration: 300 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: newLapButton; property: "y"; to: newLapButton.y; duration: 200 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: newLapButton; property: "y"; to: newLapButton.y - 8; duration: 200 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: newLapButton; property: "y"; to: newLapButton.y; duration: 200 }&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            Text {&lt;br /&gt;&lt;br /&gt;                id: newLap&lt;br /&gt;&lt;br /&gt;                text: "New Lap"&lt;br /&gt;&lt;br /&gt;                smooth:true&lt;br /&gt;&lt;br /&gt;                font.bold:true&lt;br /&gt;&lt;br /&gt;                font.italic:true&lt;br /&gt;&lt;br /&gt;                font.pixelSize:(((parentContainer.width*9)/100)*50)/100&lt;br /&gt;&lt;br /&gt;                style:Text.Raised&lt;br /&gt;&lt;br /&gt;                styleColor:"slateblue"&lt;br /&gt;&lt;br /&gt;                color:"indigo"&lt;br /&gt;&lt;br /&gt;                anchors.horizontalCenter:parent.horizontalCenter&lt;br /&gt;&lt;br /&gt;                anchors.verticalCenter:parent.verticalCenter&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            MouseArea{&lt;br /&gt;&lt;br /&gt;                anchors.fill:parent&lt;br /&gt;&lt;br /&gt;                onClicked:{&lt;br /&gt;&lt;br /&gt;                    newLapButton.createNewLapRecord()&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            function createNewLapRecord()&lt;br /&gt;&lt;br /&gt;            {&lt;br /&gt;&lt;br /&gt;                newLapButtonAnimation.running = true&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                if(newLapButton.lapCount == 0){&lt;br /&gt;&lt;br /&gt;                lap1.text = hour.text + ":" + minute.text + ":" + second.text + ":" + milli.text;&lt;br /&gt;&lt;br /&gt;                lap1.state = "created";&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;                if(newLapButton.lapCount == 1){&lt;br /&gt;&lt;br /&gt;                lap2.text = hour.text + ":" + minute.text + ":" + second.text + ":" + milli.text;&lt;br /&gt;&lt;br /&gt;                lap2.state = "created";&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;                if(newLapButton.lapCount == 2){&lt;br /&gt;&lt;br /&gt;                lap3.text = hour.text + ":" + minute.text + ":" + second.text + ":" + milli.text;&lt;br /&gt;&lt;br /&gt;                lap3.state = "created";&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;                if(newLapButton.lapCount == 3){&lt;br /&gt;&lt;br /&gt;                lap4.text = hour.text + ":" + minute.text + ":" + second.text + ":" + milli.text;&lt;br /&gt;&lt;br /&gt;                lap4.state = "created";&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;                if(newLapButton.lapCount == 4){&lt;br /&gt;&lt;br /&gt;                lap5.text = hour.text + ":" + minute.text + ":" + second.text + ":" + milli.text;&lt;br /&gt;&lt;br /&gt;                lap5.state = "created";&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;                if(newLapButton.lapCount == 5){&lt;br /&gt;&lt;br /&gt;                lap6.text = hour.text + ":" + minute.text + ":" + second.text + ":" + milli.text;&lt;br /&gt;&lt;br /&gt;                lap6.state = "created";&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;                if(newLapButton.lapCount == 6){&lt;br /&gt;&lt;br /&gt;                lap7.text = hour.text + ":" + minute.text + ":" + second.text + ":" + milli.text;&lt;br /&gt;&lt;br /&gt;                lap7.state = "created";&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;                if(newLapButton.lapCount == 7){&lt;br /&gt;&lt;br /&gt;                lap8.text = hour.text + ":" + minute.text + ":" + second.text + ":" + milli.text;&lt;br /&gt;&lt;br /&gt;                lap8.state = "created";&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;                if(newLapButton.lapCount == 8){&lt;br /&gt;&lt;br /&gt;                lap9.text = hour.text + ":" + minute.text + ":" + second.text + ":" + milli.text;&lt;br /&gt;&lt;br /&gt;                lap9.state = "created";&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                if(newLapButton.lapCount == 9){&lt;br /&gt;&lt;br /&gt;                lap10.text = hour.text + ":" + minute.text + ":" + second.text + ":" + milli.text;&lt;br /&gt;&lt;br /&gt;                lap10.state = "created";&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                if(newLapButton.lapCount == 10){&lt;br /&gt;&lt;br /&gt;                lap11.text = hour.text + ":" + minute.text + ":" + second.text + ":" + milli.text;&lt;br /&gt;&lt;br /&gt;                lap11.state = "created";&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                if(newLapButton.lapCount == 11){&lt;br /&gt;&lt;br /&gt;                lap12.text = hour.text + ":" + minute.text + ":" + second.text + ":" + milli.text;&lt;br /&gt;&lt;br /&gt;                lap12.state = "created";&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;                newLapButton.lapCount ++;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;        Rectangle{&lt;br /&gt;&lt;br /&gt;            id:resetButton&lt;br /&gt;&lt;br /&gt;            width:reset.width + 9&lt;br /&gt;&lt;br /&gt;            height:reset.height + 10&lt;br /&gt;&lt;br /&gt;            radius:5&lt;br /&gt;&lt;br /&gt;            smooth:true&lt;br /&gt;&lt;br /&gt;            gradient: Gradient{&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:0.0}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:0.5}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:1.0}&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;            Image {&lt;br /&gt;&lt;br /&gt;                id: resetIcon&lt;br /&gt;&lt;br /&gt;                source: "qrc:/down.png"&lt;br /&gt;&lt;br /&gt;                opacity:0.75&lt;br /&gt;&lt;br /&gt;                anchors.horizontalCenter:parent.horizontalCenter&lt;br /&gt;&lt;br /&gt;                width:parent.width - reset.width/2&lt;br /&gt;&lt;br /&gt;                height:parent.height-3&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            SequentialAnimation{&lt;br /&gt;&lt;br /&gt;                id: resetButtonAnimation&lt;br /&gt;&lt;br /&gt;                running:false&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: resetButton; property: "y"; to: resetButton.y - 15; duration: 300 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: resetButton; property: "y"; to: resetButton.y; duration: 200 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: resetButton; property: "y"; to: resetButton.y - 8; duration: 200 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: resetButton; property: "y"; to: resetButton.y; duration: 200 }&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            Text {&lt;br /&gt;&lt;br /&gt;                id: reset&lt;br /&gt;&lt;br /&gt;                text: "Reset"&lt;br /&gt;&lt;br /&gt;                smooth:true&lt;br /&gt;&lt;br /&gt;                font.bold:true&lt;br /&gt;&lt;br /&gt;                font.italic:true&lt;br /&gt;&lt;br /&gt;                font.pixelSize:(((parentContainer.width*9)/100)*50)/100&lt;br /&gt;&lt;br /&gt;                style:Text.Raised&lt;br /&gt;&lt;br /&gt;                styleColor:"slateblue"&lt;br /&gt;&lt;br /&gt;                color:"indigo"&lt;br /&gt;&lt;br /&gt;                anchors.horizontalCenter:parent.horizontalCenter&lt;br /&gt;&lt;br /&gt;                anchors.verticalCenter:parent.verticalCenter&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            MouseArea{&lt;br /&gt;&lt;br /&gt;                anchors.fill:parent&lt;br /&gt;&lt;br /&gt;                onClicked:{&lt;br /&gt;&lt;br /&gt;                    resetButton.resetFun()&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            function resetFun()&lt;br /&gt;&lt;br /&gt;            {&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                resetButtonAnimation.running=true&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                clock.running=false&lt;br /&gt;&lt;br /&gt;                timer.milliSeconds = 0;&lt;br /&gt;&lt;br /&gt;                timer.seconds = 0;&lt;br /&gt;&lt;br /&gt;                timer.minutes = 0;&lt;br /&gt;&lt;br /&gt;                timer.hours = 0;&lt;br /&gt;&lt;br /&gt;                milli.text = "00"&lt;br /&gt;&lt;br /&gt;                second.text = "00"&lt;br /&gt;&lt;br /&gt;                minute.text = "00"&lt;br /&gt;&lt;br /&gt;                hour.text = "00"&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                lap1.text = ""&lt;br /&gt;&lt;br /&gt;                lap2.text = ""&lt;br /&gt;&lt;br /&gt;                lap3.text = ""&lt;br /&gt;&lt;br /&gt;                lap4.text = ""&lt;br /&gt;&lt;br /&gt;                lap5.text = ""&lt;br /&gt;&lt;br /&gt;                lap6.text = ""&lt;br /&gt;&lt;br /&gt;                lap7.text = ""&lt;br /&gt;&lt;br /&gt;                lap8.text = ""&lt;br /&gt;&lt;br /&gt;                lap9.text = ""&lt;br /&gt;&lt;br /&gt;                lap10.text = ""&lt;br /&gt;&lt;br /&gt;                lap11.text = ""&lt;br /&gt;&lt;br /&gt;                lap12.text = ""&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                lap1.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap2.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap3.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap4.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap5.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap6.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap7.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap8.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap9.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap10.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap11.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap12.opacity = 0&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                lap1.state = ""&lt;br /&gt;&lt;br /&gt;                lap2.state = ""&lt;br /&gt;&lt;br /&gt;                lap3.state = ""&lt;br /&gt;&lt;br /&gt;                lap4.state = ""&lt;br /&gt;&lt;br /&gt;                lap5.state = ""&lt;br /&gt;&lt;br /&gt;                lap6.state = ""&lt;br /&gt;&lt;br /&gt;                lap7.state = ""&lt;br /&gt;&lt;br /&gt;                lap8.state = ""&lt;br /&gt;&lt;br /&gt;                lap9.state = ""&lt;br /&gt;&lt;br /&gt;                lap10.state = ""&lt;br /&gt;&lt;br /&gt;                lap11.state = ""&lt;br /&gt;&lt;br /&gt;                lap12.state = ""&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                newLapButton.lapCount = 0;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        Rectangle{&lt;br /&gt;&lt;br /&gt;            id:quitButton&lt;br /&gt;&lt;br /&gt;            width:quitImage.width+5&lt;br /&gt;&lt;br /&gt;            height:quitImage.height&lt;br /&gt;&lt;br /&gt;            color:"transparent"&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            Image {&lt;br /&gt;&lt;br /&gt;            id: quitImage&lt;br /&gt;&lt;br /&gt;            source: "qrc:/quit.png"&lt;br /&gt;&lt;br /&gt;            width:startButton.height&lt;br /&gt;&lt;br /&gt;            height:startButton.height&lt;br /&gt;&lt;br /&gt;            anchors.centerIn:parent.Center&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            Image {&lt;br /&gt;&lt;br /&gt;                id: quitIcon&lt;br /&gt;&lt;br /&gt;                source: "qrc:/asterisk.png"&lt;br /&gt;&lt;br /&gt;                opacity:0.8&lt;br /&gt;&lt;br /&gt;                anchors.bottom:quitImage.bottom&lt;br /&gt;&lt;br /&gt;                anchors.horizontalCenter:quitButton.horizontalCenter&lt;br /&gt;&lt;br /&gt;                width:parent.width/2&lt;br /&gt;&lt;br /&gt;                height:parent.height-6&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            MouseArea{&lt;br /&gt;&lt;br /&gt;                anchors.fill:parent&lt;br /&gt;&lt;br /&gt;                onClicked:{&lt;br /&gt;&lt;br /&gt;                    Qt.quit()&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    Row{&lt;br /&gt;&lt;br /&gt;        id:timer&lt;br /&gt;&lt;br /&gt;        property int milliSeconds: 0&lt;br /&gt;&lt;br /&gt;        property int seconds: 0&lt;br /&gt;&lt;br /&gt;        property int minutes: 0&lt;br /&gt;&lt;br /&gt;        property int hours: 0&lt;br /&gt;&lt;br /&gt;        anchors.centerIn:parent&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        Rectangle{&lt;br /&gt;&lt;br /&gt;            id:hourContainer&lt;br /&gt;&lt;br /&gt;            width:(((parentContainer.width*20)/100))&lt;br /&gt;&lt;br /&gt;            height:(((parentContainer.width*20)/100))&lt;br /&gt;&lt;br /&gt;            gradient: Gradient{&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:0}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:0.5}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:1.0}&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;            Text {&lt;br /&gt;&lt;br /&gt;                id: hour&lt;br /&gt;&lt;br /&gt;                text: "00"&lt;br /&gt;&lt;br /&gt;                font.family:digitalFont.name&lt;br /&gt;&lt;br /&gt;                font.bold:true&lt;br /&gt;&lt;br /&gt;                smooth:true&lt;br /&gt;&lt;br /&gt;                font.pixelSize:26&lt;br /&gt;&lt;br /&gt;                anchors.centerIn:parent&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        Rectangle{&lt;br /&gt;&lt;br /&gt;            width:5&lt;br /&gt;&lt;br /&gt;            height:(((parentContainer.width*20)/100))&lt;br /&gt;&lt;br /&gt;            gradient: Gradient{&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:0}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:0.5}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:1.0}&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;            Text {&lt;br /&gt;&lt;br /&gt;                text: ":"&lt;br /&gt;&lt;br /&gt;                font.family:digitalFont.name&lt;br /&gt;&lt;br /&gt;                font.bold:true&lt;br /&gt;&lt;br /&gt;                smooth:true&lt;br /&gt;&lt;br /&gt;                font.pixelSize:26&lt;br /&gt;&lt;br /&gt;                anchors.centerIn:parent&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        Rectangle{&lt;br /&gt;&lt;br /&gt;            id:minuteContainer&lt;br /&gt;&lt;br /&gt;            width:(((parentContainer.width*20)/100))&lt;br /&gt;&lt;br /&gt;            height:(((parentContainer.width*20)/100))&lt;br /&gt;&lt;br /&gt;            gradient: Gradient{&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:0}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:0.5}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:1.0}&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;            Text {&lt;br /&gt;&lt;br /&gt;                id: minute&lt;br /&gt;&lt;br /&gt;                text: "00"&lt;br /&gt;&lt;br /&gt;                font.family:digitalFont.name&lt;br /&gt;&lt;br /&gt;                font.bold:true&lt;br /&gt;&lt;br /&gt;                smooth:true&lt;br /&gt;&lt;br /&gt;                font.pixelSize:26&lt;br /&gt;&lt;br /&gt;                anchors.centerIn:parent&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        Rectangle{&lt;br /&gt;&lt;br /&gt;            width:5&lt;br /&gt;&lt;br /&gt;            height:(((parentContainer.width*20)/100))&lt;br /&gt;&lt;br /&gt;            gradient: Gradient{&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:0}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:0.5}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:1.0}&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;            Text {&lt;br /&gt;&lt;br /&gt;                text: ":"&lt;br /&gt;&lt;br /&gt;                font.family:digitalFont.name&lt;br /&gt;&lt;br /&gt;                font.bold:true&lt;br /&gt;&lt;br /&gt;                smooth:true&lt;br /&gt;&lt;br /&gt;                font.pixelSize:26&lt;br /&gt;&lt;br /&gt;                anchors.centerIn:parent&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        Rectangle{&lt;br /&gt;&lt;br /&gt;            id:secondContainer&lt;br /&gt;&lt;br /&gt;            width:(((parentContainer.width*20)/100))&lt;br /&gt;&lt;br /&gt;            height:(((parentContainer.width*20)/100))&lt;br /&gt;&lt;br /&gt;            gradient: Gradient{&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:0}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:0.5}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:1.0}&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;            Text {&lt;br /&gt;&lt;br /&gt;                id: second&lt;br /&gt;&lt;br /&gt;                text: "00"&lt;br /&gt;&lt;br /&gt;                font.family:digitalFont.name&lt;br /&gt;&lt;br /&gt;                font.bold:true&lt;br /&gt;&lt;br /&gt;                smooth:true&lt;br /&gt;&lt;br /&gt;                font.pixelSize:26&lt;br /&gt;&lt;br /&gt;                anchors.centerIn:parent&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        Rectangle{&lt;br /&gt;&lt;br /&gt;            width:5&lt;br /&gt;&lt;br /&gt;            height:(((parentContainer.width*20)/100))&lt;br /&gt;&lt;br /&gt;            gradient: Gradient{&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:0}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:0.5}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:1.0}&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;            Text {&lt;br /&gt;&lt;br /&gt;                text: ":"&lt;br /&gt;&lt;br /&gt;                font.family:digitalFont.name&lt;br /&gt;&lt;br /&gt;                font.bold:true&lt;br /&gt;&lt;br /&gt;                smooth:true&lt;br /&gt;&lt;br /&gt;                font.pixelSize:26&lt;br /&gt;&lt;br /&gt;                anchors.centerIn:parent&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        Rectangle{&lt;br /&gt;&lt;br /&gt;            id:milliSecondContainer&lt;br /&gt;&lt;br /&gt;            width:(((parentContainer.width*20)/100))&lt;br /&gt;&lt;br /&gt;            height:(((parentContainer.width*20)/100))&lt;br /&gt;&lt;br /&gt;            gradient: Gradient{&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:0}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:0.5}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:1.0}&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;            Text {&lt;br /&gt;&lt;br /&gt;                id: milli&lt;br /&gt;&lt;br /&gt;                text: "00"&lt;br /&gt;&lt;br /&gt;                font.family:digitalFont.name&lt;br /&gt;&lt;br /&gt;                font.bold:true&lt;br /&gt;&lt;br /&gt;                smooth:true&lt;br /&gt;&lt;br /&gt;                font.pixelSize:26&lt;br /&gt;&lt;br /&gt;                anchors.centerIn:parent&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    Timer{&lt;br /&gt;&lt;br /&gt;        id:clock&lt;br /&gt;&lt;br /&gt;        interval:50&lt;br /&gt;&lt;br /&gt;        triggeredOnStart:true&lt;br /&gt;&lt;br /&gt;        onTriggered: clock.updateTime()&lt;br /&gt;&lt;br /&gt;        repeat:true&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        function updateTime()&lt;br /&gt;&lt;br /&gt;        {&lt;br /&gt;&lt;br /&gt;            if(timer.milliSeconds == 950)&lt;br /&gt;&lt;br /&gt;            {&lt;br /&gt;&lt;br /&gt;                timer.milliSeconds = 0;&lt;br /&gt;&lt;br /&gt;                if(timer.seconds == 59)&lt;br /&gt;&lt;br /&gt;                {&lt;br /&gt;&lt;br /&gt;                    timer.seconds = 0;&lt;br /&gt;&lt;br /&gt;                    if(timer.minutes == 59)&lt;br /&gt;&lt;br /&gt;                    {&lt;br /&gt;&lt;br /&gt;                        timer.minutes = 0;&lt;br /&gt;&lt;br /&gt;                        if(timer.hours == 59)&lt;br /&gt;&lt;br /&gt;                            clock.running=false;&lt;br /&gt;&lt;br /&gt;                        else&lt;br /&gt;&lt;br /&gt;                            timer.hours++;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                    }&lt;br /&gt;&lt;br /&gt;                    else&lt;br /&gt;&lt;br /&gt;                        timer.minutes++;&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;                else&lt;br /&gt;&lt;br /&gt;                    timer.seconds++;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;            else&lt;br /&gt;&lt;br /&gt;                timer.milliSeconds = timer.milliSeconds+50;&lt;br /&gt;&lt;br /&gt;            if(timer.milliSeconds == 0)&lt;br /&gt;&lt;br /&gt;                milli.text = "000";&lt;br /&gt;&lt;br /&gt;            else&lt;br /&gt;&lt;br /&gt;                milli.text = timer.milliSeconds;&lt;br /&gt;&lt;br /&gt;            if(timer.seconds == 0)&lt;br /&gt;&lt;br /&gt;                second.text = "00";&lt;br /&gt;&lt;br /&gt;            if(timer.seconds &amp;lt; 10)&lt;br /&gt;&lt;br /&gt;                second.text = '0' + timer.seconds&lt;br /&gt;&lt;br /&gt;            else&lt;br /&gt;&lt;br /&gt;                second.text = timer.seconds;&lt;br /&gt;&lt;br /&gt;            if(timer.minutes == 0)&lt;br /&gt;&lt;br /&gt;                minute.text = "00";&lt;br /&gt;&lt;br /&gt;            if(timer.minutes &amp;lt; 10)&lt;br /&gt;&lt;br /&gt;                minute.text = '0' + timer.minutes;&lt;br /&gt;&lt;br /&gt;            else&lt;br /&gt;&lt;br /&gt;                minute.text = timer.minutes;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            if(timer.hours == 0)&lt;br /&gt;&lt;br /&gt;                hour.text = "00";&lt;br /&gt;&lt;br /&gt;            if(timer.hours &amp;lt; 10)&lt;br /&gt;&lt;br /&gt;                hour.text = '0' + timer.hours;&lt;br /&gt;&lt;br /&gt;            else&lt;br /&gt;&lt;br /&gt;                hour.text = timer.hours;&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style="background-color: #cfe2f3;"&gt;MainUI:&lt;/span&gt; &lt;span style="color: #0b5394;"&gt;StopWatch.qml (Best viewed in Portrait View)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="background-color: peachpuff; height: 600px; overflow: auto; width: 99%;"&gt;&lt;pre&gt;import QtQuick 1.0&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Rectangle {&lt;br /&gt;&lt;br /&gt;    id:parentContainer&lt;br /&gt;&lt;br /&gt;    width:320&lt;br /&gt;&lt;br /&gt;    height: 240&lt;br /&gt;&lt;br /&gt;    focus:true&lt;br /&gt;&lt;br /&gt;    Image {&lt;br /&gt;&lt;br /&gt;        id: background&lt;br /&gt;&lt;br /&gt;        width:parentContainer.width&lt;br /&gt;&lt;br /&gt;        height:parentContainer.height&lt;br /&gt;&lt;br /&gt;        source: "background.jpg"&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    FontLoader{&lt;br /&gt;&lt;br /&gt;        id:digitalFont&lt;br /&gt;&lt;br /&gt;        source:"trana.ttf"&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    Keys.onSelectPressed:{&lt;br /&gt;&lt;br /&gt;        startButton.startFunction()&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    Keys.onSpacePressed:{&lt;br /&gt;&lt;br /&gt;        startButton.startFunction()&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    Keys.onEnterPressed:{&lt;br /&gt;&lt;br /&gt;        startButton.startFunction()&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    Keys.onLeftPressed:{&lt;br /&gt;&lt;br /&gt;        resumeButton.resumeFun()&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    Keys.onRightPressed:{&lt;br /&gt;&lt;br /&gt;        stopButton.stopFunction()&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    Keys.onUpPressed:{&lt;br /&gt;&lt;br /&gt;        newLapButton.createNewLapRecord()&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    Keys.onDownPressed:{&lt;br /&gt;&lt;br /&gt;        resetButton.resetFun()&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    Keys.onAsteriskPressed:{&lt;br /&gt;&lt;br /&gt;        Qt.quit()&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    Keys.onContext2Pressed:{&lt;br /&gt;&lt;br /&gt;        Qt.quit()&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;   Grid{&lt;br /&gt;&lt;br /&gt;        id:lapRecordView&lt;br /&gt;&lt;br /&gt;        rows:4&lt;br /&gt;&lt;br /&gt;        columns:3&lt;br /&gt;&lt;br /&gt;        spacing:3&lt;br /&gt;&lt;br /&gt;        anchors.top:parent.top&lt;br /&gt;&lt;br /&gt;        anchors.horizontalCenter:parent.horizontalCenter&lt;br /&gt;&lt;br /&gt;        NewLapP{&lt;br /&gt;&lt;br /&gt;            id:lap1&lt;br /&gt;&lt;br /&gt;            text:""&lt;br /&gt;&lt;br /&gt;            states: [&lt;br /&gt;&lt;br /&gt;                State {&lt;br /&gt;&lt;br /&gt;                    name: "created"&lt;br /&gt;&lt;br /&gt;                    PropertyChanges {&lt;br /&gt;&lt;br /&gt;                        target: lap1&lt;br /&gt;&lt;br /&gt;                        opacity:1.0&lt;br /&gt;&lt;br /&gt;                        height: (parentContainer.height*8)/100&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                    }&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            transitions: [&lt;br /&gt;&lt;br /&gt;                Transition {&lt;br /&gt;&lt;br /&gt;                    to:"created"&lt;br /&gt;&lt;br /&gt;                    NumberAnimation { target: lap1; property: "opacity"; to: 1.0; duration: 200 }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        NewLapP{&lt;br /&gt;&lt;br /&gt;            id:lap2&lt;br /&gt;&lt;br /&gt;            text:""&lt;br /&gt;&lt;br /&gt;            states: [&lt;br /&gt;&lt;br /&gt;                State {&lt;br /&gt;&lt;br /&gt;                    name: "created"&lt;br /&gt;&lt;br /&gt;                    PropertyChanges {&lt;br /&gt;&lt;br /&gt;                        target: lap2&lt;br /&gt;&lt;br /&gt;                        opacity:1.0&lt;br /&gt;&lt;br /&gt;                        height: (parentContainer.height*8)/100&lt;br /&gt;&lt;br /&gt;                    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            transitions: [&lt;br /&gt;&lt;br /&gt;                Transition {&lt;br /&gt;&lt;br /&gt;                    to:"created"&lt;br /&gt;&lt;br /&gt;                    NumberAnimation { target: lap2; property: "opacity"; to: 1.0; duration: 200 }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        NewLapP{&lt;br /&gt;&lt;br /&gt;            id:lap3&lt;br /&gt;&lt;br /&gt;            text:""&lt;br /&gt;&lt;br /&gt;            states: [&lt;br /&gt;&lt;br /&gt;                State {&lt;br /&gt;&lt;br /&gt;                    name: "created"&lt;br /&gt;&lt;br /&gt;                    PropertyChanges {&lt;br /&gt;&lt;br /&gt;                        target: lap3&lt;br /&gt;&lt;br /&gt;                        opacity:1.0&lt;br /&gt;&lt;br /&gt;                        height: (parentContainer.height*8)/100&lt;br /&gt;&lt;br /&gt;                    }&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            transitions: [&lt;br /&gt;&lt;br /&gt;                Transition {&lt;br /&gt;&lt;br /&gt;                    to:"created"&lt;br /&gt;&lt;br /&gt;                    NumberAnimation { target: lap3; property: "opacity"; to: 1.0; duration: 200 }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        NewLapP{&lt;br /&gt;&lt;br /&gt;            id:lap4&lt;br /&gt;&lt;br /&gt;            text:""&lt;br /&gt;&lt;br /&gt;            states: [&lt;br /&gt;&lt;br /&gt;                State {&lt;br /&gt;&lt;br /&gt;                    name: "created"&lt;br /&gt;&lt;br /&gt;                    PropertyChanges {&lt;br /&gt;&lt;br /&gt;                        target: lap4&lt;br /&gt;&lt;br /&gt;                        opacity:1.0&lt;br /&gt;&lt;br /&gt;                        height: (parentContainer.height*8)/100&lt;br /&gt;&lt;br /&gt;                    }&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            transitions: [&lt;br /&gt;&lt;br /&gt;                Transition {&lt;br /&gt;&lt;br /&gt;                    to:"created"&lt;br /&gt;&lt;br /&gt;                    NumberAnimation { target: lap4; property: "opacity"; to: 1.0; duration: 200 }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        NewLapP{&lt;br /&gt;&lt;br /&gt;            id:lap5&lt;br /&gt;&lt;br /&gt;            text:""&lt;br /&gt;&lt;br /&gt;            states: [&lt;br /&gt;&lt;br /&gt;                State {&lt;br /&gt;&lt;br /&gt;                    name: "created"&lt;br /&gt;&lt;br /&gt;                    PropertyChanges {&lt;br /&gt;&lt;br /&gt;                        target: lap5&lt;br /&gt;&lt;br /&gt;                        opacity:1.0&lt;br /&gt;&lt;br /&gt;                        height: (parentContainer.height*8)/100&lt;br /&gt;&lt;br /&gt;                    }&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            transitions: [&lt;br /&gt;&lt;br /&gt;                Transition {&lt;br /&gt;&lt;br /&gt;                    to:"created"&lt;br /&gt;&lt;br /&gt;                    NumberAnimation { target: lap5; property: "opacity"; to: 1.0; duration: 200 }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        NewLapP{&lt;br /&gt;&lt;br /&gt;            id:lap6&lt;br /&gt;&lt;br /&gt;            text:""&lt;br /&gt;&lt;br /&gt;            states: [&lt;br /&gt;&lt;br /&gt;                State {&lt;br /&gt;&lt;br /&gt;                    name: "created"&lt;br /&gt;&lt;br /&gt;                    PropertyChanges {&lt;br /&gt;&lt;br /&gt;                        target: lap6&lt;br /&gt;&lt;br /&gt;                        opacity:1.0&lt;br /&gt;&lt;br /&gt;                        height: (parentContainer.height*8)/100&lt;br /&gt;&lt;br /&gt;                    }&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            transitions: [&lt;br /&gt;&lt;br /&gt;                Transition {&lt;br /&gt;&lt;br /&gt;                    to:"created"&lt;br /&gt;&lt;br /&gt;                    NumberAnimation { target: lap6; property: "opacity"; to: 1.0; duration: 200 }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        NewLapP{&lt;br /&gt;&lt;br /&gt;            id:lap7&lt;br /&gt;&lt;br /&gt;            text:""&lt;br /&gt;&lt;br /&gt;            states: [&lt;br /&gt;&lt;br /&gt;                State {&lt;br /&gt;&lt;br /&gt;                    name: "created"&lt;br /&gt;&lt;br /&gt;                    PropertyChanges {&lt;br /&gt;&lt;br /&gt;                        target: lap7&lt;br /&gt;&lt;br /&gt;                        opacity:1.0&lt;br /&gt;&lt;br /&gt;                        height: (parentContainer.height*8)/100&lt;br /&gt;&lt;br /&gt;                    }&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            transitions: [&lt;br /&gt;&lt;br /&gt;                Transition {&lt;br /&gt;&lt;br /&gt;                    to:"created"&lt;br /&gt;&lt;br /&gt;                    NumberAnimation { target: lap7; property: "opacity"; to: 1.0; duration: 200 }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        NewLapP{&lt;br /&gt;&lt;br /&gt;            id:lap8&lt;br /&gt;&lt;br /&gt;            text:""&lt;br /&gt;&lt;br /&gt;            states: [&lt;br /&gt;&lt;br /&gt;                State {&lt;br /&gt;&lt;br /&gt;                    name: "created"&lt;br /&gt;&lt;br /&gt;                    PropertyChanges {&lt;br /&gt;&lt;br /&gt;                        target: lap8&lt;br /&gt;&lt;br /&gt;                        opacity:1.0&lt;br /&gt;&lt;br /&gt;                        height: (parentContainer.height*8)/100&lt;br /&gt;&lt;br /&gt;                    }&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            transitions: [&lt;br /&gt;&lt;br /&gt;                Transition {&lt;br /&gt;&lt;br /&gt;                    to:"created"&lt;br /&gt;&lt;br /&gt;                    NumberAnimation { target: lap8; property: "opacity"; to: 1.0; duration: 200 }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        NewLapP{&lt;br /&gt;&lt;br /&gt;            id:lap9&lt;br /&gt;&lt;br /&gt;            text:""&lt;br /&gt;&lt;br /&gt;            states: [&lt;br /&gt;&lt;br /&gt;                State {&lt;br /&gt;&lt;br /&gt;                    name: "created"&lt;br /&gt;&lt;br /&gt;                    PropertyChanges {&lt;br /&gt;&lt;br /&gt;                        target: lap9&lt;br /&gt;&lt;br /&gt;                        opacity:1.0&lt;br /&gt;&lt;br /&gt;                        height: (parentContainer.height*8)/100&lt;br /&gt;&lt;br /&gt;                    }&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            transitions: [&lt;br /&gt;&lt;br /&gt;                Transition {&lt;br /&gt;&lt;br /&gt;                    to:"created"&lt;br /&gt;&lt;br /&gt;                    NumberAnimation { target: lap9; property: "opacity"; to: 1.0; duration: 200 }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        NewLapP{&lt;br /&gt;&lt;br /&gt;            id:lap10&lt;br /&gt;&lt;br /&gt;            text:""&lt;br /&gt;&lt;br /&gt;            states: [&lt;br /&gt;&lt;br /&gt;                State {&lt;br /&gt;&lt;br /&gt;                    name: "created"&lt;br /&gt;&lt;br /&gt;                    PropertyChanges {&lt;br /&gt;&lt;br /&gt;                        target: lap10&lt;br /&gt;&lt;br /&gt;                        opacity:1.0&lt;br /&gt;&lt;br /&gt;                        height: (parentContainer.height*8)/100&lt;br /&gt;&lt;br /&gt;                    }&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            transitions: [&lt;br /&gt;&lt;br /&gt;                Transition {&lt;br /&gt;&lt;br /&gt;                    to:"created"&lt;br /&gt;&lt;br /&gt;                    NumberAnimation { target: lap10; property: "opacity"; to: 1.0; duration: 200 }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        NewLapP{&lt;br /&gt;&lt;br /&gt;            id:lap11&lt;br /&gt;&lt;br /&gt;            text:""&lt;br /&gt;&lt;br /&gt;            states: [&lt;br /&gt;&lt;br /&gt;                State {&lt;br /&gt;&lt;br /&gt;                    name: "created"&lt;br /&gt;&lt;br /&gt;                    PropertyChanges {&lt;br /&gt;&lt;br /&gt;                        target: lap11&lt;br /&gt;&lt;br /&gt;                        opacity:1.0&lt;br /&gt;&lt;br /&gt;                        height: (parentContainer.height*8)/100&lt;br /&gt;&lt;br /&gt;                    }&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            transitions: [&lt;br /&gt;&lt;br /&gt;                Transition {&lt;br /&gt;&lt;br /&gt;                    to:"created"&lt;br /&gt;&lt;br /&gt;                    NumberAnimation { target: lap11; property: "opacity"; to: 1.0; duration: 200 }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        NewLapP{&lt;br /&gt;&lt;br /&gt;            id:lap12&lt;br /&gt;&lt;br /&gt;            text:""&lt;br /&gt;&lt;br /&gt;            states: [&lt;br /&gt;&lt;br /&gt;                State {&lt;br /&gt;&lt;br /&gt;                    name: "created"&lt;br /&gt;&lt;br /&gt;                    PropertyChanges {&lt;br /&gt;&lt;br /&gt;                        target: lap12&lt;br /&gt;&lt;br /&gt;                        opacity:1.0&lt;br /&gt;&lt;br /&gt;                        height: (parentContainer.height*8)/100&lt;br /&gt;&lt;br /&gt;                    }&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            transitions: [&lt;br /&gt;&lt;br /&gt;                Transition {&lt;br /&gt;&lt;br /&gt;                    to:"created"&lt;br /&gt;&lt;br /&gt;                    NumberAnimation { target: lap12; property: "opacity"; to: 1.0; duration: 200 }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    Row{&lt;br /&gt;&lt;br /&gt;        id:buttonRow&lt;br /&gt;&lt;br /&gt;        spacing:3&lt;br /&gt;&lt;br /&gt;        anchors.bottom:parent.bottom&lt;br /&gt;&lt;br /&gt;        anchors.bottomMargin:5&lt;br /&gt;&lt;br /&gt;        anchors.horizontalCenter:parent.horizontalCenter&lt;br /&gt;&lt;br /&gt;        Rectangle{&lt;br /&gt;&lt;br /&gt;            id:startButton&lt;br /&gt;&lt;br /&gt;            width:start.width + 6&lt;br /&gt;&lt;br /&gt;            height:start.height + 14&lt;br /&gt;&lt;br /&gt;            radius:5&lt;br /&gt;&lt;br /&gt;            smooth:true&lt;br /&gt;&lt;br /&gt;            gradient: Gradient{&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:0.0}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:0.5}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:1.0}&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            Image {&lt;br /&gt;&lt;br /&gt;                id: startIcon&lt;br /&gt;&lt;br /&gt;                source: "qrc:/ok.png"&lt;br /&gt;&lt;br /&gt;                opacity:0.75&lt;br /&gt;&lt;br /&gt;                anchors.horizontalCenter:parent.horizontalCenter&lt;br /&gt;&lt;br /&gt;                width:parent.width - start.width/2&lt;br /&gt;&lt;br /&gt;                height:parent.height-3&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            SequentialAnimation{&lt;br /&gt;&lt;br /&gt;                id: startButtonAnimation&lt;br /&gt;&lt;br /&gt;                running:false&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: startButton; property: "y"; to: startButton.y - 15; duration: 300 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: startButton; property: "y"; to: startButton.y; duration: 200 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: startButton; property: "y"; to: startButton.y - 8; duration: 200 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: startButton; property: "y"; to: startButton.y; duration: 200 }&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            Text {&lt;br /&gt;&lt;br /&gt;                id: start&lt;br /&gt;&lt;br /&gt;                text: "Start"&lt;br /&gt;&lt;br /&gt;                smooth:true&lt;br /&gt;&lt;br /&gt;                font.bold:true&lt;br /&gt;&lt;br /&gt;                font.italic:true&lt;br /&gt;&lt;br /&gt;                font.pixelSize:(((parentContainer.width*9)/100)*50)/100&lt;br /&gt;&lt;br /&gt;                style:Text.Raised&lt;br /&gt;&lt;br /&gt;                color:"indigo"&lt;br /&gt;&lt;br /&gt;                styleColor:"slateblue"&lt;br /&gt;&lt;br /&gt;                anchors.horizontalCenter:parent.horizontalCenter&lt;br /&gt;&lt;br /&gt;                anchors.verticalCenter:parent.verticalCenter&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            MouseArea{&lt;br /&gt;&lt;br /&gt;                anchors.fill:parent&lt;br /&gt;&lt;br /&gt;                onClicked: {&lt;br /&gt;&lt;br /&gt;                    startButton.startFunction()&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            function startFunction()&lt;br /&gt;&lt;br /&gt;            {&lt;br /&gt;&lt;br /&gt;                clock.running = false;&lt;br /&gt;&lt;br /&gt;                timer.milliSeconds = 0;&lt;br /&gt;&lt;br /&gt;                timer.seconds = 0;&lt;br /&gt;&lt;br /&gt;                timer.minutes = 0;&lt;br /&gt;&lt;br /&gt;                timer.hours = 0;&lt;br /&gt;&lt;br /&gt;                clock.running = true;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                startButtonAnimation.running = true&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;        Rectangle{&lt;br /&gt;&lt;br /&gt;            id:stopButton&lt;br /&gt;&lt;br /&gt;            width:stop.width + 6&lt;br /&gt;&lt;br /&gt;            height:stop.height + 14&lt;br /&gt;&lt;br /&gt;            radius:5&lt;br /&gt;&lt;br /&gt;            smooth:true&lt;br /&gt;&lt;br /&gt;            gradient: Gradient{&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:0.0}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:0.5}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:1.0}&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            Image {&lt;br /&gt;&lt;br /&gt;                id: stopIcon&lt;br /&gt;&lt;br /&gt;                source: "qrc:/right.png"&lt;br /&gt;&lt;br /&gt;                opacity:0.75&lt;br /&gt;&lt;br /&gt;                anchors.horizontalCenter:parent.horizontalCenter&lt;br /&gt;&lt;br /&gt;                width:parent.width - stop.width/2&lt;br /&gt;&lt;br /&gt;                height:parent.height-3&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            SequentialAnimation{&lt;br /&gt;&lt;br /&gt;                id: stopButtonAnimation&lt;br /&gt;&lt;br /&gt;                running:false&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: stopButton; property: "y"; to: stopButton.y - 15; duration: 300 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: stopButton; property: "y"; to: stopButton.y; duration: 200 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: stopButton; property: "y"; to: stopButton.y - 8; duration: 200 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: stopButton; property: "y"; to: stopButton.y; duration: 200 }&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            Text {&lt;br /&gt;&lt;br /&gt;                id: stop&lt;br /&gt;&lt;br /&gt;                text: "Stop"&lt;br /&gt;&lt;br /&gt;                smooth:true&lt;br /&gt;&lt;br /&gt;                font.bold:true&lt;br /&gt;&lt;br /&gt;                font.italic:true&lt;br /&gt;&lt;br /&gt;                font.pixelSize:(((parentContainer.width*9)/100)*50)/100&lt;br /&gt;&lt;br /&gt;                style:Text.Raised&lt;br /&gt;&lt;br /&gt;                styleColor:"slateblue"&lt;br /&gt;&lt;br /&gt;                color:"indigo"&lt;br /&gt;&lt;br /&gt;                anchors.horizontalCenter:parent.horizontalCenter&lt;br /&gt;&lt;br /&gt;                anchors.verticalCenter:parent.verticalCenter&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            MouseArea{&lt;br /&gt;&lt;br /&gt;                anchors.fill:parent&lt;br /&gt;&lt;br /&gt;                onClicked : {&lt;br /&gt;&lt;br /&gt;                    stopButton.stopFunction()&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;            function stopFunction()&lt;br /&gt;&lt;br /&gt;            {&lt;br /&gt;&lt;br /&gt;                clock.running = false&lt;br /&gt;&lt;br /&gt;                stopButtonAnimation.running = true&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        Rectangle{&lt;br /&gt;&lt;br /&gt;            id:resumeButton&lt;br /&gt;&lt;br /&gt;            width:resume.width + 6&lt;br /&gt;&lt;br /&gt;            height:resume.height + 14&lt;br /&gt;&lt;br /&gt;            radius:5&lt;br /&gt;&lt;br /&gt;            smooth:true&lt;br /&gt;&lt;br /&gt;            gradient: Gradient{&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:0.0}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:0.5}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:1.0}&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            Image {&lt;br /&gt;&lt;br /&gt;                id: resumeIcon&lt;br /&gt;&lt;br /&gt;                source: "qrc:/left.png"&lt;br /&gt;&lt;br /&gt;                opacity:0.75&lt;br /&gt;&lt;br /&gt;                anchors.horizontalCenter:parent.horizontalCenter&lt;br /&gt;&lt;br /&gt;                width:parent.width - resume.width/2&lt;br /&gt;&lt;br /&gt;                height:parent.height-3&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            SequentialAnimation{&lt;br /&gt;&lt;br /&gt;                id: resumeButtonAnimation&lt;br /&gt;&lt;br /&gt;                running:false&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: resumeButton; property: "y"; to: resumeButton.y - 15; duration: 300 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: resumeButton; property: "y"; to: resumeButton.y; duration: 200 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: resumeButton; property: "y"; to: resumeButton.y - 8; duration: 200 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: resumeButton; property: "y"; to: resumeButton.y; duration: 200 }&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            Text {&lt;br /&gt;&lt;br /&gt;                id: resume&lt;br /&gt;&lt;br /&gt;                text: "Resume"&lt;br /&gt;&lt;br /&gt;                smooth:true&lt;br /&gt;&lt;br /&gt;                font.bold:true&lt;br /&gt;&lt;br /&gt;                font.italic:true&lt;br /&gt;&lt;br /&gt;                font.pixelSize:(((parentContainer.width*9)/100)*50)/100&lt;br /&gt;&lt;br /&gt;                style:Text.Raised&lt;br /&gt;&lt;br /&gt;                styleColor:"slateblue"&lt;br /&gt;&lt;br /&gt;                color:"indigo"&lt;br /&gt;&lt;br /&gt;                anchors.horizontalCenter:parent.horizontalCenter&lt;br /&gt;&lt;br /&gt;                anchors.verticalCenter:parent.verticalCenter&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            MouseArea{&lt;br /&gt;&lt;br /&gt;                anchors.fill:parent&lt;br /&gt;&lt;br /&gt;                onClicked: {&lt;br /&gt;&lt;br /&gt;                    resumeButton.resumeFun()&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            function resumeFun()&lt;br /&gt;&lt;br /&gt;            {&lt;br /&gt;&lt;br /&gt;                resumeButtonAnimation.running = true&lt;br /&gt;&lt;br /&gt;                if(timer.milliSeconds &amp;gt; 0 || timer.seconds &amp;gt; 0 || timer.minutes &amp;gt; 0 || timer.hours &amp;gt; 0)&lt;br /&gt;&lt;br /&gt;                    clock.running = true;&lt;br /&gt;&lt;br /&gt;                else&lt;br /&gt;&lt;br /&gt;                    return;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;        Rectangle{&lt;br /&gt;&lt;br /&gt;            id:newLapButton&lt;br /&gt;&lt;br /&gt;            property int lapCount: 0&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            width:newLap.width + 6&lt;br /&gt;&lt;br /&gt;            height:newLap.height + 14&lt;br /&gt;&lt;br /&gt;            radius:5&lt;br /&gt;&lt;br /&gt;            smooth:true&lt;br /&gt;&lt;br /&gt;            gradient: Gradient{&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:0.0}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:0.5}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:1.0}&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            Image {&lt;br /&gt;&lt;br /&gt;                id: newLapIcon&lt;br /&gt;&lt;br /&gt;                source: "qrc:/up.png"&lt;br /&gt;&lt;br /&gt;                opacity:0.75&lt;br /&gt;&lt;br /&gt;                anchors.horizontalCenter:parent.horizontalCenter&lt;br /&gt;&lt;br /&gt;                width:parent.width - newLap.width/2&lt;br /&gt;&lt;br /&gt;                height:parent.height-3&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;            SequentialAnimation{&lt;br /&gt;&lt;br /&gt;                id: newLapButtonAnimation&lt;br /&gt;&lt;br /&gt;                running:false&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: newLapButton; property: "y"; to: newLapButton.y - 15; duration: 300 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: newLapButton; property: "y"; to: newLapButton.y; duration: 200 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: newLapButton; property: "y"; to: newLapButton.y - 8; duration: 200 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: newLapButton; property: "y"; to: newLapButton.y; duration: 200 }&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            Text {&lt;br /&gt;&lt;br /&gt;                id: newLap&lt;br /&gt;&lt;br /&gt;                text: "New Lap"&lt;br /&gt;&lt;br /&gt;                smooth:true&lt;br /&gt;&lt;br /&gt;                font.bold:true&lt;br /&gt;&lt;br /&gt;                font.italic:true&lt;br /&gt;&lt;br /&gt;                font.pixelSize:(((parentContainer.width*9)/100)*50)/100&lt;br /&gt;&lt;br /&gt;                style:Text.Raised&lt;br /&gt;&lt;br /&gt;                styleColor:"slateblue"&lt;br /&gt;&lt;br /&gt;                color:"indigo"&lt;br /&gt;&lt;br /&gt;                anchors.horizontalCenter:parent.horizontalCenter&lt;br /&gt;&lt;br /&gt;                anchors.verticalCenter:parent.verticalCenter&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            MouseArea{&lt;br /&gt;&lt;br /&gt;                anchors.fill:parent&lt;br /&gt;&lt;br /&gt;                onClicked:{&lt;br /&gt;&lt;br /&gt;                    newLapButton.createNewLapRecord()&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            function createNewLapRecord()&lt;br /&gt;&lt;br /&gt;            {&lt;br /&gt;&lt;br /&gt;                newLapButtonAnimation.running = true&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                if(newLapButton.lapCount == 0){&lt;br /&gt;&lt;br /&gt;                lap1.text = hour.text + ":" + minute.text + ":" + second.text + ":" + milli.text;&lt;br /&gt;&lt;br /&gt;                lap1.state = "created";&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;                if(newLapButton.lapCount == 1){&lt;br /&gt;&lt;br /&gt;                lap2.text = hour.text + ":" + minute.text + ":" + second.text + ":" + milli.text;&lt;br /&gt;&lt;br /&gt;                lap2.state = "created";&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;                if(newLapButton.lapCount == 2){&lt;br /&gt;&lt;br /&gt;                lap3.text = hour.text + ":" + minute.text + ":" + second.text + ":" + milli.text;&lt;br /&gt;&lt;br /&gt;                lap3.state = "created";&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;                if(newLapButton.lapCount == 3){&lt;br /&gt;&lt;br /&gt;                lap4.text = hour.text + ":" + minute.text + ":" + second.text + ":" + milli.text;&lt;br /&gt;&lt;br /&gt;                lap4.state = "created";&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;                if(newLapButton.lapCount == 4){&lt;br /&gt;&lt;br /&gt;                lap5.text = hour.text + ":" + minute.text + ":" + second.text + ":" + milli.text;&lt;br /&gt;&lt;br /&gt;                lap5.state = "created";&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;                if(newLapButton.lapCount == 5){&lt;br /&gt;&lt;br /&gt;                lap6.text = hour.text + ":" + minute.text + ":" + second.text + ":" + milli.text;&lt;br /&gt;&lt;br /&gt;                lap6.state = "created";&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;                if(newLapButton.lapCount == 6){&lt;br /&gt;&lt;br /&gt;                lap7.text = hour.text + ":" + minute.text + ":" + second.text + ":" + milli.text;&lt;br /&gt;&lt;br /&gt;                lap7.state = "created";&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;                if(newLapButton.lapCount == 7){&lt;br /&gt;&lt;br /&gt;                lap8.text = hour.text + ":" + minute.text + ":" + second.text + ":" + milli.text;&lt;br /&gt;&lt;br /&gt;                lap8.state = "created";&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;                if(newLapButton.lapCount == 8){&lt;br /&gt;&lt;br /&gt;                lap9.text = hour.text + ":" + minute.text + ":" + second.text + ":" + milli.text;&lt;br /&gt;&lt;br /&gt;                lap9.state = "created";&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                if(newLapButton.lapCount == 9){&lt;br /&gt;&lt;br /&gt;                lap10.text = hour.text + ":" + minute.text + ":" + second.text + ":" + milli.text;&lt;br /&gt;&lt;br /&gt;                lap10.state = "created";&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                if(newLapButton.lapCount == 10){&lt;br /&gt;&lt;br /&gt;                lap11.text = hour.text + ":" + minute.text + ":" + second.text + ":" + milli.text;&lt;br /&gt;&lt;br /&gt;                lap11.state = "created";&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                if(newLapButton.lapCount == 11){&lt;br /&gt;&lt;br /&gt;                lap12.text = hour.text + ":" + minute.text + ":" + second.text + ":" + milli.text;&lt;br /&gt;&lt;br /&gt;                lap12.state = "created";&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;                newLapButton.lapCount ++;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;        Rectangle{&lt;br /&gt;&lt;br /&gt;            id:resetButton&lt;br /&gt;&lt;br /&gt;            width:reset.width + 6&lt;br /&gt;&lt;br /&gt;            height:reset.height + 14&lt;br /&gt;&lt;br /&gt;            radius:5&lt;br /&gt;&lt;br /&gt;            smooth:true&lt;br /&gt;&lt;br /&gt;            gradient: Gradient{&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:0.0}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:0.5}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:1.0}&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            Image {&lt;br /&gt;&lt;br /&gt;                id: resetIcon&lt;br /&gt;&lt;br /&gt;                source: "qrc:/down.png"&lt;br /&gt;&lt;br /&gt;                opacity:0.75&lt;br /&gt;&lt;br /&gt;                anchors.horizontalCenter:parent.horizontalCenter&lt;br /&gt;&lt;br /&gt;                width:parent.width - reset.width/2&lt;br /&gt;&lt;br /&gt;                height:parent.height-3&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            SequentialAnimation{&lt;br /&gt;&lt;br /&gt;                id: resetButtonAnimation&lt;br /&gt;&lt;br /&gt;                running:false&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: resetButton; property: "y"; to: resetButton.y - 15; duration: 300 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: resetButton; property: "y"; to: resetButton.y; duration: 200 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: resetButton; property: "y"; to: resetButton.y - 8; duration: 200 }&lt;br /&gt;&lt;br /&gt;                NumberAnimation { target: resetButton; property: "y"; to: resetButton.y; duration: 200 }&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            Text {&lt;br /&gt;&lt;br /&gt;                id: reset&lt;br /&gt;&lt;br /&gt;                text: "Reset"&lt;br /&gt;&lt;br /&gt;                smooth:true&lt;br /&gt;&lt;br /&gt;                font.bold:true&lt;br /&gt;&lt;br /&gt;                font.italic:true&lt;br /&gt;&lt;br /&gt;                font.pixelSize:(((parentContainer.width*9)/100)*50)/100&lt;br /&gt;&lt;br /&gt;                style:Text.Raised&lt;br /&gt;&lt;br /&gt;                styleColor:"slateblue"&lt;br /&gt;&lt;br /&gt;                color:"indigo"&lt;br /&gt;&lt;br /&gt;                anchors.horizontalCenter:parent.horizontalCenter&lt;br /&gt;&lt;br /&gt;                anchors.verticalCenter:parent.verticalCenter&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            MouseArea{&lt;br /&gt;&lt;br /&gt;                anchors.fill:parent&lt;br /&gt;&lt;br /&gt;                onClicked:{&lt;br /&gt;&lt;br /&gt;                    resetButton.resetFun()&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            function resetFun()&lt;br /&gt;&lt;br /&gt;            {&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                resetButtonAnimation.running=true&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                clock.running=false&lt;br /&gt;&lt;br /&gt;                timer.milliSeconds = 0;&lt;br /&gt;&lt;br /&gt;                timer.seconds = 0;&lt;br /&gt;&lt;br /&gt;                timer.minutes = 0;&lt;br /&gt;&lt;br /&gt;                timer.hours = 0;&lt;br /&gt;&lt;br /&gt;                milli.text = "00"&lt;br /&gt;&lt;br /&gt;                second.text = "00"&lt;br /&gt;&lt;br /&gt;                minute.text = "00"&lt;br /&gt;&lt;br /&gt;                hour.text = "00"&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                lap1.text = ""&lt;br /&gt;&lt;br /&gt;                lap2.text = ""&lt;br /&gt;&lt;br /&gt;                lap3.text = ""&lt;br /&gt;&lt;br /&gt;                lap4.text = ""&lt;br /&gt;&lt;br /&gt;                lap5.text = ""&lt;br /&gt;&lt;br /&gt;                lap6.text = ""&lt;br /&gt;&lt;br /&gt;                lap7.text = ""&lt;br /&gt;&lt;br /&gt;                lap8.text = ""&lt;br /&gt;&lt;br /&gt;                lap9.text = ""&lt;br /&gt;&lt;br /&gt;                lap10.text = ""&lt;br /&gt;&lt;br /&gt;                lap11.text = ""&lt;br /&gt;&lt;br /&gt;                lap12.text = ""&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                lap1.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap2.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap3.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap4.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap5.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap6.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap7.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap8.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap9.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap10.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap11.opacity = 0&lt;br /&gt;&lt;br /&gt;                lap12.opacity = 0&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                lap1.state = ""&lt;br /&gt;&lt;br /&gt;                lap2.state = ""&lt;br /&gt;&lt;br /&gt;                lap3.state = ""&lt;br /&gt;&lt;br /&gt;                lap4.state = ""&lt;br /&gt;&lt;br /&gt;                lap5.state = ""&lt;br /&gt;&lt;br /&gt;                lap6.state = ""&lt;br /&gt;&lt;br /&gt;                lap7.state = ""&lt;br /&gt;&lt;br /&gt;                lap8.state = ""&lt;br /&gt;&lt;br /&gt;                lap9.state = ""&lt;br /&gt;&lt;br /&gt;                lap10.state = ""&lt;br /&gt;&lt;br /&gt;                lap11.state = ""&lt;br /&gt;&lt;br /&gt;                lap12.state = ""&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                newLapButton.lapCount = 0;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        Rectangle{&lt;br /&gt;&lt;br /&gt;            id:quitButton&lt;br /&gt;&lt;br /&gt;            width:quitImage.width+5&lt;br /&gt;&lt;br /&gt;            height:quitImage.height&lt;br /&gt;&lt;br /&gt;            color:"transparent"&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            Image {&lt;br /&gt;&lt;br /&gt;            id: quitImage&lt;br /&gt;&lt;br /&gt;            source: "qrc:/quit.png"&lt;br /&gt;&lt;br /&gt;            width:startButton.height&lt;br /&gt;&lt;br /&gt;            height:startButton.height&lt;br /&gt;&lt;br /&gt;            anchors.centerIn:parent.Center&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            Image {&lt;br /&gt;&lt;br /&gt;                id: quitIcon&lt;br /&gt;&lt;br /&gt;                source: "qrc:/asterisk.png"&lt;br /&gt;&lt;br /&gt;                opacity:0.8&lt;br /&gt;&lt;br /&gt;                anchors.bottom:quitImage.bottom&lt;br /&gt;&lt;br /&gt;                anchors.horizontalCenter:quitButton.horizontalCenter&lt;br /&gt;&lt;br /&gt;                width:parent.width/2&lt;br /&gt;&lt;br /&gt;                height:parent.height-4&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            MouseArea{&lt;br /&gt;&lt;br /&gt;                anchors.fill:parent&lt;br /&gt;&lt;br /&gt;                onClicked:{&lt;br /&gt;&lt;br /&gt;                    Qt.quit()&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    Row{&lt;br /&gt;&lt;br /&gt;        id:timer&lt;br /&gt;&lt;br /&gt;        property int milliSeconds: 0&lt;br /&gt;&lt;br /&gt;        property int seconds: 0&lt;br /&gt;&lt;br /&gt;        property int minutes: 0&lt;br /&gt;&lt;br /&gt;        property int hours: 0&lt;br /&gt;&lt;br /&gt;        anchors.centerIn:parent&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        Rectangle{&lt;br /&gt;&lt;br /&gt;            id:hourContainer&lt;br /&gt;&lt;br /&gt;            width:(((parentContainer.width*24)/100))&lt;br /&gt;&lt;br /&gt;            height:(((parentContainer.width*24)/100))&lt;br /&gt;&lt;br /&gt;            gradient: Gradient{&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:0}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:0.5}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:1.0}&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;            Text {&lt;br /&gt;&lt;br /&gt;                id: hour&lt;br /&gt;&lt;br /&gt;                text: "00"&lt;br /&gt;&lt;br /&gt;                font.family:digitalFont.name&lt;br /&gt;&lt;br /&gt;                font.bold:true&lt;br /&gt;&lt;br /&gt;                smooth:true&lt;br /&gt;&lt;br /&gt;                font.pixelSize:28&lt;br /&gt;&lt;br /&gt;                anchors.centerIn:parent&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        Rectangle{&lt;br /&gt;&lt;br /&gt;            width:5&lt;br /&gt;&lt;br /&gt;            height:(((parentContainer.width*24)/100))&lt;br /&gt;&lt;br /&gt;            gradient: Gradient{&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:0}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:0.5}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:1.0}&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;            Text {&lt;br /&gt;&lt;br /&gt;                text: ":"&lt;br /&gt;&lt;br /&gt;                font.family:digitalFont.name&lt;br /&gt;&lt;br /&gt;                font.bold:true&lt;br /&gt;&lt;br /&gt;                smooth:true&lt;br /&gt;&lt;br /&gt;                font.pixelSize:28&lt;br /&gt;&lt;br /&gt;                anchors.centerIn:parent&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        Rectangle{&lt;br /&gt;&lt;br /&gt;            id:minuteContainer&lt;br /&gt;&lt;br /&gt;            width:(((parentContainer.width*24)/100))&lt;br /&gt;&lt;br /&gt;            height:(((parentContainer.width*24)/100))&lt;br /&gt;&lt;br /&gt;            gradient: Gradient{&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:0}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:0.5}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:1.0}&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;            Text {&lt;br /&gt;&lt;br /&gt;                id: minute&lt;br /&gt;&lt;br /&gt;                text: "00"&lt;br /&gt;&lt;br /&gt;                font.family:digitalFont.name&lt;br /&gt;&lt;br /&gt;                font.bold:true&lt;br /&gt;&lt;br /&gt;                smooth:true&lt;br /&gt;&lt;br /&gt;                font.pixelSize:28&lt;br /&gt;&lt;br /&gt;                anchors.centerIn:parent&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        Rectangle{&lt;br /&gt;&lt;br /&gt;            width:5&lt;br /&gt;&lt;br /&gt;            height:(((parentContainer.width*24)/100))&lt;br /&gt;&lt;br /&gt;            gradient: Gradient{&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:0}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:0.5}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:1.0}&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;            Text {&lt;br /&gt;&lt;br /&gt;                text: ":"&lt;br /&gt;&lt;br /&gt;                font.family:digitalFont.name&lt;br /&gt;&lt;br /&gt;                font.bold:true&lt;br /&gt;&lt;br /&gt;                smooth:true&lt;br /&gt;&lt;br /&gt;                font.pixelSize:28&lt;br /&gt;&lt;br /&gt;                anchors.centerIn:parent&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        Rectangle{&lt;br /&gt;&lt;br /&gt;            id:secondContainer&lt;br /&gt;&lt;br /&gt;            width:(((parentContainer.width*24)/100))&lt;br /&gt;&lt;br /&gt;            height:(((parentContainer.width*24)/100))&lt;br /&gt;&lt;br /&gt;            gradient: Gradient{&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:0}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:0.5}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:1.0}&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;            Text {&lt;br /&gt;&lt;br /&gt;                id: second&lt;br /&gt;&lt;br /&gt;                text: "00"&lt;br /&gt;&lt;br /&gt;                font.family:digitalFont.name&lt;br /&gt;&lt;br /&gt;                font.bold:true&lt;br /&gt;&lt;br /&gt;                smooth:true&lt;br /&gt;&lt;br /&gt;                font.pixelSize:28&lt;br /&gt;&lt;br /&gt;                anchors.centerIn:parent&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        Rectangle{&lt;br /&gt;&lt;br /&gt;            width:5&lt;br /&gt;&lt;br /&gt;            height:(((parentContainer.width*24)/100))&lt;br /&gt;&lt;br /&gt;            gradient: Gradient{&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:0}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:0.5}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:1.0}&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;            Text {&lt;br /&gt;&lt;br /&gt;                text: ":"&lt;br /&gt;&lt;br /&gt;                font.family:digitalFont.name&lt;br /&gt;&lt;br /&gt;                font.bold:true&lt;br /&gt;&lt;br /&gt;                smooth:true&lt;br /&gt;&lt;br /&gt;                font.pixelSize:28&lt;br /&gt;&lt;br /&gt;                anchors.centerIn:parent&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        Rectangle{&lt;br /&gt;&lt;br /&gt;            id:milliSecondContainer&lt;br /&gt;&lt;br /&gt;            width:(((parentContainer.width*24)/100))&lt;br /&gt;&lt;br /&gt;            height:(((parentContainer.width*24)/100))&lt;br /&gt;&lt;br /&gt;            gradient: Gradient{&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:0}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"white"; position:0.5}&lt;br /&gt;&lt;br /&gt;                GradientStop{color:"gray"; position:1.0}&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;            Text {&lt;br /&gt;&lt;br /&gt;                id: milli&lt;br /&gt;&lt;br /&gt;                text: "00"&lt;br /&gt;&lt;br /&gt;                font.family:digitalFont.name&lt;br /&gt;&lt;br /&gt;                font.bold:true&lt;br /&gt;&lt;br /&gt;                smooth:true&lt;br /&gt;&lt;br /&gt;                font.pixelSize:28&lt;br /&gt;&lt;br /&gt;                anchors.centerIn:parent&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    Timer{&lt;br /&gt;&lt;br /&gt;        id:clock&lt;br /&gt;&lt;br /&gt;        interval:50&lt;br /&gt;&lt;br /&gt;        triggeredOnStart:true&lt;br /&gt;&lt;br /&gt;        onTriggered: clock.updateTime()&lt;br /&gt;&lt;br /&gt;        repeat:true&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        function updateTime()&lt;br /&gt;&lt;br /&gt;        {&lt;br /&gt;&lt;br /&gt;            if(timer.milliSeconds &amp;gt;= 950)&lt;br /&gt;&lt;br /&gt;            {&lt;br /&gt;&lt;br /&gt;                timer.milliSeconds = 0;&lt;br /&gt;&lt;br /&gt;                if(timer.seconds == 59)&lt;br /&gt;&lt;br /&gt;                {&lt;br /&gt;&lt;br /&gt;                    timer.seconds = 0;&lt;br /&gt;&lt;br /&gt;                    if(timer.minutes == 59)&lt;br /&gt;&lt;br /&gt;                    {&lt;br /&gt;&lt;br /&gt;                        timer.minutes = 0;&lt;br /&gt;&lt;br /&gt;                        if(timer.hours == 59)&lt;br /&gt;&lt;br /&gt;                            clock.running=false;&lt;br /&gt;&lt;br /&gt;                        else&lt;br /&gt;&lt;br /&gt;                            timer.hours++;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                    }&lt;br /&gt;&lt;br /&gt;                    else&lt;br /&gt;&lt;br /&gt;                        timer.minutes++;&lt;br /&gt;&lt;br /&gt;                }&lt;br /&gt;&lt;br /&gt;                else&lt;br /&gt;&lt;br /&gt;                    timer.seconds++;&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;            else&lt;br /&gt;&lt;br /&gt;                timer.milliSeconds = timer.milliSeconds+50;&lt;br /&gt;&lt;br /&gt;            if(timer.milliSeconds == 0)&lt;br /&gt;&lt;br /&gt;                milli.text = "000";&lt;br /&gt;&lt;br /&gt;            else&lt;br /&gt;&lt;br /&gt;                milli.text = timer.milliSeconds;&lt;br /&gt;&lt;br /&gt;            if(timer.seconds == 0)&lt;br /&gt;&lt;br /&gt;                second.text = "00";&lt;br /&gt;&lt;br /&gt;            if(timer.seconds &amp;lt; 10)&lt;br /&gt;&lt;br /&gt;                second.text = '0' + timer.seconds&lt;br /&gt;&lt;br /&gt;            else&lt;br /&gt;&lt;br /&gt;                second.text = timer.seconds;&lt;br /&gt;&lt;br /&gt;            if(timer.minutes == 0)&lt;br /&gt;&lt;br /&gt;                minute.text = "00";&lt;br /&gt;&lt;br /&gt;            if(timer.minutes &amp;lt; 10)&lt;br /&gt;&lt;br /&gt;                minute.text = '0' + timer.minutes;&lt;br /&gt;&lt;br /&gt;            else&lt;br /&gt;&lt;br /&gt;                minute.text = timer.minutes;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            if(timer.hours == 0)&lt;br /&gt;&lt;br /&gt;                hour.text = "00";&lt;br /&gt;&lt;br /&gt;            if(timer.hours &amp;lt; 10)&lt;br /&gt;&lt;br /&gt;                hour.text = '0' + timer.hours;&lt;br /&gt;&lt;br /&gt;            else&lt;br /&gt;&lt;br /&gt;                hour.text = timer.hours;&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="background-color: #d0e0e3;"&gt;Used QML component for NewLap&lt;/span&gt;: &lt;span style="color: #3d85c6;"&gt;NewLap.qml (Best viewed in Landscape view)&lt;/span&gt;&lt;br /&gt;&lt;span style="color: #3d85c6;"&gt;&amp;nbsp;&lt;/span&gt; &lt;span style="color: #3d85c6;"&gt; &lt;/span&gt; &lt;br /&gt;&lt;div style="background-color: peachpuff; height: 600px; overflow: auto; width: 99%;"&gt;&lt;pre&gt;import Qt 4.7&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; Rectangle {&lt;br /&gt;&lt;br /&gt;     property alias text: textItem.text&lt;br /&gt;&lt;br /&gt;     width: textItem.width + 4&lt;br /&gt;&lt;br /&gt;     height: 12&lt;br /&gt;&lt;br /&gt;     border.width: 1&lt;br /&gt;&lt;br /&gt;     radius: 5&lt;br /&gt;&lt;br /&gt;     smooth: true&lt;br /&gt;&lt;br /&gt;     opacity:0&lt;br /&gt;&lt;br /&gt;     gradient: Gradient {&lt;br /&gt;&lt;br /&gt;         GradientStop { position: 0.0; color: "darkGray" }&lt;br /&gt;&lt;br /&gt;         GradientStop { position: 0.5; color: "black" }&lt;br /&gt;&lt;br /&gt;         GradientStop { position: 1.0; color: "darkGray" }&lt;br /&gt;&lt;br /&gt;     }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;     Text {&lt;br /&gt;&lt;br /&gt;         id: textItem&lt;br /&gt;&lt;br /&gt;         anchors.centerIn: parent&lt;br /&gt;&lt;br /&gt;         smooth:true&lt;br /&gt;&lt;br /&gt;         color: "white"&lt;br /&gt;&lt;br /&gt;     }&lt;br /&gt;&lt;br /&gt; }&lt;br /&gt;&lt;/pre&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style="background-color: #d0e0e3;"&gt;Used QML component for NewLap&lt;/span&gt;: &lt;span style="color: #3d85c6;"&gt;NewLap.qml (Best viewed in Landscape view)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="background-color: peachpuff; height: 600px; overflow: auto; width: 99%;"&gt;&lt;pre&gt;import Qt 4.7&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; Rectangle {&lt;br /&gt;&lt;br /&gt;     property alias text: textItem.text&lt;br /&gt;&lt;br /&gt;     width: textItem.width + 4&lt;br /&gt;&lt;br /&gt;     height: 18&lt;br /&gt;&lt;br /&gt;     border.width: 1&lt;br /&gt;&lt;br /&gt;     radius: 5&lt;br /&gt;&lt;br /&gt;     smooth: true&lt;br /&gt;&lt;br /&gt;     opacity:0&lt;br /&gt;&lt;br /&gt;     gradient: Gradient {&lt;br /&gt;&lt;br /&gt;         GradientStop { position: 0.0; color: "darkGray" }&lt;br /&gt;&lt;br /&gt;         GradientStop { position: 0.5; color: "black" }&lt;br /&gt;&lt;br /&gt;         GradientStop { position: 1.0; color: "darkGray" }&lt;br /&gt;&lt;br /&gt;     }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;     Text {&lt;br /&gt;&lt;br /&gt;         id: textItem&lt;br /&gt;&lt;br /&gt;         anchors.centerIn: parent&lt;br /&gt;&lt;br /&gt;         smooth:true&lt;br /&gt;&lt;br /&gt;         color: "white"&lt;br /&gt;&lt;br /&gt;     }&lt;br /&gt;&lt;br /&gt; }&lt;br /&gt;&lt;/pre&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;The Javascript code&amp;nbsp; that has been used to create the application logic is just embedded into the QML code. It is a much simple program and I have done it right after my Hello World! program in QML. And thats the beauty of QML.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt; Additional Note:&lt;/b&gt;&lt;/u&gt;  &lt;br /&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;I have written it using the Qt version 4.7.0, but after Qt 4.7.1 you can use &lt;span style="background-color: #6fa8dc;"&gt;import QtQuick&lt;/span&gt; &lt;span style="background-color: #3d85c6;"&gt;1.0&lt;/span&gt; and thats recommended too.&lt;/li&gt;&lt;li&gt;Also, in this I have hardcoded the Animations for Buttons but its not necessary. You can use Behaviour, States or Transitions for the same effect with a much better &amp;amp; short code.&lt;/li&gt;&lt;li&gt;In the main.cpp file I have calculated the screen width and height to set the application output to full screen. I will show it in the next post.&lt;/li&gt;&lt;li&gt;As you can see, I have not hardcoded&amp;nbsp; most of the QML items width and height and most of its been relative to the screen size. So make thing look better I have created two versions of the same above QML files. One for a &lt;b&gt;Portrait&lt;/b&gt; view, and another for &lt;b&gt;Landscape&lt;/b&gt; view.&lt;/li&gt;&lt;li&gt;When the width of the screen is more, the QML file optimized for Landscape view is used. For example, in Nokia E Series mobiles, and vice versa.&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;iframe align="middle" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=1430231777&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;iframe align="middle" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=1849690324&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;iframe align="middle" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=0321635906&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;iframe align="middle" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=0132354160&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7314450340943444305-5440131938675027510?l=www.techieshome.in' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.techieshome.in/feeds/5440131938675027510/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.techieshome.in/2011/08/simple-application-in-qml-stop-watch.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/5440131938675027510'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/5440131938675027510'/><link rel='alternate' type='text/html' href='http://www.techieshome.in/2011/08/simple-application-in-qml-stop-watch.html' title='A simple application in QML - Stop Watch.'/><author><name>Raja</name><uri>http://www.blogger.com/profile/16429879169269790524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7314450340943444305.post-5952537454097666290</id><published>2011-08-26T01:31:00.000+05:30</published><updated>2011-11-17T00:35:26.129+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='batch'/><category scheme='http://www.blogger.com/atom/ns#' term='rename'/><category scheme='http://www.blogger.com/atom/ns#' term='python'/><title type='text'>Python file renamer!</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;Sometimes we may want to remove some common patterns from files. For example, if we download MP3 songs or music from a specific website, then all the file names will begin with that website name. This might create some irritation when searching for songs. The following snippet of Python can be used to rename files in directory and to remove common patterns from files.&lt;br /&gt;&lt;br /&gt;This is applicable to all types of files and just not limited to mp3 files.&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;span style="font-size: x-small;"&gt;&lt;b&gt;&lt;span style="color: #0b5394;"&gt;import os, array &lt;/span&gt;&lt;br style="color: #0b5394;" /&gt;&lt;span style="color: #0b5394;"&gt;files = os.listdir("D:\\Music") #The directory path of the files goes here&lt;/span&gt;&lt;br style="color: #0b5394;" /&gt;&lt;span style="color: #0b5394;"&gt;fnames = array.array('u') &lt;/span&gt;&lt;br style="color: #0b5394;" /&gt;&lt;span style="color: #0b5394;"&gt;fnames = files &lt;/span&gt;&lt;br style="color: #0b5394;" /&gt;&lt;span style="color: #0b5394;"&gt;#print fnames &lt;/span&gt;&lt;br style="color: #0b5394;" /&gt;&lt;span style="color: #0b5394;"&gt;#print files &lt;/span&gt;&lt;br style="color: #0b5394;" /&gt;&lt;span style="color: #0b5394;"&gt;for filename in fnames: &lt;/span&gt;&lt;br style="color: #0b5394;" /&gt;&lt;span style="color: #0b5394;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print filename &lt;/span&gt;&lt;br style="color: #0b5394;" /&gt;&lt;span style="color: #0b5394;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(filename.startswith("&amp;lt;text to remove&amp;gt;")): # The common pattern that you want to remove goes within the quotes&lt;/span&gt;&lt;br style="color: #0b5394;" /&gt;&lt;span style="color: #0b5394;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Found: " + filename &lt;/span&gt;&lt;br style="color: #0b5394;" /&gt;&lt;span style="color: #0b5394;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;a href="http://docs.python.org/library/os.html#os.rename" target="_blank"&gt;os.rename&lt;/a&gt;(filename,filename.replace(("&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size: x-small;"&gt;&lt;b&gt;&lt;span style="color: #0b5394;"&gt;&amp;lt;text to remove&amp;gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size: x-small;"&gt;&lt;b&gt;&lt;span style="color: #0b5394;"&gt;"),"&amp;lt;If left empty the pattern will be removed with remaining text a new filename, or type something to replace the common pattern&amp;gt;")) &lt;/span&gt;&lt;br style="color: #0b5394;" /&gt;&lt;span style="color: #0b5394;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Renamed to: " + filename.replace("_","") &lt;/span&gt;&lt;br style="color: #0b5394;" /&gt;&lt;span style="color: #0b5394;"&gt;&amp;nbsp;&lt;/span&gt;&lt;br style="color: #0b5394;" /&gt;&lt;span style="color: #0b5394;"&gt;print "Finished task"&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/blockquote&gt;This shows the simplicity of Python language and also its ability to achieve something tedious with much shorter codes. Although it lacks performance, it can be effectively used to write this kind of codes that will make our tasks easier.&lt;br /&gt;&lt;br /&gt;&lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=0321680561&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=1430216328&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=1435455002&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=1441437134&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7314450340943444305-5952537454097666290?l=www.techieshome.in' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.techieshome.in/feeds/5952537454097666290/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.techieshome.in/2011/08/python-file-renamer.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/5952537454097666290'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/5952537454097666290'/><link rel='alternate' type='text/html' href='http://www.techieshome.in/2011/08/python-file-renamer.html' title='Python file renamer!'/><author><name>Raja</name><uri>http://www.blogger.com/profile/16429879169269790524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7314450340943444305.post-4284804496324929131</id><published>2011-08-20T17:13:00.002+05:30</published><updated>2011-09-15T13:02:46.328+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='no target'/><category scheme='http://www.blogger.com/atom/ns#' term='qt sdk'/><category scheme='http://www.blogger.com/atom/ns#' term='remote compiler'/><category scheme='http://www.blogger.com/atom/ns#' term='creator'/><title type='text'>No targets found in Qt SDK Remote Compiler!</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;Sometimes you might have faced this problem, if you are using the Remote Compiler feature in the Linux version of Qt SDK. There will be no targets found in the Remote Compiler.&lt;br /&gt;&lt;br /&gt;&lt;iframe align="middle" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=B004IM5DOE&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=B004CJ4VQ4&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=0595154905&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=B00204MB6K&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;b style="color: red;"&gt;Solution:&amp;nbsp;&lt;/b&gt;&lt;br /&gt;&lt;b style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/b&gt;&lt;span style="color: red;"&gt;&lt;span style="color: black;"&gt;Make sure that you Linux machine is connected to the Internet before you open the Qt Creator IDE.&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: black;"&gt;If not, then close the Qt Creator and connect to the Internet. Now open the Qt Creator again.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&lt;span style="color: black;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; The same procedure may apply to Mac version of Qt SDK's Remote Compiler.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&lt;span style="color: black;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; Sometimes closing your simulator may also work.&amp;nbsp;&lt;/span&gt; &lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7314450340943444305-4284804496324929131?l=www.techieshome.in' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.techieshome.in/feeds/4284804496324929131/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.techieshome.in/2011/08/no-targets-found-in-qt-sdk-remote.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/4284804496324929131'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/4284804496324929131'/><link rel='alternate' type='text/html' href='http://www.techieshome.in/2011/08/no-targets-found-in-qt-sdk-remote.html' title='No targets found in Qt SDK Remote Compiler!'/><author><name>Raja</name><uri>http://www.blogger.com/profile/16429879169269790524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7314450340943444305.post-4545695940713909047</id><published>2011-07-27T07:03:00.002+05:30</published><updated>2011-08-28T23:34:04.754+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='qml'/><category scheme='http://www.blogger.com/atom/ns#' term='nokia'/><category scheme='http://www.blogger.com/atom/ns#' term='stop watch'/><category scheme='http://www.blogger.com/atom/ns#' term='qt'/><category scheme='http://www.blogger.com/atom/ns#' term='s60'/><category scheme='http://www.blogger.com/atom/ns#' term='symbian'/><category scheme='http://www.blogger.com/atom/ns#' term='maemo'/><title type='text'>My Second ever QML program! (A simple QML Program)</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;Since I have done my&amp;nbsp; final year project in Qt for Symbian, I have become a fan of Qt and QML. So I just wanted to try something in QML rather than Hello World! I always wanted to have a good Stop Watch in my mobile, so I just went straight away to right it in QML.&lt;br /&gt;&lt;br /&gt;It merely took around 12 hours for me to code this decent looking looking app, but I have written it immediately after my Hello World in QML. So after getting used to it, it won't be time consuming.&lt;br /&gt;&lt;br /&gt;I have published the app to OVI store, but I don't have the patience for it to get approved in the QA process, so I'm linking the packages here for you to try. The name says it all, download appropriate packages for your Symbian phone and Maemo.&lt;br /&gt;&lt;br /&gt;Note : Before that you have to install the necessary Qt packages, and it must be of the version Qt 4.7.0 or higher. Qt Mobility packages are not necessary.&lt;br /&gt;&lt;br /&gt;If you don't know what Qt and Qt Mobility packages are, then install the following package in your device. &lt;br /&gt;&lt;br /&gt;If you are already using Qt or QML apps on your device, then start downloading the appropriate package for your mobile phone.&lt;br /&gt;&lt;br /&gt;Update:&amp;nbsp; &lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;a href="http://www.techieshome.in/p/rr-stopwatch.html"&gt;To download SIS file!&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This is the self signed package for all devices like S60 V3 FP1, FP2, S60 V5, Symbian^3.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://uploading.com/files/4d6c7dbc/stopwatch_qt-4_7_0_m1_0_2_maemo5.deb/"&gt;stopwatch_qt-4_7_0_m1_0_2_maemo5.deb - 331.3 KB&lt;/a&gt;&lt;br /&gt;This is the Maemo 5 compatible Debian package. This package is not tested in real device. &lt;br /&gt;&lt;br /&gt;For shortcuts: &lt;b&gt;&lt;a href="http://www.techieshome.in/p/rr-stopwatch.html" style="color: #a64d79;"&gt;RR-StopWatch&lt;/a&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7314450340943444305-4545695940713909047?l=www.techieshome.in' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.techieshome.in/feeds/4545695940713909047/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.techieshome.in/2011/07/my-second-ever-qml-program.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/4545695940713909047'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/4545695940713909047'/><link rel='alternate' type='text/html' href='http://www.techieshome.in/2011/07/my-second-ever-qml-program.html' title='My Second ever QML program! (A simple QML Program)'/><author><name>Raja</name><uri>http://www.blogger.com/profile/16429879169269790524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7314450340943444305.post-4013592356919390004</id><published>2011-06-27T22:07:00.023+05:30</published><updated>2011-06-28T23:36:06.132+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='reasons'/><category scheme='http://www.blogger.com/atom/ns#' term='meego'/><category scheme='http://www.blogger.com/atom/ns#' term='why'/><category scheme='http://www.blogger.com/atom/ns#' term='apps'/><category scheme='http://www.blogger.com/atom/ns#' term='success'/><category scheme='http://www.blogger.com/atom/ns#' term='n9'/><title type='text'>Why Meego will be a success!</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;div class="wlWriterHeaderFooter" style="float: none; margin: 0px; padding: 4px 0px;"&gt;&lt;iframe frameborder="0" scrolling="no" src="http://www.facebook.com/widgets/like.php?href=http://www.techieshome.in/2011/06/why-meego-will-be-success.html" style="border: medium none; height: 50px; width: 400px;"&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;a href="https://meego.com/" target="_blank" title="Meego"&gt;&lt;img border="0" height="223" src="http://www.techdigest.tv/meego-021.jpg" style="background-image: none; border: 0px none; display: block; float: none; margin: 0px auto 5px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" width="444" /&gt;&lt;/a&gt;&lt;br /&gt;After 6 days from the launch of Nokia’s flagship model N9, I’m writing this post today (27-06-11)! Finally, Nokia fan boys could really stop scratching their heads about the much awaited Meego phone. Since, Feb 11, when Elop &lt;img alt="Devil" class="wlEmoticon wlEmoticon-devil" src="http://lh6.ggpht.com/-84KNalv9vk0/TgiyFBWlw3I/AAAAAAAAAIo/OQj16M1fMGM/wlEmoticon-devil2.png?imgmax=800" style="border-style: none; vertical-align: middle;" /&gt;, current CEO of Nokia has announced its partnership with Microsoft to use WP7 as its future smartphone OS, there had been a war happening about Nokia’s Meego Phone N9. &lt;br /&gt;&lt;br /&gt;Nokia fans and developers had showed their hateful in Nokia blogs and websites for dumping Meego OS and choosing WP7 as its primary OS &lt;img alt="Broken heart" height="15" src="http://lh3.ggpht.com/-xwgeoDBwMyI/TgiyGQ-leaI/AAAAAAAAAIs/e6JaaNKsopA/wlEmoticon-brokenheart6.png?imgmax=800" style="vertical-align: middle;" width="15" /&gt;, and why not I was one among them. I was a pure Windows user and fan of the same till I tried Ubuntu a year before. Although I have used Red Hat Linux during my twelfth grade (2007), the UI didn’t manage to attract me. But now, Ubuntu is my favourite OS because of its speed and the options that we have to customize its appearance, after all its free. Ok! Just wanted to tell my experience with Ubuntu and Windows.&lt;br /&gt;&lt;br /&gt;Now lets discuss about the child of Intel’s Moblin and Nokia’s Maemo, the Meego. As per the title of this post, this is going to be praising session for Meego rather than a discussion, of course I cannot discuss with myself.&lt;br /&gt;&lt;br /&gt;&lt;div&gt;Ok here we go,&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;h2&gt;Its Linux:&lt;/h2&gt;Lets differentiate things first. First of all, the major advantage is, its a Linux OS, and not a “Linux based OS”. So it is like any other Linux distribution, so no modified Kernel, no Virtual layers etc. This makes is different from Android, which is a Linux based OS.&lt;br /&gt;&lt;br /&gt;This means, we will have a lot more freedom than other Smart Phone operating systems like IOS, WP7, Web OS and Symbian. And why not?! it will have a slight benefit over Android too, because as it is like our PC Ubuntu or Redhat so we are already used to it in terms of usage. The Linux community can also use their existing knowledge with Ubuntu or RedHat to modify this new comer.&lt;br /&gt;&lt;br /&gt;I’m touching the support of PC Linux here, because Meego is not just limited to Smart Phones but also for Tablets and Vehicle infotainment systems. The WeTab is currently using this Meego platform and Big players like BMW and General Motors are committed to use Meego in their vehicle’s entertainment system.&lt;br /&gt;&lt;br /&gt;Linux is not just limited to these capabilities but a lot others are already known to us! So Meego might close the gap between PC Linux and Embedded Linux, which Moblin failed to does.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: #333333;"&gt;I have seen a comment in YouTube which stated &lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;Android is a wannabe Linux and Meego is real Linux&lt;/blockquote&gt;and eventually it got most users Thumbs UP!&lt;br /&gt;&lt;h2&gt;Power of Multi tasking:&lt;/h2&gt;As we have already witnessed the speed and power of Linux in PC, it is also the same with Meego. Its assumed that it can run 200 apps simultaneously. Remember, this time you don’t have to hold a key to switch between apps, just a swipe can do it. At the same time, the real time view of that application will be displayed in this view. This will surely make multitasking a cake walk for users.&lt;br /&gt;Maemo was also famous for this multitasking capability. View the video below if you don’t believe.&lt;br /&gt;&lt;div class="wlWriterSmartContent" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:f94e7a12-8b25-42a3-b418-920d701e89d7" style="display: inline; float: none; margin: 0px; padding: 0px;"&gt;&lt;div id="c65c73ef-6862-460a-a673-cbce4a206b1c" style="display: inline; margin: 0px; padding: 0px;"&gt;&lt;div&gt;&lt;a href="http://www.youtube.com/watch?v=7emvUBpEkbU" target="_new"&gt;&lt;img alt="" galleryimg="no" onload="var downlevelDiv = document.getElementById('c65c73ef-6862-460a-a673-cbce4a206b1c'); downlevelDiv.innerHTML = &amp;quot;&amp;lt;div&amp;gt;&amp;lt;object width=\&amp;quot;448\&amp;quot; height=\&amp;quot;252\&amp;quot;&amp;gt;&amp;lt;param name=\&amp;quot;movie\&amp;quot; value=\&amp;quot;http://www.youtube.com/v/7emvUBpEkbU?hl=en&amp;amp;hd=1\&amp;quot;&amp;gt;&amp;lt;\/param&amp;gt;&amp;lt;embed src=\&amp;quot;http://www.youtube.com/v/7emvUBpEkbU?hl=en&amp;amp;hd=1\&amp;quot; type=\&amp;quot;application/x-shockwave-flash\&amp;quot; width=\&amp;quot;448\&amp;quot; height=\&amp;quot;252\&amp;quot;&amp;gt;&amp;lt;\/embed&amp;gt;&amp;lt;\/object&amp;gt;&amp;lt;\/div&amp;gt;&amp;quot;;" src="http://lh3.ggpht.com/-pjtofCPN3P0/TgiyHxnXP2I/AAAAAAAAAJQ/vQluObLWfDY/video905402ee3cf2%25255B7%25255D.jpg?imgmax=800" style="border-style: none;" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="clear: both; font-size: 0.8em; width: 448px;"&gt;Maemo 5 Multi Tasking in action!&lt;/div&gt;&lt;/div&gt;I have also read some comments from frustrated Apple fans regarding this &lt;img alt="Winking smile" src="http://lh5.ggpht.com/-68CnY6HC3nQ/TgiyJW6DfAI/AAAAAAAAAI0/-_AgD9iMV68/wlEmoticon-winkingsmile2.png?imgmax=800" style="border-style: none; vertical-align: middle;" /&gt;, one guy stated&lt;br /&gt;&lt;blockquote&gt;Does Meego has 200 apps at all?&lt;/blockquote&gt;The answer for this comment is the next point.&lt;br /&gt;&lt;br /&gt;&lt;h2&gt;Its faster and faster:&lt;/h2&gt;Being overwhelmed by the announcement of Nokia N9, I could not help searching YouTube for every video about this phone. Eventually I didn't miss to read about the response from users. Some users has commented that, the Nokia N9’s CPU was out dated and slow. I really don’t know about whether&amp;nbsp; its CPU but if it is old as they said, then Meego is faster than any other OS in existence. &lt;br /&gt;&lt;br /&gt;I don’t understand the point of a modern CPU when it is already capable of running 200 apps at a time. Atleast 20 apps I believe! &lt;img alt="Smile with tongue out" class="wlEmoticon wlEmoticon-smilewithtongueout" src="http://lh4.ggpht.com/-k-iMobfFN7c/TgiyKOgvFbI/AAAAAAAAAI4/qvmgZMCR84Q/wlEmoticon-smilewithtongueout2.png?imgmax=800" style="border-style: none; vertical-align: middle;" /&gt;.&lt;br /&gt;&lt;img height="251" src="http://latestpriceindia.com/wp-content/uploads/2011/06/nokia-n91.jpg" style="display: block; float: none; margin: 0px auto 5px;" width="189" /&gt;&lt;br /&gt;The speed is because it is native and does not contains a virtual layer(&lt;img alt="Thinking smile" class="wlEmoticon wlEmoticon-thinkingsmile" src="http://lh4.ggpht.com/-hr1Fkb7ABAE/TgiyLZnKbvI/AAAAAAAAAI8/jA66Z6knXXY/wlEmoticon-thinkingsmile2.png?imgmax=800" style="border-style: none; vertical-align: middle;" /&gt;) as Android has. Neither it has a managed code environment as WP7 does.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;h2&gt;Apps from Linux, Mac, Windows and Symbian:&lt;/h2&gt;I’m not sure how many are writing apps for Mac and Windows using Qt, but if there is something, they can be quite easily to this platform with just a compilation. But I’m sure that there are decent amount of apps available for Linux which are developed using Qt, that can be installed right away into this platform. With enough libraries KDE apps can also run seamlessly, but may suffer to support touch gestures.&lt;br /&gt;&lt;br /&gt;With the announcement of Qt for Symbian in the year 2009, there is been a huge amount of interest shown by developers and users for creating apps in Qt and QML (Declarative language based on JavaScript, can be extended using Qt). Qt Mobility is an API used to access system based services like Messaging, Contacts, Sensors etc. is same for Symbian, Maemo and Meego, which is a huge advantage.&lt;br /&gt;&lt;br /&gt;And who knows, with a custom Wine, we may able to run Windows executables too.&lt;br /&gt;&lt;br /&gt;&lt;h2&gt;May emulate Android in future:&lt;/h2&gt;The only disadvantage that Meego&amp;nbsp; has is, the apps availability. Even though it will be&amp;nbsp; shipped with some featured applications, it may miss fun applications like we have in IOS and Android. To balance this, there is a group of people developing a Android emulation layer and its said that they can run Android apps seamlessly like native apps.&lt;br /&gt;&lt;br /&gt;If you think this is not possible, then the two points are for you:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Already, there is a similar kind of Android emulation layer for Black Berry!&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.slashgear.com/nokia-n9-android-app-support-promised-with-alien-dalvik-22160809/"&gt;Alien Dalvik&lt;/a&gt;, is already under development phase which can run a fair number of Android apps.&lt;/li&gt;&lt;/ol&gt;&lt;div class="wlWriterSmartContent" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:fb4f3c44-c6c4-4827-9da2-7199716daef6" style="display: inline; margin: auto;"&gt;&lt;div id="9e03a654-c29f-452c-914f-7137acd6497e" style="display: inline; margin: 0px; padding: 0px;"&gt;&lt;div&gt;&lt;a href="http://www.youtube.com/watch?v=7yp-1MdxfT8" target="_new"&gt;&lt;img alt="" galleryimg="no" onload="var downlevelDiv = document.getElementById('9e03a654-c29f-452c-914f-7137acd6497e'); downlevelDiv.innerHTML = &amp;quot;&amp;lt;div&amp;gt;&amp;lt;object width=\&amp;quot;448\&amp;quot; height=\&amp;quot;252\&amp;quot;&amp;gt;&amp;lt;param name=\&amp;quot;movie\&amp;quot; value=\&amp;quot;http://www.youtube.com/v/7yp-1MdxfT8?hl=en&amp;amp;hd=1\&amp;quot;&amp;gt;&amp;lt;\/param&amp;gt;&amp;lt;embed src=\&amp;quot;http://www.youtube.com/v/7yp-1MdxfT8?hl=en&amp;amp;hd=1\&amp;quot; type=\&amp;quot;application/x-shockwave-flash\&amp;quot; width=\&amp;quot;448\&amp;quot; height=\&amp;quot;252\&amp;quot;&amp;gt;&amp;lt;\/embed&amp;gt;&amp;lt;\/object&amp;gt;&amp;lt;\/div&amp;gt;&amp;quot;;" src="http://lh6.ggpht.com/-A2kgKJWvdrw/TgiyMr7jArI/AAAAAAAAAJU/vjC3Ql9UyaQ/videod6d5dc1a0122%25255B7%25255D.jpg?imgmax=800" style="border-style: none;" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="clear: both; font-size: 0.8em; width: 448px;"&gt;Myriad Alien Dalvik.&lt;/div&gt;&lt;/div&gt;&lt;h2&gt;Wide range of development options:&lt;/h2&gt;This is a huge advantage to both end users and also for developers, in my opinion. As a twelfth grade student I have used m-Shell scripts for my Symbian phone (Nokia 3230), so I think so will the other users will be privileged to have a variety of languages for their mobile. &lt;br /&gt;&lt;h4&gt;Python &amp;amp; PyQt:&lt;/h4&gt;Personally I love Python for some simple scripting and because of the amount of libraries it has. So even if you want to generate a list of number that ends with ‘9’ for your vehicle registration number, it wont be a problem.  PyQt is a Qt port for Python which is useful for both UI development and simple coding conventions, like Python. &lt;br /&gt;&lt;h4&gt;Standard C &amp;amp; C++:&lt;/h4&gt;I’m not sure with this programming option, but having said that it is a Linux, it should support&amp;nbsp; C &amp;amp; C++.  &lt;br /&gt;&lt;h4&gt;HTML5, JavaScript and CSS3:&lt;/h4&gt;Meego website says that, HTML5, JavaScript and CSS3 are used to developed games for Meego, so it wont be a problem to write apps too.&lt;br /&gt;&lt;br /&gt;&lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=1934356689&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt; &lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=0980846900&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt; &lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=0321687299&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt; &lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=0596806027&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;May be Silverlight:&lt;/h4&gt;Silver light is basically focussed on cross platform deployment, so in future Silver light may also be used to create games for Meego. Remember, we already have an open source implementation of Silverlight for PC Linux. &lt;br /&gt;&lt;div align="left"&gt;&lt;script type="text/javascript"&gt;try{var AdBrite_Iframe=window.top!=window.self?2:1;var AdBrite_Referrer=document.referrer==''?document.location:document.referrer;AdBrite_Referrer=encodeURIComponent(AdBrite_Referrer);}catch(e){var AdBrite_Iframe='';var AdBrite_Referrer='';}document.write(String.fromCharCode(60,83,67,82,73,80,84));document.write(' src="http://ads.adbrite.com/mb/text_group.php?sid=1966296&amp;br=1&amp;col=3&amp;ifr='+AdBrite_Iframe+'&amp;ref='+AdBrite_Referrer+'" type="text/javascript"&gt;');document.write(String.fromCharCode(60,47,83,67,82,73,80,84,62));&lt;/script&gt; &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;h2&gt;Qt &amp;amp; QML:&lt;/h2&gt;Here come the heroes (IMHO), Qt and QML are really the building blocks of Meego. This language deserves to be highlighted separately. I personally believe that Nokia Engineers are working hard to dig every possibility out Qt framework. Since last year, I believed C# was the best language &lt;img alt="Shifty" class="wlEmoticon wlEmoticon-shifty" src="http://lh3.ggpht.com/-t2tJ8zhqJjk/TgiyNjqER3I/AAAAAAAAAJE/RFjOKQn80ro/wlEmoticon-shifty2.png?imgmax=800" style="border-style: none; vertical-align: middle;" /&gt;.  With a recent project called &lt;a href="http://draft.blogger.com/labs.qt.nokia.com/category/labs/lighthouse/" target="_blank" title="Qt Lighthouse Project"&gt;Qt Lighthouse&lt;/a&gt;, the Qt Engineers have made the possibility of porting Qt to &amp;lt;any operating system&amp;gt;. And there is already a &lt;a href="http://code.google.com/p/android-lighthouse/" target="_blank" title="Qt port for Android Goole Project"&gt;Qt port for Android&lt;/a&gt; is available unofficially. A single guy could achieve this port within a year time. So this tells the story about Qt. You can also see the IOS port of Qt using the same Lighthouse project.&lt;br /&gt;&lt;br /&gt;I have read somewhere that editing the GUI for Android applications in XML (in 2011)&lt;img alt="Shifty" class="wlEmoticon wlEmoticon-shifty" src="http://lh3.ggpht.com/-t2tJ8zhqJjk/TgiyNjqER3I/AAAAAAAAAJE/RFjOKQn80ro/wlEmoticon-shifty2.png?imgmax=800" style="border-style: none; vertical-align: middle;" /&gt; is fair difficult and tiresome. So, I believe that, Qt and QML will be used by the Android developers hereafter. Again, with the cross platform capabilities they can target users from Symbian, Android, IOS and Meego environment for better profit. This symmetrically increases the number of Meego apps too.  QML is another story and it leverages the power of Qt C++ and the simplicity of JavaScript. If you do not know about this, just Google it, it has a lot of features and is very easy to create beautiful fluid and animated interfaces. Can be used for creating Games very easily.  &lt;br /&gt;&lt;h2&gt;Intel AppUp Store:&lt;/h2&gt;If you ask me about the success of IOS and Android, its highly because of the range of apps and games it have. Obviously, the touch interface of both OSs provide good environment for fun games. Apple has the most number of apps despite the irksome Objective-C is only because it provided a platform for developers to make money with their apps, AppStore. But the story with Android is different, here the number of Java developers in the world are relatively higher. In the past Nokia has not realised the importance of apps but lately came up with OVI store which became a huge success inspite of the number of apps being low.   But Intel has done things right right from the start by providing their SDKs and by awarding the best developer. So, it won’t be a big deal for Meego to get a streamline of developers, provided the nice Qt and QML languages. &lt;br /&gt;&lt;blockquote&gt;As already said, Apps for Meego = Apps from Symbian + Apps from PC Linux + Apps from Window &amp;amp; Mac + Apps from Android + HTML apps from Web OS and Web.&lt;/blockquote&gt;&lt;h2&gt;Its Open Source:&lt;/h2&gt;Last but not least, its open source. I know, open source merely is not a synonym to quality, but Meego seems to be a quality product. Even serious Nokia critics has said good things about Meego after the launch of Nokia N9, YouTube videos are flooded with appreciating comments from open source and Nokia lovers, Blogs are lined up with a lot of happy comments from users about this product.   An online petition called &lt;a href="http://twitition.com/3c3ah" target="_blank" title="Sign up here to make your petition."&gt;Twitition&lt;/a&gt; is also created by some Meego fans to get users support. If you feel like you are loving Meego for any reason, please &lt;a href="http://twitition.com/3c3ah" target="_blank" title="Sign up for Twitition"&gt;sign up here&lt;/a&gt; and don’t forget to spread this among your friends.&amp;nbsp; Let’s hope that Nokia regroups with Intel to produce god damn Meego mobile phones in the future and continue to support Linux and Open Source. &lt;br /&gt;&lt;div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:5cb50f2d-e009-4339-838f-655aa2269838" style="display: inline; float: none; margin: 0px; padding: 0px;"&gt;Technorati Tags: &lt;a href="http://technorati.com/tags/why" rel="tag"&gt;why&lt;/a&gt;,&lt;a href="http://technorati.com/tags/meego" rel="tag"&gt;meego&lt;/a&gt;,&lt;a href="http://technorati.com/tags/success" rel="tag"&gt;success&lt;/a&gt;,&lt;a href="http://technorati.com/tags/reasons" rel="tag"&gt;reasons&lt;/a&gt;,&lt;a href="http://technorati.com/tags/n9" rel="tag"&gt;n9&lt;/a&gt;,&lt;a href="http://technorati.com/tags/apps" rel="tag"&gt;apps&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7314450340943444305-4013592356919390004?l=www.techieshome.in' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.techieshome.in/feeds/4013592356919390004/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.techieshome.in/2011/06/why-meego-will-be-success.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/4013592356919390004'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/4013592356919390004'/><link rel='alternate' type='text/html' href='http://www.techieshome.in/2011/06/why-meego-will-be-success.html' title='Why Meego will be a success!'/><author><name>Raja</name><uri>http://www.blogger.com/profile/16429879169269790524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh6.ggpht.com/-84KNalv9vk0/TgiyFBWlw3I/AAAAAAAAAIo/OQj16M1fMGM/s72-c/wlEmoticon-devil2.png?imgmax=800' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7314450340943444305.post-4940274659238602943</id><published>2011-06-27T16:11:00.002+05:30</published><updated>2011-06-28T23:38:43.712+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='streaming'/><category scheme='http://www.blogger.com/atom/ns#' term='videos'/><category scheme='http://www.blogger.com/atom/ns#' term='download'/><category scheme='http://www.blogger.com/atom/ns#' term='metacafe'/><category scheme='http://www.blogger.com/atom/ns#' term='website'/><category scheme='http://www.blogger.com/atom/ns#' term='youtube'/><title type='text'>Download videos from any website.</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;div style="text-align: center;"&gt;&lt;img height="128" src="http://2.bp.blogspot.com/_1i7EX7a2ELY/TKczkHyEgUI/AAAAAAAAAY8/dOud9ZpEqfU/s400/Tux_FirefoxSyvolc.png" style="margin: 0px 0px 5px;" width="128" /&gt;&lt;img src="http://software.informaction.com/data/flashgot/logo.png" style="margin: 0px 0px 5px;" /&gt;&lt;/div&gt;I’ve been using this Firefox Add-on for almost two years and just now I have realised a number of articles describing “How to download from YouTube” is little useless. &lt;br /&gt;&lt;div align="left"&gt;&lt;script type="text/javascript"&gt;try{var AdBrite_Iframe=window.top!=window.self?2:1;var AdBrite_Referrer=document.referrer==''?document.location:document.referrer;AdBrite_Referrer=encodeURIComponent(AdBrite_Referrer);}catch(e){var AdBrite_Iframe='';var AdBrite_Referrer='';}document.write(String.fromCharCode(60,83,67,82,73,80,84));document.write(' src="http://ads.adbrite.com/mb/text_group.php?sid=1966296&amp;br=1&amp;col=3&amp;ifr='+AdBrite_Iframe+'&amp;ref='+AdBrite_Referrer+'" type="text/javascript"&gt;');document.write(String.fromCharCode(60,47,83,67,82,73,80,84,62)); &lt;/script&gt;&lt;/div&gt;Ok here it is, All we need is a &lt;a href="http://www.mozilla.com/en-US/firefox/new/" target="_blank"&gt;Firefox&lt;/a&gt; web browser and a minute to start downloading medias from web.&lt;br /&gt;If you don’t have this awesome browser, &lt;a href="http://www.mozilla.com/en-US/firefox/new/" target="_blank" title="Firefox"&gt;click here&lt;/a&gt; to download it. Choose a old version of this browser, say 3.6.xx for compatibility reasons.&lt;br /&gt;&lt;br /&gt;&lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=0596102437&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=0596009283&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=0131870041&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=0764596500&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt; &lt;br /&gt;&lt;br /&gt;After installing this, go to &lt;a href="http://www.mozilla.com/en-US/firefox/new/" target="_blank" title="Flashgot"&gt;this&lt;/a&gt; website and click on the install button on the left side of the page. Now you are ready to download anything from the world wide web. You can download anything that streams. &lt;br /&gt;In this Add-on options section you can select the download manager you prefer to download. So don’t hesitate to scan through its &lt;a href="http://flashgot.net/" target="_blank" title="Flashgot"&gt;options&lt;/a&gt;. You will love it.&lt;br /&gt;&lt;div align="left"&gt;&lt;script type="text/javascript"&gt;try{var AdBrite_Iframe=window.top!=window.self?2:1;var AdBrite_Referrer=document.referrer==''?document.location:document.referrer;AdBrite_Referrer=encodeURIComponent(AdBrite_Referrer);}catch(e){var AdBrite_Iframe='';var AdBrite_Referrer='';}document.write(String.fromCharCode(60,83,67,82,73,80,84));document.write(' src="http://ads.adbrite.com/mb/text_group.php?sid=1966296&amp;br=1&amp;col=3&amp;ifr='+AdBrite_Iframe+'&amp;ref='+AdBrite_Referrer+'" type="text/javascript"&gt;');document.write(String.fromCharCode(60,47,83,67,82,73,80,84,62)); &lt;/script&gt;&lt;/div&gt;&lt;div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:ecb4e9c3-d178-4f54-9c8a-373eb18c5b73" style="display: inline; float: none; margin: 0px; padding: 0px;"&gt;Technorati Tags: &lt;a href="http://technorati.com/tags/download" rel="tag"&gt;download&lt;/a&gt;,&lt;a href="http://technorati.com/tags/videos" rel="tag"&gt;videos&lt;/a&gt;,&lt;a href="http://technorati.com/tags/website" rel="tag"&gt;website&lt;/a&gt;,&lt;a href="http://technorati.com/tags/youtube" rel="tag"&gt;youtube&lt;/a&gt;,&lt;a href="http://technorati.com/tags/metacafe" rel="tag"&gt;metacafe&lt;/a&gt;,&lt;a href="http://technorati.com/tags/streaming" rel="tag"&gt;streaming&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7314450340943444305-4940274659238602943?l=www.techieshome.in' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.techieshome.in/feeds/4940274659238602943/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.techieshome.in/2011/06/download-videos-from-any-website.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/4940274659238602943'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/4940274659238602943'/><link rel='alternate' type='text/html' href='http://www.techieshome.in/2011/06/download-videos-from-any-website.html' title='Download videos from any website.'/><author><name>Raja</name><uri>http://www.blogger.com/profile/16429879169269790524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_1i7EX7a2ELY/TKczkHyEgUI/AAAAAAAAAY8/dOud9ZpEqfU/s72-c/Tux_FirefoxSyvolc.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7314450340943444305.post-2479122303601224183</id><published>2011-06-09T15:55:00.006+05:30</published><updated>2011-06-28T23:40:47.811+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='snake'/><category scheme='http://www.blogger.com/atom/ns#' term='game'/><category scheme='http://www.blogger.com/atom/ns#' term='youtube'/><title type='text'>New YouTube feature.</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;Watching videos in YouTube is always fun, but unfortunately for users who have low bandwidth will always have to wait for sometime. Recently, YouTube has come up with a new flash player designed for non-stop fun, because now we don’t have to wait for the video to load, mean while we can play the worlds most played game, “Snake”.&lt;br /&gt;&lt;br /&gt;To play the game while buffering, you just have to press any of the four arrow keys and the Snake will appear. For persons with little vision ability it will be tough to find the snake’s snack, but for others, its fun time buffering. Enjoy!&lt;br /&gt;&lt;br /&gt;&lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=0470459697&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=0745644791&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=0470149256&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=0813543010&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&amp;nbsp; &lt;br /&gt;&lt;br /&gt;&lt;div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:aac98721-f074-42ae-9c6f-98768982bc2e" style="display: inline; float: none; margin: 0px; padding: 0px;"&gt;Technorati Tags: &lt;a href="http://technorati.com/tags/youtube" rel="tag"&gt;youtube&lt;/a&gt;,&lt;a href="http://technorati.com/tags/snake" rel="tag"&gt;snake&lt;/a&gt;,&lt;a href="http://technorati.com/tags/new" rel="tag"&gt;new&lt;/a&gt;,&lt;a href="http://technorati.com/tags/feature" rel="tag"&gt;feature&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7314450340943444305-2479122303601224183?l=www.techieshome.in' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.techieshome.in/feeds/2479122303601224183/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.techieshome.in/2011/06/new-youtube-feature.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/2479122303601224183'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/2479122303601224183'/><link rel='alternate' type='text/html' href='http://www.techieshome.in/2011/06/new-youtube-feature.html' title='New YouTube feature.'/><author><name>Raja</name><uri>http://www.blogger.com/profile/16429879169269790524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7314450340943444305.post-3852086807856471447</id><published>2011-06-09T15:30:00.005+05:30</published><updated>2011-06-28T23:44:54.769+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='ns2'/><category scheme='http://www.blogger.com/atom/ns#' term='xgraph'/><category scheme='http://www.blogger.com/atom/ns#' term='installation'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='10.04'/><title type='text'>Easy way to install NS2 simulator in Ubuntu 10.04.</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;After a long time I’m posting this in my blog. For the project work of our final semester, we had to install NS2 in our Ubuntu 10.04 64-bit edition. After trying everything from the Internet, we finally have arrived at one simple solution to install NS2 simulator.&lt;br /&gt;&lt;br /&gt;Not just NS2, but XGraph also. I have searched &lt;a href="https://launchpad.net/" target="_blank" title="Launchpad"&gt;&lt;b&gt;Launchpad&lt;/b&gt;&lt;/a&gt; (an user community where various packages are built for various Ubuntu Versions), to find the built. You can also search the website to download other packages. Mostly built for both 64-bit and 32-bit architectures are available.&lt;br /&gt;&lt;br /&gt;Here is the link to download &lt;b&gt;&lt;a href="http://uploading.com/files/m3ffd645/NS2.zip/" target="_blank" title="Download NS2 Ubuntu 10.04 64 bit edition"&gt;NS2&lt;/a&gt; and &lt;a href="http://uploading.com/files/fbeeabe5/GCC%252C%2BXgraph.zip/" target="_blank"&gt;XGraph.&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;First install the &lt;i&gt;gcc 4.3 &lt;/i&gt;which is required package for NS2. Then install &lt;i&gt;XGraph&lt;/i&gt; and finally install &lt;i&gt;NS2.&lt;/i&gt;&lt;br /&gt;Go to this &lt;b&gt;&lt;a href="http://perform.wpi.edu/NS/simple_ns.html" target="_blank" title="Simple Network Simulation"&gt;link&lt;/a&gt;&lt;/b&gt; to download a simple TCL script for Network Simulation. To run the script go to the folder where it is saved in the Terminal and then type &lt;b&gt;ns &lt;i&gt;&amp;lt;script_name&amp;gt;&lt;/i&gt;.tcl. &lt;/b&gt;For some simulations that involve XGraph you have to do an extra step like executing the &lt;b&gt;nam.&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Its better to have an Internet connection to install dependencies if anything is missing. If some dependencies are reported missing, then copy the name exactly and use Google to search it.&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=0672333449&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&amp;nbsp; &lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=0132748509&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt; &lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=1430219998&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt; &lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=B004RYVI0Q&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7314450340943444305-3852086807856471447?l=www.techieshome.in' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.techieshome.in/feeds/3852086807856471447/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.techieshome.in/2011/06/easy-way-to-install-ns2-simulator-in.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/3852086807856471447'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/3852086807856471447'/><link rel='alternate' type='text/html' href='http://www.techieshome.in/2011/06/easy-way-to-install-ns2-simulator-in.html' title='Easy way to install NS2 simulator in Ubuntu 10.04.'/><author><name>Raja</name><uri>http://www.blogger.com/profile/16429879169269790524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7314450340943444305.post-1583062327530984077</id><published>2011-01-22T23:32:00.002+05:30</published><updated>2011-06-29T00:03:42.164+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='ccleaner'/><category scheme='http://www.blogger.com/atom/ns#' term='shutdown after cleaning'/><title type='text'>Clean Windows at night!</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;Non sense title.. huh!!&lt;br /&gt;&amp;nbsp;Well, because most of us would like to clean the unwanted files like browser cache, temporary internet files, recycled items, etc. before we got to sleep. To do this, you need not create anymore batch files, because CCleaner allows us to do that in a simple step.&lt;br /&gt;&lt;br /&gt;First of all download &lt;a href="http://www.piriform.com/ccleaner/download"&gt;CCleaner&lt;/a&gt; and install it with default options. Now open CCleaner by right clicking on the Recycle Bin. Choose Options --&amp;gt; Settings --&amp;gt; Check "&lt;b&gt;Add Run CCleaner option to Recycle Bin context Menu". &lt;/b&gt;&lt;br /&gt;Close the window and right click on the Recycle Bin and select "&lt;b&gt;Run CCleaner&lt;/b&gt;" &lt;b&gt;.&lt;/b&gt;&lt;br /&gt;Look at the &lt;b&gt;Taskbar Notification Area &lt;/b&gt;to find&amp;nbsp; this icon &lt;img src="http://3.bp.blogspot.com/_eppwqXdvX24/TTsbEqY9QCI/AAAAAAAAAHI/FvaP_AZs1CM/s1600/Capture.PNG" /&gt;. Right click on the icon and select "Shutdown after cleaning".&lt;br /&gt;This will shutdown your computer after the cleaning has been completed and even close unresponsive programs. &lt;/div&gt;&lt;br /&gt;&lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=B0040GL47S&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=B000WMUHEU&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=B002NX0N0O&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=techhome-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=B002QPYH8S&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7314450340943444305-1583062327530984077?l=www.techieshome.in' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.techieshome.in/feeds/1583062327530984077/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.techieshome.in/2011/01/clean-windows-at-night.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/1583062327530984077'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/1583062327530984077'/><link rel='alternate' type='text/html' href='http://www.techieshome.in/2011/01/clean-windows-at-night.html' title='Clean Windows at night!'/><author><name>Raja</name><uri>http://www.blogger.com/profile/16429879169269790524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_eppwqXdvX24/TTsbEqY9QCI/AAAAAAAAAHI/FvaP_AZs1CM/s72-c/Capture.PNG' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7314450340943444305.post-6732660963889278685</id><published>2011-01-21T19:06:00.000+05:30</published><updated>2011-01-21T19:06:49.882+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='schedule windows shutdown'/><category scheme='http://www.blogger.com/atom/ns#' term='shutdown remote computer'/><title type='text'>Create your own shutdown timer.</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;Windows DOS has&amp;nbsp;a &lt;b&gt;shutdown&lt;/b&gt; command which can be used as a shutdown timer,&amp;nbsp;as per our time requirements. It can be used for other functions like Logging off, Restarting etc.&lt;br /&gt;&lt;br /&gt;Another pranky feature of this commend is, it allows you to shutdown remote computers. But remember, the remote computer you are trying to shutdown should be running with administrative privileges or the remote shutdown facility should not have been disabled.&lt;br /&gt;&lt;br /&gt;Syntax:&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: #cc0000;"&gt;shutdown -s -t "number of seconds to shutdown"&lt;/span&gt; (without quotes)&lt;br /&gt;&amp;nbsp;&lt;br /&gt;Example:&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color: #cc0000;"&gt;shutdown -s -t 120&lt;/span&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [This will shutdown your computer within 120 seconds]&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; To shutdown a remote computer which is present on the same network enter &lt;b&gt;shutdown -s -m 192.168.1.10 -t 100.&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/b&gt;To abort a scheduled shutdown enter &lt;b&gt;shutdown -a&lt;/b&gt;&amp;nbsp;&lt;b&gt; &lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=ravi4frenz&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=0596157622&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;br /&gt;The &lt;b&gt;-s&lt;/b&gt; parameter in the command specifies that it is going to shutdown the computer. Likewise you can use &lt;b&gt;-r &lt;/b&gt;option to restart and&amp;nbsp; &lt;b&gt;-l &lt;/b&gt;to logoff.&lt;br /&gt;&lt;br /&gt;Type &lt;b&gt;shutdown /help &lt;/b&gt;to see a list of options that you can use with &lt;b&gt;shutdown &lt;/b&gt;command for different purposes.&lt;br /&gt;&lt;br /&gt;Hint:&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Type &lt;b&gt;shutdown -i&lt;/b&gt; to get a GUI window to do your task easily.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7314450340943444305-6732660963889278685?l=www.techieshome.in' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.techieshome.in/feeds/6732660963889278685/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.techieshome.in/2011/01/create-your-own-shutdown-timer.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/6732660963889278685'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/6732660963889278685'/><link rel='alternate' type='text/html' href='http://www.techieshome.in/2011/01/create-your-own-shutdown-timer.html' title='Create your own shutdown timer.'/><author><name>Raja</name><uri>http://www.blogger.com/profile/16429879169269790524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7314450340943444305.post-5119055142200204967</id><published>2011-01-17T17:04:00.000+05:30</published><updated>2011-01-17T17:04:49.602+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='windows 7'/><category scheme='http://www.blogger.com/atom/ns#' term='connections'/><category scheme='http://www.blogger.com/atom/ns#' term='remove'/><title type='text'>Delete unwanted network connectionsin Windows 7.</title><content type='html'>Are you constantly using different Wifi access points and mobiles or modems with your Windows 7 to connect to Internet? Then you might probably have the problem of having unwanted connections in your Network Connections list. Searching through the control panel will not give you the solution like we have in our beloved Windows XP.&lt;br /&gt;&lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=ravi4frenz&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=B002NX0N0O&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;br /&gt;Rather it's here:&lt;br /&gt;&lt;b style="color: red;"&gt;&lt;span style="color: black;"&gt;Click &lt;/span&gt;Start-&amp;gt;&lt;span style="color: black;"&gt; (Type) &lt;/span&gt;View Network Connections&lt;span style="color: black;"&gt; (in the Search box)&lt;/span&gt;-&amp;gt;&lt;span style="color: black;"&gt; Select the unnecessary connections and press &lt;/span&gt;Del. &lt;/b&gt;&lt;br /&gt;Now you have cleared the list :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7314450340943444305-5119055142200204967?l=www.techieshome.in' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.techieshome.in/feeds/5119055142200204967/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.techieshome.in/2011/01/delete-unwanted-network-connectionsin.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/5119055142200204967'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/5119055142200204967'/><link rel='alternate' type='text/html' href='http://www.techieshome.in/2011/01/delete-unwanted-network-connectionsin.html' title='Delete unwanted network connectionsin Windows 7.'/><author><name>Raja</name><uri>http://www.blogger.com/profile/16429879169269790524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7314450340943444305.post-5436332014787282261</id><published>2010-12-29T22:56:00.010+05:30</published><updated>2011-01-26T17:20:03.261+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='nokia'/><category scheme='http://www.blogger.com/atom/ns#' term='e63'/><category scheme='http://www.blogger.com/atom/ns#' term='tips'/><title type='text'>Ten useful Nokia E63 tips!</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;style type="text/css"&gt;li {margin-bottom: 20px;}&lt;/style&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Switch between full screen and normal mode in real player by pressing &lt;b&gt;Space key.&lt;/b&gt;&lt;/li&gt;&lt;li&gt;If you want to play videos without audio every time, then select &lt;b&gt;Mute &lt;/b&gt;from real player options. So it will be mute whenever you play the videos unless you change it manually.&amp;nbsp; &lt;/li&gt;&lt;li&gt;To save a received message into notes then open the message and press &lt;b&gt;Shift + Delete&lt;/b&gt;.&lt;/li&gt;&lt;li&gt;You can use the *, +, /, = in the keypad directly while using the calculator.&amp;nbsp; &lt;/li&gt;&lt;li&gt;If you wish not to use the &lt;b&gt;navi key&lt;/b&gt; then you can navigate to any application in menu by pressing the &lt;b&gt;Function key &lt;/b&gt;(left bottom key) and the &lt;b&gt;appropriate number &amp;amp;&amp;nbsp; symbol keys.&lt;/b&gt;&lt;/li&gt;&lt;li&gt;Turn &lt;b&gt;Predictive texting on and off &lt;/b&gt;by pressing the &lt;b&gt;ctrl + shift&lt;/b&gt; keys.&lt;/li&gt;&lt;li&gt;The enter key is equivalent to pressing the Joystick center button. You can open any applications by using the &lt;b&gt;Enter key.&lt;/b&gt;&lt;/li&gt;&lt;li&gt;Switch between &lt;b&gt;General and Silent profile &lt;/b&gt;by pressing and holding the &lt;b&gt;# &lt;/b&gt;key in the home screen.&lt;/li&gt;&lt;li&gt;Assign your favorite applications to the one touch keys for easy access.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/li&gt;&lt;li&gt;Download &lt;a href="http://betalabs.nokia.com/apps/nokia-custom-dictionary"&gt;Nokia's custom dictionary&lt;/a&gt; for deleting wrongly typed words with Dictionary mode on. That can also be used to take a backup of your frequently used and newly typed words. You can also add new words by importing them with a text file. &amp;nbsp;&lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=ravi4frenz&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=B00212HNA0&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt; &lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7314450340943444305-5436332014787282261?l=www.techieshome.in' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.techieshome.in/feeds/5436332014787282261/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.techieshome.in/2010/12/ten-useful-nokia-e63-tips.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/5436332014787282261'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/5436332014787282261'/><link rel='alternate' type='text/html' href='http://www.techieshome.in/2010/12/ten-useful-nokia-e63-tips.html' title='Ten useful Nokia E63 tips!'/><author><name>Raja</name><uri>http://www.blogger.com/profile/16429879169269790524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7314450340943444305.post-5838866170173883051</id><published>2010-12-29T22:29:00.000+05:30</published><updated>2010-12-29T22:29:42.539+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='icon'/><category scheme='http://www.blogger.com/atom/ns#' term='qtoolbutton'/><category scheme='http://www.blogger.com/atom/ns#' term='qpushbutton'/><title type='text'>Adding an Icon to QPushButton.</title><content type='html'>It is very simple to add an icon to the QPushButton. To add an icon just place a QPushButton into the QMainWindow area and in the right bottom corner under the QPushButton properties select the icon and choose &lt;b&gt;Select File &lt;/b&gt;to select an icon.&lt;br /&gt;&lt;br /&gt;Do not worry about the size of your image file since it will be automatically re-sized to 16x16.&lt;br /&gt;&lt;b&gt;Note:&lt;/b&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The maximum size of icon that can be set in a QPushButton is 16x16. If you want to set a bigger size then you have to use QToolButton or do some inheritance with QPushButton and override the default icon size settings.&lt;br /&gt;&lt;br /&gt;You can also add some css styles to enhance the look of your application.&lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=ravi4frenz&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=0321635906&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7314450340943444305-5838866170173883051?l=www.techieshome.in' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.techieshome.in/feeds/5838866170173883051/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.techieshome.in/2010/12/adding-icon-to-qpushbutton.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/5838866170173883051'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/5838866170173883051'/><link rel='alternate' type='text/html' href='http://www.techieshome.in/2010/12/adding-icon-to-qpushbutton.html' title='Adding an Icon to QPushButton.'/><author><name>Raja</name><uri>http://www.blogger.com/profile/16429879169269790524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7314450340943444305.post-9057989077423606197</id><published>2010-09-01T01:35:00.000+05:30</published><updated>2010-09-01T01:35:21.875+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Mobile phone'/><category scheme='http://www.blogger.com/atom/ns#' term='laptop'/><category scheme='http://www.blogger.com/atom/ns#' term='FileUpload'/><category scheme='http://www.blogger.com/atom/ns#' term='wifi'/><category scheme='http://www.blogger.com/atom/ns#' term='iis'/><title type='text'></title><content type='html'>In the last post we have seen how to send files (downloading) from laptop to mobile phone using wifi. Now we are going to learn how to send files (uploading) from mobile phones to laptop.&lt;br /&gt;If you haven't read my last post then you have to read it to setup the laptop and&lt;br /&gt;mobile to further proceed the steps in this post.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;h2&gt;Sending Files From Mobile To Laptop Using Wifi:&lt;/h2&gt;In this actual process we are going to place three files inside the IIS server root folder for uploading our content to laptop. &lt;a href="https://freefileserver.com/file/655/Extract-and-place-the-files-in-wwwroot-folder-zip.html" target="_blank" title="Click here"&gt;Click here&lt;/a&gt; to download the files. After you have downloaded the files extract them and place them in the folder path &lt;u&gt;"C:\Inetpub\wwwroot"&lt;/u&gt;, then as usual do the steps &lt;a href="http://techies-home.blogspot.com/2010/08/transfer-files-using-wifi-in-nokia.html" target="_blank"&gt;(from the previous post) &lt;/a&gt; to connect to laptop and type the link as &lt;b&gt;http://192.168.1.15/FileUpload.aspx&lt;/b&gt; then follow the screen shots provided below to upload your file to your laptop successfully.&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://a.imageshack.us/img696/640/screenshot0022e.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://a.imageshack.us/img696/640/screenshot0022e.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://a.imageshack.us/img833/5026/screenshot0023.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://a.imageshack.us/img833/5026/screenshot0023.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://a.imageshack.us/img594/1103/screenshot0027.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://a.imageshack.us/img594/1103/screenshot0027.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://a.imageshack.us/img576/8005/screenshot0031.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://a.imageshack.us/img576/8005/screenshot0031.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://img831.imageshack.us/i/screenshot0021.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://img831.imageshack.us/i/screenshot0021.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;br /&gt;&lt;br /&gt;Tip: &lt;/div&gt;1. The file will be saved in "C:\temp" folder. If you like to change the folder, open the FileUpload.aspx.cs file in Notepad and find the line &lt;b&gt;File.SaveAs(@"C:\temp",FileUpload1.FileName); &lt;/b&gt;and change it as follows &lt;b&gt;File.SaveAs(@"Your desired complete folder path (with drive name)",FileUpload.FileName);&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt; &lt;/b&gt;2. You must have installed .NET framework for this procedure to work. &lt;a href="http://filehippo.com/download_dotnet_framework_3/" target="_blank"&gt;Click here&lt;/a&gt; to download .NET framework 3.5. You can also download the latest version of .NET if you prefer so.&lt;br /&gt;&lt;div class="zemanta-pixie" style="height: 15px; margin-top: 10px;"&gt;&lt;a class="zemanta-pixie-a" href="http://www.zemanta.com/" title="Enhanced by Zemanta"&gt;&lt;img alt="Enhanced by Zemanta" class="zemanta-pixie-img" src="http://img.zemanta.com/zemified_e.png?x-id=6b280439-4704-496d-9252-3a8a63dc8a21" style="border: medium none; float: right;" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7314450340943444305-9057989077423606197?l=www.techieshome.in' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.techieshome.in/feeds/9057989077423606197/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.techieshome.in/2010/09/in-last-post-we-have-seen-how-to-send.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/9057989077423606197'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/9057989077423606197'/><link rel='alternate' type='text/html' href='http://www.techieshome.in/2010/09/in-last-post-we-have-seen-how-to-send.html' title=''/><author><name>Raja</name><uri>http://www.blogger.com/profile/16429879169269790524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7314450340943444305.post-7755287258582135347</id><published>2010-08-26T22:27:00.009+05:30</published><updated>2010-08-29T15:31:32.648+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='files'/><category scheme='http://www.blogger.com/atom/ns#' term='transfer'/><category scheme='http://www.blogger.com/atom/ns#' term='laptop'/><category scheme='http://www.blogger.com/atom/ns#' term='nokia'/><category scheme='http://www.blogger.com/atom/ns#' term='wifi'/><title type='text'>Transfer files using Wifi in Nokia mobile phone.</title><content type='html'>&lt;div class="wlWriterHeaderFooter" style="float: none; margin: 0px; padding: 4px 0px;"&gt;&lt;iframe frameborder="0" scrolling="no" src="http://www.facebook.com/widgets/like.php?href=http://techies-home.blogspot.com/2010/08/transfer-files-using-wifi-in-nokia.html" style="border: medium none; height: 80px; width: 450px;"&gt;&lt;/iframe&gt;&lt;/div&gt;Many of us have the idea of transferring files between Laptop and Mobile phone using wifi connection, but it is not possible to do that directly. So we are going to do some tricks and gonna make it happen.&lt;br /&gt;I am going to describe the steps using my mobile phone Nokia E63 and Laptop running Windows 7 Operating system. However other wifi enabled mobile phones and iPods will also be working.&lt;br /&gt;&lt;b&gt;Initially, we need the following:&lt;/b&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;span style="background-color: white; color: #afb4a9;"&gt;1.Obviously, a wifi enabled mobile phone (say Nokia E63)&lt;/span&gt;&lt;br /&gt;&lt;span style="background-color: white; color: #afb4a9;"&gt;2. Laptop (In this post I’m using Windows 7 Home Premium operating system)&lt;/span&gt;&lt;br /&gt;&lt;span style="background-color: white; color: #afb4a9;"&gt;3. Web Server software. (IIS or Apache. In this post I’m using IIS 7.0 Web Server)&lt;/span&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;b&gt;Setting up the IIS Web Server:&lt;/b&gt;&lt;br /&gt;&lt;div align="left"&gt;To setup the IIS Web Server you need either Windows XP Professional edition or Windows 7(any version except ‘Home Basic’). Here I’m going to show&amp;nbsp; you how to install IIS Web Server in Windows 7 Home Premium.&lt;/div&gt;&lt;div align="left"&gt;Open &lt;b&gt;Control Panel—&amp;gt; Programs And Features&lt;a href="http://lh5.ggpht.com/_eppwqXdvX24/THab1wLjV4I/AAAAAAAAAFE/iGPAm_utHmg/s1600-h/Programsandfeatures5.png"&gt;&lt;img alt="Programs and features" border="0" height="52" src="http://lh4.ggpht.com/_eppwqXdvX24/THab4w1uj5I/AAAAAAAAAFI/EqleWWcH4G8/Programsandfeatures_thumb3.png?imgmax=800" style="border-width: 0px; display: inline;" title="Programs and features" width="185" /&gt;&lt;/a&gt; –&amp;gt; Turn Windows Feature on or off&lt;a href="http://lh6.ggpht.com/_eppwqXdvX24/THab6eCahFI/AAAAAAAAAFM/FHjLFmqfZiU/s1600-h/TurnProgramFeaturesOnorOff4.png"&gt;&lt;img alt="Turn Program Features On or Off" border="0" height="49" src="http://lh5.ggpht.com/_eppwqXdvX24/THab77h3e5I/AAAAAAAAAFQ/1p_gsBkBFVg/TurnProgramFeaturesOnorOff_thumb2.png?imgmax=800" style="border-width: 0px; display: inline;" title="Turn Program Features On or Off" width="180" /&gt;&lt;/a&gt; .&lt;/b&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;b&gt;&lt;/b&gt;&lt;/div&gt;&lt;div align="left"&gt;A new dialog box will be opened. In that select &lt;b&gt;Internet Information Services &lt;/b&gt;and click ok and wait while Windows installs IIS Server in your machine.&lt;/div&gt;&lt;div align="left"&gt;&lt;a href="http://lh6.ggpht.com/_eppwqXdvX24/THacAHfDDeI/AAAAAAAAAFU/AnTMkZ0nlpQ/s1600-h/WindowsFeatures7.png"&gt;&lt;img alt="Windows Features" border="0" height="387" src="http://lh6.ggpht.com/_eppwqXdvX24/THacCcJyLMI/AAAAAAAAAFY/McgMN0Mwcxk/WindowsFeatures_thumb5.png?imgmax=800" style="border-width: 0px; display: block; float: none; margin-left: auto; margin-right: auto;" title="Windows Features" width="435" /&gt;&lt;/a&gt; &lt;/div&gt;&lt;div align="left"&gt;Now IIS is installed successfully.&lt;/div&gt;&lt;div align="left"&gt;&lt;b&gt;Setting up the Ad Hoc network:&lt;/b&gt;&lt;/div&gt;&lt;div align="left"&gt;Now we have to setup the Ad Hoc network on our laptop.&lt;/div&gt;&lt;div align="left"&gt;Open &lt;b&gt;Control panel—&amp;gt; Network and Sharing Centre &lt;/b&gt;&lt;a href="http://lh5.ggpht.com/_eppwqXdvX24/THacFBD-mrI/AAAAAAAAAFc/fkkmUYg3RqQ/s1600-h/NetworkSharingCenter3.png"&gt;&lt;b&gt;&lt;img alt="Network Sharing Center" border="0" height="60" src="http://lh3.ggpht.com/_eppwqXdvX24/THacGmQ6T-I/AAAAAAAAAFg/69d665pYW8A/NetworkSharingCenter_thumb1.png?imgmax=800" style="border-width: 0px; display: inline;" title="Network Sharing Center" width="185" /&gt;&lt;/b&gt;&lt;/a&gt;&lt;b&gt; --&amp;gt; Setup new connection or network&lt;a href="http://lh4.ggpht.com/_eppwqXdvX24/THacHvXv5JI/AAAAAAAAAFk/4s5zcxP4f2M/s1600-h/SetupNewAdhocNetwork3.png"&gt;&lt;img alt="Setup New Adhoc Network" border="0" height="67" src="http://lh4.ggpht.com/_eppwqXdvX24/THacI31aLfI/AAAAAAAAAFo/gd_N3hE8yU0/SetupNewAdhocNetwork_thumb1.png?imgmax=800" style="border-width: 0px; display: inline;" title="Setup New Adhoc Network" width="100%" /&gt;&lt;/a&gt; .&lt;/b&gt;&lt;/div&gt;&lt;div align="left"&gt;In the new dialog window &lt;b&gt;select setup a new network &lt;/b&gt;it will take some time to show the details. Then select the appropriate option to setup a ad hoc network with default values.&lt;/div&gt;&lt;div align="left"&gt;&lt;b&gt;Configuring the website:&lt;/b&gt;&lt;/div&gt;&lt;div align="left"&gt;To configure the website we need to do little work here. Open &lt;b&gt;Control Panel—&amp;gt; Administrative Tools—&amp;gt; Internet Information Services (IIS) Manager.&lt;/b&gt;&lt;/div&gt;&lt;div align="left"&gt;In the new windows that appears select the website under &lt;b&gt;connections pane—&amp;gt; sites &lt;/b&gt;under that select your web site by double clicking it.&lt;/div&gt;&lt;div align="left"&gt;On the right pane select &lt;b&gt;Bindings &lt;/b&gt;and click &lt;b&gt;Add. &lt;/b&gt;Now select &lt;b&gt;http &lt;/b&gt;as type and in the &lt;b&gt;IP Address &lt;/b&gt;field put some ip address like &lt;b&gt;192.168.1.15 &lt;/b&gt;and leave the &lt;b&gt;Port &lt;/b&gt;as &lt;b&gt;80. &lt;/b&gt;Leave the &lt;b&gt;Host Name &lt;/b&gt;field empty and click Ok and click Close to return back to main window.&lt;/div&gt;&lt;div align="left"&gt;In the right pane under &lt;b&gt;Manage Website &lt;/b&gt;select &lt;b&gt;Restart. &lt;/b&gt;Now you will see something like this &lt;a href="http://lh6.ggpht.com/_eppwqXdvX24/THacL5Q0mxI/AAAAAAAAAFs/gghGQjzZcH0/s1600-h/BrowseSite5.png"&gt;&lt;img alt="Browse Site" border="0" height="53" src="http://lh4.ggpht.com/_eppwqXdvX24/THacNFshpaI/AAAAAAAAAFw/IVPLN_5CQX0/BrowseSite_thumb1.png?imgmax=800" style="border-width: 0px; display: inline;" title="Browse Site" width="179" /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp; . Now click on &lt;b&gt;Browse 192.168.1.15:80 (http) &lt;/b&gt;to check the whether the website is working correctly.&amp;nbsp; It will open your web browser and show the &lt;b&gt;Welcome Page or IIS 7 Page.&lt;/b&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;b&gt;Configuring the firewall in Laptop:&lt;/b&gt;&lt;/div&gt;&lt;div align="left"&gt;Open &lt;b&gt;Control Panel—&amp;gt; Windows Firewall.&lt;/b&gt;&lt;/div&gt;&lt;div align="left"&gt;In the new window select &lt;b&gt;Allow a program or feature through Windows Firewall &lt;/b&gt;option.&lt;/div&gt;&lt;div align="left"&gt;&lt;a href="http://lh3.ggpht.com/_eppwqXdvX24/THacOU0PimI/AAAAAAAAAF0/4iMJZdNdFrQ/s1600-h/FirewallPrograms2.png"&gt;&lt;img alt="Firewall Programs" border="0" height="48" src="http://lh5.ggpht.com/_eppwqXdvX24/THacS2nvpfI/AAAAAAAAAF4/8YCQayz_Zq4/FirewallPrograms_thumb.png?imgmax=800" style="border-width: 0px; display: block;" title="Firewall Programs" width="204" /&gt;&lt;/a&gt; &lt;/div&gt;&lt;div align="left"&gt;It will open a new dialog window select &lt;b&gt;World Wide Web Services (HTTP) &lt;/b&gt;select &lt;b&gt;Change Settings &lt;/b&gt;and select the &lt;b&gt;Home/Work(private) and Public Check box &lt;/b&gt;and click Ok.&lt;/div&gt;&lt;div align="left"&gt;&lt;a href="http://lh5.ggpht.com/_eppwqXdvX24/THacUkJk-fI/AAAAAAAAAF8/YgUxWqDjIcA/s1600-h/WindowsFirewallIISallowing9.png"&gt;&lt;img alt="Windows Firewall IIS allowing" border="0" height="456" src="http://lh3.ggpht.com/_eppwqXdvX24/THacYpbqgAI/AAAAAAAAAGA/lhHE9s4bVOw/WindowsFirewallIISallowing_thumb7.png?imgmax=800" style="border-width: 0px; display: block; width: 100%" title="Windows Firewall IIS allowing" /&gt;&lt;/a&gt; &lt;/div&gt;&lt;div align="left"&gt;&lt;b&gt;Configuring the connection for mobile phone:&lt;/b&gt;&lt;/div&gt;&lt;div align="left"&gt;Now click on the &lt;b&gt;Wireless Networks&lt;/b&gt; icon in the &lt;b&gt;System Tray &lt;/b&gt;&lt;a href="http://lh4.ggpht.com/_eppwqXdvX24/THacZ7SqYuI/AAAAAAAAAGE/nGAWSQBUCtM/s1600-h/WirelessIcon2.png"&gt;&lt;b&gt;&lt;img alt="Wireless Icon" border="0" height="33" src="http://lh6.ggpht.com/_eppwqXdvX24/THacbd9imcI/AAAAAAAAAGI/CvoC6btupL4/WirelessIcon_thumb.png?imgmax=800" style="border-width: 0px; display: inline;" title="Wireless Icon" width="33" /&gt;&lt;/b&gt;&lt;/a&gt;&lt;b&gt;&amp;nbsp; &lt;/b&gt;and select the Ad hoc network you have created. In this example the Ad hoc network name is &lt;b&gt;Dell Raja. &lt;/b&gt;Now click connect.&lt;a href="http://lh5.ggpht.com/_eppwqXdvX24/THacgkhcv1I/AAAAAAAAAGM/YHgJkt86p80/s1600-h/DellRajaAP3.png"&gt;&lt;img alt="Dell Raja AP" border="0" height="411" src="http://lh6.ggpht.com/_eppwqXdvX24/THacllw1H9I/AAAAAAAAAGQ/Q_Y_-_8b5Zg/DellRajaAP_thumb1.png?imgmax=800" style="border-width: 0px; display: inline;" title="Dell Raja AP" width="300" /&gt;&lt;/a&gt; &lt;/div&gt;Now scan for wireless access point in mobile and select &lt;b&gt;Start Browsing. &lt;/b&gt;In the web browser type in the &lt;b&gt;IP Address &lt;/b&gt;you have given for the website, in our example &lt;b&gt;192.168.1.15. &lt;/b&gt;After getting connected to the Ad hoc network right click and select the &lt;b&gt;status &lt;/b&gt;in the new dialog window select &lt;b&gt;Properties &lt;/b&gt;in the &lt;b&gt;Internet Protocol Version 4(TCP/IP4) &lt;/b&gt;and select &lt;b&gt;Properties &lt;/b&gt;select &lt;b&gt;Use the following IP address &lt;/b&gt;radio button and enter the ip address of the website we have previously configured, in our example &lt;b&gt;192.168.1.15 &lt;/b&gt;in the &lt;b&gt;IP address field. &lt;/b&gt;Then enter the &lt;b&gt;Default Gateway &lt;/b&gt;as &lt;b&gt;255.255.255.0. &lt;/b&gt;Click Ok if any pop up windows appears then click Ok. &lt;br /&gt;&lt;blockquote&gt;&lt;b&gt;&lt;span style="background-color: white; color: #afb4a9;"&gt;Tip:&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/b&gt;If you connect your laptop to some other network then you may need to change the above settings to &lt;b&gt;Obtain IP address automatically &lt;/b&gt;otherwise the connection may not work properly.&lt;b&gt;&amp;nbsp;&lt;/b&gt;&lt;/blockquote&gt;&lt;br /&gt;Now disconnect your mobile phone from the laptop and connect it once again using the previous procedure. &lt;br /&gt;&lt;blockquote&gt;&lt;span style="background-color: white; color: #afb4a9;"&gt;&lt;b&gt;Tip:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; Save a bookmark with the IP address and Connection name in the mobile for easy and quick access. See an example screen shot below.&lt;br /&gt;&lt;a href="http://lh4.ggpht.com/_eppwqXdvX24/THacnGCZN7I/AAAAAAAAAGU/duwiJhJoQOg/s1600-h/Screenshot0008%5B2%5D.jpg"&gt;&lt;img alt="Screenshot0008" border="0" height="184" src="http://lh4.ggpht.com/_eppwqXdvX24/THacsFo1gXI/AAAAAAAAAGY/mR6lRUiNUJw/Screenshot0008_thumb.jpg?imgmax=800" style="border-width: 0px; display: inline;" title="Screenshot0008" width="244" /&gt;&lt;/a&gt; &lt;/blockquote&gt;After entering the IP address correctly you will see the IIS 7 Welcome page as you have seen before in the local (laptop’s) web browser.&lt;br /&gt;&lt;a href="http://lh4.ggpht.com/_eppwqXdvX24/THactkeDkxI/AAAAAAAAAGc/y8Aczyp59E4/s1600-h/Screenshot0009%5B2%5D.jpg"&gt;&lt;img alt="Screenshot0009" border="0" height="184" src="http://lh3.ggpht.com/_eppwqXdvX24/THacvHGABxI/AAAAAAAAAGg/94YdDSionrw/Screenshot0009_thumb.jpg?imgmax=800" style="border-width: 0px; display: inline;" title="Screenshot0009" width="244" /&gt;&lt;/a&gt; &lt;br /&gt;&lt;b&gt;Transferring files:&lt;/b&gt;&lt;br /&gt;Now open the default folder for our website and paste the file you want to transfer. For our convenience we rename the file like “&lt;b&gt;Sample.zip”. &lt;/b&gt;Now type in the address something like &lt;b&gt;http://192.168.1.15/Sample.zip.&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;a href="http://lh3.ggpht.com/_eppwqXdvX24/THacy599sAI/AAAAAAAAAGk/GMbS-YnTroc/s1600-h/Screenshot0013%5B2%5D.jpg"&gt;&lt;img alt="Screenshot0013" border="0" height="184" src="http://lh3.ggpht.com/_eppwqXdvX24/THac0VHPObI/AAAAAAAAAGo/ZSkoWIPHDVU/Screenshot0013_thumb.jpg?imgmax=800" style="border-width: 0px; display: inline;" title="Screenshot0013" width="244" /&gt;&lt;/a&gt; &lt;/b&gt;&lt;br /&gt;It will start to download the file with almost &lt;b&gt;550 kbps &lt;/b&gt;at an average&lt;b&gt;.&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;a href="http://lh5.ggpht.com/_eppwqXdvX24/THac4hIArrI/AAAAAAAAAGs/5OFz6X-AN9U/s1600-h/Screenshot0015%5B2%5D.jpg"&gt;&lt;img alt="Screenshot0015" border="0" height="184" src="http://lh4.ggpht.com/_eppwqXdvX24/THac6f_wmaI/AAAAAAAAAGw/pzcTZRL5zCM/Screenshot0015_thumb.jpg?imgmax=800" style="border-width: 0px; display: inline;" title="Screenshot0015" width="244" /&gt;&lt;/a&gt;&amp;nbsp; &lt;a href="http://lh5.ggpht.com/_eppwqXdvX24/THac7_NXRrI/AAAAAAAAAG0/V3L7-xTvKeY/s1600-h/Screenshot0019%5B14%5D.jpg"&gt;&lt;img alt="Screenshot0019" border="0" height="184" src="http://lh6.ggpht.com/_eppwqXdvX24/THac_fe6lMI/AAAAAAAAAG4/Ye1NAUQaxUA/Screenshot0019_thumb%5B12%5D.jpg?imgmax=800" style="border-width: 0px; display: inline; margin-left: 0px; margin-right: 0px;" title="Screenshot0019" width="244" /&gt;&lt;/a&gt; &lt;/b&gt;&lt;br /&gt;The above screen shot shows the file is being downloaded at &lt;b&gt;606.54 KBps&lt;/b&gt;, quiet fast isn’t it&lt;b&gt;. &lt;/b&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;b&gt;&lt;span style="background-color: white; color: #afb4a9;"&gt;Important Note:&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; This trick will work for almost any mobile phone, PDA, IPod enhanced with Wifi.&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; You can use also use Apache Web Server, which is an open source software but you have to follow its own installation and configuration procedure. To know how to setup Apache Web Server &lt;b&gt;&lt;a href="http://techies-home.blogspot.com/2010/05/how-to-set-up-server-with-apache-php.html" target="_blank"&gt;Click Here.&lt;/a&gt;&lt;/b&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;Enjoy faster file transfer.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7314450340943444305-7755287258582135347?l=www.techieshome.in' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.techieshome.in/feeds/7755287258582135347/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.techieshome.in/2010/08/transfer-files-using-wifi-in-nokia.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/7755287258582135347'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/7755287258582135347'/><link rel='alternate' type='text/html' href='http://www.techieshome.in/2010/08/transfer-files-using-wifi-in-nokia.html' title='Transfer files using Wifi in Nokia mobile phone.'/><author><name>Raja</name><uri>http://www.blogger.com/profile/16429879169269790524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh4.ggpht.com/_eppwqXdvX24/THab4w1uj5I/AAAAAAAAAFI/EqleWWcH4G8/s72-c/Programsandfeatures_thumb3.png?imgmax=800' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7314450340943444305.post-3826596882991112577</id><published>2010-08-12T20:23:00.004+05:30</published><updated>2010-08-14T13:53:12.780+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='cout'/><category scheme='http://www.blogger.com/atom/ns#' term='display char without printf'/><category scheme='http://www.blogger.com/atom/ns#' term='display device buffer address'/><category scheme='http://www.blogger.com/atom/ns#' term='assigining memory address to pointer'/><category scheme='http://www.blogger.com/atom/ns#' term='character display'/><category scheme='http://www.blogger.com/atom/ns#' term='display character without using any library functions'/><category scheme='http://www.blogger.com/atom/ns#' term='pointer'/><title type='text'>Print a character to screen without using any Library functions in C.</title><content type='html'>&lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=ravi4frenz&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=0672326663&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&lt;b&gt;void main()&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&lt;b&gt;{&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&lt;b&gt;char far* src = (char far*) 0xB8000000L;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&lt;b&gt;*src = 'H';&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&lt;b&gt;src += 2;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&lt;b&gt;*src = 'i';&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&lt;b&gt;src+=2;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&lt;b&gt;*src='!';&lt;br /&gt;getch();&lt;br /&gt;}&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;You may wonder whether it is possible to&amp;nbsp;display a character in the screen without using any C library functions. Yes, it is possible by directly accessing the memory of the device's display buffer with a character pointer and&amp;nbsp;assigning some character to it.&lt;br /&gt;&lt;br /&gt;In the above code, the first line assigns the address of the memory location where we want to put the character. Actually the display buffer will be having 4000 memory blocks for printing characters in pure DOS mode.&lt;br /&gt;&lt;br /&gt;Pure DOS mode supports printing of 2000 characters per screen.&lt;br /&gt;&lt;br /&gt;Generally for displaying a character, two memory blocks(bits) are used. The first block for specifying &lt;b&gt;What the character&lt;/b&gt; is and the second block of memory is to&amp;nbsp;represent the &lt;b&gt;property of the character,&lt;/b&gt; like color.&lt;br /&gt;&lt;br /&gt;If you are printing something using the above method you will find the characters only at the top-left corner of the screen since you are accessing the initial memory address of the display buffer (&lt;span style="color: red;"&gt;0xB8000000L&lt;/span&gt;). &lt;br /&gt;&lt;br /&gt;Anything you have printed on the screen before executing this code will be sent to the lower screen (if you have not specified any &lt;u&gt;clrscr();&lt;/u&gt; in this program)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7314450340943444305-3826596882991112577?l=www.techieshome.in' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.techieshome.in/feeds/3826596882991112577/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.techieshome.in/2010/08/print-character-to-screen-without-using.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/3826596882991112577'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/3826596882991112577'/><link rel='alternate' type='text/html' href='http://www.techieshome.in/2010/08/print-character-to-screen-without-using.html' title='Print a character to screen without using any Library functions in C.'/><author><name>Raja</name><uri>http://www.blogger.com/profile/16429879169269790524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7314450340943444305.post-4596024399033149452</id><published>2010-07-04T17:02:00.002+05:30</published><updated>2010-07-14T01:02:07.442+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='nokia music player playlist updation problem'/><category scheme='http://www.blogger.com/atom/ns#' term='nokia e63 music player problem'/><category scheme='http://www.blogger.com/atom/ns#' term='nokia e63 music player does not update'/><category scheme='http://www.blogger.com/atom/ns#' term='nokia music player problem'/><title type='text'>Solution for Nokia Music Player Playlist updating Problem.</title><content type='html'>HI fellow readers, this Sunday I came up with a new solution for a well known problem of &lt;b&gt;.mp3&lt;/b&gt; files not being added to the &lt;b&gt;Music Player Play List&lt;/b&gt; in new Nokia devices like &lt;b&gt;Nokia E63&lt;/b&gt;. Mine is Nokia E63 and I faced the same problem too and one day I got the solution for this problem.&lt;br /&gt;Let me tell you how to add the Music songs into your Music Player Play List Library. Some other solutions can be found&lt;b&gt;. &lt;/b&gt;But those solutions will take a lot of time and will require much patience.&lt;br /&gt;Here is the new method which is quiet time saving than other methods.&lt;br /&gt;Before starting you might want to have these,&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Computer. &lt;/li&gt;&lt;li&gt;Nokia PC Suite. &lt;/li&gt;&lt;li&gt;Nokia Data Cable. &lt;/li&gt;&lt;li&gt;Internet Connection. &lt;/li&gt;&lt;li&gt;Memory Card Reader (optional). &lt;/li&gt;&lt;/ul&gt;&lt;b&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;Step 1:&lt;/b&gt;&lt;br /&gt;Connect your mobile with pc with the data cable in &lt;b&gt;Mass Storage&lt;/b&gt; format (use a Memory Card Reader to transfer data for faster file transfer). You may connect it in &lt;b&gt;PC Suite Mode&lt;/b&gt; also but the data transfer will be slower.&lt;br /&gt;&lt;b&gt;Step 2:&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;/b&gt;Copy all the music files from the mobile phone to a folder in your computer. You may also add new music files to the folder if you want.&lt;br /&gt;&lt;b&gt;Step 3:&lt;/b&gt;&lt;br /&gt;Connect to the Internet and open the Nokia PC Suite. Now click the&lt;b&gt; Explore Music Icon &lt;/b&gt;&lt;b&gt;&lt;a href="http://lh5.ggpht.com/_eppwqXdvX24/TDBwsC9EnUI/AAAAAAAAADY/ZWUfGCCUJDQ/s1600-h/clip_image002%5B3%5D.jpg"&gt;&lt;img alt="clip_image002" border="0" height="56" src="http://lh3.ggpht.com/_eppwqXdvX24/TDBwtJ4SkfI/AAAAAAAAADc/JP4LLXhY-Z4/clip_image002_thumb.jpg?imgmax=800" style="border-width: 0px; display: inline;" title="clip_image002" width="57" /&gt;&lt;/a&gt; . &lt;/b&gt;Now it will download the necessary files. Do not uncheck anything and let it download everything it wants. It will automatically install the software programs downloaded by it. &lt;b&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;Step 4:&lt;/b&gt;&lt;br /&gt;After installation has been finished &lt;b&gt;open &lt;/b&gt;the Nokia Ovi Player from you desktop. Setup everything as you need but do not export anything into the library. Now remove your Nokia from the USB and reconnect it with the Data cable using the Media Transfer mode (otherwise it won’t work). Wait few seconds until the Ovi player finds your device.&lt;br /&gt;&lt;b&gt;Step 5:&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;/b&gt;After the device has been found Import the necessary Music files that you have already saved in a folder. If you find some unwanted music files in the Ovi Player simply select everything and delete it from the playlist. &lt;br /&gt;&lt;a href="http://lh6.ggpht.com/_eppwqXdvX24/TDBwuKxB26I/AAAAAAAAADg/oVch55xdFEw/image%5B18%5D.png?imgmax=800"&gt;&lt;img alt="image" border="0" height="188" src="http://lh3.ggpht.com/_eppwqXdvX24/TDBxLoOoFmI/AAAAAAAAADk/7yfD1Itxf6o/image_thumb%5B14%5D.png?imgmax=800" style="border-width: 0px; display: block; float: none; margin-left: auto; margin-right: auto;" title="image" width="481" /&gt;&lt;/a&gt; &lt;br /&gt;&lt;b&gt;Step 6:&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;/b&gt;Now use &lt;b&gt;ctrl+A &lt;/b&gt;to select all the files and drag and drop them to the Mobile Phone icon &lt;a href="http://lh5.ggpht.com/_eppwqXdvX24/TDBxMlpeokI/AAAAAAAAADo/hhW3ehXi1ks/s1600-h/clip_image006%5B3%5D.jpg"&gt;&lt;img alt="clip_image006" border="0" height="78" src="http://lh6.ggpht.com/_eppwqXdvX24/TDBxNr4XX1I/AAAAAAAAADs/plSwDZUTNOM/clip_image006_thumb.jpg?imgmax=800" style="border-width: 0px; display: inline;" title="clip_image006" width="133" /&gt;&lt;/a&gt; on the left side. Now everything you have transferred will be added to your Nokia’s Music Player Play List. I have checked it with my Nokia E63 and this works fine.&lt;br /&gt;&lt;blockquote&gt;For any doubts about the procedure leave your comments here.&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7314450340943444305-4596024399033149452?l=www.techieshome.in' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.techieshome.in/feeds/4596024399033149452/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.techieshome.in/2010/07/solution-for-nokia-music-player.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/4596024399033149452'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/4596024399033149452'/><link rel='alternate' type='text/html' href='http://www.techieshome.in/2010/07/solution-for-nokia-music-player.html' title='Solution for Nokia Music Player Playlist updating Problem.'/><author><name>Raja</name><uri>http://www.blogger.com/profile/16429879169269790524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh3.ggpht.com/_eppwqXdvX24/TDBwtJ4SkfI/AAAAAAAAADc/JP4LLXhY-Z4/s72-c/clip_image002_thumb.jpg?imgmax=800' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7314450340943444305.post-3154045905911591488</id><published>2010-06-05T20:42:00.000+05:30</published><updated>2010-07-14T01:02:58.003+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='outlook'/><category scheme='http://www.blogger.com/atom/ns#' term='restore outloox express'/><category scheme='http://www.blogger.com/atom/ns#' term='reset outlook'/><category scheme='http://www.blogger.com/atom/ns#' term='autocomplete'/><category scheme='http://www.blogger.com/atom/ns#' term='delete autocomplete history in outlook express'/><title type='text'>How to delete auto complete history in MS Outlook.</title><content type='html'>&lt;div style="text-align: left;"&gt;Definitely outlook is one of the best email client around but the complexity involved in it prevent us from using it. One such annoying thing is the auto complete feature in outlook. &lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;The worst thing about it is, it remembers all the email addresses we have typed in even after deleting everything. So to get rid of this thing follow the steps below.&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;ul&gt;&lt;li&gt;Go to  the following folder path 'C:\Documents and Settings\"Your Account Name"\Application Data\Microsoft\Outlook'. &lt;/li&gt;&lt;li&gt;Search for .NK2 files and then delete it.&lt;/li&gt;&lt;li&gt;This is file which stores much details about your email activity including the mail ids for auto completion.&lt;/li&gt;&lt;li&gt; In the fore mentioned folder path change the "Your Account Name" with your "User Account Name". Each user have separate Application Data. So be aware while deleting that .NK2 file.&lt;/li&gt;&lt;li&gt; Instead you can also search for the .NK2 file if you have only one account for your computer.&lt;/li&gt;&lt;li&gt;Otherwise you can search for the .NK2 file and delete the appropriate file by looking at the Folder Path Details provided in the search results.&lt;/li&gt;&lt;/ul&gt;&lt;div style="text-align: left;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt; Note:&lt;/div&gt;&lt;div style="text-align: left;"&gt;         Close the outlook express program and then delete the file, else it will prevent you from deleting it.&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7314450340943444305-3154045905911591488?l=www.techieshome.in' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.techieshome.in/feeds/3154045905911591488/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.techieshome.in/2010/06/how-to-delete-auto-complete-history-in.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/3154045905911591488'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/3154045905911591488'/><link rel='alternate' type='text/html' href='http://www.techieshome.in/2010/06/how-to-delete-auto-complete-history-in.html' title='How to delete auto complete history in MS Outlook.'/><author><name>Raja</name><uri>http://www.blogger.com/profile/16429879169269790524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7314450340943444305.post-563417195598831967</id><published>2010-06-05T15:20:00.000+05:30</published><updated>2010-07-14T01:02:58.970+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='line and column notepad'/><category scheme='http://www.blogger.com/atom/ns#' term='column number in notepad'/><category scheme='http://www.blogger.com/atom/ns#' term='line number in notepad'/><category scheme='http://www.blogger.com/atom/ns#' term='notepad'/><title type='text'>How to get line and column number in note pad.</title><content type='html'>Most of the programmers want to debug a program using line and column reference. But unfortunately this facility is hide in notepad. To enable this '&lt;b&gt;Line and Column&lt;/b&gt;' option in note pad follow these steps.&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;b&gt;Open Note pad --&gt; Deselect 'Word Wrap' Option --&gt; View --&gt; Select 'Status Bar'.&lt;/b&gt;&lt;/div&gt;&lt;br /&gt;Now the status bar will be shown below the text editing region with &lt;b&gt;'Line and Column'&lt;/b&gt; Reference.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7314450340943444305-563417195598831967?l=www.techieshome.in' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.techieshome.in/feeds/563417195598831967/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.techieshome.in/2010/06/how-to-get-line-and-column-number-in.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/563417195598831967'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/563417195598831967'/><link rel='alternate' type='text/html' href='http://www.techieshome.in/2010/06/how-to-get-line-and-column-number-in.html' title='How to get line and column number in note pad.'/><author><name>Raja</name><uri>http://www.blogger.com/profile/16429879169269790524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7314450340943444305.post-5756044819672933092</id><published>2010-06-04T22:09:00.000+05:30</published><updated>2011-11-17T00:28:22.676+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='default folder'/><category scheme='http://www.blogger.com/atom/ns#' term='windows explorer'/><category scheme='http://www.blogger.com/atom/ns#' term='windows explorer default explorer'/><title type='text'>Open Windows Explorer to a Different Default Directory.</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;Open Windows Explorer to a Different Default Directory&lt;br /&gt;&lt;br /&gt;When you open Windows Explorer (by choosing the Window key and "E" simultaneously or by choosing Start), you can change the directory that appears by default.&lt;br /&gt;&lt;br /&gt;If you choose Start, all Programs, Accessories, and then right-click on Windows Explorer and choose Properties, you can modify the "Target" directory.&lt;br /&gt;&lt;br /&gt;To go to your C: drive, type simply C:\ in the Target box and choose OK.&lt;br /&gt;&lt;br /&gt;You can also enter a shortcut key on this screen, telling Windows the character or combination of characters you want to type to automatically open Windows Explorer.&lt;br /&gt;&lt;br /&gt; You can even change the icon or specify that you always want Explorer to open up in full-screen mode.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7314450340943444305-5756044819672933092?l=www.techieshome.in' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.techieshome.in/feeds/5756044819672933092/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.techieshome.in/2010/06/open-windows-explorer-to-different.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/5756044819672933092'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/5756044819672933092'/><link rel='alternate' type='text/html' href='http://www.techieshome.in/2010/06/open-windows-explorer-to-different.html' title='Open Windows Explorer to a Different Default Directory.'/><author><name>Raja</name><uri>http://www.blogger.com/profile/16429879169269790524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7314450340943444305.post-8798145300650819910</id><published>2010-06-02T16:42:00.000+05:30</published><updated>2010-07-14T01:03:47.102+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='message symbol stuck'/><category scheme='http://www.blogger.com/atom/ns#' term='stuck symbol'/><category scheme='http://www.blogger.com/atom/ns#' term='outbox symbol in nokia'/><category scheme='http://www.blogger.com/atom/ns#' term='sending message symbol'/><title type='text'>Remove the annoying 'sending message' symbol in Nokia.</title><content type='html'>Hi guys, You may have experienced the annoying 'send message' symbol in the Home screen of any Nokia S60 Edition phones, due to sending a large number of messages or it will appear if you have many number of messages in your inbox or sent items. I will show a simple trick to remove this icon.&lt;br /&gt; &lt;br /&gt; The simple way is to &lt;b&gt;change the message memory and to reset it&lt;/b&gt;. That means, if you have your &lt;b&gt;message memory set to memory card, then change it to phone memory&lt;/b&gt; &lt;i&gt;this will remove the message sending symbol.&lt;/i&gt; If needed you can again set the message memory option to &lt;b&gt;Memory Card.&lt;/b&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7314450340943444305-8798145300650819910?l=www.techieshome.in' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.techieshome.in/feeds/8798145300650819910/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.techieshome.in/2010/06/remove-annoying-sending-message-symbol.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/8798145300650819910'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7314450340943444305/posts/default/8798145300650819910'/><link rel='alternate' type='text/html' href='http://www.techieshome.in/2010/06/remove-annoying-sending-message-symbol.html' title='Remove the annoying &amp;#39;sending message&amp;#39; symbol in Nokia.'/><author><name>Raja</name><uri>http://www.blogger.com/profile/16429879169269790524</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
