<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>display-properties &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/display-properties/</link>
	<description>Feed of posts on WordPress.com tagged "display-properties"</description>
	<pubDate>Tue, 29 Dec 2009 09:10:59 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Update to Part 2 of Creating a Custom View in SproutCore]]></title>
<link>http://frozencanuck.wordpress.com/2009/08/18/update-to-part-2-of-creating-a-custom-view-in-sproutcore/</link>
<pubDate>Tue, 18 Aug 2009 21:50:19 +0000</pubDate>
<dc:creator>frozencanuck</dc:creator>
<guid>http://frozencanuck.wordpress.com/2009/08/18/update-to-part-2-of-creating-a-custom-view-in-sproutcore/</guid>
<description><![CDATA[And now for another update . Back in part 2 of how to create a custom view in SproutCore, I provided]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>And now for another update <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . </p>
<p>Back in <a href="http://frozencanuck.wordpress.com/2009/08/16/creating-a-simple-custom-view-in-sproutcore-part2/">part 2</a> of how to create a custom view in SproutCore, I provided a tutorial of how to modify the user summary view built in <a href="http://frozencanuck.wordpress.com/2009/08/14/updates-to-part-1-of-creating-a-custom-view-in-sproutcore/">part 1</a> by updating the view to make use of a content object and monitor it for changes. The steps taken in part 2 was to first strip out some of the code that dealt with basic display properties and then replace it with new code to handle a content object. While everything works, I realized that the tutorial could be misleading in that your custom view can only deal with either regular display properties or a context object, which is not that case; you can have both. Here is the final code for the custom view in part 2:</p>
<pre><code>
MyApp.UserSummaryView = SC.View.extend(SC.ContentDisplay, {

  classNames: ['user-summary-view'],

  contentDisplayProperties: 'name description age'.w(),

  render: function(context, firstTime) {
    var name = '';
    var description = '';
    var age = '';
    var content = this.get('content');
    if (content != null)
    {
      name = content.get('name');
      description = content.get('description');
      age = content.get('age');
    }

    context = context.begin('div').addClass('user-summary-view-name').push(name).end();
    context = context.begin('div').addClass('user-summary-view-desc').push(description).end();
    context = context.begin('div').addClass('user-summary-view-age');
    context = context.begin('div').addClass('user-summary-view-age-value').push(age).end();
    context = context.begin('div').addClass('user-summary-view-age-capt').push('age').end();
    context = context.end();

    sc_super();
  }

});
</code></pre>
<p>So for our view to <b>ALSO</b> take advantage of regular display properties we can modify the view to be the following:</p>
<pre><code>
MyApp.UserSummaryView = SC.View.extend(SC.ContentDisplay, {

  classNames: ['user-summary-view'],

  <b>foobar: '',</b>

  <b>displayProperties: ['foobar'],</b>

  contentDisplayProperties: 'name description age'.w(),

  render: function(context, firstTime) {
    var name = '';
    var description = '';
    var age = '';
    <b>var foobar = this.get('foobar');</b>

    var content = this.get('content');
    if (content != null)
    {
      name = content.get('name');
      description = content.get('description');
      age = content.get('age');
    }

    context = context.begin('div').addClass('user-summary-view-name').push(name).end();
    context = context.begin('div').addClass('user-summary-view-desc').push(description).end();
    context = context.begin('div').addClass('user-summary-view-age');
    context = context.begin('div').addClass('user-summary-view-age-value').push(age).end();
    context = context.begin('div').addClass('user-summary-view-age-capt').push('age').end();
    <b>// Make use of foobar
    context = context.begin('div').addClass('some-styling').push(foobar).end();</b>
    context = context.end();

    sc_super();
  }

});
</code></pre>
<p>The code above shows the view with a plain old property called foobar and we&#8217;ve added to the <code>displayProperties</code>. Now the view will re-render if either the content object updates (for the properties we care about) or when the view&#8217;s foobar property is updated. </p>
<p>A hybrid of the two approaches can be useful in cases where your custom view gets information from other sources outside of the content object. </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Power Point Tip For Displaying and Seeing Notes]]></title>
<link>http://lauranov.wordpress.com/2009/06/02/power-point-tip-for-displaying-and-seeing-notes/</link>
<pubDate>Tue, 02 Jun 2009 15:26:30 +0000</pubDate>
<dc:creator>lauranov</dc:creator>
<guid>http://lauranov.wordpress.com/2009/06/02/power-point-tip-for-displaying-and-seeing-notes/</guid>
<description><![CDATA[I gave a presentation on a projector last week and this information would have been helpful.  I had ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I gave a presentation on a projector last week and this information would have been helpful.  I had a bunch of notes that would have made it go a little smoother but I could not see them at the same time without printing them all out (Trying not to use paper where possible).  Here is how I could have done it:</p>
<p><strong>Use Multiple Monitors to Present and See Notes at the Same Time</strong><br />
Microsoft Office PowerPoint provides a feature you can use to show the presentation slides on a projector while keeping the Presenter view (with the speaker notes) on your notebook computer’s screen. To use this feature, you need to change your display settings. Here’s how:<br />
1. Open the <strong>Display Properties</strong> dialog box by right-clicking the desktop and then clicking <strong>Properties</strong>.<br />
2. Click the <strong>Settings</strong> tab.<br />
3. Click the <strong>Secondary Display</strong> symbol (the <strong>2</strong>).<br />
4. Under the <strong>Screen resolution</strong> heading, select the <strong>Extend my Windows desktop onto this monitor</strong> check box. This setting gives you a desktop that spreads across both the projector and your notebook computer&#8217;s screen.</p>
<p>You can now set up PowerPoint to use both screens.<br />
1. Open your presentation.<br />
2. On the menu bar, click <strong>Slide Show</strong>, and then click <strong>Set Up Slide Show</strong>.<br />
3. In the <strong>Set Up Show</strong> dialog box, locate the <strong>Multiple monitors</strong> option, and select the <strong>Show Presenter View</strong> check box.<br />
4. Start the slide show. The Slide Show view of the presentation appears on the projector’s screen, while the Presenter view and speaker notes appear only on your notebook computer’s screen.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Menyembunyikan Icon Pada Control Panel]]></title>
<link>http://feryariadi.wordpress.com/2009/02/10/menyembunyikan-icon-pada-control-panel/</link>
<pubDate>Tue, 10 Feb 2009 12:34:26 +0000</pubDate>
<dc:creator>feryariadi</dc:creator>
<guid>http://feryariadi.wordpress.com/2009/02/10/menyembunyikan-icon-pada-control-panel/</guid>
<description><![CDATA[Pada bagian Control Panel kita dapat menjumpai berbagai applet yang dapat kita gunakan untuk membena]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">Pada bagian Control Panel kita dapat menjumpai berbagai applet yang dapat kita gunakan untuk membenahi berbagai setting pada Windows, mulai dari setting Display Properties, System Properties sampai mouse dan keyboard. Sayangnya kemudahan dalam melakukan setting tersebut membuat orang sering iseng-iseng mengganti settingnya. Ini tentu bukan hal yang menyenangkan.</p>
<p style="text-align:justify;">Sebenarnya hal tersebut dapat dicegah dengan mudah, yaitu dengan menyembunyikan icon / applet pada control panel. Ada pun caranya adalah sebagai berikut:</p>
<p><!--more--></p>
<p style="text-align:justify;">Dari menu Start, pilih Run.</p>
<ol style="text-align:justify;">
<li>Ketikkan control.ini dan klik OK atau cukup tekan Enter.</li>
<li>Tambahkan baris di bawah [don't load].</li>
<li>Misalnya ingin menyembunyikan icon password, maka tambahkan password.cpl=no. netcpl.cpl=no untuk menyembunyikan icon Network. Daftar lebih lengkap bisa Anda lihat pada tabel di bawah.</li>
<li>Jika sudah selesai, simpan file control.ini tersebut dan restart komputer Anda untuk melihat perubahannya.</li>
</ol>
<p style="text-align:justify;">Appwiz.cpl=no<br />
Add/Remove Programs</p>
<p style="text-align:justify;">Desk.cpl=no<br />
Display</p>
<p style="text-align:justify;">Joy.cpl=no<br />
Game Controllers</p>
<p style="text-align:justify;">Modem.cpl=no<br />
Modem</p>
<p style="text-align:justify;">Mmsys.cpl=no<br />
Multimedia and Sounds</p>
<p style="text-align:justify;">Main.cpl=no<br />
Keyboard, Mouse, Fonts, danPrinters</p>
<p style="text-align:justify;">Netcpl.cpl=no<br />
Network</p>
<p style="text-align:justify;">Odbccp32.cpl=no<br />
ODBC Data Sources</p>
<p style="text-align:justify;">Password.cpl=no<br />
Add/Remove Programs</p>
<p style="text-align:justify;">Sysdm.cpl=no<br />
Add New Hardware and System</p>
<p style="text-align:justify;">Timedate.cpl=no<br />
Date/Time</p>
<p style="text-align:justify;">Cara yang lebih mudah adalah dengan menggunakan TweakUI. Caranya setelah Anda menjalankan TweakUI, pindah ke tab Control Panel. Hilangkan tanda check yang terdapat pada list box dan tekan Apply.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Common Control Panel Applets]]></title>
<link>http://aaarticles.wordpress.com/2008/09/10/common-control-panel-applets/</link>
<pubDate>Wed, 10 Sep 2008 04:38:41 +0000</pubDate>
<dc:creator>kashaan143</dc:creator>
<guid>http://aaarticles.wordpress.com/2008/09/10/common-control-panel-applets/</guid>
<description><![CDATA[The follow are some common Control Panel Applets that are located in the \windows\system32     direc]]></description>
<content:encoded><![CDATA[The follow are some common Control Panel Applets that are located in the \windows\system32     direc]]></content:encoded>
</item>
<item>
<title><![CDATA[Asus Splendid, Apanya yang Splendid?]]></title>
<link>http://xhare.wordpress.com/2008/07/16/asus-splendid/</link>
<pubDate>Wed, 16 Jul 2008 07:11:02 +0000</pubDate>
<dc:creator>ajoull</dc:creator>
<guid>http://xhare.wordpress.com/2008/07/16/asus-splendid/</guid>
<description><![CDATA[Menurut klaim Asus, fitur ini mampu mendeteksi penggunaan aplikasi video dan secara otomatis mengopt]]></description>
<content:encoded><![CDATA[Menurut klaim Asus, fitur ini mampu mendeteksi penggunaan aplikasi video dan secara otomatis mengopt]]></content:encoded>
</item>
<item>
<title><![CDATA[Setting your COLOR PROFILE in Windows]]></title>
<link>http://vitalbodies.wordpress.com/?p=93</link>
<pubDate>Thu, 03 Jul 2008 03:53:05 +0000</pubDate>
<dc:creator>vitalbodies</dc:creator>
<guid>http://vitalbodies.wordpress.com/?p=93</guid>
<description><![CDATA[Setting your COLOR PROFILE in Windows: So what if you do not have a &#8220;color calibrator&#8221; t]]></description>
<content:encoded><![CDATA[Setting your COLOR PROFILE in Windows: So what if you do not have a &#8220;color calibrator&#8221; t]]></content:encoded>
</item>
<item>
<title><![CDATA[ডিসপ্লে প্রোপার্টিসের সাহায্যে ডেক্সটপের পটভুমি পরবির্তনে সমস্যা হলে]]></title>
<link>http://mehdiakram.wordpress.com/2008/06/23/problem-to-change-background/</link>
<pubDate>Mon, 23 Jun 2008 14:07:17 +0000</pubDate>
<dc:creator>মেহেদী আকরাম</dc:creator>
<guid>http://mehdiakram.wordpress.com/2008/06/23/problem-to-change-background/</guid>
<description><![CDATA[অনেক সময় দেখা যায় ভাইরাসের কারণে ডিসপ্লে প্রোপার্টিসে গিয়ে ডেক্সটপের পটভুমির ওয়ালপেপার পরিবর্তন করা ]]></description>
<content:encoded><![CDATA[অনেক সময় দেখা যায় ভাইরাসের কারণে ডিসপ্লে প্রোপার্টিসে গিয়ে ডেক্সটপের পটভুমির ওয়ালপেপার পরিবর্তন করা ]]></content:encoded>
</item>
<item>
<title><![CDATA[Changing Menu Text Size]]></title>
<link>http://beanworks.wordpress.com/2007/12/19/changing-menu-text-size/</link>
<pubDate>Thu, 20 Dec 2007 03:50:48 +0000</pubDate>
<dc:creator>Carol Bean</dc:creator>
<guid>http://beanworks.wordpress.com/2007/12/19/changing-menu-text-size/</guid>
<description><![CDATA[O.K., upfront disclaimer: This is not for experts. But I have been getting a lot of questions lately]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>O.K., upfront disclaimer:  This is not for experts.  But I have been getting a lot of questions lately about how to change the text size for menus in Windows.</p>
<p>This is a way to increase the size of some of the text without changing the screen resolution, which is a way to increase the overall size of everything, including text.  These are instructions for WindowsXP, but they should work in Windows Vista as well.</p>
<p>First, right click on a clear part of the computer&#8217;s desktop, to open the context menu.  Click on the last option, &#8220;Properties.&#8221;<a href="http://beanworks.wordpress.com/files/2007/12/rightclick.jpg" title="Right click Context Menu on the desktop"></a></p>
<div style="text-align:center;"><a href="http://beanworks.wordpress.com/files/2007/12/rightclick.jpg" title="Right click Context Menu on the desktop"><img src="http://beanworks.wordpress.com/files/2007/12/rightclick.jpg" alt="Right click Context Menu on the desktop" /></a></div>
<p>In the Display Properties window, click on the &#8220;Appearance&#8221; tab at the top.</p>
<div style="text-align:center;"><img src="http://beanworks.wordpress.com/files/2007/12/propertieswindow.jpg" alt="Appearance tab in the Properties Window" /></div>
<div style="text-align:left;"></div>
<p>In the Appearance section, click on the &#8220;Advanced&#8221; button at the bottom.</p>
<p><a href="http://beanworks.wordpress.com/files/2007/12/appearancetab.jpg" title="Advanced button on the Appearance tab section"></a></p>
<div style="text-align:center;"><a href="http://beanworks.wordpress.com/files/2007/12/appearancetab.jpg" title="Advanced button on the Appearance tab section"><img src="http://beanworks.wordpress.com/files/2007/12/appearancetab.jpg" alt="Advanced button on the Appearance tab section" /></a></div>
<p>Click on the downward pointing arrow to open the drop down menu:</p>
<p><a href="http://beanworks.wordpress.com/files/2007/12/advancedwindow.jpg" title="Drop down menu button on the Advanced Windows page"><img src="http://beanworks.wordpress.com/files/2007/12/advancedwindow.jpg" alt="Drop down menu button on the Advanced Windows page" /></a></p>
<p>Select the &#8220;Menu&#8221; option from the drop down menu that opens.</p>
<p><a href="http://beanworks.wordpress.com/files/2007/12/selectmenu.jpg" title="Menu option selected in the drop down menu"></a></p>
<div style="text-align:center;"><a href="http://beanworks.wordpress.com/files/2007/12/selectmenu.jpg" title="Menu option selected in the drop down menu"><img src="http://beanworks.wordpress.com/files/2007/12/selectmenu.jpg" alt="Menu option selected in the drop down menu" /></a></div>
<p>Change the Text size in the box next to the Font selection box.</p>
<p><a href="http://beanworks.wordpress.com/files/2007/12/menutextincrease.jpg" title="Text Size box"></a></p>
<div style="text-align:center;"><a href="http://beanworks.wordpress.com/files/2007/12/menutextincrease.jpg" title="Text Size box"><img src="http://beanworks.wordpress.com/files/2007/12/menutextincrease.jpg" alt="Text Size box" /></a></div>
<p>Notice the preview pane at the top of the window, which will display the proposed changes.  The Font can also be changed here, if desired, as well as the color and bold or italic embellishments.   Other Windows appearances can be customized here as well (use the drop down &#8220;Item&#8221; menu).</p>
<p>Click the OK button at the bottom when you are satisfied with the changes. This will take you back to the Appearance tab of the Display Properties window.  Click on the &#8220;Apply&#8221; button at the bottom of the window for the changes to take effect.</p>
<p><a href="http://beanworks.wordpress.com/files/2007/12/apply.jpg" title="Apply button in the Display Properties window"></a></p>
<div style="text-align:center;"><a href="http://beanworks.wordpress.com/files/2007/12/apply.jpg" title="Apply button in the Display Properties window"><img src="http://beanworks.wordpress.com/files/2007/12/apply.jpg" alt="Apply button in the Display Properties window" /></a></div>
<p>When you are satisfied with the changes, click the OK button at the bottom of the Display Properties window to close it.  Note that if you make any changes in the Appearances tab (such as changing the style), it will override the changes you made in the Advanced section.</p>
<p>(Note:  this won&#8217;t change the menu text size in Firefox (version 2.0.0.11), but it will change the text for the tabs, toolbar labels, and the bookmark toolbar).</p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
