<?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-2789322492541150578</id><updated>2012-02-01T14:26:06.241-08:00</updated><title type='text'>produceideas</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default?start-index=101&amp;max-results=100'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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>4371</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2789322492541150578.post-7013235497325412649</id><published>2012-02-01T14:25:00.000-08:00</published><updated>2012-02-01T14:26:06.262-08:00</updated><title type='text'>Re: Changing an image depending on slider value in Javascript</title><content type='html'>Also, the else if&amp;#39;s never fire as you are ending each with a semi&lt;br&gt;colon. Remove those as well.&lt;p&gt;On Feb 1, 12:29&amp;#160;pm, Florent Pillet &amp;lt;&lt;a href="mailto:fpil...@gmail.com"&gt;fpil...@gmail.com&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt; Several basic mistakes in your code: you forgot the &amp;#39;function&amp;#39; keyword,&lt;br&gt;&amp;gt; you don&amp;#39;t enclose strings in &amp;quot;&amp;quot;, you didn&amp;#39;t terminate the last test with&lt;br&gt;&amp;gt; a closing } nor the function with another closing }.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Also, since you are not using a full blown URL, I assume you are referring&lt;br&gt;&amp;gt; to images in your Assets subfolder. I&amp;#39;ll assume that you already set your&lt;br&gt;&amp;gt; assets folder to &amp;quot;images&amp;quot; in the project. If you did so, the images/&lt;br&gt;&amp;gt; prefix folder is redundant.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Finally, you could optimize this code by intelligently building the&lt;br&gt;&amp;gt; URL string, like this:&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; function onSliderChanged(join, value) {&lt;br&gt;&amp;gt; &amp;#160; &amp;#160; if (value &amp;lt; 10) {&lt;br&gt;&amp;gt; &amp;#160; &amp;#160; &amp;#160; &amp;#160; CF.setJoin(&amp;quot;s100&amp;quot;, &amp;quot;icons/lighting/icon-light-0&amp;quot;+value+&amp;quot;.png&amp;quot;);&lt;br&gt;&amp;gt; &amp;#160; &amp;#160; } else {&lt;br&gt;&amp;gt; &amp;#160; &amp;#160; &amp;#160; &amp;#160; CF.setJoin(&amp;quot;s100&amp;quot;, &amp;quot;icons/lighting/icon-light-&amp;quot;+value+&amp;quot;.png&amp;quot;);&lt;br&gt;&amp;gt; &amp;#160; &amp;#160; }&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; }&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Florent&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; On Feb 1, 2012, at 5:40 PM, &lt;a href="mailto:chubby_bl...@hotmail.com"&gt;chubby_bl...@hotmail.com&lt;/a&gt; wrote:&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; onSliderChanged(a1, value) {if (value == 0) { CF.setJoin(&amp;quot;s100&amp;quot;,&lt;br&gt;&amp;gt; &amp;gt; images/icons/lighting/icon-light-01.png)}&lt;br&gt;&amp;gt; &amp;gt; else if (value == 1) { CF.setJoin(&amp;quot;s100&amp;quot;, images/icons/lighting/icon-&lt;br&gt;&amp;gt; &amp;gt; light-02.png);&lt;br&gt;&amp;gt; &amp;gt; else if (value == 2) { CF.setJoin(&amp;quot;s100&amp;quot;, images/icons/lighting/icon-&lt;br&gt;&amp;gt; &amp;gt; light-03.png);&lt;br&gt;&amp;gt; &amp;gt; else if (value == 3) { CF.setJoin(&amp;quot;s100&amp;quot;, images/icons/lighting/icon-&lt;br&gt;&amp;gt; &amp;gt; light-04.png);&lt;br&gt;&amp;gt; &amp;gt; else if (value == 4) { CF.setJoin(&amp;quot;s100&amp;quot;, images/icons/lighting/icon-&lt;br&gt;&amp;gt; &amp;gt; light-05.png);&lt;br&gt;&amp;gt; &amp;gt; else if (value == 5) { CF.setJoin(&amp;quot;s100&amp;quot;, images/icons/lighting/icon-&lt;br&gt;&amp;gt; &amp;gt; light-06.png);&lt;br&gt;&amp;gt; &amp;gt; else if (value == 6) { CF.setJoin(&amp;quot;s100&amp;quot;, images/icons/lighting/icon-&lt;br&gt;&amp;gt; &amp;gt; light-07.png);&lt;br&gt;&amp;gt; &amp;gt; else if (value == 7) { CF.setJoin(&amp;quot;s100&amp;quot;, images/icons/lighting/icon-&lt;br&gt;&amp;gt; &amp;gt; light-08.png);&lt;br&gt;&amp;gt; &amp;gt; else if (value == 8) { CF.setJoin(&amp;quot;s100&amp;quot;, images/icons/lighting/icon-&lt;br&gt;&amp;gt; &amp;gt; light-09.png);&lt;br&gt;&amp;gt; &amp;gt; else if (value == 9) { CF.setJoin(&amp;quot;s100&amp;quot;, images/icons/lighting/icon-&lt;br&gt;&amp;gt; &amp;gt; light-10.png);&lt;br&gt;&amp;gt; &amp;gt; else if (value == 10) { CF.setJoin(&amp;quot;s100&amp;quot;, images/icons/lighting/icon-&lt;br&gt;&amp;gt; &amp;gt; light-11.png);&lt;br&gt;&amp;gt; &amp;gt; else if (value == 11) { CF.setJoin(&amp;quot;s100&amp;quot;, images/icons/lighting/icon-&lt;br&gt;&amp;gt; &amp;gt; light-12.png);&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; --&lt;br&gt;&amp;gt; Florent Pillet - Software Engineering &lt;a href="http://Leadwww.commandfusion.com"&gt;Leadwww.commandfusion.com&lt;/a&gt;&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-7013235497325412649?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/7013235497325412649/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/02/re-changing-image-depending-on-slider_6033.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7013235497325412649'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7013235497325412649'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/02/re-changing-image-depending-on-slider_6033.html' title='Re: Changing an image depending on slider value in Javascript'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-3459988012447237103</id><published>2012-02-01T07:57:00.000-08:00</published><updated>2012-02-01T08:23:07.659-08:00</updated><title type='text'>Re: Ringer Volume Control</title><content type='html'>Hi,&lt;br&gt;&lt;br&gt;  Where is rewind/fast forward option in Remote control(headset). i din&amp;#39;t find those options.&lt;br&gt;  Can you tell me where u got those options from headset.&lt;br&gt;&lt;br&gt;-Ram&lt;br&gt;&lt;br&gt;&lt;div class="gmail_quote"&gt;On Tue, Jan 17, 2012 at 5:46 PM, Wil Macaulay &lt;span dir="ltr"&gt;&amp;lt;&lt;a href="mailto:wil.macaulay@gmail.com"&gt;wil.macaulay@gmail.com&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt; &lt;blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"&gt;yes. if you are implementing background audio you should also implement the remote control events (play/pause/rewind/fast forward etc.) so the user can control your audio through the headset.&lt;div&gt; &lt;br&gt;&lt;/div&gt;&lt;div&gt;wil&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class="h5"&gt;&lt;br&gt;&lt;br&gt; &lt;div class="gmail_quote"&gt;On Tue, Jan 17, 2012 at 7:51 AM, iOS Bee &lt;span dir="ltr"&gt;&amp;lt;&lt;a href="mailto:farooq1afridi@gmail.com" target="_blank"&gt;farooq1afridi@gmail.com&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"&gt;  Hello Gulz and Guyz!&lt;br&gt; &lt;br&gt; Can we control our application volume through iPhone ringer control&lt;br&gt; volume button when our application is running in the background ?&lt;br&gt; &lt;br&gt; Thanks&lt;br&gt; iOS Bee&lt;br&gt; &lt;font color="#888888"&gt;&lt;br&gt; --&lt;br&gt; You received this message because you are subscribed to the Google Groups &amp;quot;iPhone SDK Development&amp;quot; group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:iphonesdkdevelopment@googlegroups.com" target="_blank"&gt;iphonesdkdevelopment@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphonesdkdevelopment%2Bunsubscribe@googlegroups.com" target="_blank"&gt;iphonesdkdevelopment+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt; For more options, visit this group at &lt;a href="http://groups.google.com/group/iphonesdkdevelopment?hl=en" target="_blank"&gt;http://groups.google.com/group/iphonesdkdevelopment?hl=en&lt;/a&gt;.&lt;br&gt; &lt;br&gt; &lt;/font&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear="all"&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;font color="#888888"&gt;-- &lt;br&gt;Products and services: &lt;a href="http://flagpig.com" target="_blank"&gt;http://flagpig.com&lt;/a&gt;&lt;br&gt;Blog: &lt;a href="http://flagpig.tumblr.com" target="_blank"&gt;http://flagpig.tumblr.com&lt;/a&gt;&lt;br&gt;  &lt;br&gt; &lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class="h5"&gt;  &lt;p&gt;&lt;/p&gt;  -- &lt;br&gt; You received this message because you are subscribed to the Google Groups &amp;quot;iPhone SDK Development&amp;quot; group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:iphonesdkdevelopment@googlegroups.com" target="_blank"&gt;iphonesdkdevelopment@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphonesdkdevelopment%2Bunsubscribe@googlegroups.com" target="_blank"&gt;iphonesdkdevelopment+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;  For more options, visit this group at &lt;a href="http://groups.google.com/group/iphonesdkdevelopment?hl=en" target="_blank"&gt;http://groups.google.com/group/iphonesdkdevelopment?hl=en&lt;/a&gt;.&lt;br&gt;   &lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;  &lt;p&gt;&lt;/p&gt;  -- &lt;br /&gt; You received this message because you are subscribed to the Google Groups "iPhone SDK Development" group.&lt;br /&gt; To post to this group, send email to iphonesdkdevelopment@googlegroups.com.&lt;br /&gt; To unsubscribe from this group, send email to iphonesdkdevelopment+unsubscribe@googlegroups.com.&lt;br /&gt;  For more options, visit this group at http://groups.google.com/group/iphonesdkdevelopment?hl=en.&lt;br /&gt;   &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-3459988012447237103?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/3459988012447237103/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/02/re-ringer-volume-control.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/3459988012447237103'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/3459988012447237103'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/02/re-ringer-volume-control.html' title='Re: Ringer Volume Control'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-8106458362782253983</id><published>2012-02-01T07:21:00.000-08:00</published><updated>2012-02-01T07:22:19.431-08:00</updated><title type='text'>RE: Hold button before page flip</title><content type='html'>Use Advanced Actions in the button properties. Under the Action Group, On&lt;br&gt;Pressed action set the following properties :&lt;br&gt;(1) Set the &amp;quot;Hold delay&amp;quot; value = 3000ms &lt;br&gt;(2) Set the &amp;quot;Script&amp;quot; with the JS command = CF.flipToPage(&amp;quot;yourPageNamehere&amp;quot;)&lt;br&gt;e.g. CF.flipToPage(&amp;quot;Artists&amp;quot;)&lt;br&gt;(3) Set the &amp;quot;Macro&amp;quot; with your current Press Macro event.  &lt;p&gt;-----Original Message-----&lt;br&gt;From: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt; [mailto:&lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;]&lt;br&gt;On Behalf Of Etienne Terblanche&lt;br&gt;Sent: 01 February 2012 22:10&lt;br&gt;To: CommandFusion&lt;br&gt;Subject: Hold button before page flip&lt;p&gt;Hi,&lt;p&gt;What would be the easiest way to implement the following:&lt;p&gt;The user needs to hold a button for 3 seconds before the page flip event&lt;br&gt;takes place, however the button also has a Press Macro event that currently&lt;br&gt;releases any active subpages. It also needs to perform this action after 3&lt;br&gt;seconds.&lt;p&gt;&lt;br&gt;Thanks!&lt;p&gt;--&lt;br&gt;You received this message because you are subscribed to the Google Groups&lt;br&gt;&amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to&lt;br&gt;&lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at&lt;br&gt;&lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-8106458362782253983?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/8106458362782253983/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/02/re-hold-button-before-page-flip.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/8106458362782253983'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/8106458362782253983'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/02/re-hold-button-before-page-flip.html' title='RE: Hold button before page flip'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-3357490313700679833</id><published>2012-02-01T07:00:00.001-08:00</published><updated>2012-02-01T07:00:40.686-08:00</updated><title type='text'>Re: JavaScript command or Normal?</title><content type='html'>Florent,&lt;p&gt;My curiosity is why I&amp;#39;m building my first programming is very simple&lt;br&gt;and is basically a home theater and two audio zones. I have followed&lt;br&gt;the evolution of JavaScript within the schedules and see it all&lt;br&gt;evolving very quickly, do not want to build my first programming&lt;br&gt;inefficient and far from the colleagues are doing better. JavaScript&lt;br&gt;for me is almost unknown, and imagined I understand I can use the JS&lt;br&gt;reusable modules adapted to the needs of my future project.&lt;br&gt;JS is a next step for now I&amp;#39;m very pleased with my GUI is now putting&lt;br&gt;the commands did this doubt.&lt;p&gt;Thank you and Jarrod&lt;p&gt;&lt;br&gt;On 1 fev, 12:29, Florent Pillet &amp;lt;&lt;a href="mailto:fpil...@gmail.com"&gt;fpil...@gmail.com&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt; Define &amp;quot;more efficient&amp;quot;.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; In the context of automation, sending a command via JavaScript (a bit&lt;br&gt;&amp;gt; slower as it requires going through the JS engine) or directly using&lt;br&gt;&amp;gt; a Command attached to an external System is the same. I don&amp;#39;t think&lt;br&gt;&amp;gt; you would notice a difference.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; How you implement this is a matter of choice -- you may not need JavaScript&lt;br&gt;&amp;gt; at all for your GUI, in this case it makes sense to send your data via&lt;br&gt;&amp;gt; a Command attached to a System.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Florent&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; On Feb 1, 2012, at 3:21 PM, BR-101 wrote:&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; I have a curiosity: it is possible to send my IR commands via java&lt;br&gt;&amp;gt; &amp;gt; script?&lt;br&gt;&amp;gt; &amp;gt; If this is possible, a command sent via JS is more efficient than&lt;br&gt;&amp;gt; &amp;gt; normal?&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; --&lt;br&gt;&amp;gt; Florent Pillet - Software Engineering &lt;a href="http://Leadwww.commandfusion.com"&gt;Leadwww.commandfusion.com&lt;/a&gt;&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-3357490313700679833?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/3357490313700679833/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/02/re-javascript-command-or-normal_1858.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/3357490313700679833'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/3357490313700679833'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/02/re-javascript-command-or-normal_1858.html' title='Re: JavaScript command or Normal?'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-4754885344145986439</id><published>2012-02-01T06:45:00.000-08:00</published><updated>2012-02-01T06:46:10.436-08:00</updated><title type='text'>Re: [iPhone-AppDev-Auditors] Assignment 2: descriptionOfProgram and runProgram</title><content type='html'>That&amp;#39;s what I tried, I used an implementation similar to the runProgram recursive implementation, didn&amp;#39;t quite work it good.&lt;br&gt;&lt;br&gt;&lt;div class="gmail_quote"&gt;On Wed, Feb 1, 2012 at 12:31 AM, Zhisheng Huang &lt;span dir="ltr"&gt;&amp;lt;&lt;a href="mailto:lorixxhuang@gmail.com"&gt;lorixxhuang@gmail.com&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;  &lt;blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"&gt;You could use Recursive example as is in the demo. but need a little bit condition check for the left bracket and right bracket.&lt;div&gt;  Similar idea with the demo, It is a good practice to learn recurrence as well.&lt;/div&gt;&lt;div&gt; &lt;br&gt;&lt;div&gt;Hope that helps :)&lt;div&gt;&lt;div class="h5"&gt;&lt;br&gt;&lt;br&gt;&lt;div class="gmail_quote"&gt;On Tue, Jan 31, 2012 at 11:58 PM, 8vius &lt;span dir="ltr"&gt;&amp;lt;&lt;a href="mailto:lmd411@gmail.com" target="_blank"&gt;lmd411@gmail.com&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;  &lt;blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"&gt; Thanks &lt;span&gt;Zhisheng, about the description, I understand what is asked of me, what I don&amp;#39;t know is how to implement it properly.&lt;/span&gt;&lt;div&gt;&lt;br&gt;&lt;br&gt;&lt;div&gt;&lt;div style="font-size:13.3px;font-family:Verdana,Arial,Helvetica,sans-serif"&gt;      			&lt;div style="margin:0 0 8px 0"&gt;&lt;p style="margin:0"&gt;&lt;span style="font-family:&amp;#39;arial black&amp;#39;,&amp;#39;avant garde&amp;#39;"&gt;Luis Miguel Delgado&lt;br&gt;Tlf: 0412-9902142&lt;br&gt;&lt;br&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both"&gt;&lt;/div&gt;&lt;/div&gt;&lt;span style="color:gray"&gt;My profiles: &lt;/span&gt; &lt;a href="http://www.facebook.com/home.php?#!/8vius" style="text-decoration:underline" target="_blank"&gt;&lt;img width="16" height="16" alt="Facebook" style="padding:0px 0px 5px 0px;vertical-align:middle" border="0"&gt;&lt;/a&gt; &lt;a href="http://twitter.com/8vius" style="text-decoration:underline" target="_blank"&gt;&lt;img width="16" height="16" alt="Twitter" style="padding:0px 0px 5px 0px;vertical-align:middle" border="0"&gt;&lt;/a&gt;&lt;br&gt;     &lt;span style="color:gray"&gt;Contact me: &lt;/span&gt; &lt;img width="16" height="16" alt="Google Talk" style="padding:0px 0px 5px 0px;vertical-align:middle" border="0"&gt; &lt;a href="mailto:lmd411@gmail.com" target="_blank"&gt;lmd411@gmail.com&lt;/a&gt;&lt;br&gt;      			&lt;div style="width:auto;padding-top:2px;font-size:70%;border-top:1px solid #eeeeee;margin-top:10px"&gt; 				&lt;a style="color:#6f6f6f;text-decoration:none" href="http://r1.wisestamp.com/r/landing?promo=19&amp;amp;dest=http%3A%2F%2Fwww.wisestamp.com%2Femail-install%3Futm_source%3Dextension%26utm_medium%3Demail%26utm_campaign%3Dpromo_19" target="_blank"&gt; 					&lt;span style="color:#6f6f6f"&gt;Get a signature like this.&lt;/span&gt; 				&lt;/a&gt; 				&lt;span style="color:#3f48cc"&gt;&lt;a style="color:#3f48cc" href="http://r1.wisestamp.com/r/landing?promo=19&amp;amp;dest=http%3A%2F%2Fwww.wisestamp.com%2Femail-install%3Futm_source%3Dextension%26utm_medium%3Demail%26utm_campaign%3Dpromo_19" target="_blank"&gt;CLICK HERE.&lt;/a&gt;&lt;/span&gt; 				&lt;img border="0" width="1" height="1"&gt; 				  			&lt;/div&gt; 		&lt;img width="1" height="1"&gt;&lt;/div&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;div class="gmail_quote"&gt;On Wed, Feb 1, 2012 at 12:17 AM, Zhisheng Huang &lt;span dir="ltr"&gt;&amp;lt;&lt;a href="mailto:lorixxhuang@gmail.com" target="_blank"&gt;lorixxhuang@gmail.com&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;     &lt;blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"&gt;&lt;div style="word-wrap:break-word"&gt;&lt;div&gt;Hi Luis,&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;From my understanding, you have to parse and return a nice readable format from the program stack:&lt;/div&gt;     &lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;For example:&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;In the Program stack we have, 4, 5, *, Sqrt ,    in the descriptionOfProgram you need to return Sqrt(4*5) , notice the number of left ( and right ).&lt;/div&gt;&lt;div&gt;&lt;br&gt;     &lt;/div&gt;&lt;div&gt;The runProgram: usingVariable is used only when you have input a variables dictionary. If there is no dictionary input, the result would be calculated by themselves.&lt;/div&gt;&lt;div&gt;So you could just use the same Calculate button and connect to the new method. I attached a screen shot for my UI and noticed that Description is above the input field.&lt;/div&gt;     &lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Regards,&lt;/div&gt;&lt;div&gt;Zhisheng Huang &lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;a href="http://2.bp.blogspot.com/-9TTu0tU7cbg/TylQMkigRkI/AAAAAAAAAYI/U2s3al88Uv8/s1600/Screen%2BShot%2B2012-01-31%2Bat%2B11.41.46%2BPM-770437.png"&gt;&lt;img src="http://2.bp.blogspot.com/-9TTu0tU7cbg/TylQMkigRkI/AAAAAAAAAYI/U2s3al88Uv8/s320/Screen%2BShot%2B2012-01-31%2Bat%2B11.41.46%2BPM-770437.png"  border="0" alt="" id="BLOGGER_PHOTO_ID_5704178579938494018" /&gt;&lt;/a&gt;&lt;br&gt;&lt;div&gt;&lt;div&gt;&lt;div&gt;     &lt;div&gt;On Jan 31, 2012, at 9:53 PM, 8vius wrote:&lt;/div&gt;&lt;br&gt;&lt;blockquote type="cite"&gt;Hey all, I know I&amp;#39;m a little late on this but since I just recently got Lion thought I&amp;#39;d update my iOS Dev lectures as well.&lt;br&gt;&lt;br&gt;    I&amp;#39;m a little confused on how to implement descriptionOfProgram, I have a somewhat similar implementation as runProgram, but I seem to be missing something since I get what seems to be duplicated output, would appreciate some help here. &lt;/blockquote&gt;     &lt;/div&gt;&lt;/div&gt;&lt;blockquote type="cite"&gt;&lt;div&gt;&lt;div&gt;&lt;div&gt;  &lt;br&gt;&lt;/div&gt;&lt;div&gt;Also I&amp;#39;m not sure what to do to execute the runProgramWithVariables, did you set up a button in the UI just to do that or what?&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Thanks ahead.&lt;br&gt;&lt;br&gt;&lt;div&gt;  &lt;div style="font-size:13.3px;font-family:Verdana,Arial,Helvetica,sans-serif"&gt; 			&lt;div style="margin:0 0 8px 0"&gt;&lt;div style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px"&gt;&lt;span style="font-family:&amp;#39;arial black&amp;#39;,&amp;#39;avant garde&amp;#39;"&gt;Luis Miguel Delgado&lt;br&gt;Tlf: 0412-9902142&lt;br&gt;     &lt;br&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="clear:both"&gt;&lt;/div&gt;&lt;/div&gt;&lt;span style="color:gray"&gt;My profiles: &lt;/span&gt; &lt;a href="http://www.facebook.com/home.php?#!/8vius" style="text-decoration:underline" target="_blank"&gt;&lt;img width="16" height="16" alt="Facebook" style="padding:0px 0px 5px 0px;vertical-align:middle" border="0"&gt;&lt;/a&gt; &lt;a href="http://twitter.com/8vius" style="text-decoration:underline" target="_blank"&gt;&lt;img width="16" height="16" alt="Twitter" style="padding:0px 0px 5px 0px;vertical-align:middle" border="0"&gt;&lt;/a&gt;&lt;br&gt;       &lt;span style="color:gray"&gt;Contact me: &lt;/span&gt; &lt;img width="16" height="16" alt="Google Talk" style="padding:0px 0px 5px 0px;vertical-align:middle" border="0"&gt; &lt;a href="mailto:lmd411@gmail.com" target="_blank"&gt;lmd411@gmail.com&lt;/a&gt;&lt;br&gt;        			&lt;div style="width:auto;padding-top:2px;font-size:70%;border-top:1px solid #eeeeee;margin-top:10px"&gt; 				&lt;a style="color:#6f6f6f;text-decoration:none" href="http://r1.wisestamp.com/r/landing?promo=19&amp;amp;dest=http%3A%2F%2Fwww.wisestamp.com%2Femail-install%3Futm_source%3Dextension%26utm_medium%3Demail%26utm_campaign%3Dpromo_19" target="_blank"&gt; 					&lt;span style="color:#6f6f6f"&gt;Get a signature like this.&lt;/span&gt; 				&lt;/a&gt; 				&lt;span style="color:#3f48cc"&gt;&lt;a style="color:#3f48cc" href="http://r1.wisestamp.com/r/landing?promo=19&amp;amp;dest=http%3A%2F%2Fwww.wisestamp.com%2Femail-install%3Futm_source%3Dextension%26utm_medium%3Demail%26utm_campaign%3Dpromo_19" target="_blank"&gt;CLICK HERE.&lt;/a&gt;&lt;/span&gt; 				&lt;img border="0" width="1" height="1"&gt; 				  			&lt;/div&gt; 		&lt;img width="1" height="1"&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;span&gt;&lt;font color="#888888"&gt;  -- &lt;br&gt; You received this message because you are subscribed to the Google Groups &amp;quot;iPhone Application Development Auditors&amp;quot; group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com" target="_blank"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors+unsubscribe@googlegroups.com" target="_blank"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;  For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en" target="_blank"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;   &lt;/font&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;span&gt;&lt;font color="#888888"&gt;&lt;br&gt;&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;&lt;span&gt;&lt;font color="#888888"&gt;  &lt;p&gt;&lt;/p&gt;  -- &lt;br&gt; You received this message because you are subscribed to the Google Groups &amp;quot;iPhone Application Development Auditors&amp;quot; group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com" target="_blank"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors%2Bunsubscribe@googlegroups.com" target="_blank"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;  For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en" target="_blank"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;   &lt;/font&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;  &lt;p&gt;&lt;/p&gt;  -- &lt;br&gt; You received this message because you are subscribed to the Google Groups &amp;quot;iPhone Application Development Auditors&amp;quot; group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com" target="_blank"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors%2Bunsubscribe@googlegroups.com" target="_blank"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;  For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en" target="_blank"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;   &lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="HOEnZb"&gt;&lt;div class="h5"&gt;  &lt;p&gt;&lt;/p&gt;  -- &lt;br&gt; You received this message because you are subscribed to the Google Groups &amp;quot;iPhone Application Development Auditors&amp;quot; group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com" target="_blank"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors%2Bunsubscribe@googlegroups.com" target="_blank"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;  For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en" target="_blank"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;   &lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;  &lt;p&gt;&lt;/p&gt;  -- &lt;br /&gt; You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.&lt;br /&gt; To post to this group, send email to iphone-appdev-auditors@googlegroups.com.&lt;br /&gt; To unsubscribe from this group, send email to iphone-appdev-auditors+unsubscribe@googlegroups.com.&lt;br /&gt;  For more options, visit this group at http://groups.google.com/group/iphone-appdev-auditors?hl=en.&lt;br /&gt;   &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-4754885344145986439?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/4754885344145986439/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/02/re-iphone-appdev-auditors-assignment-2.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/4754885344145986439'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/4754885344145986439'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/02/re-iphone-appdev-auditors-assignment-2.html' title='Re: [iPhone-AppDev-Auditors] Assignment 2: descriptionOfProgram and runProgram'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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/-9TTu0tU7cbg/TylQMkigRkI/AAAAAAAAAYI/U2s3al88Uv8/s72-c/Screen%2BShot%2B2012-01-31%2Bat%2B11.41.46%2BPM-770437.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2789322492541150578.post-1200247619176707321</id><published>2012-02-01T06:29:00.000-08:00</published><updated>2012-02-01T06:30:23.843-08:00</updated><title type='text'>Re: JavaScript command or Normal?</title><content type='html'>Define &amp;quot;more efficient&amp;quot;.&lt;p&gt;In the context of automation, sending a command via JavaScript (a bit&lt;br&gt;slower as it requires going through the JS engine) or directly using&lt;br&gt;a Command attached to an external System is the same. I don&amp;#39;t think&lt;br&gt;you would notice a difference.&lt;p&gt;How you implement this is a matter of choice -- you may not need JavaScript&lt;br&gt;at all for your GUI, in this case it makes sense to send your data via&lt;br&gt;a Command attached to a System.&lt;p&gt;Florent&lt;p&gt;On Feb 1, 2012, at 3:21 PM, BR-101 wrote:&lt;p&gt;&amp;gt; I have a curiosity: it is possible to send my IR commands via java&lt;br&gt;&amp;gt; script?&lt;br&gt;&amp;gt; If this is possible, a command sent via JS is more efficient than&lt;br&gt;&amp;gt; normal?&lt;p&gt;--&lt;br&gt;Florent Pillet - Software Engineering Lead&lt;br&gt;&lt;a href="http://www.commandfusion.com"&gt;www.commandfusion.com&lt;/a&gt;&lt;p&gt;&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-1200247619176707321?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/1200247619176707321/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/02/re-javascript-command-or-normal_01.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/1200247619176707321'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/1200247619176707321'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/02/re-javascript-command-or-normal_01.html' title='Re: JavaScript command or Normal?'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-4354016064465817874</id><published>2012-02-01T06:27:00.001-08:00</published><updated>2012-02-01T06:27:53.748-08:00</updated><title type='text'>Re: JavaScript command or Normal?</title><content type='html'>It is theoretically more efficient to send a command from the system &lt;br&gt;manager.&lt;p&gt;But in saying that, you probably won&amp;#39;t notice any difference either way.&lt;p&gt;Jarrod&lt;p&gt;On 2/02/12 1:21 AM, BR-101 wrote:&lt;br&gt;&amp;gt; I have a curiosity: it is possible to send my IR commands via java&lt;br&gt;&amp;gt; script?&lt;br&gt;&amp;gt; If this is possible, a command sent via JS is more efficient than&lt;br&gt;&amp;gt; normal?&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;   Tks&lt;br&gt;&amp;gt;&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-4354016064465817874?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/4354016064465817874/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/02/re-javascript-command-or-normal.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/4354016064465817874'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/4354016064465817874'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/02/re-javascript-command-or-normal.html' title='Re: JavaScript command or Normal?'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-6433230772069521543</id><published>2012-02-01T06:21:00.001-08:00</published><updated>2012-02-01T06:21:50.323-08:00</updated><title type='text'>JavaScript command or Normal?</title><content type='html'>I have a curiosity: it is possible to send my IR commands via java&lt;br&gt;script?&lt;br&gt;If this is possible, a command sent via JS is more efficient than&lt;br&gt;normal?&lt;p&gt; Tks&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-6433230772069521543?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/6433230772069521543/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/02/javascript-command-or-normal.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/6433230772069521543'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/6433230772069521543'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/02/javascript-command-or-normal.html' title='JavaScript command or Normal?'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-993068030202285458</id><published>2012-02-01T06:10:00.001-08:00</published><updated>2012-02-01T06:10:22.231-08:00</updated><title type='text'>Hold button before page flip</title><content type='html'>Hi,&lt;p&gt;What would be the easiest way to implement the following:&lt;p&gt;The user needs to hold a button for 3 seconds before the page flip&lt;br&gt;event takes place, however the button also has a Press Macro event&lt;br&gt;that currently releases any active subpages. It also needs to perform&lt;br&gt;this action after 3 seconds.&lt;p&gt;&lt;br&gt;Thanks!&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-993068030202285458?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/993068030202285458/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/02/hold-button-before-page-flip.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/993068030202285458'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/993068030202285458'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/02/hold-button-before-page-flip.html' title='Hold button before page flip'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-7707070465131569154</id><published>2012-02-01T06:09:00.001-08:00</published><updated>2012-02-01T06:09:21.318-08:00</updated><title type='text'>Re: Changing an image depending on slider value in Javascript</title><content type='html'>Needs to be in an external JS file and then added to guiDesigner via &lt;br&gt;Project Properties &amp;gt; Script Manager&lt;p&gt;Jarrod&lt;p&gt;On 2/02/12 12:58 AM, &lt;a href="mailto:chubby_blade@hotmail.com"&gt;chubby_blade@hotmail.com&lt;/a&gt; wrote:&lt;br&gt;&amp;gt; So am I adding this to an external JS file or straight into the GUI?&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; On Feb 1, 12:16 am, Jarrod Bell&amp;lt;&lt;a href="mailto:jar...@guilink.com"&gt;jar...@guilink.com&lt;/a&gt;&amp;gt;  wrote:&lt;br&gt;&amp;gt;&amp;gt; Remember JavaScript equality testing needs double equals signs&lt;br&gt;&amp;gt;&amp;gt; eg. if (value == 2) {&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; Jarrod&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; On 1/02/12 4:13 AM, Terence wrote:&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; First of all you&amp;#39;ll need to change your logic as when value&amp;lt;2, value&amp;lt;3, etc.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; conditions are met, it will also trigger actions for value&amp;lt;1. For each of&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; your 12 images, you would want to set the value to be value =1,&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; value=2,value=3, etc until value=12.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Than use CF.setJoin to set the path for your image. Your function would&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; probaly look something like this :&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; onSliderChanged(join, value) {&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; if (value = 1) { CF.setJoin(&amp;quot;s1&amp;quot;, *path for your first image here*); // set&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; first image here } else if (value = 2) { CF.setJoin(&amp;quot;s1&amp;quot;, *path for your&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; second image here*); // set second image here } and etc.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; -----Original Message-----&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; From: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt; [mailto:&lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;]&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; On Behalf Of &lt;a href="mailto:chubby_bl...@hotmail.com"&gt;chubby_bl...@hotmail.com&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Sent: 01 February 2012 00:48&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; To: CommandFusion&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Subject: Changing an image depending on slider value in Javascript&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Hi&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Florent originally gave me advice on this matter in the chat room, but I&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; cant quite see how to get it to work.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I have 12 images which show the different states of a slider and I want them&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; to change depending on the slider value.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I understand that first I need to watch the slider&amp;#39;s join&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; CF.watch(CF.JoinChangeEvent, &amp;quot;a1&amp;quot;, onSliderChanged)&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Then  add a function to get the image to change&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; onSliderChanged(join, value) {if (value&amp;lt;    1) { /* set first image here */ }&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; else if (value&amp;lt;    2) { /* set second image here */ }&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; etc&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; But I&amp;#39;m having trouble actually putting this into practice. Assuming my&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; slider is on a1 and my image is on s1, how do I get it to change?&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I&amp;#39;ve tried loads of comibinations, but no joy so far :-(&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Thanks&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Rob&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; --&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; You received this message because you are subscribed to the Google Groups&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; To unsubscribe from this group, send email to&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; For more options, visit this group at&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href="http://groups.google.com/group/commandfusion?hl=en.-"&gt;http://groups.google.com/group/commandfusion?hl=en.-&lt;/a&gt; Hide quoted text -&lt;br&gt;&amp;gt;&amp;gt; - Show quoted text -&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-7707070465131569154?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/7707070465131569154/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/02/re-changing-image-depending-on-slider_01.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7707070465131569154'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7707070465131569154'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/02/re-changing-image-depending-on-slider_01.html' title='Re: Changing an image depending on slider value in Javascript'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-3778081821717438617</id><published>2012-02-01T05:59:00.001-08:00</published><updated>2012-02-01T05:59:28.492-08:00</updated><title type='text'>Re: Converting a discrete code for GuiDesigner</title><content type='html'>&lt;div&gt;Youre welcome! Make sure you use the wright ir eye / settings. All the codes in my project are using the first ir eye of an iTach device sendir 1:1&lt;br&gt;&lt;br&gt;Met vriendelijke groet,&lt;div&gt; &lt;br&gt;&lt;/div&gt;&lt;div&gt;Joep van den Aker&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;D-Touch Systeemintegratie&lt;/div&gt;&lt;div&gt;&lt;a href="http://www.d-touch.nl"&gt;www.d-touch.nl&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;Op 31 jan. 2012 om 23:15 heeft &amp;quot;Carlos A. Casanova&amp;quot; &amp;lt;&lt;a href="mailto:intellipad@hotmail.com"&gt;intellipad@hotmail.com&lt;/a&gt;&amp;gt; het volgende geschreven:&lt;br&gt; &lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;blockquote type="cite"&gt;&lt;div&gt;  &lt;style&gt;&lt;!-- .hmmessage P { margin:0px; padding:0px } body.hmmessage { font-size: 10pt; font-family:Tahoma } --&gt;&lt;/style&gt; &lt;div dir="ltr"&gt; &lt;span style="font:16px/normal arial,sans-serif;color:rgb(51,51,51);text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;white-space:normal;background-color:rgb(245,245,245)" class="hps"&gt;Wow&lt;/span&gt;&lt;span style="font:16px/normal arial,sans-serif;color:rgb(51,51,51);text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;float:none;display:inline!important;white-space:normal;background-color:rgb(245,245,245)"&gt;&lt;span class="Apple-converted-space"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font:16px/normal arial,sans-serif;color:rgb(51,51,51);text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;white-space:normal;background-color:rgb(245,245,245)" class="hps"&gt;Very&lt;/span&gt;&lt;span style="font:16px/normal arial,sans-serif;color:rgb(51,51,51);text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;float:none;display:inline!important;white-space:normal;background-color:rgb(245,245,245)"&gt;&lt;span class="Apple-converted-space"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font:16px/normal arial,sans-serif;color:rgb(51,51,51);text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;white-space:normal;background-color:rgb(245,245,245)" class="hps"&gt;Thanked&lt;/span&gt;&lt;span style="font:16px/normal arial,sans-serif;color:rgb(51,51,51);text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;float:none;display:inline!important;white-space:normal;background-color:rgb(245,245,245)"&gt;&lt;span class="Apple-converted-space"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font:16px/normal arial,sans-serif;color:rgb(51,51,51);text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;white-space:normal;background-color:rgb(245,245,245)" class="hps"&gt;Joep&lt;/span&gt;&lt;span style="font:16px/normal arial,sans-serif;color:rgb(51,51,51);text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;float:none;display:inline!important;white-space:normal;background-color:rgb(245,245,245)"&gt;&lt;span class="Apple-converted-space"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font:16px/normal arial,sans-serif;color:rgb(51,51,51);text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;white-space:normal;background-color:rgb(245,245,245)" class="hps"&gt;saved me&lt;/span&gt;&lt;span style="font:16px/normal arial,sans-serif;color:rgb(51,51,51);text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;float:none;display:inline!important;white-space:normal;background-color:rgb(245,245,245)"&gt;&lt;span class="Apple-converted-space"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font:16px/normal arial,sans-serif;color:rgb(51,51,51);text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;white-space:normal;background-color:rgb(245,245,245)" class="hps"&gt;a&lt;/span&gt;&lt;span style="font:16px/normal arial,sans-serif;color:rgb(51,51,51);text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;float:none;display:inline!important;white-space:normal;background-color:rgb(245,245,245)"&gt;&lt;span class="Apple-converted-space"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font:16px/normal arial,sans-serif;color:rgb(51,51,51);text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;white-space:normal;background-color:rgb(245,245,245)" class="hps"&gt;considerable&lt;/span&gt;&lt;span style="font:16px/normal arial,sans-serif;color:rgb(51,51,51);text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;float:none;display:inline!important;white-space:normal;background-color:rgb(245,245,245)"&gt;&lt;span class="Apple-converted-space"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font:16px/normal arial,sans-serif;color:rgb(51,51,51);text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;white-space:normal;background-color:rgb(245,245,245)" class="hps"&gt;work,&lt;/span&gt;&lt;span style="font:16px/normal arial,sans-serif;color:rgb(51,51,51);text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;float:none;display:inline!important;white-space:normal;background-color:rgb(245,245,245)"&gt;&lt;span class="Apple-converted-space"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font:16px/normal arial,sans-serif;color:rgb(51,51,51);text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;white-space:normal;background-color:rgb(245,245,245)" class="hps"&gt;I owe you&lt;/span&gt;&lt;span style="font:16px/normal arial,sans-serif;color:rgb(51,51,51);text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;float:none;display:inline!important;white-space:normal;background-color:rgb(245,245,245)"&gt;&lt;span class="Apple-converted-space"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font:16px/normal arial,sans-serif;color:rgb(51,51,51);text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;white-space:normal;background-color:rgb(245,245,245)" class="hps"&gt;this and&lt;/span&gt;&lt;span style="font:16px/normal arial,sans-serif;color:rgb(51,51,51);text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;float:none;display:inline!important;white-space:normal;background-color:rgb(245,245,245)"&gt;&lt;span class="Apple-converted-space"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font:16px/normal arial,sans-serif;color:rgb(51,51,51);text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;white-space:normal;background-color:rgb(245,245,245)" class="hps"&gt;a coke&lt;/span&gt;&lt;span style="font:16px/normal arial,sans-serif;color:rgb(51,51,51);text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;float:none;display:inline!important;white-space:normal;background-color:rgb(245,245,245)"&gt;&lt;/span&gt;&lt;span style="font:16px/normal arial,sans-serif;color:rgb(51,51,51);text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;white-space:normal;background-color:rgb(245,245,245)" class="hps"&gt;.....&lt;/span&gt;&lt;span style="font:16px/normal arial,sans-serif;color:rgb(51,51,51);text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;float:none;display:inline!important;white-space:normal;background-color:rgb(245,245,245)"&gt;&lt;span class="Apple-converted-space"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font:16px/normal arial,sans-serif;color:rgb(51,51,51);text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;white-space:normal;background-color:rgb(245,245,245)" class="hps"&gt;Tks&lt;/span&gt;&lt;span style="font:16px/normal arial,sans-serif;color:rgb(51,51,51);text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;float:none;display:inline!important;white-space:normal;background-color:rgb(245,245,245)"&gt;&lt;span class="Apple-converted-space"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font:16px/normal arial,sans-serif;color:rgb(51,51,51);text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;white-space:normal;background-color:rgb(245,245,245)" class="hps"&gt;again&lt;/span&gt;&lt;br&gt;  &lt;br&gt;&lt;div&gt;&lt;div id="SkyDrivePlaceholder"&gt;&lt;/div&gt;&lt;hr id="stopSpelling"&gt;Date: Tue, 31 Jan 2012 22:40:38 +0100&lt;br&gt;Subject: Re: Converting a discrete code for GuiDesigner&lt;br&gt;From: &lt;a href="mailto:jvda2011@gmail.com"&gt;jvda2011@gmail.com&lt;/a&gt;&lt;br&gt; To: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;div&gt;Attached you&amp;#39;ll find a guifile with all the discrete codes in Global Caché format, ready to use ;)&lt;/div&gt;&lt;div&gt;For the volume buttons you can set a repeat delay of 25ms at button proporties.&lt;/div&gt; &lt;div&gt; &lt;/div&gt;&lt;div&gt;Have fun!&lt;/div&gt; &lt;div&gt;Joep&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;div class="ecxgmail_quote"&gt;Op 31 januari 2012 20:16 schreef BR-101 &lt;span dir="ltr"&gt;&amp;lt;&lt;a href="mailto:intellipad@hotmail.com"&gt;intellipad@hotmail.com&lt;/a&gt;&amp;gt;&lt;/span&gt; het volgende:&lt;br&gt;&lt;blockquote style="padding-left:1ex;border-left-color:rgb(204,204,204);border-left-width:1px;border-left-style:solid" class="ecxgmail_quote"&gt;  I would like to convert a discrete IR code for GuiDesigner, is this&lt;br&gt; possible?&lt;br&gt; The command is sent through a iTach&lt;br&gt; grateful&lt;br&gt; &lt;span class="ecxHOEnZb"&gt;&lt;font color="#888888"&gt;&lt;br&gt; --&lt;br&gt; You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt; For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en" target="_blank"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;br&gt; &lt;br&gt; &lt;/font&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;  &lt;br&gt;  -- &lt;br&gt; You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion+unsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;  For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;br&gt;&lt;/div&gt; 		 	   		  &lt;/div&gt;   &lt;p&gt;&lt;/p&gt;  -- &lt;br&gt; You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion+unsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;  For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;br&gt;   &lt;/div&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-3778081821717438617?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/3778081821717438617/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/02/re-converting-discrete-code-for.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/3778081821717438617'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/3778081821717438617'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/02/re-converting-discrete-code-for.html' title='Re: Converting a discrete code for GuiDesigner'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-1660283567809661259</id><published>2012-02-01T05:58:00.000-08:00</published><updated>2012-02-01T05:59:33.137-08:00</updated><title type='text'>Re: Changing an image depending on slider value in Javascript</title><content type='html'>So am I adding this to an external JS file or straight into the GUI?&lt;p&gt;&lt;br&gt;On Feb 1, 12:16&amp;#160;am, Jarrod Bell &amp;lt;&lt;a href="mailto:jar...@guilink.com"&gt;jar...@guilink.com&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt; Remember JavaScript equality testing needs double equals signs&lt;br&gt;&amp;gt; eg. if (value == 2) {&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Jarrod&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; On 1/02/12 4:13 AM, Terence wrote:&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; First of all you&amp;#39;ll need to change your logic as when value&amp;lt;2, value&amp;lt;3, etc.&lt;br&gt;&amp;gt; &amp;gt; conditions are met, it will also trigger actions for value&amp;lt;1. For each of&lt;br&gt;&amp;gt; &amp;gt; your 12 images, you would want to set the value to be value =1,&lt;br&gt;&amp;gt; &amp;gt; value=2,value=3, etc until value=12.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Than use CF.setJoin to set the path for your image. Your function would&lt;br&gt;&amp;gt; &amp;gt; probaly look something like this :&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; onSliderChanged(join, value) {&lt;br&gt;&amp;gt; &amp;gt; if (value = 1) { CF.setJoin(&amp;quot;s1&amp;quot;, *path for your first image here*); // set&lt;br&gt;&amp;gt; &amp;gt; first image here } else if (value = 2) { CF.setJoin(&amp;quot;s1&amp;quot;, *path for your&lt;br&gt;&amp;gt; &amp;gt; second image here*); // set second image here } and etc.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; -----Original Message-----&lt;br&gt;&amp;gt; &amp;gt; From: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt; [mailto:&lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;]&lt;br&gt;&amp;gt; &amp;gt; On Behalf Of &lt;a href="mailto:chubby_bl...@hotmail.com"&gt;chubby_bl...@hotmail.com&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; Sent: 01 February 2012 00:48&lt;br&gt;&amp;gt; &amp;gt; To: CommandFusion&lt;br&gt;&amp;gt; &amp;gt; Subject: Changing an image depending on slider value in Javascript&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Hi&lt;br&gt;&amp;gt; &amp;gt; Florent originally gave me advice on this matter in the chat room, but I&lt;br&gt;&amp;gt; &amp;gt; cant quite see how to get it to work.&lt;br&gt;&amp;gt; &amp;gt; I have 12 images which show the different states of a slider and I want them&lt;br&gt;&amp;gt; &amp;gt; to change depending on the slider value.&lt;br&gt;&amp;gt; &amp;gt; I understand that first I need to watch the slider&amp;#39;s join&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; CF.watch(CF.JoinChangeEvent, &amp;quot;a1&amp;quot;, onSliderChanged)&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Then &amp;#160;add a function to get the image to change&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; onSliderChanged(join, value) {if (value&amp;lt; &amp;#160;1) { /* set first image here */ }&lt;br&gt;&amp;gt; &amp;gt; else if (value&amp;lt; &amp;#160;2) { /* set second image here */ }&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; etc&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; But I&amp;#39;m having trouble actually putting this into practice. Assuming my&lt;br&gt;&amp;gt; &amp;gt; slider is on a1 and my image is on s1, how do I get it to change?&lt;br&gt;&amp;gt; &amp;gt; I&amp;#39;ve tried loads of comibinations, but no joy so far :-(&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Thanks&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Rob&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; --&lt;br&gt;&amp;gt; &amp;gt; You received this message because you are subscribed to the Google Groups&lt;br&gt;&amp;gt; &amp;gt; &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;&amp;gt; &amp;gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; &amp;gt; To unsubscribe from this group, send email to&lt;br&gt;&amp;gt; &amp;gt; &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; &amp;gt; For more options, visit this group at&lt;br&gt;&amp;gt; &amp;gt;&lt;a href="http://groups.google.com/group/commandfusion?hl=en.-"&gt;http://groups.google.com/group/commandfusion?hl=en.-&lt;/a&gt; Hide quoted text -&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; - Show quoted text -&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-1660283567809661259?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/1660283567809661259/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/02/re-changing-image-depending-on-slider.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/1660283567809661259'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/1660283567809661259'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/02/re-changing-image-depending-on-slider.html' title='Re: Changing an image depending on slider value in Javascript'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-6477642172340891105</id><published>2012-02-01T00:55:00.001-08:00</published><updated>2012-02-01T00:55:28.684-08:00</updated><title type='text'>Re: [iPhone-AppDev-Auditors] Re: Assignment 4, Requirement 9 : work in both portrait and landscape orientations: UINavigationController does NOT support landscape : Change Segue to Modal?</title><content type='html'>Please elaborate. I did return YES in all controllers'&amp;nbsp;&lt;span class="Apple-style-span" style="font-family: Menlo; font-size: 18px; "&gt;shouldAutorotateToInterfaceOrientation&lt;/span&gt;&lt;div apple-content-edited="true"&gt;&lt;br&gt; &lt;/div&gt;&lt;div apple-content-edited="true"&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;- (&lt;span style="color: #cf00a0"&gt;BOOL&lt;/span&gt;)shouldAutorotateToInterfaceOrientation:(&lt;span style="color: #7f1bab"&gt;UIInterfaceOrientation&lt;/span&gt;)interfaceOrientation&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;{&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; color: rgb(207, 0, 160); "&gt;&lt;span style="color: #000000"&gt;&amp;nbsp; &amp;nbsp; &lt;/span&gt;return&lt;span style="color: #000000"&gt; &lt;/span&gt;YES&lt;span style="color: #000000"&gt;;&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;}&lt;/div&gt;&lt;/div&gt; &lt;br&gt;&lt;div&gt;&lt;div&gt;On Feb 1, 2012, at 3:36 PM, David C. wrote:&lt;/div&gt;&lt;br class="Apple-interchange-newline"&gt;&lt;blockquote type="cite"&gt;&lt;div&gt;It does support landscape. Just make sure the views inside the&lt;br&gt;navigation controller support landscape in&lt;br&gt;shouldAutorotateToInterfaceOrientation.&lt;br&gt;&lt;br&gt;On Feb 1, 7:57&amp;nbsp;am, zak &amp;lt;yzhang...@gmail.com&amp;gt; wrote:&lt;br&gt;&lt;blockquote type="cite"&gt;Assignment 4, Requirement 9 : Require the app works in both portrait&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;and landscape orientations:&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;But UINavigationController does NOT support landscape :&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;Change Segue to Modal? or I under the requirement or the&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;UINavigationController behavior wrong?&lt;br&gt;&lt;/blockquote&gt;&lt;br&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors+unsubscribe@googlegroups.com"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-6477642172340891105?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/6477642172340891105/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/02/re-iphone-appdev-auditors-re-assignment_01.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/6477642172340891105'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/6477642172340891105'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/02/re-iphone-appdev-auditors-re-assignment_01.html' title='Re: [iPhone-AppDev-Auditors] Re: Assignment 4, Requirement 9 : work in both portrait and landscape orientations: UINavigationController does NOT support landscape : Change Segue to Modal?'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-4981475165459036328</id><published>2012-02-01T00:49:00.001-08:00</published><updated>2012-02-01T00:49:39.877-08:00</updated><title type='text'>Re: [iPhone-AppDev-Auditors] Assignment 4, Requirement 9 : work in both portrait and landscape orientations: UINavigationController does NOT support landscape : Change Segue to Modal?</title><content type='html'>You know that all controller needs to support landscape orientation ?&lt;br&gt;&lt;div&gt;&lt;div&gt;On 01-02-2012, at 09:19, Ray Zhang wrote:&lt;/div&gt;&lt;br class="Apple-interchange-newline"&gt;&lt;blockquote type="cite"&gt;&lt;div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "&gt;&lt;div apple-content-edited="true"&gt;&lt;span class="Apple-style-span" style="border-collapse: separate; font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; "&gt;&lt;div style="color: rgb(0, 0, 0); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;I did return "yes" in my PhotoViewController that display photo. &amp;nbsp;&lt;/div&gt;&lt;div style="color: rgb(0, 0, 0); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&lt;br&gt;&lt;/div&gt;&lt;div style="color: rgb(0, 0, 0); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;- (&lt;span style="color: #cf00a0"&gt;BOOL&lt;/span&gt;)shouldAutorotateToInterfaceOrientation:(&lt;span style="color: #7f1bab"&gt;UIInterfaceOrientation&lt;/span&gt;)interfaceOrientation&lt;/div&gt;&lt;div style="color: rgb(0, 0, 0); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;{&lt;/div&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="color: rgb(207, 0, 160); font-family: Menlo; font-size: 18px; "&gt;&lt;span style="color: #000000"&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/span&gt;return&lt;span style="color: #000000"&gt; &lt;/span&gt;YES&lt;span style="color: #000000"&gt;;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: separate; font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; "&gt;&lt;div style="color: rgb(0, 0, 0); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;}&lt;/div&gt;&lt;div style="color: rgb(0, 0, 0); "&gt;&lt;br&gt;&lt;/div&gt;&lt;br&gt;&lt;/span&gt; &lt;/div&gt; &lt;br&gt;&lt;div&gt;&lt;div&gt;On Feb 1, 2012, at 3:36 PM, David C. wrote:&lt;/div&gt;&lt;br class="Apple-interchange-newline"&gt;&lt;blockquote type="cite"&gt;&lt;div&gt;It does support landscape. Just make sure the views inside the&lt;br&gt;navigation controller support landscape in&lt;br&gt;shouldAutorotateToInterfaceOrientation.&lt;br&gt;&lt;br&gt;On Feb 1, 7:57&amp;nbsp;am, zak &amp;lt;yzhang...@gmail.com&amp;gt; wrote:&lt;br&gt;&lt;blockquote type="cite"&gt;Assignment 4, Requirement 9 : Require the app works in both portrait&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;and landscape orientations:&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;But UINavigationController does NOT support landscape :&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;Change Segue to Modal? or I under the requirement or the&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;UINavigationController behavior wrong?&lt;br&gt;&lt;/blockquote&gt;&lt;br&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors+unsubscribe@googlegroups.com"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br class="webkit-block-placeholder"&gt;&lt;/div&gt;  -- &lt;br&gt; You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors+unsubscribe@googlegroups.com"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;  For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;   &lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;div&gt; &lt;span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "&gt;&lt;span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "&gt;&lt;div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "&gt;&lt;div&gt;Pozdrawiam,&lt;/div&gt;&lt;div&gt;Radosław Woźniak&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/span&gt;&lt;br class="Apple-interchange-newline"&gt;&lt;/span&gt;&lt;br class="Apple-interchange-newline"&gt; &lt;/div&gt; &lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-4981475165459036328?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/4981475165459036328/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/02/re-iphone-appdev-auditors-assignment-4.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/4981475165459036328'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/4981475165459036328'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/02/re-iphone-appdev-auditors-assignment-4.html' title='Re: [iPhone-AppDev-Auditors] Assignment 4, Requirement 9 : work in both portrait and landscape orientations: UINavigationController does NOT support landscape : Change Segue to Modal?'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-8543440665790064491</id><published>2012-02-01T00:19:00.001-08:00</published><updated>2012-02-01T00:19:30.820-08:00</updated><title type='text'>Re: [iPhone-AppDev-Auditors] Re: Assignment 4, Requirement 9 : work in both portrait and landscape orientations: UINavigationController does NOT support landscape : Change Segue to Modal?</title><content type='html'>&lt;div apple-content-edited="true"&gt;&lt;span class="Apple-style-span" style="border-collapse: separate; font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; "&gt;&lt;div style="color: rgb(0, 0, 0); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;I did return "yes" in my PhotoViewController that display photo. &amp;nbsp;&lt;/div&gt;&lt;div style="color: rgb(0, 0, 0); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&lt;br&gt;&lt;/div&gt;&lt;div style="color: rgb(0, 0, 0); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;- (&lt;span style="color: #cf00a0"&gt;BOOL&lt;/span&gt;)shouldAutorotateToInterfaceOrientation:(&lt;span style="color: #7f1bab"&gt;UIInterfaceOrientation&lt;/span&gt;)interfaceOrientation&lt;/div&gt;&lt;div style="color: rgb(0, 0, 0); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;{&lt;/div&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="color: rgb(207, 0, 160); font-family: Menlo; font-size: 18px; "&gt;&lt;span style="color: #000000"&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/span&gt;return&lt;span style="color: #000000"&gt; &lt;/span&gt;YES&lt;span style="color: #000000"&gt;;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: separate; font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; "&gt;&lt;div style="color: rgb(0, 0, 0); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;}&lt;/div&gt;&lt;div style="color: rgb(0, 0, 0); "&gt;&lt;br&gt;&lt;/div&gt;&lt;br&gt;&lt;/span&gt; &lt;/div&gt; &lt;br&gt;&lt;div&gt;&lt;div&gt;On Feb 1, 2012, at 3:36 PM, David C. wrote:&lt;/div&gt;&lt;br class="Apple-interchange-newline"&gt;&lt;blockquote type="cite"&gt;&lt;div&gt;It does support landscape. Just make sure the views inside the&lt;br&gt;navigation controller support landscape in&lt;br&gt;shouldAutorotateToInterfaceOrientation.&lt;br&gt;&lt;br&gt;On Feb 1, 7:57&amp;nbsp;am, zak &amp;lt;yzhang...@gmail.com&amp;gt; wrote:&lt;br&gt;&lt;blockquote type="cite"&gt;Assignment 4, Requirement 9 : Require the app works in both portrait&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;and landscape orientations:&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;But UINavigationController does NOT support landscape :&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;Change Segue to Modal? or I under the requirement or the&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;UINavigationController behavior wrong?&lt;br&gt;&lt;/blockquote&gt;&lt;br&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors+unsubscribe@googlegroups.com"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-8543440665790064491?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/8543440665790064491/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/02/re-iphone-appdev-auditors-re-assignment.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/8543440665790064491'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/8543440665790064491'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/02/re-iphone-appdev-auditors-re-assignment.html' title='Re: [iPhone-AppDev-Auditors] Re: Assignment 4, Requirement 9 : work in both portrait and landscape orientations: UINavigationController does NOT support landscape : Change Segue to Modal?'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-9162599217611050534</id><published>2012-02-01T00:01:00.000-08:00</published><updated>2012-02-01T00:02:22.202-08:00</updated><title type='text'>Re: CommandFusion Protocol</title><content type='html'>That&amp;#39;s a very interesting question!&lt;br&gt;Actually I&amp;#39;m considering switching back to the original Crestron&lt;br&gt;MobilePro app.&lt;br&gt;Crestron now has the most features it was lacking when the iviewer was&lt;br&gt;introduced. All the connection methods of the iviewer have some&lt;br&gt;serious drawbacks (which can&amp;#39;t only be explained by faulty IOS&lt;br&gt;devices) and to work with the guiDesigner is still a pain in the ass&lt;br&gt;because of bugs and it&amp;#39;s habit of slowing down to a crawl after&lt;br&gt;working with a large project... On the other hand the iviewer is way&lt;br&gt;more flexible and I really like the almost instant and direct support&lt;br&gt;and communication commandfusion offers.&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-9162599217611050534?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/9162599217611050534/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/02/re-commandfusion-protocol.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/9162599217611050534'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/9162599217611050534'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/02/re-commandfusion-protocol.html' title='Re: CommandFusion Protocol'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-269004430812109459</id><published>2012-01-31T23:36:00.001-08:00</published><updated>2012-01-31T23:36:47.643-08:00</updated><title type='text'>[iPhone-AppDev-Auditors] Re: Assignment 4, Requirement 9 : work in both portrait and landscape orientations: UINavigationController does NOT support landscape : Change Segue to Modal?</title><content type='html'>It does support landscape. Just make sure the views inside the&lt;br&gt;navigation controller support landscape in&lt;br&gt;shouldAutorotateToInterfaceOrientation.&lt;p&gt;On Feb 1, 7:57&amp;#160;am, zak &amp;lt;&lt;a href="mailto:yzhang...@gmail.com"&gt;yzhang...@gmail.com&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt; Assignment 4, Requirement 9 : Require the app works in both portrait&lt;br&gt;&amp;gt; and landscape orientations:&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; But UINavigationController does NOT support landscape :&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Change Segue to Modal? or I under the requirement or the&lt;br&gt;&amp;gt; UINavigationController behavior wrong?&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;iPhone Application Development Auditors&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors%2Bunsubscribe@googlegroups.com"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-269004430812109459?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/269004430812109459/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/iphone-appdev-auditors-re-assignment-4_31.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/269004430812109459'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/269004430812109459'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/iphone-appdev-auditors-re-assignment-4_31.html' title='[iPhone-AppDev-Auditors] Re: Assignment 4, Requirement 9 : work in both portrait and landscape orientations: UINavigationController does NOT support landscape : Change Segue to Modal?'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-1854649417029204492</id><published>2012-01-31T22:57:00.000-08:00</published><updated>2012-01-31T23:05:17.048-08:00</updated><title type='text'>[iPhone-AppDev-Auditors] Assignment 4, Requirement 9 : work in both portrait and landscape orientations: UINavigationController does NOT support landscape : Change Segue to Modal?</title><content type='html'>Assignment 4, Requirement 9 : Require the app works in both portrait&lt;br&gt;and landscape orientations:&lt;p&gt;But UINavigationController does NOT support landscape :&lt;p&gt;Change Segue to Modal? or I under the requirement or the&lt;br&gt;UINavigationController behavior wrong?&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;iPhone Application Development Auditors&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors%2Bunsubscribe@googlegroups.com"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-1854649417029204492?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/1854649417029204492/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/iphone-appdev-auditors-assignment-4_4946.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/1854649417029204492'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/1854649417029204492'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/iphone-appdev-auditors-assignment-4_4946.html' title='[iPhone-AppDev-Auditors] Assignment 4, Requirement 9 : work in both portrait and landscape orientations: UINavigationController does NOT support landscape : Change Segue to Modal?'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-5658793409687810564</id><published>2012-01-31T21:37:00.000-08:00</published><updated>2012-01-31T21:38:04.590-08:00</updated><title type='text'>[iphonesb] Re: Contracting for someone who wants iTunes presence</title><content type='html'>I&amp;#39;ll probably set up and manage their program. Doing that&amp;#39;s a bit outside their expertise.&lt;br&gt;&lt;br&gt;Thanks all. Good information.&lt;br&gt;Howard&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Tuesday, January 31, 2012, Ben Liong &amp;lt;&lt;a href="mailto:benliong@gmail.com"&gt;benliong@gmail.com&lt;/a&gt;&amp;gt; wrote:&lt;br&gt; &amp;gt; What you can do is include either a one-time fee for setting up a Developer Program for them, for a recurring fee for managing the Developer Program for them.  Typically you&amp;#39;d need to support the software for a year or so (be sure to include that in your cost estimates) and during which any minor updates and upload of said minor updates should be handled by you.&lt;br&gt; &amp;gt;&lt;br&gt;&amp;gt; Fundamentally I think it&amp;#39;s in that company&amp;#39;s best interest to own their Developer Program anyways.  You should advice them as such.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; --Ben.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; On 1 Feb, 2012, at 1:09 AM, howardk wrote:&lt;br&gt; &amp;gt;&lt;br&gt;&amp;gt;&amp;gt; Hi,&lt;br&gt;&amp;gt;&amp;gt; I&amp;#39;m about to do a small iPhone app contract for somebody who wants&lt;br&gt;&amp;gt;&amp;gt; their company name listed as the Seller on the iTunes page for the&lt;br&gt;&amp;gt;&amp;gt; app. Can I use my existing developer account to do this (I&amp;#39;m listed as&lt;br&gt; &amp;gt;&amp;gt; an individual, not corporate), or would they have to join the&lt;br&gt;&amp;gt;&amp;gt; Developer Program and have me set up and use a corporate account for&lt;br&gt;&amp;gt;&amp;gt; them so that they can get the exposure? Or something else yet again? I&lt;br&gt; &amp;gt;&amp;gt; couldn&amp;#39;t find anything online.&lt;br&gt;&amp;gt;&amp;gt; Thanks,&lt;br&gt;&amp;gt;&amp;gt; Howard&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; --&lt;br&gt;&amp;gt;&amp;gt; You received this message because you are subscribed to the Google Groups &amp;quot;iPhone Software Business&amp;quot; group.&lt;br&gt; &amp;gt;&amp;gt; To post to this group, send email to &lt;a href="mailto:iphonesb@googlegroups.com"&gt;iphonesb@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphonesb%2Bunsubscribe@googlegroups.com"&gt;iphonesb+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt; &amp;gt;&amp;gt; For more options, visit this group at &lt;a href="http://groups.google.com/group/iphonesb?hl=en"&gt;http://groups.google.com/group/iphonesb?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; --&lt;br&gt;&amp;gt; You received this message because you are subscribed to the Google Groups &amp;quot;iPhone Software Business&amp;quot; group.&lt;br&gt; &amp;gt; To post to this group, send email to &lt;a href="mailto:iphonesb@googlegroups.com"&gt;iphonesb@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphonesb%2Bunsubscribe@googlegroups.com"&gt;iphonesb+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt; &amp;gt; For more options, visit this group at &lt;a href="http://groups.google.com/group/iphonesb?hl=en"&gt;http://groups.google.com/group/iphonesb?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;  &lt;p&gt;&lt;/p&gt;  -- &lt;br /&gt; You received this message because you are subscribed to the Google Groups "iPhone Software Business" group.&lt;br /&gt; To post to this group, send email to iphonesb@googlegroups.com.&lt;br /&gt; To unsubscribe from this group, send email to iphonesb+unsubscribe@googlegroups.com.&lt;br /&gt;  For more options, visit this group at http://groups.google.com/group/iphonesb?hl=en.&lt;br /&gt;   &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-5658793409687810564?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/5658793409687810564/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/iphonesb-re-contracting-for-someone-who.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/5658793409687810564'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/5658793409687810564'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/iphonesb-re-contracting-for-someone-who.html' title='[iphonesb] Re: Contracting for someone who wants iTunes presence'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-91841100590334849</id><published>2012-01-31T21:18:00.001-08:00</published><updated>2012-01-31T21:18:36.088-08:00</updated><title type='text'>Re: iOS5.0.1 and Crestron CIP1.1</title><content type='html'>Jarrod,&lt;p&gt;I think my subpage logic is correct as it works after an initial&lt;br&gt;download or app restart. This happens overtime after the iPads have&lt;br&gt;gone into sleep mode. Could it be that the CIP JS is blocking the&lt;br&gt;Loopback system after the iPad comes out of standby while it is busy&lt;br&gt;doing something? Unfortunately I don&amp;#39;t have a lot of time to&lt;br&gt;investigate this now. I left iViewer Next v4.0.190 on the iPads.&lt;p&gt;&lt;br&gt;Thank you!&lt;p&gt;&lt;p&gt;On Feb 1, 6:51&amp;#160;am, Jarrod Bell &amp;lt;&lt;a href="mailto:jar...@guilink.com"&gt;jar...@guilink.com&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt; Your subpage logic is most likely using the &amp;quot;on value&amp;quot; and &amp;quot;off value&amp;quot;&lt;br&gt;&amp;gt; properties of the capture group incorrectly.&lt;br&gt;&amp;gt; The older versions of iViewer allowed ANY value to match and set a&lt;br&gt;&amp;gt; digital join high.&lt;br&gt;&amp;gt; But now you need to make sure that if you define an &amp;quot;on value&amp;quot; that the&lt;br&gt;&amp;gt; captured value matches this exactly.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Not sure what the other issues could be. Seems CIP has a few people in&lt;br&gt;&amp;gt; trouble.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Jarrod&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; On 1/02/12 4:31 AM, Etienne Terblanche wrote:&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Maybe I should explain what the problem is I&amp;#39;m having on-site...&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Since I got back from holiday the client started complaining about the&lt;br&gt;&amp;gt; &amp;gt; iPads taking forever to update the button feedback (digitals) and any&lt;br&gt;&amp;gt; &amp;gt; serial text flieds, whenever the iPads come out of standby.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; There was a couple of changes to the system since I got back:&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; 1) Upgraded all the iPads from iOS5.0 to iOS5.0.1&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; 2) Install iViewer 4 (v4.0.196) - The client used iViewer Next&lt;br&gt;&amp;gt; &amp;gt; (v4.0.184) during the holiday as there wasn&amp;#39;t enough time to change&lt;br&gt;&amp;gt; &amp;gt; and test. The system was working fine for the holiday.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; 3) I also added another 3 iPads and moved one or two between the&lt;br&gt;&amp;gt; &amp;gt; Crestron processors&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; My initial thinking was that the point 3 might have cause some delays&lt;br&gt;&amp;gt; &amp;gt; for Crestron&amp;#39;s side, but when using SIMPL Debugger I saw the the&lt;br&gt;&amp;gt; &amp;gt; signals and serial had the correct values. I did however decide to&lt;br&gt;&amp;gt; &amp;gt; buffer all the serials to each iPad so only the necessary signals are&lt;br&gt;&amp;gt; &amp;gt; sent whenever the relevant page is displayed. With some more testing I&lt;br&gt;&amp;gt; &amp;gt; found that some subpages, that are controlled via a Loopback system in&lt;br&gt;&amp;gt; &amp;gt; every iPad wasn&amp;#39;t working properly. Whenever you select a subpage it&lt;br&gt;&amp;gt; &amp;gt; should first clear any other subpage that&amp;#39;s active before it slides&lt;br&gt;&amp;gt; &amp;gt; into the page, however every subpage will just slide in and on top of&lt;br&gt;&amp;gt; &amp;gt; whatever is already there. This was working perfectly.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; It&amp;#39;s then that I decided to download iViewer Next (v4.0.190) again and&lt;br&gt;&amp;gt; &amp;gt; now everything seems to be back to normal. Digitals and Serials are&lt;br&gt;&amp;gt; &amp;gt; updated almost immediately when I open the app or when the iPad comes&lt;br&gt;&amp;gt; &amp;gt; out of standby.&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-91841100590334849?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/91841100590334849/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-ios501-and-crestron-cip11_4190.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/91841100590334849'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/91841100590334849'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-ios501-and-crestron-cip11_4190.html' title='Re: iOS5.0.1 and Crestron CIP1.1'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-5413541456093298752</id><published>2012-01-31T21:01:00.000-08:00</published><updated>2012-01-31T21:07:13.514-08:00</updated><title type='text'>Re: [iPhone-AppDev-Auditors] Assignment 2: descriptionOfProgram and runProgram</title><content type='html'>You could use Recursive example as is in the demo. but need a little bit condition check for the left bracket and right bracket.&lt;div&gt;Similar idea with the demo, It is a good practice to learn recurrence as well.&lt;/div&gt;&lt;div&gt; &lt;br&gt;&lt;div&gt;Hope that helps :)&lt;br&gt;&lt;br&gt;&lt;div class="gmail_quote"&gt;On Tue, Jan 31, 2012 at 11:58 PM, 8vius &lt;span dir="ltr"&gt;&amp;lt;&lt;a href="mailto:lmd411@gmail.com"&gt;lmd411@gmail.com&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"&gt; Thanks &lt;span&gt;Zhisheng, about the description, I understand what is asked of me, what I don&amp;#39;t know is how to implement it properly.&lt;/span&gt;&lt;div class="im HOEnZb"&gt;&lt;br&gt;&lt;br&gt;&lt;div&gt;&lt;div style="font-size:13.3px;font-family:Verdana,Arial,Helvetica,sans-serif"&gt;    			&lt;div style="margin:0 0 8px 0"&gt;&lt;p style="margin:0"&gt;&lt;span style="font-family:&amp;#39;arial black&amp;#39;,&amp;#39;avant garde&amp;#39;"&gt;Luis Miguel Delgado&lt;br&gt;Tlf: 0412-9902142&lt;br&gt;&lt;br&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both"&gt;&lt;/div&gt;&lt;/div&gt;&lt;span style="color:gray"&gt;My profiles: &lt;/span&gt; &lt;a href="http://www.facebook.com/home.php?#!/8vius" style="text-decoration:underline" target="_blank"&gt;&lt;img width="16" height="16" alt="Facebook" style="padding:0px 0px 5px 0px;vertical-align:middle" border="0"&gt;&lt;/a&gt; &lt;a href="http://twitter.com/8vius" style="text-decoration:underline" target="_blank"&gt;&lt;img width="16" height="16" alt="Twitter" style="padding:0px 0px 5px 0px;vertical-align:middle" border="0"&gt;&lt;/a&gt;&lt;br&gt;   &lt;span style="color:gray"&gt;Contact me: &lt;/span&gt; &lt;img width="16" height="16" alt="Google Talk" style="padding:0px 0px 5px 0px;vertical-align:middle" border="0"&gt; &lt;a href="mailto:lmd411@gmail.com" target="_blank"&gt;lmd411@gmail.com&lt;/a&gt;&lt;br&gt;    			&lt;div style="width:auto;padding-top:2px;font-size:70%;border-top:1px solid #eeeeee;margin-top:10px"&gt; 				&lt;a style="color:#6f6f6f;text-decoration:none" href="http://r1.wisestamp.com/r/landing?promo=19&amp;amp;dest=http%3A%2F%2Fwww.wisestamp.com%2Femail-install%3Futm_source%3Dextension%26utm_medium%3Demail%26utm_campaign%3Dpromo_19" target="_blank"&gt; 					&lt;span style="color:#6f6f6f"&gt;Get a signature like this.&lt;/span&gt; 				&lt;/a&gt; 				&lt;span style="color:#3f48cc"&gt;&lt;a style="color:#3f48cc" href="http://r1.wisestamp.com/r/landing?promo=19&amp;amp;dest=http%3A%2F%2Fwww.wisestamp.com%2Femail-install%3Futm_source%3Dextension%26utm_medium%3Demail%26utm_campaign%3Dpromo_19" target="_blank"&gt;CLICK HERE.&lt;/a&gt;&lt;/span&gt; 				&lt;img border="0" width="1" height="1"&gt; 				  			&lt;/div&gt; 		&lt;img width="1" height="1"&gt;&lt;/div&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;div class="HOEnZb"&gt;&lt;div class="h5"&gt;&lt;div class="gmail_quote"&gt;On Wed, Feb 1, 2012 at 12:17 AM, Zhisheng Huang &lt;span dir="ltr"&gt;&amp;lt;&lt;a href="mailto:lorixxhuang@gmail.com" target="_blank"&gt;lorixxhuang@gmail.com&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;   &lt;blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"&gt;&lt;div style="word-wrap:break-word"&gt;&lt;div&gt;Hi Luis,&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;From my understanding, you have to parse and return a nice readable format from the program stack:&lt;/div&gt;   &lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;For example:&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;In the Program stack we have, 4, 5, *, Sqrt ,    in the descriptionOfProgram you need to return Sqrt(4*5) , notice the number of left ( and right ).&lt;/div&gt;&lt;div&gt;&lt;br&gt;   &lt;/div&gt;&lt;div&gt;The runProgram: usingVariable is used only when you have input a variables dictionary. If there is no dictionary input, the result would be calculated by themselves.&lt;/div&gt;&lt;div&gt;So you could just use the same Calculate button and connect to the new method. I attached a screen shot for my UI and noticed that Description is above the input field.&lt;/div&gt;   &lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Regards,&lt;/div&gt;&lt;div&gt;Zhisheng Huang &lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;a href="http://1.bp.blogspot.com/-AvkRMjuXKsA/TyjIgQTN8PI/AAAAAAAAAX8/3UCkZgpEZeQ/s1600/Screen%2BShot%2B2012-01-31%2Bat%2B11.41.46%2BPM-733515.png"&gt;&lt;img src="http://1.bp.blogspot.com/-AvkRMjuXKsA/TyjIgQTN8PI/AAAAAAAAAX8/3UCkZgpEZeQ/s320/Screen%2BShot%2B2012-01-31%2Bat%2B11.41.46%2BPM-733515.png"  border="0" alt="" id="BLOGGER_PHOTO_ID_5704029384521674994" /&gt;&lt;/a&gt;&lt;br&gt;&lt;div&gt;&lt;div&gt;&lt;div&gt;   &lt;div&gt;On Jan 31, 2012, at 9:53 PM, 8vius wrote:&lt;/div&gt;&lt;br&gt;&lt;blockquote type="cite"&gt;Hey all, I know I&amp;#39;m a little late on this but since I just recently got Lion thought I&amp;#39;d update my iOS Dev lectures as well.&lt;br&gt;&lt;br&gt;  I&amp;#39;m a little confused on how to implement descriptionOfProgram, I have a somewhat similar implementation as runProgram, but I seem to be missing something since I get what seems to be duplicated output, would appreciate some help here. &lt;/blockquote&gt;   &lt;/div&gt;&lt;/div&gt;&lt;blockquote type="cite"&gt;&lt;div&gt;&lt;div&gt;&lt;div&gt;  &lt;br&gt;&lt;/div&gt;&lt;div&gt;Also I&amp;#39;m not sure what to do to execute the runProgramWithVariables, did you set up a button in the UI just to do that or what?&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Thanks ahead.&lt;br&gt;&lt;br&gt;&lt;div&gt;  &lt;div style="font-size:13.3px;font-family:Verdana,Arial,Helvetica,sans-serif"&gt; 			&lt;div style="margin:0 0 8px 0"&gt;&lt;div style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px"&gt;&lt;span style="font-family:&amp;#39;arial black&amp;#39;,&amp;#39;avant garde&amp;#39;"&gt;Luis Miguel Delgado&lt;br&gt;Tlf: 0412-9902142&lt;br&gt;   &lt;br&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="clear:both"&gt;&lt;/div&gt;&lt;/div&gt;&lt;span style="color:gray"&gt;My profiles: &lt;/span&gt; &lt;a href="http://www.facebook.com/home.php?#!/8vius" style="text-decoration:underline" target="_blank"&gt;&lt;img width="16" height="16" alt="Facebook" style="padding:0px 0px 5px 0px;vertical-align:middle" border="0"&gt;&lt;/a&gt; &lt;a href="http://twitter.com/8vius" style="text-decoration:underline" target="_blank"&gt;&lt;img width="16" height="16" alt="Twitter" style="padding:0px 0px 5px 0px;vertical-align:middle" border="0"&gt;&lt;/a&gt;&lt;br&gt;     &lt;span style="color:gray"&gt;Contact me: &lt;/span&gt; &lt;img width="16" height="16" alt="Google Talk" style="padding:0px 0px 5px 0px;vertical-align:middle" border="0"&gt; &lt;a href="mailto:lmd411@gmail.com" target="_blank"&gt;lmd411@gmail.com&lt;/a&gt;&lt;br&gt;      			&lt;div style="width:auto;padding-top:2px;font-size:70%;border-top:1px solid #eeeeee;margin-top:10px"&gt; 				&lt;a style="color:#6f6f6f;text-decoration:none" href="http://r1.wisestamp.com/r/landing?promo=19&amp;amp;dest=http%3A%2F%2Fwww.wisestamp.com%2Femail-install%3Futm_source%3Dextension%26utm_medium%3Demail%26utm_campaign%3Dpromo_19" target="_blank"&gt; 					&lt;span style="color:#6f6f6f"&gt;Get a signature like this.&lt;/span&gt; 				&lt;/a&gt; 				&lt;span style="color:#3f48cc"&gt;&lt;a style="color:#3f48cc" href="http://r1.wisestamp.com/r/landing?promo=19&amp;amp;dest=http%3A%2F%2Fwww.wisestamp.com%2Femail-install%3Futm_source%3Dextension%26utm_medium%3Demail%26utm_campaign%3Dpromo_19" target="_blank"&gt;CLICK HERE.&lt;/a&gt;&lt;/span&gt; 				&lt;img border="0" width="1" height="1"&gt; 				  			&lt;/div&gt; 		&lt;img width="1" height="1"&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;span&gt;&lt;font color="#888888"&gt;  -- &lt;br&gt; You received this message because you are subscribed to the Google Groups &amp;quot;iPhone Application Development Auditors&amp;quot; group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com" target="_blank"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors+unsubscribe@googlegroups.com" target="_blank"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;  For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en" target="_blank"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;   &lt;/font&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;span&gt;&lt;font color="#888888"&gt;&lt;br&gt;&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;&lt;span&gt;&lt;font color="#888888"&gt;  &lt;p&gt;&lt;/p&gt;  -- &lt;br&gt; You received this message because you are subscribed to the Google Groups &amp;quot;iPhone Application Development Auditors&amp;quot; group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com" target="_blank"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors%2Bunsubscribe@googlegroups.com" target="_blank"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;  For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en" target="_blank"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;   &lt;/font&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;  &lt;p&gt;&lt;/p&gt;  -- &lt;br&gt; You received this message because you are subscribed to the Google Groups &amp;quot;iPhone Application Development Auditors&amp;quot; group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com" target="_blank"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors%2Bunsubscribe@googlegroups.com" target="_blank"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;  For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en" target="_blank"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;   &lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;  &lt;p&gt;&lt;/p&gt;  -- &lt;br /&gt; You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.&lt;br /&gt; To post to this group, send email to iphone-appdev-auditors@googlegroups.com.&lt;br /&gt; To unsubscribe from this group, send email to iphone-appdev-auditors+unsubscribe@googlegroups.com.&lt;br /&gt;  For more options, visit this group at http://groups.google.com/group/iphone-appdev-auditors?hl=en.&lt;br /&gt;   &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-5413541456093298752?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/5413541456093298752/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphone-appdev-auditors-assignment-2_811.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/5413541456093298752'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/5413541456093298752'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphone-appdev-auditors-assignment-2_811.html' title='Re: [iPhone-AppDev-Auditors] Assignment 2: descriptionOfProgram and runProgram'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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://1.bp.blogspot.com/-AvkRMjuXKsA/TyjIgQTN8PI/AAAAAAAAAX8/3UCkZgpEZeQ/s72-c/Screen%2BShot%2B2012-01-31%2Bat%2B11.41.46%2BPM-733515.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2789322492541150578.post-7997138288475839584</id><published>2012-01-31T20:58:00.001-08:00</published><updated>2012-01-31T20:58:30.462-08:00</updated><title type='text'>Re: [iPhone-AppDev-Auditors] Assignment 2: descriptionOfProgram and runProgram</title><content type='html'>Thanks &lt;span style&gt;Zhisheng, about the description, I understand what is asked of me, what I don&amp;#39;t know is how to implement it properly.&lt;/span&gt;&lt;br&gt;&lt;br&gt;&lt;div id="WISESTAMP_SIG_9259"&gt;&lt;div style="font-size:13.3px;font-family:Verdana,Arial,Helvetica,sans-serif"&gt;   			&lt;div style="margin:0 0 8px 0"&gt;&lt;p style="margin:0"&gt;&lt;span style="font-family:&amp;#39;arial black&amp;#39;,&amp;#39;avant garde&amp;#39;"&gt;Luis Miguel Delgado&lt;br&gt;Tlf: 0412-9902142&lt;br&gt;&lt;br&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both"&gt;&lt;/div&gt;&lt;/div&gt;&lt;span style="color:gray"&gt;My profiles: &lt;/span&gt; &lt;a href="http://www.facebook.com/home.php?#!/8vius" style="text-decoration:underline"&gt;&lt;img width="16" height="16" alt="Facebook" style="padding: 0px 0px 5px 0px; vertical-align: middle;" border="0" src="https://s3.amazonaws.com/images.wisestamp.com/facebook.png"&gt;&lt;/a&gt; &lt;a href="http://twitter.com/8vius" style="text-decoration:underline"&gt;&lt;img width="16" height="16" alt="Twitter" style="padding: 0px 0px 5px 0px; vertical-align: middle;" border="0" src="https://s3.amazonaws.com/images.wisestamp.com/twitter.png"&gt;&lt;/a&gt;&lt;br&gt;  &lt;span style="color:gray"&gt;Contact me: &lt;/span&gt; &lt;img width="16" height="16" alt="Google Talk" style="padding: 0px 0px 5px 0px; vertical-align: middle;" border="0" src="https://s3.amazonaws.com/images.wisestamp.com/gtalk.png"&gt; &lt;a href="mailto:lmd411@gmail.com"&gt;lmd411@gmail.com&lt;/a&gt;&lt;br&gt;   			&lt;div style="width:auto;padding-top:2px;font-size:70%;border-top:1px solid #eeeeee;margin-top:10px"&gt; 				&lt;a style="color:#6f6f6f;text-decoration:none" href="http://r1.wisestamp.com/r/landing?promo=19&amp;amp;dest=http%3A%2F%2Fwww.wisestamp.com%2Femail-install%3Futm_source%3Dextension%26utm_medium%3Demail%26utm_campaign%3Dpromo_19"&gt; 					&lt;span style="color:#6f6f6f"&gt;Get a signature like this.&lt;/span&gt; 				&lt;/a&gt; 				&lt;span style="color:#3f48cc"&gt;&lt;a style="color:#3f48cc" href="http://r1.wisestamp.com/r/landing?promo=19&amp;amp;dest=http%3A%2F%2Fwww.wisestamp.com%2Femail-install%3Futm_source%3Dextension%26utm_medium%3Demail%26utm_campaign%3Dpromo_19"&gt;CLICK HERE.&lt;/a&gt;&lt;/span&gt; 				&lt;img border="0" width="1" height="1" src="http://pr1.wisestamp.com/p.gif?promo=19"&gt; 				  			&lt;/div&gt; 		&lt;img src="https://wisestamp.appspot.com/pixel.png?p=chrome&amp;amp;v=3.11.13.0&amp;amp;t=1328072277177&amp;amp;u=aa1df1630c4ca423" width="1" height="1"&gt;&lt;/div&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;div class="gmail_quote"&gt;On Wed, Feb 1, 2012 at 12:17 AM, Zhisheng Huang &lt;span dir="ltr"&gt;&amp;lt;&lt;a href="mailto:lorixxhuang@gmail.com"&gt;lorixxhuang@gmail.com&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;  &lt;blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"&gt;&lt;div style="word-wrap:break-word"&gt;&lt;div&gt;Hi Luis,&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;From my understanding, you have to parse and return a nice readable format from the program stack:&lt;/div&gt;  &lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;For example:&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;In the Program stack we have, 4, 5, *, Sqrt ,    in the descriptionOfProgram you need to return Sqrt(4*5) , notice the number of left ( and right ).&lt;/div&gt;&lt;div&gt;&lt;br&gt;  &lt;/div&gt;&lt;div&gt;The runProgram: usingVariable is used only when you have input a variables dictionary. If there is no dictionary input, the result would be calculated by themselves.&lt;/div&gt;&lt;div&gt;So you could just use the same Calculate button and connect to the new method. I attached a screen shot for my UI and noticed that Description is above the input field.&lt;/div&gt;  &lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Regards,&lt;/div&gt;&lt;div&gt;Zhisheng Huang &lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;a href="http://4.bp.blogspot.com/-Zlc0LVEX-vk/TyjGdjpbeFI/AAAAAAAAAXw/MhoOUPWB21Y/s1600/Screen%2BShot%2B2012-01-31%2Bat%2B11.41.46%2BPM-710463.png"&gt;&lt;img src="http://4.bp.blogspot.com/-Zlc0LVEX-vk/TyjGdjpbeFI/AAAAAAAAAXw/MhoOUPWB21Y/s320/Screen%2BShot%2B2012-01-31%2Bat%2B11.41.46%2BPM-710463.png"  border="0" alt="" id="BLOGGER_PHOTO_ID_5704027139152246866" /&gt;&lt;/a&gt;&lt;br&gt;&lt;div&gt;&lt;div&gt;&lt;div class="h5"&gt;  &lt;div&gt;On Jan 31, 2012, at 9:53 PM, 8vius wrote:&lt;/div&gt;&lt;br&gt;&lt;blockquote type="cite"&gt;Hey all, I know I&amp;#39;m a little late on this but since I just recently got Lion thought I&amp;#39;d update my iOS Dev lectures as well.&lt;br&gt;&lt;br&gt; I&amp;#39;m a little confused on how to implement descriptionOfProgram, I have a somewhat similar implementation as runProgram, but I seem to be missing something since I get what seems to be duplicated output, would appreciate some help here. &lt;/blockquote&gt;  &lt;/div&gt;&lt;/div&gt;&lt;blockquote type="cite"&gt;&lt;div&gt;&lt;div class="h5"&gt;&lt;div&gt;  &lt;br&gt;&lt;/div&gt;&lt;div&gt;Also I&amp;#39;m not sure what to do to execute the runProgramWithVariables, did you set up a button in the UI just to do that or what?&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Thanks ahead.&lt;br&gt;&lt;br&gt;&lt;div&gt;  &lt;div style="font-size:13.3px;font-family:Verdana,Arial,Helvetica,sans-serif"&gt; 			&lt;div style="margin:0 0 8px 0"&gt;&lt;div style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px"&gt;&lt;span style="font-family:&amp;#39;arial black&amp;#39;,&amp;#39;avant garde&amp;#39;"&gt;Luis Miguel Delgado&lt;br&gt;Tlf: 0412-9902142&lt;br&gt;  &lt;br&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="clear:both"&gt;&lt;/div&gt;&lt;/div&gt;&lt;span style="color:gray"&gt;My profiles: &lt;/span&gt; &lt;a href="http://www.facebook.com/home.php?#!/8vius" style="text-decoration:underline" target="_blank"&gt;&lt;img width="16" height="16" alt="Facebook" style="padding:0px 0px 5px 0px;vertical-align:middle" border="0"&gt;&lt;/a&gt; &lt;a href="http://twitter.com/8vius" style="text-decoration:underline" target="_blank"&gt;&lt;img width="16" height="16" alt="Twitter" style="padding:0px 0px 5px 0px;vertical-align:middle" border="0"&gt;&lt;/a&gt;&lt;br&gt;    &lt;span style="color:gray"&gt;Contact me: &lt;/span&gt; &lt;img width="16" height="16" alt="Google Talk" style="padding:0px 0px 5px 0px;vertical-align:middle" border="0"&gt; &lt;a href="mailto:lmd411@gmail.com" target="_blank"&gt;lmd411@gmail.com&lt;/a&gt;&lt;br&gt;     			&lt;div style="width:auto;padding-top:2px;font-size:70%;border-top:1px solid #eeeeee;margin-top:10px"&gt; 				&lt;a style="color:#6f6f6f;text-decoration:none" href="http://r1.wisestamp.com/r/landing?promo=19&amp;amp;dest=http%3A%2F%2Fwww.wisestamp.com%2Femail-install%3Futm_source%3Dextension%26utm_medium%3Demail%26utm_campaign%3Dpromo_19" target="_blank"&gt; 					&lt;span style="color:#6f6f6f"&gt;Get a signature like this.&lt;/span&gt; 				&lt;/a&gt; 				&lt;span style="color:#3f48cc"&gt;&lt;a style="color:#3f48cc" href="http://r1.wisestamp.com/r/landing?promo=19&amp;amp;dest=http%3A%2F%2Fwww.wisestamp.com%2Femail-install%3Futm_source%3Dextension%26utm_medium%3Demail%26utm_campaign%3Dpromo_19" target="_blank"&gt;CLICK HERE.&lt;/a&gt;&lt;/span&gt; 				&lt;img border="0" width="1" height="1"&gt; 				  			&lt;/div&gt; 		&lt;img width="1" height="1"&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="HOEnZb"&gt;&lt;font color="#888888"&gt;  -- &lt;br&gt; You received this message because you are subscribed to the Google Groups &amp;quot;iPhone Application Development Auditors&amp;quot; group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com" target="_blank"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors+unsubscribe@googlegroups.com" target="_blank"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;  For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en" target="_blank"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;   &lt;/font&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;span class="HOEnZb"&gt;&lt;font color="#888888"&gt;&lt;br&gt;&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="HOEnZb"&gt;&lt;font color="#888888"&gt;  &lt;p&gt;&lt;/p&gt;  -- &lt;br&gt; You received this message because you are subscribed to the Google Groups &amp;quot;iPhone Application Development Auditors&amp;quot; group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com" target="_blank"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors%2Bunsubscribe@googlegroups.com" target="_blank"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;  For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en" target="_blank"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;   &lt;/font&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;  &lt;p&gt;&lt;/p&gt;  -- &lt;br /&gt; You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.&lt;br /&gt; To post to this group, send email to iphone-appdev-auditors@googlegroups.com.&lt;br /&gt; To unsubscribe from this group, send email to iphone-appdev-auditors+unsubscribe@googlegroups.com.&lt;br /&gt;  For more options, visit this group at http://groups.google.com/group/iphone-appdev-auditors?hl=en.&lt;br /&gt;   &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-7997138288475839584?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/7997138288475839584/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphone-appdev-auditors-assignment-2_31.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7997138288475839584'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7997138288475839584'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphone-appdev-auditors-assignment-2_31.html' title='Re: [iPhone-AppDev-Auditors] Assignment 2: descriptionOfProgram and runProgram'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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://4.bp.blogspot.com/-Zlc0LVEX-vk/TyjGdjpbeFI/AAAAAAAAAXw/MhoOUPWB21Y/s72-c/Screen%2BShot%2B2012-01-31%2Bat%2B11.41.46%2BPM-710463.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2789322492541150578.post-8728959107130048971</id><published>2012-01-31T20:51:00.001-08:00</published><updated>2012-01-31T20:51:25.896-08:00</updated><title type='text'>Re: iOS5.0.1 and Crestron CIP1.1</title><content type='html'>Your subpage logic is most likely using the &amp;quot;on value&amp;quot; and &amp;quot;off value&amp;quot; &lt;br&gt;properties of the capture group incorrectly.&lt;br&gt;The older versions of iViewer allowed ANY value to match and set a &lt;br&gt;digital join high.&lt;br&gt;But now you need to make sure that if you define an &amp;quot;on value&amp;quot; that the &lt;br&gt;captured value matches this exactly.&lt;p&gt;Not sure what the other issues could be. Seems CIP has a few people in &lt;br&gt;trouble.&lt;p&gt;Jarrod&lt;p&gt;On 1/02/12 4:31 AM, Etienne Terblanche wrote:&lt;br&gt;&amp;gt; Maybe I should explain what the problem is I&amp;#39;m having on-site...&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Since I got back from holiday the client started complaining about the&lt;br&gt;&amp;gt; iPads taking forever to update the button feedback (digitals) and any&lt;br&gt;&amp;gt; serial text flieds, whenever the iPads come out of standby.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; There was a couple of changes to the system since I got back:&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; 1) Upgraded all the iPads from iOS5.0 to iOS5.0.1&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; 2) Install iViewer 4 (v4.0.196) - The client used iViewer Next&lt;br&gt;&amp;gt; (v4.0.184) during the holiday as there wasn&amp;#39;t enough time to change&lt;br&gt;&amp;gt; and test. The system was working fine for the holiday.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; 3) I also added another 3 iPads and moved one or two between the&lt;br&gt;&amp;gt; Crestron processors&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; My initial thinking was that the point 3 might have cause some delays&lt;br&gt;&amp;gt; for Crestron&amp;#39;s side, but when using SIMPL Debugger I saw the the&lt;br&gt;&amp;gt; signals and serial had the correct values. I did however decide to&lt;br&gt;&amp;gt; buffer all the serials to each iPad so only the necessary signals are&lt;br&gt;&amp;gt; sent whenever the relevant page is displayed. With some more testing I&lt;br&gt;&amp;gt; found that some subpages, that are controlled via a Loopback system in&lt;br&gt;&amp;gt; every iPad wasn&amp;#39;t working properly. Whenever you select a subpage it&lt;br&gt;&amp;gt; should first clear any other subpage that&amp;#39;s active before it slides&lt;br&gt;&amp;gt; into the page, however every subpage will just slide in and on top of&lt;br&gt;&amp;gt; whatever is already there. This was working perfectly.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; It&amp;#39;s then that I decided to download iViewer Next (v4.0.190) again and&lt;br&gt;&amp;gt; now everything seems to be back to normal. Digitals and Serials are&lt;br&gt;&amp;gt; updated almost immediately when I open the app or when the iPad comes&lt;br&gt;&amp;gt; out of standby.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-8728959107130048971?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/8728959107130048971/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-ios501-and-crestron-cip11_2417.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/8728959107130048971'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/8728959107130048971'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-ios501-and-crestron-cip11_2417.html' title='Re: iOS5.0.1 and Crestron CIP1.1'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-1879832982274188954</id><published>2012-01-31T20:47:00.001-08:00</published><updated>2012-01-31T20:47:37.828-08:00</updated><title type='text'>Re: [iPhone-AppDev-Auditors] Assignment 2: descriptionOfProgram and runProgram</title><content type='html'>&lt;div&gt;Hi Luis,&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;From my understanding, you have to parse and return a nice readable format from the program stack:&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;For example:&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;In the Program stack we have, 4, 5, *, Sqrt , &amp;nbsp; &amp;nbsp;in the descriptionOfProgram you need to return Sqrt(4*5) , notice the number of left ( and right ).&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;The runProgram: usingVariable is used only when you have input a variables dictionary. If there is no dictionary input, the result would be calculated by themselves.&lt;/div&gt;&lt;div&gt;So you could just use the same Calculate button and connect to the new method. I attached a screen shot for my UI and noticed that Description is above the input field.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Regards,&lt;/div&gt;&lt;div&gt;Zhisheng Huang&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;a href="http://4.bp.blogspot.com/-5wloexTptRo/TyjD6rF323I/AAAAAAAAAXk/Sns6gc-7kQs/s1600/Screen%2BShot%2B2012-01-31%2Bat%2B11.41.46%2BPM-757829.png"&gt;&lt;img src="http://4.bp.blogspot.com/-5wloexTptRo/TyjD6rF323I/AAAAAAAAAXk/Sns6gc-7kQs/s320/Screen%2BShot%2B2012-01-31%2Bat%2B11.41.46%2BPM-757829.png"  border="0" alt="" id="BLOGGER_PHOTO_ID_5704024340831918962" /&gt;&lt;/a&gt;&lt;br&gt;&lt;div&gt;&lt;div&gt;On Jan 31, 2012, at 9:53 PM, 8vius wrote:&lt;/div&gt;&lt;br class="Apple-interchange-newline"&gt;&lt;blockquote type="cite"&gt;Hey all, I know I'm a little late on this but since I just recently got Lion thought I'd update my iOS Dev lectures as well.&lt;br&gt;&lt;br&gt;I'm a little confused on how to implement descriptionOfProgram, I have a somewhat similar implementation as runProgram, but I seem to be missing something since I get what seems to be duplicated output, would appreciate some help here.&amp;nbsp;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;div&gt;  &lt;br&gt;&lt;/div&gt;&lt;div&gt;Also I'm not sure what to do to execute the runProgramWithVariables, did you set up a button in the UI just to do that or what?&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Thanks ahead.&lt;br&gt;&lt;br&gt;&lt;div id="WISESTAMP_SIG_8793"&gt;  &lt;div style="font-size:13.3px;font-family:Verdana,Arial,Helvetica,sans-serif"&gt; 			&lt;div style="margin:0 0 8px 0"&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;&lt;span style="font-family:'arial black','avant garde'"&gt;Luis Miguel Delgado&lt;br&gt;Tlf: 0412-9902142&lt;br&gt;&lt;br&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="clear:both"&gt;&lt;/div&gt;&lt;/div&gt;&lt;span style="color:gray"&gt;My profiles: &lt;/span&gt; &lt;a href="http://www.facebook.com/home.php?#!/8vius" style="text-decoration:underline"&gt;&lt;img width="16" height="16" alt="Facebook" style="padding: 0px 0px 5px 0px; vertical-align: middle;" border="0" src="https://s3.amazonaws.com/images.wisestamp.com/facebook.png"&gt;&lt;/a&gt; &lt;a href="http://twitter.com/8vius" style="text-decoration:underline"&gt;&lt;img width="16" height="16" alt="Twitter" style="padding: 0px 0px 5px 0px; vertical-align: middle;" border="0" src="https://s3.amazonaws.com/images.wisestamp.com/twitter.png"&gt;&lt;/a&gt;&lt;br&gt;  &lt;span style="color:gray"&gt;Contact me: &lt;/span&gt; &lt;img width="16" height="16" alt="Google Talk" style="padding: 0px 0px 5px 0px; vertical-align: middle;" border="0" src="https://s3.amazonaws.com/images.wisestamp.com/gtalk.png"&gt; &lt;a href="mailto:lmd411@gmail.com"&gt;lmd411@gmail.com&lt;/a&gt;&lt;br&gt;   			&lt;div style="width:auto;padding-top:2px;font-size:70%;border-top:1px solid #eeeeee;margin-top:10px"&gt; 				&lt;a style="color:#6f6f6f;text-decoration:none" href="http://r1.wisestamp.com/r/landing?promo=19&amp;amp;dest=http%3A%2F%2Fwww.wisestamp.com%2Femail-install%3Futm_source%3Dextension%26utm_medium%3Demail%26utm_campaign%3Dpromo_19"&gt; 					&lt;span style="color:#6f6f6f"&gt;Get a signature like this.&lt;/span&gt; 				&lt;/a&gt; 				&lt;span style="color:#3f48cc"&gt;&lt;a style="color:#3f48cc" href="http://r1.wisestamp.com/r/landing?promo=19&amp;amp;dest=http%3A%2F%2Fwww.wisestamp.com%2Femail-install%3Futm_source%3Dextension%26utm_medium%3Demail%26utm_campaign%3Dpromo_19"&gt;CLICK HERE.&lt;/a&gt;&lt;/span&gt; 				&lt;img border="0" width="1" height="1" src="http://pr1.wisestamp.com/p.gif?promo=19"&gt; 				&amp;nbsp; 			&lt;/div&gt; 		&lt;img src="https://wisestamp.appspot.com/pixel.png?p=chrome&amp;amp;v=3.11.13.0&amp;amp;t=1328064603348&amp;amp;u=aa1df1630c4ca423" width="1" height="1"&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br class="webkit-block-placeholder"&gt;&lt;/div&gt;  -- &lt;br&gt; You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors+unsubscribe@googlegroups.com"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;  For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;   &lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-1879832982274188954?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/1879832982274188954/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphone-appdev-auditors-assignment-2.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/1879832982274188954'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/1879832982274188954'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphone-appdev-auditors-assignment-2.html' title='Re: [iPhone-AppDev-Auditors] Assignment 2: descriptionOfProgram and runProgram'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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://4.bp.blogspot.com/-5wloexTptRo/TyjD6rF323I/AAAAAAAAAXk/Sns6gc-7kQs/s72-c/Screen%2BShot%2B2012-01-31%2Bat%2B11.41.46%2BPM-757829.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2789322492541150578.post-7907089203227985554</id><published>2012-01-31T19:40:00.001-08:00</published><updated>2012-01-31T19:40:24.711-08:00</updated><title type='text'>Re: [iPhone-AppDev-Auditors] assignment 4, requirement 10: How to repopulate Recently Viewed Table Cell, when User views a new photo in Top Place Table?</title><content type='html'>&lt;div apple-content-edited="true"&gt;&lt;span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; "&gt;James, Thank you for the information. After I added "reloadData" to "(&lt;/span&gt;void)viewWillAppear:(BOOL)animated", it works well.&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt; &lt;br&gt;&lt;div&gt;&lt;div&gt;On Feb 1, 2012, at 11:06 AM, James Massara wrote:&lt;/div&gt;&lt;br class="Apple-interchange-newline"&gt;&lt;blockquote type="cite"&gt;&lt;div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "&gt;&lt;div&gt;Does your setter for recentlyViewPhotos do a 'reloadData' on the tableView?&lt;/div&gt;&lt;br&gt;&lt;div&gt;&lt;div&gt;On Jan 31, 2012, at 6:50 PM, Ray Zhang wrote:&lt;/div&gt;&lt;br class="Apple-interchange-newline"&gt;&lt;blockquote type="cite"&gt;&lt;div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "&gt;Yes I did. The&amp;nbsp;NSUserDefaults does get updated. The problem is the "Recently Viewed Table" does NOT get repopulated when User click on the&amp;nbsp;"Recently Viewed Tab".&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I should mention that "- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section" does NOT get called when User click on the "Recently Viewed Tab".&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;For Reference: Following is the code to storing Recently Viewed Photo to&amp;nbsp;NSUserDefaults:&lt;/div&gt;&lt;div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; color: rgb(0, 140, 8); "&gt;&lt;span style="color: #000000"&gt;&amp;nbsp;&lt;/span&gt;//Store Photo to NSUserDefaults, RecentlyViewedPhotoViewController will use it to display&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; color: rgb(127, 27, 171); "&gt;&lt;span style="color: #000000"&gt;&amp;nbsp; &amp;nbsp; &lt;/span&gt;NSUserDefaults&lt;span style="color: #000000"&gt; *defaults = [&lt;/span&gt;NSUserDefaults&lt;span style="color: #000000"&gt; &lt;/span&gt;&lt;span style="color: #4a0083"&gt;standardUserDefaults&lt;/span&gt;&lt;span style="color: #000000"&gt;];&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &lt;span style="color: #7f1bab"&gt;NSMutableArray&lt;/span&gt; *photos = [[defaults &lt;span style="color: #4a0083"&gt;objectForKey&lt;/span&gt;:&lt;span style="color: #804623"&gt;RECENTILYVIEWEDPHOTOS_KEY&lt;/span&gt;] &lt;span style="color: #4a0083"&gt;mutableCopy&lt;/span&gt;];&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &lt;span style="color: #cf00a0"&gt;if&lt;/span&gt;(!photos) photos = [&lt;span style="color: #7f1bab"&gt;NSMutableArray&lt;/span&gt; &lt;span style="color: #4a0083"&gt;array&lt;/span&gt;];&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &lt;span style="color: #cf00a0"&gt;if&lt;/span&gt; ([photos &lt;span style="color: #4a0083"&gt;indexOfObject&lt;/span&gt;:&lt;span style="color: #cf00a0"&gt;self&lt;/span&gt;.&lt;span style="color: #3c8389"&gt;photo&lt;/span&gt;] == &lt;span style="color: #4a0083"&gt;NSNotFound&lt;/span&gt;) {&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; [photos &lt;span style="color: #4a0083"&gt;addObject&lt;/span&gt;:&lt;span style="color: #cf00a0"&gt;self&lt;/span&gt;.&lt;span style="color: #3c8389"&gt;photo&lt;/span&gt;];&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; [defaults &lt;span style="color: #4a0083"&gt;setObject&lt;/span&gt;:photos &lt;span style="color: #4a0083"&gt;forKey&lt;/span&gt;:&lt;span style="color: #804623"&gt;RECENTILYVIEWEDPHOTOS_KEY&lt;/span&gt;];&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span style="color: #cf00a0"&gt;if&lt;/span&gt;(![defaults &lt;span style="color: #4a0083"&gt;synchronize&lt;/span&gt;]) &lt;span style="color: #4a0083"&gt;NSLog&lt;/span&gt;(&lt;span style="color: #e50000"&gt;@"failed"&lt;/span&gt;);&amp;nbsp; &amp;nbsp;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; }&amp;nbsp;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;div apple-content-edited="true"&gt;&lt;br&gt; &lt;/div&gt; &lt;br&gt;&lt;div&gt;&lt;div&gt;On Feb 1, 2012, at 10:42 AM, James Massara wrote:&lt;/div&gt;&lt;br class="Apple-interchange-newline"&gt;&lt;blockquote type="cite"&gt;&lt;div&gt;Hi zak, are you doing 'synchronize' after you update your NSUserDefaults object?&lt;br&gt;&lt;br&gt;On Jan 31, 2012, at 6:34 PM, zak wrote:&lt;br&gt;&lt;br&gt;&lt;blockquote type="cite"&gt;How to repopulate Recently Viewed Table Cell, when User views a new&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;photo in Top Place Table?&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;Currently, I am setting my Recently Viewed Table Data Source in "-&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;(void)viewWillAppear:(BOOL)animated", which work for first time when&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;the application is launched. But it does NOT work when user views a&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;new photo at Top Place Tab.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;I am getting the NSUserDefaults' Recently Viewed Photo List at&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;viewWillAppear. And I update NSUserDefaults at Top Place Tab.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;- (void)viewWillAppear:(BOOL)animated&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;{&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt; &amp;nbsp;&amp;nbsp;[super viewWillAppear:animated];&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt; &amp;nbsp;&amp;nbsp;self.recentlyViewedPhotos = [[NSUserDefaults standardUserDefaults]&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;objectForKey:RECENTILYVIEWEDPHOTOS_KEY];&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;}&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;-- &lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors+unsubscribe@googlegroups.com"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;br&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors+unsubscribe@googlegroups.com"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br class="webkit-block-placeholder"&gt;&lt;/div&gt;  -- &lt;br&gt; You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors+unsubscribe@googlegroups.com"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;  For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;   &lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br class="webkit-block-placeholder"&gt;&lt;/div&gt;  -- &lt;br&gt; You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors+unsubscribe@googlegroups.com"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;  For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;   &lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-7907089203227985554?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/7907089203227985554/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphone-appdev-auditors-assignment-4_4241.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7907089203227985554'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7907089203227985554'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphone-appdev-auditors-assignment-4_4241.html' title='Re: [iPhone-AppDev-Auditors] assignment 4, requirement 10: How to repopulate Recently Viewed Table Cell, when User views a new photo in Top Place Table?'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-865279226802055551</id><published>2012-01-31T19:39:00.000-08:00</published><updated>2012-01-31T19:40:01.597-08:00</updated><title type='text'>Re: [iPhone-AppDev-Auditors] assignment 4, requirement 10: How to repopulate Recently Viewed Table Cell, when User views a new photo in Top Place Table?</title><content type='html'>I don't see it in the viewWillAppear:animated code you posted. &amp;nbsp;Did you just omit it? &amp;nbsp;It should work fine there but it's probably more appropriate to put it in the setter of the table view data source.&lt;div&gt;&lt;br&gt;&lt;div&gt;&lt;div&gt;On Jan 31, 2012, at 7:14 PM, Ray Zhang wrote:&lt;/div&gt;&lt;br class="Apple-interchange-newline"&gt;&lt;blockquote type="cite"&gt;&lt;div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "&gt;&lt;div apple-content-edited="true"&gt;&lt;span class="Apple-style-span" style="orphans: 2; text-align: -webkit-auto; text-indent: 0px; widows: 2; -webkit-text-decorations-in-effect: none; "&gt;This is exactly what I want to ask where I should to the 'reloadData'? Cause currently I does the reloadData at&amp;nbsp;(void)viewWillAppear:(BOOL)animated, which only works when the table first loaded.&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="orphans: 2; text-align: -webkit-auto; text-indent: 0px; widows: 2; -webkit-text-decorations-in-effect: none; "&gt;&lt;br&gt;&lt;/span&gt; &lt;/div&gt; &lt;br&gt;&lt;div&gt;&lt;div&gt;On Feb 1, 2012, at 11:06 AM, James Massara wrote:&lt;/div&gt;&lt;br class="Apple-interchange-newline"&gt;&lt;blockquote type="cite"&gt;&lt;div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "&gt;&lt;div&gt;Does your setter for recentlyViewPhotos do a 'reloadData' on the tableView?&lt;/div&gt;&lt;br&gt;&lt;div&gt;&lt;div&gt;On Jan 31, 2012, at 6:50 PM, Ray Zhang wrote:&lt;/div&gt;&lt;br class="Apple-interchange-newline"&gt;&lt;blockquote type="cite"&gt;&lt;div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "&gt;Yes I did. The&amp;nbsp;NSUserDefaults does get updated. The problem is the "Recently Viewed Table" does NOT get repopulated when User click on the&amp;nbsp;"Recently Viewed Tab".&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I should mention that "- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section" does NOT get called when User click on the "Recently Viewed Tab".&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;For Reference: Following is the code to storing Recently Viewed Photo to&amp;nbsp;NSUserDefaults:&lt;/div&gt;&lt;div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; color: rgb(0, 140, 8); "&gt;&lt;span style="color: #000000"&gt;&amp;nbsp;&lt;/span&gt;//Store Photo to NSUserDefaults, RecentlyViewedPhotoViewController will use it to display&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; color: rgb(127, 27, 171); "&gt;&lt;span style="color: #000000"&gt;&amp;nbsp; &amp;nbsp; &lt;/span&gt;NSUserDefaults&lt;span style="color: #000000"&gt; *defaults = [&lt;/span&gt;NSUserDefaults&lt;span style="color: #000000"&gt; &lt;/span&gt;&lt;span style="color: #4a0083"&gt;standardUserDefaults&lt;/span&gt;&lt;span style="color: #000000"&gt;];&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &lt;span style="color: #7f1bab"&gt;NSMutableArray&lt;/span&gt; *photos = [[defaults &lt;span style="color: #4a0083"&gt;objectForKey&lt;/span&gt;:&lt;span style="color: #804623"&gt;RECENTILYVIEWEDPHOTOS_KEY&lt;/span&gt;] &lt;span style="color: #4a0083"&gt;mutableCopy&lt;/span&gt;];&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &lt;span style="color: #cf00a0"&gt;if&lt;/span&gt;(!photos) photos = [&lt;span style="color: #7f1bab"&gt;NSMutableArray&lt;/span&gt; &lt;span style="color: #4a0083"&gt;array&lt;/span&gt;];&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &lt;span style="color: #cf00a0"&gt;if&lt;/span&gt; ([photos &lt;span style="color: #4a0083"&gt;indexOfObject&lt;/span&gt;:&lt;span style="color: #cf00a0"&gt;self&lt;/span&gt;.&lt;span style="color: #3c8389"&gt;photo&lt;/span&gt;] == &lt;span style="color: #4a0083"&gt;NSNotFound&lt;/span&gt;) {&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; [photos &lt;span style="color: #4a0083"&gt;addObject&lt;/span&gt;:&lt;span style="color: #cf00a0"&gt;self&lt;/span&gt;.&lt;span style="color: #3c8389"&gt;photo&lt;/span&gt;];&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; [defaults &lt;span style="color: #4a0083"&gt;setObject&lt;/span&gt;:photos &lt;span style="color: #4a0083"&gt;forKey&lt;/span&gt;:&lt;span style="color: #804623"&gt;RECENTILYVIEWEDPHOTOS_KEY&lt;/span&gt;];&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span style="color: #cf00a0"&gt;if&lt;/span&gt;(![defaults &lt;span style="color: #4a0083"&gt;synchronize&lt;/span&gt;]) &lt;span style="color: #4a0083"&gt;NSLog&lt;/span&gt;(&lt;span style="color: #e50000"&gt;@"failed"&lt;/span&gt;);&amp;nbsp; &amp;nbsp;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; }&amp;nbsp;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;div apple-content-edited="true"&gt;&lt;br&gt; &lt;/div&gt; &lt;br&gt;&lt;div&gt;&lt;div&gt;On Feb 1, 2012, at 10:42 AM, James Massara wrote:&lt;/div&gt;&lt;br class="Apple-interchange-newline"&gt;&lt;blockquote type="cite"&gt;&lt;div&gt;Hi zak, are you doing 'synchronize' after you update your NSUserDefaults object?&lt;br&gt;&lt;br&gt;On Jan 31, 2012, at 6:34 PM, zak wrote:&lt;br&gt;&lt;br&gt;&lt;blockquote type="cite"&gt;How to repopulate Recently Viewed Table Cell, when User views a new&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;photo in Top Place Table?&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;Currently, I am setting my Recently Viewed Table Data Source in "-&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;(void)viewWillAppear:(BOOL)animated", which work for first time when&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;the application is launched. But it does NOT work when user views a&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;new photo at Top Place Tab.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;I am getting the NSUserDefaults' Recently Viewed Photo List at&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;viewWillAppear. And I update NSUserDefaults at Top Place Tab.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;- (void)viewWillAppear:(BOOL)animated&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;{&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt; &amp;nbsp;&amp;nbsp;[super viewWillAppear:animated];&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt; &amp;nbsp;&amp;nbsp;self.recentlyViewedPhotos = [[NSUserDefaults standardUserDefaults]&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;objectForKey:RECENTILYVIEWEDPHOTOS_KEY];&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;}&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;-- &lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors+unsubscribe@googlegroups.com"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;br&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors+unsubscribe@googlegroups.com"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br class="webkit-block-placeholder"&gt;&lt;/div&gt;  -- &lt;br&gt; You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors+unsubscribe@googlegroups.com"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;  For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;   &lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br class="webkit-block-placeholder"&gt;&lt;/div&gt;  -- &lt;br&gt; You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors+unsubscribe@googlegroups.com"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;  For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;   &lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br class="webkit-block-placeholder"&gt;&lt;/div&gt;  -- &lt;br&gt; You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors+unsubscribe@googlegroups.com"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;  For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;   &lt;/blockquote&gt;&lt;/div&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/2789322492541150578-865279226802055551?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/865279226802055551/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphone-appdev-auditors-assignment-4_7259.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/865279226802055551'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/865279226802055551'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphone-appdev-auditors-assignment-4_7259.html' title='Re: [iPhone-AppDev-Auditors] assignment 4, requirement 10: How to repopulate Recently Viewed Table Cell, when User views a new photo in Top Place Table?'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-3795529865086627854</id><published>2012-01-31T19:14:00.001-08:00</published><updated>2012-01-31T19:14:33.500-08:00</updated><title type='text'>Re: [iPhone-AppDev-Auditors] assignment 4, requirement 10: How to repopulate Recently Viewed Table Cell, when User views a new photo in Top Place Table?</title><content type='html'>&lt;div apple-content-edited="true"&gt;&lt;span class="Apple-style-span" style="orphans: 2; text-align: -webkit-auto; text-indent: 0px; widows: 2; -webkit-text-decorations-in-effect: none; "&gt;This is exactly what I want to ask where I should to the 'reloadData'? Cause currently I does the reloadData at&amp;nbsp;(void)viewWillAppear:(BOOL)animated, which only works when the table first loaded.&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="orphans: 2; text-align: -webkit-auto; text-indent: 0px; widows: 2; -webkit-text-decorations-in-effect: none; "&gt;&lt;br&gt;&lt;/span&gt; &lt;/div&gt; &lt;br&gt;&lt;div&gt;&lt;div&gt;On Feb 1, 2012, at 11:06 AM, James Massara wrote:&lt;/div&gt;&lt;br class="Apple-interchange-newline"&gt;&lt;blockquote type="cite"&gt;&lt;div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "&gt;&lt;div&gt;Does your setter for recentlyViewPhotos do a 'reloadData' on the tableView?&lt;/div&gt;&lt;br&gt;&lt;div&gt;&lt;div&gt;On Jan 31, 2012, at 6:50 PM, Ray Zhang wrote:&lt;/div&gt;&lt;br class="Apple-interchange-newline"&gt;&lt;blockquote type="cite"&gt;&lt;div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "&gt;Yes I did. The&amp;nbsp;NSUserDefaults does get updated. The problem is the "Recently Viewed Table" does NOT get repopulated when User click on the&amp;nbsp;"Recently Viewed Tab".&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I should mention that "- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section" does NOT get called when User click on the "Recently Viewed Tab".&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;For Reference: Following is the code to storing Recently Viewed Photo to&amp;nbsp;NSUserDefaults:&lt;/div&gt;&lt;div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; color: rgb(0, 140, 8); "&gt;&lt;span style="color: #000000"&gt;&amp;nbsp;&lt;/span&gt;//Store Photo to NSUserDefaults, RecentlyViewedPhotoViewController will use it to display&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; color: rgb(127, 27, 171); "&gt;&lt;span style="color: #000000"&gt;&amp;nbsp; &amp;nbsp; &lt;/span&gt;NSUserDefaults&lt;span style="color: #000000"&gt; *defaults = [&lt;/span&gt;NSUserDefaults&lt;span style="color: #000000"&gt; &lt;/span&gt;&lt;span style="color: #4a0083"&gt;standardUserDefaults&lt;/span&gt;&lt;span style="color: #000000"&gt;];&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &lt;span style="color: #7f1bab"&gt;NSMutableArray&lt;/span&gt; *photos = [[defaults &lt;span style="color: #4a0083"&gt;objectForKey&lt;/span&gt;:&lt;span style="color: #804623"&gt;RECENTILYVIEWEDPHOTOS_KEY&lt;/span&gt;] &lt;span style="color: #4a0083"&gt;mutableCopy&lt;/span&gt;];&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &lt;span style="color: #cf00a0"&gt;if&lt;/span&gt;(!photos) photos = [&lt;span style="color: #7f1bab"&gt;NSMutableArray&lt;/span&gt; &lt;span style="color: #4a0083"&gt;array&lt;/span&gt;];&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &lt;span style="color: #cf00a0"&gt;if&lt;/span&gt; ([photos &lt;span style="color: #4a0083"&gt;indexOfObject&lt;/span&gt;:&lt;span style="color: #cf00a0"&gt;self&lt;/span&gt;.&lt;span style="color: #3c8389"&gt;photo&lt;/span&gt;] == &lt;span style="color: #4a0083"&gt;NSNotFound&lt;/span&gt;) {&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; [photos &lt;span style="color: #4a0083"&gt;addObject&lt;/span&gt;:&lt;span style="color: #cf00a0"&gt;self&lt;/span&gt;.&lt;span style="color: #3c8389"&gt;photo&lt;/span&gt;];&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; [defaults &lt;span style="color: #4a0083"&gt;setObject&lt;/span&gt;:photos &lt;span style="color: #4a0083"&gt;forKey&lt;/span&gt;:&lt;span style="color: #804623"&gt;RECENTILYVIEWEDPHOTOS_KEY&lt;/span&gt;];&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span style="color: #cf00a0"&gt;if&lt;/span&gt;(![defaults &lt;span style="color: #4a0083"&gt;synchronize&lt;/span&gt;]) &lt;span style="color: #4a0083"&gt;NSLog&lt;/span&gt;(&lt;span style="color: #e50000"&gt;@"failed"&lt;/span&gt;);&amp;nbsp; &amp;nbsp;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; }&amp;nbsp;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;div apple-content-edited="true"&gt;&lt;br&gt; &lt;/div&gt; &lt;br&gt;&lt;div&gt;&lt;div&gt;On Feb 1, 2012, at 10:42 AM, James Massara wrote:&lt;/div&gt;&lt;br class="Apple-interchange-newline"&gt;&lt;blockquote type="cite"&gt;&lt;div&gt;Hi zak, are you doing 'synchronize' after you update your NSUserDefaults object?&lt;br&gt;&lt;br&gt;On Jan 31, 2012, at 6:34 PM, zak wrote:&lt;br&gt;&lt;br&gt;&lt;blockquote type="cite"&gt;How to repopulate Recently Viewed Table Cell, when User views a new&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;photo in Top Place Table?&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;Currently, I am setting my Recently Viewed Table Data Source in "-&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;(void)viewWillAppear:(BOOL)animated", which work for first time when&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;the application is launched. But it does NOT work when user views a&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;new photo at Top Place Tab.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;I am getting the NSUserDefaults' Recently Viewed Photo List at&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;viewWillAppear. And I update NSUserDefaults at Top Place Tab.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;- (void)viewWillAppear:(BOOL)animated&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;{&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt; &amp;nbsp;&amp;nbsp;[super viewWillAppear:animated];&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt; &amp;nbsp;&amp;nbsp;self.recentlyViewedPhotos = [[NSUserDefaults standardUserDefaults]&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;objectForKey:RECENTILYVIEWEDPHOTOS_KEY];&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;}&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;-- &lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors+unsubscribe@googlegroups.com"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;br&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors+unsubscribe@googlegroups.com"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br class="webkit-block-placeholder"&gt;&lt;/div&gt;  -- &lt;br&gt; You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors+unsubscribe@googlegroups.com"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;  For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;   &lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br class="webkit-block-placeholder"&gt;&lt;/div&gt;  -- &lt;br&gt; You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors+unsubscribe@googlegroups.com"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;  For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;   &lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-3795529865086627854?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/3795529865086627854/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphone-appdev-auditors-assignment-4_7005.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/3795529865086627854'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/3795529865086627854'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphone-appdev-auditors-assignment-4_7005.html' title='Re: [iPhone-AppDev-Auditors] assignment 4, requirement 10: How to repopulate Recently Viewed Table Cell, when User views a new photo in Top Place Table?'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-8541004157827150702</id><published>2012-01-31T19:06:00.001-08:00</published><updated>2012-01-31T19:06:19.234-08:00</updated><title type='text'>Re: [iPhone-AppDev-Auditors] assignment 4, requirement 10: How to repopulate Recently Viewed Table Cell, when User views a new photo in Top Place Table?</title><content type='html'>&lt;div&gt;Does your setter for recentlyViewPhotos do a 'reloadData' on the tableView?&lt;/div&gt;&lt;br&gt;&lt;div&gt;&lt;div&gt;On Jan 31, 2012, at 6:50 PM, Ray Zhang wrote:&lt;/div&gt;&lt;br class="Apple-interchange-newline"&gt;&lt;blockquote type="cite"&gt;&lt;div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "&gt;Yes I did. The&amp;nbsp;NSUserDefaults does get updated. The problem is the "Recently Viewed Table" does NOT get repopulated when User click on the&amp;nbsp;"Recently Viewed Tab".&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I should mention that "- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section" does NOT get called when User click on the "Recently Viewed Tab".&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;For Reference: Following is the code to storing Recently Viewed Photo to&amp;nbsp;NSUserDefaults:&lt;/div&gt;&lt;div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; color: rgb(0, 140, 8); "&gt;&lt;span style="color: #000000"&gt;&amp;nbsp;&lt;/span&gt;//Store Photo to NSUserDefaults, RecentlyViewedPhotoViewController will use it to display&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; color: rgb(127, 27, 171); "&gt;&lt;span style="color: #000000"&gt;&amp;nbsp; &amp;nbsp; &lt;/span&gt;NSUserDefaults&lt;span style="color: #000000"&gt; *defaults = [&lt;/span&gt;NSUserDefaults&lt;span style="color: #000000"&gt; &lt;/span&gt;&lt;span style="color: #4a0083"&gt;standardUserDefaults&lt;/span&gt;&lt;span style="color: #000000"&gt;];&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &lt;span style="color: #7f1bab"&gt;NSMutableArray&lt;/span&gt; *photos = [[defaults &lt;span style="color: #4a0083"&gt;objectForKey&lt;/span&gt;:&lt;span style="color: #804623"&gt;RECENTILYVIEWEDPHOTOS_KEY&lt;/span&gt;] &lt;span style="color: #4a0083"&gt;mutableCopy&lt;/span&gt;];&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &lt;span style="color: #cf00a0"&gt;if&lt;/span&gt;(!photos) photos = [&lt;span style="color: #7f1bab"&gt;NSMutableArray&lt;/span&gt; &lt;span style="color: #4a0083"&gt;array&lt;/span&gt;];&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &lt;span style="color: #cf00a0"&gt;if&lt;/span&gt; ([photos &lt;span style="color: #4a0083"&gt;indexOfObject&lt;/span&gt;:&lt;span style="color: #cf00a0"&gt;self&lt;/span&gt;.&lt;span style="color: #3c8389"&gt;photo&lt;/span&gt;] == &lt;span style="color: #4a0083"&gt;NSNotFound&lt;/span&gt;) {&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; [photos &lt;span style="color: #4a0083"&gt;addObject&lt;/span&gt;:&lt;span style="color: #cf00a0"&gt;self&lt;/span&gt;.&lt;span style="color: #3c8389"&gt;photo&lt;/span&gt;];&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; [defaults &lt;span style="color: #4a0083"&gt;setObject&lt;/span&gt;:photos &lt;span style="color: #4a0083"&gt;forKey&lt;/span&gt;:&lt;span style="color: #804623"&gt;RECENTILYVIEWEDPHOTOS_KEY&lt;/span&gt;];&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span style="color: #cf00a0"&gt;if&lt;/span&gt;(![defaults &lt;span style="color: #4a0083"&gt;synchronize&lt;/span&gt;]) &lt;span style="color: #4a0083"&gt;NSLog&lt;/span&gt;(&lt;span style="color: #e50000"&gt;@"failed"&lt;/span&gt;);&amp;nbsp; &amp;nbsp;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; }&amp;nbsp;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;div apple-content-edited="true"&gt;&lt;br&gt; &lt;/div&gt; &lt;br&gt;&lt;div&gt;&lt;div&gt;On Feb 1, 2012, at 10:42 AM, James Massara wrote:&lt;/div&gt;&lt;br class="Apple-interchange-newline"&gt;&lt;blockquote type="cite"&gt;&lt;div&gt;Hi zak, are you doing 'synchronize' after you update your NSUserDefaults object?&lt;br&gt;&lt;br&gt;On Jan 31, 2012, at 6:34 PM, zak wrote:&lt;br&gt;&lt;br&gt;&lt;blockquote type="cite"&gt;How to repopulate Recently Viewed Table Cell, when User views a new&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;photo in Top Place Table?&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;Currently, I am setting my Recently Viewed Table Data Source in "-&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;(void)viewWillAppear:(BOOL)animated", which work for first time when&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;the application is launched. But it does NOT work when user views a&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;new photo at Top Place Tab.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;I am getting the NSUserDefaults' Recently Viewed Photo List at&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;viewWillAppear. And I update NSUserDefaults at Top Place Tab.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;- (void)viewWillAppear:(BOOL)animated&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;{&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt; &amp;nbsp;&amp;nbsp;[super viewWillAppear:animated];&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt; &amp;nbsp;&amp;nbsp;self.recentlyViewedPhotos = [[NSUserDefaults standardUserDefaults]&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;objectForKey:RECENTILYVIEWEDPHOTOS_KEY];&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;}&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;-- &lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors+unsubscribe@googlegroups.com"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;br&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors+unsubscribe@googlegroups.com"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br class="webkit-block-placeholder"&gt;&lt;/div&gt;  -- &lt;br&gt; You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors+unsubscribe@googlegroups.com"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;  For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;   &lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-8541004157827150702?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/8541004157827150702/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphone-appdev-auditors-assignment-4_9576.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/8541004157827150702'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/8541004157827150702'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphone-appdev-auditors-assignment-4_9576.html' title='Re: [iPhone-AppDev-Auditors] assignment 4, requirement 10: How to repopulate Recently Viewed Table Cell, when User views a new photo in Top Place Table?'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-2535707937481328177</id><published>2012-01-31T18:58:00.000-08:00</published><updated>2012-01-31T18:59:29.351-08:00</updated><title type='text'>Re: [iphonesb] Contracting for someone who wants iTunes presence</title><content type='html'>What you can do is include either a one-time fee for setting up a Developer Program for them, for a recurring fee for managing the Developer Program for them.  Typically you&amp;#39;d need to support the software for a year or so (be sure to include that in your cost estimates) and during which any minor updates and upload of said minor updates should be handled by you. &lt;p&gt;Fundamentally I think it&amp;#39;s in that company&amp;#39;s best interest to own their Developer Program anyways.  You should advice them as such. &lt;p&gt;--Ben.&lt;p&gt;On 1 Feb, 2012, at 1:09 AM, howardk wrote:&lt;p&gt;&amp;gt; Hi,&lt;br&gt;&amp;gt; I&amp;#39;m about to do a small iPhone app contract for somebody who wants&lt;br&gt;&amp;gt; their company name listed as the Seller on the iTunes page for the&lt;br&gt;&amp;gt; app. Can I use my existing developer account to do this (I&amp;#39;m listed as&lt;br&gt;&amp;gt; an individual, not corporate), or would they have to join the&lt;br&gt;&amp;gt; Developer Program and have me set up and use a corporate account for&lt;br&gt;&amp;gt; them so that they can get the exposure? Or something else yet again? I&lt;br&gt;&amp;gt; couldn&amp;#39;t find anything online.&lt;br&gt;&amp;gt; Thanks,&lt;br&gt;&amp;gt; Howard&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; -- &lt;br&gt;&amp;gt; You received this message because you are subscribed to the Google Groups &amp;quot;iPhone Software Business&amp;quot; group.&lt;br&gt;&amp;gt; To post to this group, send email to &lt;a href="mailto:iphonesb@googlegroups.com"&gt;iphonesb@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphonesb%2Bunsubscribe@googlegroups.com"&gt;iphonesb+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; For more options, visit this group at &lt;a href="http://groups.google.com/group/iphonesb?hl=en"&gt;http://groups.google.com/group/iphonesb?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt; &lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;iPhone Software Business&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:iphonesb@googlegroups.com"&gt;iphonesb@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:iphonesb%2Bunsubscribe@googlegroups.com"&gt;iphonesb+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/iphonesb?hl=en"&gt;http://groups.google.com/group/iphonesb?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-2535707937481328177?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/2535707937481328177/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphonesb-contracting-for-someone-who_7261.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/2535707937481328177'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/2535707937481328177'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphonesb-contracting-for-someone-who_7261.html' title='Re: [iphonesb] Contracting for someone who wants iTunes presence'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-5877560029684181600</id><published>2012-01-31T18:53:00.001-08:00</published><updated>2012-01-31T18:53:59.471-08:00</updated><title type='text'>[iPhone-AppDev-Auditors] Assignment 2: descriptionOfProgram and runProgram</title><content type='html'>Hey all, I know I&amp;#39;m a little late on this but since I just recently got Lion thought I&amp;#39;d update my iOS Dev lectures as well.&lt;br&gt;&lt;br&gt;I&amp;#39;m a little confused on how to implement descriptionOfProgram, I have a somewhat similar implementation as runProgram, but I seem to be missing something since I get what seems to be duplicated output, would appreciate some help here. &lt;div&gt;  &lt;br&gt;&lt;/div&gt;&lt;div&gt;Also I&amp;#39;m not sure what to do to execute the runProgramWithVariables, did you set up a button in the UI just to do that or what?&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Thanks ahead.&lt;br&gt;&lt;br&gt;&lt;div id="WISESTAMP_SIG_8793"&gt;  &lt;div style="font-size:13.3px;font-family:Verdana,Arial,Helvetica,sans-serif"&gt; 			&lt;div style="margin:0 0 8px 0"&gt;&lt;p style="margin:0"&gt;&lt;span style="font-family:&amp;#39;arial black&amp;#39;,&amp;#39;avant garde&amp;#39;"&gt;Luis Miguel Delgado&lt;br&gt;Tlf: 0412-9902142&lt;br&gt;&lt;br&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both"&gt;&lt;/div&gt;&lt;/div&gt;&lt;span style="color:gray"&gt;My profiles: &lt;/span&gt; &lt;a href="http://www.facebook.com/home.php?#!/8vius" style="text-decoration:underline"&gt;&lt;img width="16" height="16" alt="Facebook" style="padding: 0px 0px 5px 0px; vertical-align: middle;" border="0" src="https://s3.amazonaws.com/images.wisestamp.com/facebook.png"&gt;&lt;/a&gt; &lt;a href="http://twitter.com/8vius" style="text-decoration:underline"&gt;&lt;img width="16" height="16" alt="Twitter" style="padding: 0px 0px 5px 0px; vertical-align: middle;" border="0" src="https://s3.amazonaws.com/images.wisestamp.com/twitter.png"&gt;&lt;/a&gt;&lt;br&gt;  &lt;span style="color:gray"&gt;Contact me: &lt;/span&gt; &lt;img width="16" height="16" alt="Google Talk" style="padding: 0px 0px 5px 0px; vertical-align: middle;" border="0" src="https://s3.amazonaws.com/images.wisestamp.com/gtalk.png"&gt; &lt;a href="mailto:lmd411@gmail.com"&gt;lmd411@gmail.com&lt;/a&gt;&lt;br&gt;   			&lt;div style="width:auto;padding-top:2px;font-size:70%;border-top:1px solid #eeeeee;margin-top:10px"&gt; 				&lt;a style="color:#6f6f6f;text-decoration:none" href="http://r1.wisestamp.com/r/landing?promo=19&amp;amp;dest=http%3A%2F%2Fwww.wisestamp.com%2Femail-install%3Futm_source%3Dextension%26utm_medium%3Demail%26utm_campaign%3Dpromo_19"&gt; 					&lt;span style="color:#6f6f6f"&gt;Get a signature like this.&lt;/span&gt; 				&lt;/a&gt; 				&lt;span style="color:#3f48cc"&gt;&lt;a style="color:#3f48cc" href="http://r1.wisestamp.com/r/landing?promo=19&amp;amp;dest=http%3A%2F%2Fwww.wisestamp.com%2Femail-install%3Futm_source%3Dextension%26utm_medium%3Demail%26utm_campaign%3Dpromo_19"&gt;CLICK HERE.&lt;/a&gt;&lt;/span&gt; 				&lt;img border="0" width="1" height="1" src="http://pr1.wisestamp.com/p.gif?promo=19"&gt; 				  			&lt;/div&gt; 		&lt;img src="https://wisestamp.appspot.com/pixel.png?p=chrome&amp;amp;v=3.11.13.0&amp;amp;t=1328064603348&amp;amp;u=aa1df1630c4ca423" width="1" height="1"&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;  &lt;p&gt;&lt;/p&gt;  -- &lt;br /&gt; You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.&lt;br /&gt; To post to this group, send email to iphone-appdev-auditors@googlegroups.com.&lt;br /&gt; To unsubscribe from this group, send email to iphone-appdev-auditors+unsubscribe@googlegroups.com.&lt;br /&gt;  For more options, visit this group at http://groups.google.com/group/iphone-appdev-auditors?hl=en.&lt;br /&gt;   &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-5877560029684181600?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/5877560029684181600/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/iphone-appdev-auditors-assignment-2.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/5877560029684181600'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/5877560029684181600'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/iphone-appdev-auditors-assignment-2.html' title='[iPhone-AppDev-Auditors] Assignment 2: descriptionOfProgram and runProgram'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-2610984723733003237</id><published>2012-01-31T18:50:00.001-08:00</published><updated>2012-01-31T18:50:18.235-08:00</updated><title type='text'>Re: [iPhone-AppDev-Auditors] assignment 4, requirement 10: How to repopulate Recently Viewed Table Cell, when User views a new photo in Top Place Table?</title><content type='html'>Yes I did. The&amp;nbsp;NSUserDefaults does get updated. The problem is the "Recently Viewed Table" does NOT get repopulated when User click on the&amp;nbsp;"Recently Viewed Tab".&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I should mention that "- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section" does NOT get called when User click on the "Recently Viewed Tab".&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;For Reference: Following is the code to storing Recently Viewed Photo to&amp;nbsp;NSUserDefaults:&lt;/div&gt;&lt;div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; color: rgb(0, 140, 8); "&gt;&lt;span style="color: #000000"&gt;&amp;nbsp;&lt;/span&gt;//Store Photo to NSUserDefaults, RecentlyViewedPhotoViewController will use it to display&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; color: rgb(127, 27, 171); "&gt;&lt;span style="color: #000000"&gt;&amp;nbsp; &amp;nbsp; &lt;/span&gt;NSUserDefaults&lt;span style="color: #000000"&gt; *defaults = [&lt;/span&gt;NSUserDefaults&lt;span style="color: #000000"&gt; &lt;/span&gt;&lt;span style="color: #4a0083"&gt;standardUserDefaults&lt;/span&gt;&lt;span style="color: #000000"&gt;];&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &lt;span style="color: #7f1bab"&gt;NSMutableArray&lt;/span&gt; *photos = [[defaults &lt;span style="color: #4a0083"&gt;objectForKey&lt;/span&gt;:&lt;span style="color: #804623"&gt;RECENTILYVIEWEDPHOTOS_KEY&lt;/span&gt;] &lt;span style="color: #4a0083"&gt;mutableCopy&lt;/span&gt;];&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &lt;span style="color: #cf00a0"&gt;if&lt;/span&gt;(!photos) photos = [&lt;span style="color: #7f1bab"&gt;NSMutableArray&lt;/span&gt; &lt;span style="color: #4a0083"&gt;array&lt;/span&gt;];&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &lt;span style="color: #cf00a0"&gt;if&lt;/span&gt; ([photos &lt;span style="color: #4a0083"&gt;indexOfObject&lt;/span&gt;:&lt;span style="color: #cf00a0"&gt;self&lt;/span&gt;.&lt;span style="color: #3c8389"&gt;photo&lt;/span&gt;] == &lt;span style="color: #4a0083"&gt;NSNotFound&lt;/span&gt;) {&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; [photos &lt;span style="color: #4a0083"&gt;addObject&lt;/span&gt;:&lt;span style="color: #cf00a0"&gt;self&lt;/span&gt;.&lt;span style="color: #3c8389"&gt;photo&lt;/span&gt;];&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; [defaults &lt;span style="color: #4a0083"&gt;setObject&lt;/span&gt;:photos &lt;span style="color: #4a0083"&gt;forKey&lt;/span&gt;:&lt;span style="color: #804623"&gt;RECENTILYVIEWEDPHOTOS_KEY&lt;/span&gt;];&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span style="color: #cf00a0"&gt;if&lt;/span&gt;(![defaults &lt;span style="color: #4a0083"&gt;synchronize&lt;/span&gt;]) &lt;span style="color: #4a0083"&gt;NSLog&lt;/span&gt;(&lt;span style="color: #e50000"&gt;@"failed"&lt;/span&gt;);&amp;nbsp; &amp;nbsp;&lt;/div&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 18px/normal Menlo; "&gt;&amp;nbsp; &amp;nbsp; }&amp;nbsp;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;div apple-content-edited="true"&gt;&lt;br&gt; &lt;/div&gt; &lt;br&gt;&lt;div&gt;&lt;div&gt;On Feb 1, 2012, at 10:42 AM, James Massara wrote:&lt;/div&gt;&lt;br class="Apple-interchange-newline"&gt;&lt;blockquote type="cite"&gt;&lt;div&gt;Hi zak, are you doing 'synchronize' after you update your NSUserDefaults object?&lt;br&gt;&lt;br&gt;On Jan 31, 2012, at 6:34 PM, zak wrote:&lt;br&gt;&lt;br&gt;&lt;blockquote type="cite"&gt;How to repopulate Recently Viewed Table Cell, when User views a new&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;photo in Top Place Table?&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;Currently, I am setting my Recently Viewed Table Data Source in "-&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;(void)viewWillAppear:(BOOL)animated", which work for first time when&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;the application is launched. But it does NOT work when user views a&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;new photo at Top Place Tab.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;I am getting the NSUserDefaults' Recently Viewed Photo List at&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;viewWillAppear. And I update NSUserDefaults at Top Place Tab.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;- (void)viewWillAppear:(BOOL)animated&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;{&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt; &amp;nbsp;&amp;nbsp;[super viewWillAppear:animated];&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt; &amp;nbsp;&amp;nbsp;self.recentlyViewedPhotos = [[NSUserDefaults standardUserDefaults]&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;objectForKey:RECENTILYVIEWEDPHOTOS_KEY];&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;}&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;-- &lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors+unsubscribe@googlegroups.com"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;br&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors+unsubscribe@googlegroups.com"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&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/2789322492541150578-2610984723733003237?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/2610984723733003237/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphone-appdev-auditors-assignment-4_3519.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/2610984723733003237'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/2610984723733003237'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphone-appdev-auditors-assignment-4_3519.html' title='Re: [iPhone-AppDev-Auditors] assignment 4, requirement 10: How to repopulate Recently Viewed Table Cell, when User views a new photo in Top Place Table?'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-6136175032286138317</id><published>2012-01-31T18:42:00.001-08:00</published><updated>2012-01-31T18:42:14.416-08:00</updated><title type='text'>Re: [iPhone-AppDev-Auditors] assignment 4, requirement 10: How to repopulate Recently Viewed Table Cell, when User views a new photo in Top Place Table?</title><content type='html'>Hi zak, are you doing &amp;#39;synchronize&amp;#39; after you update your NSUserDefaults object?&lt;p&gt;On Jan 31, 2012, at 6:34 PM, zak wrote:&lt;p&gt;&amp;gt; How to repopulate Recently Viewed Table Cell, when User views a new&lt;br&gt;&amp;gt; photo in Top Place Table?&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Currently, I am setting my Recently Viewed Table Data Source in &amp;quot;-&lt;br&gt;&amp;gt; (void)viewWillAppear:(BOOL)animated&amp;quot;, which work for first time when&lt;br&gt;&amp;gt; the application is launched. But it does NOT work when user views a&lt;br&gt;&amp;gt; new photo at Top Place Tab.&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; I am getting the NSUserDefaults&amp;#39; Recently Viewed Photo List at&lt;br&gt;&amp;gt; viewWillAppear. And I update NSUserDefaults at Top Place Tab.&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; - (void)viewWillAppear:(BOOL)animated&lt;br&gt;&amp;gt; {&lt;br&gt;&amp;gt;    [super viewWillAppear:animated];&lt;br&gt;&amp;gt;    self.recentlyViewedPhotos = [[NSUserDefaults standardUserDefaults]&lt;br&gt;&amp;gt; objectForKey:RECENTILYVIEWEDPHOTOS_KEY];&lt;br&gt;&amp;gt; }&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; -- &lt;br&gt;&amp;gt; You received this message because you are subscribed to the Google Groups &amp;quot;iPhone Application Development Auditors&amp;quot; group.&lt;br&gt;&amp;gt; To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors%2Bunsubscribe@googlegroups.com"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt; &lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;iPhone Application Development Auditors&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors%2Bunsubscribe@googlegroups.com"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-6136175032286138317?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/6136175032286138317/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphone-appdev-auditors-assignment-4_31.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/6136175032286138317'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/6136175032286138317'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphone-appdev-auditors-assignment-4_31.html' title='Re: [iPhone-AppDev-Auditors] assignment 4, requirement 10: How to repopulate Recently Viewed Table Cell, when User views a new photo in Top Place Table?'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-6082119990759095196</id><published>2012-01-31T18:34:00.001-08:00</published><updated>2012-01-31T18:34:09.046-08:00</updated><title type='text'>[iPhone-AppDev-Auditors] assignment 4, requirement 10: How to repopulate Recently Viewed Table Cell, when User views a new photo in Top Place Table?</title><content type='html'>How to repopulate Recently Viewed Table Cell, when User views a new&lt;br&gt;photo in Top Place Table?&lt;p&gt;Currently, I am setting my Recently Viewed Table Data Source in &amp;quot;-&lt;br&gt;(void)viewWillAppear:(BOOL)animated&amp;quot;, which work for first time when&lt;br&gt;the application is launched. But it does NOT work when user views a&lt;br&gt;new photo at Top Place Tab.&lt;p&gt;I am getting the NSUserDefaults&amp;#39; Recently Viewed Photo List at&lt;br&gt;viewWillAppear. And I update NSUserDefaults at Top Place Tab.&lt;p&gt;- (void)viewWillAppear:(BOOL)animated&lt;br&gt;{&lt;br&gt;    [super viewWillAppear:animated];&lt;br&gt;    self.recentlyViewedPhotos = [[NSUserDefaults standardUserDefaults]&lt;br&gt;objectForKey:RECENTILYVIEWEDPHOTOS_KEY];&lt;br&gt;}&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;iPhone Application Development Auditors&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:iphone-appdev-auditors@googlegroups.com"&gt;iphone-appdev-auditors@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:iphone-appdev-auditors%2Bunsubscribe@googlegroups.com"&gt;iphone-appdev-auditors+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/iphone-appdev-auditors?hl=en"&gt;http://groups.google.com/group/iphone-appdev-auditors?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-6082119990759095196?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/6082119990759095196/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/iphone-appdev-auditors-assignment-4_31.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/6082119990759095196'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/6082119990759095196'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/iphone-appdev-auditors-assignment-4_31.html' title='[iPhone-AppDev-Auditors] assignment 4, requirement 10: How to repopulate Recently Viewed Table Cell, when User views a new photo in Top Place Table?'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-8399690094624854304</id><published>2012-01-31T17:44:00.000-08:00</published><updated>2012-01-31T17:45:33.555-08:00</updated><title type='text'>Re: [iphonesb] Contracting for someone who wants iTunes presence</title><content type='html'>What you can do is include either a one-time fee for setting up a Developer Program for them, for a recurring fee for managing the Developer Program for them.  Typically you&amp;#39;d need to support the software for a year or so (be sure to include that in your cost estimates) and during which any minor updates and upload of said minor updates should be handled by you. &lt;p&gt;Fundamentally I think it&amp;#39;s in that company&amp;#39;s best interest to own their own Developer Program though.&lt;br&gt; &lt;br&gt;--Ben.&lt;p&gt;On 1 Feb, 2012, at 1:09 AM, howardk wrote:&lt;p&gt;&amp;gt; Hi,&lt;br&gt;&amp;gt; I&amp;#39;m about to do a small iPhone app contract for somebody who wants&lt;br&gt;&amp;gt; their company name listed as the Seller on the iTunes page for the&lt;br&gt;&amp;gt; app. Can I use my existing developer account to do this (I&amp;#39;m listed as&lt;br&gt;&amp;gt; an individual, not corporate), or would they have to join the&lt;br&gt;&amp;gt; Developer Program and have me set up and use a corporate account for&lt;br&gt;&amp;gt; them so that they can get the exposure? Or something else yet again? I&lt;br&gt;&amp;gt; couldn&amp;#39;t find anything online.&lt;br&gt;&amp;gt; Thanks,&lt;br&gt;&amp;gt; Howard&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; -- &lt;br&gt;&amp;gt; You received this message because you are subscribed to the Google Groups &amp;quot;iPhone Software Business&amp;quot; group.&lt;br&gt;&amp;gt; To post to this group, send email to &lt;a href="mailto:iphonesb@googlegroups.com"&gt;iphonesb@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphonesb%2Bunsubscribe@googlegroups.com"&gt;iphonesb+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; For more options, visit this group at &lt;a href="http://groups.google.com/group/iphonesb?hl=en"&gt;http://groups.google.com/group/iphonesb?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt; &lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;iPhone Software Business&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:iphonesb@googlegroups.com"&gt;iphonesb@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:iphonesb%2Bunsubscribe@googlegroups.com"&gt;iphonesb+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/iphonesb?hl=en"&gt;http://groups.google.com/group/iphonesb?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-8399690094624854304?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/8399690094624854304/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphonesb-contracting-for-someone-who_5084.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/8399690094624854304'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/8399690094624854304'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphonesb-contracting-for-someone-who_5084.html' title='Re: [iphonesb] Contracting for someone who wants iTunes presence'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-408208922511826275</id><published>2012-01-31T16:16:00.001-08:00</published><updated>2012-01-31T16:16:52.146-08:00</updated><title type='text'>Re: Changing an image depending on slider value in Javascript</title><content type='html'>Remember JavaScript equality testing needs double equals signs&lt;br&gt;eg. if (value == 2) {&lt;p&gt;Jarrod&lt;p&gt;On 1/02/12 4:13 AM, Terence wrote:&lt;br&gt;&amp;gt; First of all you&amp;#39;ll need to change your logic as when value&amp;lt;2, value&amp;lt;3, etc.&lt;br&gt;&amp;gt; conditions are met, it will also trigger actions for value&amp;lt;1. For each of&lt;br&gt;&amp;gt; your 12 images, you would want to set the value to be value =1,&lt;br&gt;&amp;gt; value=2,value=3, etc until value=12.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Than use CF.setJoin to set the path for your image. Your function would&lt;br&gt;&amp;gt; probaly look something like this :&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; onSliderChanged(join, value) {&lt;br&gt;&amp;gt; if (value = 1) { CF.setJoin(&amp;quot;s1&amp;quot;, *path for your first image here*); // set&lt;br&gt;&amp;gt; first image here } else if (value = 2) { CF.setJoin(&amp;quot;s1&amp;quot;, *path for your&lt;br&gt;&amp;gt; second image here*); // set second image here } and etc.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; -----Original Message-----&lt;br&gt;&amp;gt; From: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt; [mailto:&lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;]&lt;br&gt;&amp;gt; On Behalf Of &lt;a href="mailto:chubby_blade@hotmail.com"&gt;chubby_blade@hotmail.com&lt;/a&gt;&lt;br&gt;&amp;gt; Sent: 01 February 2012 00:48&lt;br&gt;&amp;gt; To: CommandFusion&lt;br&gt;&amp;gt; Subject: Changing an image depending on slider value in Javascript&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Hi&lt;br&gt;&amp;gt; Florent originally gave me advice on this matter in the chat room, but I&lt;br&gt;&amp;gt; cant quite see how to get it to work.&lt;br&gt;&amp;gt; I have 12 images which show the different states of a slider and I want them&lt;br&gt;&amp;gt; to change depending on the slider value.&lt;br&gt;&amp;gt; I understand that first I need to watch the slider&amp;#39;s join&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; CF.watch(CF.JoinChangeEvent, &amp;quot;a1&amp;quot;, onSliderChanged)&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Then  add a function to get the image to change&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; onSliderChanged(join, value) {if (value&amp;lt;  1) { /* set first image here */ }&lt;br&gt;&amp;gt; else if (value&amp;lt;  2) { /* set second image here */ }&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; etc&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; But I&amp;#39;m having trouble actually putting this into practice. Assuming my&lt;br&gt;&amp;gt; slider is on a1 and my image is on s1, how do I get it to change?&lt;br&gt;&amp;gt; I&amp;#39;ve tried loads of comibinations, but no joy so far :-(&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Thanks&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Rob&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; --&lt;br&gt;&amp;gt; You received this message because you are subscribed to the Google Groups&lt;br&gt;&amp;gt; &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;&amp;gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; To unsubscribe from this group, send email to&lt;br&gt;&amp;gt; &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; For more options, visit this group at&lt;br&gt;&amp;gt; &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt;&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-408208922511826275?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/408208922511826275/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-changing-image-depending-on-slider_31.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/408208922511826275'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/408208922511826275'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-changing-image-depending-on-slider_31.html' title='Re: Changing an image depending on slider value in Javascript'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-7371936687509759375</id><published>2012-01-31T14:15:00.000-08:00</published><updated>2012-01-31T14:16:08.138-08:00</updated><title type='text'>RE: Converting a discrete code for GuiDesigner</title><content type='html'>&lt;div dir='ltr'&gt; &lt;span style="font: 16px/normal arial, sans-serif; color: rgb(51, 51, 51); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; background-color: rgb(245, 245, 245); -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" class="hps"&gt;Wow&lt;/span&gt;&lt;span style="font: 16px/normal arial, sans-serif; color: rgb(51, 51, 51); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; float: none; display: inline !important; white-space: normal; orphans: 2; widows: 2; background-color: rgb(245, 245, 245); -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style="font: 16px/normal arial, sans-serif; color: rgb(51, 51, 51); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; background-color: rgb(245, 245, 245); -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" class="hps"&gt;Very&lt;/span&gt;&lt;span style="font: 16px/normal arial, sans-serif; color: rgb(51, 51, 51); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; float: none; display: inline !important; white-space: normal; orphans: 2; widows: 2; background-color: rgb(245, 245, 245); -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style="font: 16px/normal arial, sans-serif; color: rgb(51, 51, 51); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; background-color: rgb(245, 245, 245); -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" class="hps"&gt;Thanked&lt;/span&gt;&lt;span style="font: 16px/normal arial, sans-serif; color: rgb(51, 51, 51); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; float: none; display: inline !important; white-space: normal; orphans: 2; widows: 2; background-color: rgb(245, 245, 245); -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style="font: 16px/normal arial, sans-serif; color: rgb(51, 51, 51); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; background-color: rgb(245, 245, 245); -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" class="hps"&gt;Joep&lt;/span&gt;&lt;span style="font: 16px/normal arial, sans-serif; color: rgb(51, 51, 51); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; float: none; display: inline !important; white-space: normal; orphans: 2; widows: 2; background-color: rgb(245, 245, 245); -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style="font: 16px/normal arial, sans-serif; color: rgb(51, 51, 51); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; background-color: rgb(245, 245, 245); -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" class="hps"&gt;saved me&lt;/span&gt;&lt;span style="font: 16px/normal arial, sans-serif; color: rgb(51, 51, 51); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; float: none; display: inline !important; white-space: normal; orphans: 2; widows: 2; background-color: rgb(245, 245, 245); -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style="font: 16px/normal arial, sans-serif; color: rgb(51, 51, 51); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; background-color: rgb(245, 245, 245); -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" class="hps"&gt;a&lt;/span&gt;&lt;span style="font: 16px/normal arial, sans-serif; color: rgb(51, 51, 51); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; float: none; display: inline !important; white-space: normal; orphans: 2; widows: 2; background-color: rgb(245, 245, 245); -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style="font: 16px/normal arial, sans-serif; color: rgb(51, 51, 51); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; background-color: rgb(245, 245, 245); -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" class="hps"&gt;considerable&lt;/span&gt;&lt;span style="font: 16px/normal arial, sans-serif; color: rgb(51, 51, 51); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; float: none; display: inline !important; white-space: normal; orphans: 2; widows: 2; background-color: rgb(245, 245, 245); -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style="font: 16px/normal arial, sans-serif; color: rgb(51, 51, 51); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; background-color: rgb(245, 245, 245); -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" class="hps"&gt;work,&lt;/span&gt;&lt;span style="font: 16px/normal arial, sans-serif; color: rgb(51, 51, 51); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; float: none; display: inline !important; white-space: normal; orphans: 2; widows: 2; background-color: rgb(245, 245, 245); -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style="font: 16px/normal arial, sans-serif; color: rgb(51, 51, 51); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; background-color: rgb(245, 245, 245); -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" class="hps"&gt;I owe you&lt;/span&gt;&lt;span style="font: 16px/normal arial, sans-serif; color: rgb(51, 51, 51); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; float: none; display: inline !important; white-space: normal; orphans: 2; widows: 2; background-color: rgb(245, 245, 245); -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style="font: 16px/normal arial, sans-serif; color: rgb(51, 51, 51); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; background-color: rgb(245, 245, 245); -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" class="hps"&gt;this and&lt;/span&gt;&lt;span style="font: 16px/normal arial, sans-serif; color: rgb(51, 51, 51); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; float: none; display: inline !important; white-space: normal; orphans: 2; widows: 2; background-color: rgb(245, 245, 245); -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style="font: 16px/normal arial, sans-serif; color: rgb(51, 51, 51); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; background-color: rgb(245, 245, 245); -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" class="hps"&gt;a coke&lt;/span&gt;&lt;span style="font: 16px/normal arial, sans-serif; color: rgb(51, 51, 51); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; float: none; display: inline !important; white-space: normal; orphans: 2; widows: 2; background-color: rgb(245, 245, 245); -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;&lt;/span&gt;&lt;span style="font: 16px/normal arial, sans-serif; color: rgb(51, 51, 51); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; background-color: rgb(245, 245, 245); -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" class="hps"&gt;.....&lt;/span&gt;&lt;span style="font: 16px/normal arial, sans-serif; color: rgb(51, 51, 51); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; float: none; display: inline !important; white-space: normal; orphans: 2; widows: 2; background-color: rgb(245, 245, 245); -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style="font: 16px/normal arial, sans-serif; color: rgb(51, 51, 51); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; background-color: rgb(245, 245, 245); -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" class="hps"&gt;Tks&lt;/span&gt;&lt;span style="font: 16px/normal arial, sans-serif; color: rgb(51, 51, 51); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; float: none; display: inline !important; white-space: normal; orphans: 2; widows: 2; background-color: rgb(245, 245, 245); -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style="font: 16px/normal arial, sans-serif; color: rgb(51, 51, 51); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; background-color: rgb(245, 245, 245); -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" class="hps"&gt;again&lt;/span&gt;&lt;br&gt;&amp;nbsp;&lt;BR&gt;&lt;div&gt;&lt;div id="SkyDrivePlaceholder"&gt;&lt;/div&gt;&lt;hr id="stopSpelling"&gt;Date: Tue, 31 Jan 2012 22:40:38 +0100&lt;br&gt;Subject: Re: Converting a discrete code for GuiDesigner&lt;br&gt;From: jvda2011@gmail.com&lt;br&gt;To: commandfusion@googlegroups.com&lt;br&gt;&lt;br&gt;&lt;div&gt;Attached you'll find a guifile with all the discrete codes in Global Caché format, ready to use ;)&lt;/div&gt;&lt;div&gt;For the volume buttons you can set a repeat delay of 25ms at button proporties.&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;Have fun!&lt;/div&gt; &lt;div&gt;Joep&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;div class="ecxgmail_quote"&gt;Op 31 januari 2012 20:16 schreef BR-101 &lt;span dir="ltr"&gt;&amp;lt;&lt;a href="mailto:intellipad@hotmail.com"&gt;intellipad@hotmail.com&lt;/a&gt;&amp;gt;&lt;/span&gt; het volgende:&lt;br&gt;&lt;blockquote style="padding-left: 1ex; border-left-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid;" class="ecxgmail_quote"&gt; I would like to convert a discrete IR code for GuiDesigner, is this&lt;br&gt; possible?&lt;br&gt; The command is sent through a iTach&lt;br&gt; grateful&lt;br&gt; &lt;span class="ecxHOEnZb"&gt;&lt;font color="#888888"&gt;&lt;br&gt; --&lt;br&gt; You received this message because you are subscribed to the Google Groups "CommandFusion" group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt; For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en" target="_blank"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;br&gt; &lt;br&gt; &lt;/font&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;  &lt;BR&gt;  -- &lt;br&gt; You received this message because you are subscribed to the Google Groups "CommandFusion" group.&lt;br&gt; To post to this group, send email to commandfusion@googlegroups.com.&lt;br&gt; To unsubscribe from this group, send email to commandfusion+unsubscribe@googlegroups.com.&lt;br&gt;  For more options, visit this group at http://groups.google.com/group/commandfusion?hl=en.&lt;br&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/2789322492541150578-7371936687509759375?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/7371936687509759375/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-converting-discrete-code-for_1776.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7371936687509759375'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7371936687509759375'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-converting-discrete-code-for_1776.html' title='RE: Converting a discrete code for GuiDesigner'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-8383712338599612583</id><published>2012-01-31T14:00:00.001-08:00</published><updated>2012-01-31T14:00:19.399-08:00</updated><title type='text'>Re: Commands continue while the button is pressed</title><content type='html'>You can use repeat delay at the button proporties.&lt;p&gt;On 31 jan, 22:10, BR-101 &amp;lt;&lt;a href="mailto:intelli...@hotmail.com"&gt;intelli...@hotmail.com&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt; I ask the experts I&amp;#39;m sorry but I need to build a volume button as&lt;br&gt;&amp;gt; they keep it pressed him to continue sending the command and of course&lt;br&gt;&amp;gt; when you release it to stop sending the command.&lt;br&gt;&amp;gt; Tks&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-8383712338599612583?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/8383712338599612583/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-commands-continue-while-button-is.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/8383712338599612583'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/8383712338599612583'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-commands-continue-while-button-is.html' title='Re: Commands continue while the button is pressed'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-2436863556452823184</id><published>2012-01-31T13:57:00.001-08:00</published><updated>2012-01-31T13:57:43.228-08:00</updated><title type='text'>Re: [iphonesb] Contracting for someone who wants iTunes presence</title><content type='html'>&lt;div&gt;We've got both programs at Finger Food. The $99 is sufficient for a corporation to publish apps under their own name. They will be asked to provide documentation for their business, to ensure its a "real" company.&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;$299 lets you sign Apps for internal distribution, but not for publishing to the App Store and you need a Duns and Bradstreet number to get it, which is another level of complexity.&amp;nbsp;&lt;br&gt;&lt;br&gt;_____________________________&lt;div&gt;Trenton Shumay&lt;/div&gt;&lt;div&gt;President/CTO&amp;nbsp;&lt;/div&gt;&lt;div&gt;Finger Food Studios Inc.&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;On 2012-01-31, at 1:33 PM, Mike Stankavich &amp;lt;&lt;a href="mailto:mike@kwyk.net"&gt;mike@kwyk.net&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;blockquote type="cite"&gt;&lt;div&gt;Hi Kenneth,&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I just looked at Apple's website. &amp;nbsp;I didn't see how the 299 program would provide those benefits over the 99 program in your company's name. &amp;nbsp;The difference between the programs according to apple is that you can do internal and limited distribution of apps, for example line of business apps for your employees. &amp;nbsp;Am I missing something here?&lt;/div&gt; &lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Thx, Mike&lt;br&gt;&lt;br&gt;&lt;div class="gmail_quote"&gt;On Wed, Feb 1, 2012 at 4:14 AM, Kenneth Ballenegger &lt;span dir="ltr"&gt;&amp;lt;&lt;a href="mailto:kenneth@ballenegger.com"&gt;kenneth@ballenegger.com&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt; &lt;blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"&gt;&lt;div style="word-wrap:break-word"&gt;They might want to get the $299 business account, for tax / contractual / liability protection reasons.&lt;div&gt; &lt;br&gt;&lt;/div&gt;&lt;div&gt;-Kenneth&lt;br&gt;&lt;div&gt; &lt;span style="text-indent:0px;letter-spacing:normal;font-variant:normal;text-align:-webkit-auto;font-style:normal;font-weight:normal;line-height:normal;border-collapse:separate;text-transform:none;font-size:medium;white-space:normal;font-family:Helvetica;word-spacing:0px"&gt;&lt;span style="text-indent:0px;letter-spacing:normal;font-variant:normal;font-style:normal;font-weight:normal;line-height:normal;border-collapse:separate;text-transform:none;font-size:medium;white-space:normal;font-family:Helvetica;word-spacing:0px"&gt;&lt;div style="word-wrap:break-word"&gt; &lt;span style="text-indent:0px;letter-spacing:normal;font-variant:normal;font-style:normal;font-weight:normal;line-height:normal;border-collapse:separate;text-transform:none;font-size:medium;white-space:normal;font-family:Helvetica;word-spacing:0px"&gt;&lt;div style="word-wrap:break-word"&gt; &lt;span style="text-indent:0px;letter-spacing:normal;font-variant:normal;font-style:normal;font-weight:normal;line-height:normal;border-collapse:separate;text-transform:none;font-size:12px;white-space:normal;font-family:Helvetica;word-spacing:0px"&gt;&lt;div style="word-wrap:break-word"&gt; &lt;span style="text-indent:0px;letter-spacing:normal;font-variant:normal;font-style:normal;font-weight:normal;line-height:normal;border-collapse:separate;text-transform:none;font-size:12px;white-space:normal;font-family:Helvetica;word-spacing:0px"&gt;&lt;div style="word-wrap:break-word"&gt; &lt;div&gt;&lt;div&gt;&lt;br&gt;---&lt;/div&gt;&lt;span class="HOEnZb"&gt;&lt;font color="#888888"&gt;&lt;div&gt;Kenneth Ballenegger&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;a href="http://www.kswizz.com" target="_blank"&gt;www.kswizz.com&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;br&gt;&lt;/div&gt;&lt;/span&gt;&lt;br&gt;&lt;/div&gt;&lt;/span&gt;&lt;br&gt;&lt;/span&gt;&lt;br&gt; &lt;/div&gt;&lt;div&gt;&lt;div class="h5"&gt; &lt;br&gt;&lt;div&gt;&lt;div&gt;On Jan 31, 2012, at 9:36 AM, Adam Martin wrote:&lt;/div&gt;&lt;br&gt;&lt;blockquote type="cite"&gt;&lt;div&gt;The company name is tied VERY tightly to the Developer account that&lt;br&gt;submitted the app.&lt;br&gt;&lt;br&gt;Even something as simple as a typo in the name can be very difficult&lt;br&gt; to get changed.&lt;br&gt;&lt;br&gt;So ... no, you can't use your account - they need to pay the $99/year&lt;br&gt;themselves.&lt;br&gt;&lt;br&gt;On 31 January 2012 17:09, howardk &amp;lt;&lt;a href="mailto:howardck@gmail.com" target="_blank"&gt;howardck@gmail.com&lt;/a&gt;&amp;gt; wrote:&lt;br&gt; &lt;blockquote type="cite"&gt;Hi,&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;I'm about to do a small iPhone app contract for somebody who wants&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;their company name listed as the Seller on the iTunes page for the&lt;br&gt; &lt;/blockquote&gt;&lt;blockquote type="cite"&gt;app. Can I use my existing developer account to do this (I'm listed as&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;an individual, not corporate), or would they have to join the&lt;br&gt;&lt;/blockquote&gt; &lt;blockquote type="cite"&gt;Developer Program and have me set up and use a corporate account for&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;them so that they can get the exposure? Or something else yet again? I&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt; couldn't find anything online.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;Thanks,&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;Howard&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;--&lt;br&gt;&lt;/blockquote&gt; &lt;blockquote type="cite"&gt;You received this message because you are subscribed to the Google Groups "iPhone Software Business" group.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;To post to this group, send email to &lt;a href="mailto:iphonesb@googlegroups.com" target="_blank"&gt;iphonesb@googlegroups.com&lt;/a&gt;.&lt;br&gt; &lt;/blockquote&gt;&lt;blockquote type="cite"&gt;To unsubscribe from this group, send email to &lt;a href="mailto:iphonesb+unsubscribe@googlegroups.com" target="_blank"&gt;iphonesb+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt; For more options, visit this group at &lt;a href="http://groups.google.com/group/iphonesb?hl=en" target="_blank"&gt;http://groups.google.com/group/iphonesb?hl=en&lt;/a&gt;.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;br&gt; -- &lt;br&gt;You received this message because you are subscribed to the Google Groups "iPhone Software Business" group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:iphonesb@googlegroups.com" target="_blank"&gt;iphonesb@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphonesb+unsubscribe@googlegroups.com" target="_blank"&gt;iphonesb+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/iphonesb?hl=en" target="_blank"&gt;http://groups.google.com/group/iphonesb?hl=en&lt;/a&gt;.&lt;br&gt; &lt;br&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="HOEnZb"&gt;&lt;div class="h5"&gt;  &lt;p&gt;&lt;/p&gt;  -- &lt;br&gt; You received this message because you are subscribed to the Google Groups "iPhone Software Business" group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:iphonesb@googlegroups.com" target="_blank"&gt;iphonesb@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphonesb%2Bunsubscribe@googlegroups.com" target="_blank"&gt;iphonesb+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;  For more options, visit this group at &lt;a href="http://groups.google.com/group/iphonesb?hl=en" target="_blank"&gt;http://groups.google.com/group/iphonesb?hl=en&lt;/a&gt;.&lt;br&gt;   &lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear="all"&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;-- &lt;br&gt;&lt;div&gt;Best, Mike&lt;/div&gt;&lt;div&gt;-------------------&lt;/div&gt;&lt;div&gt;&lt;b&gt;&lt;font color="#000066"&gt;Blog&lt;/font&gt;&lt;/b&gt;&amp;nbsp;&amp;nbsp;&lt;a href="http://mikestankavich.com" target="_blank"&gt;http://mikestankavich.com&lt;/a&gt;&lt;/div&gt; &lt;div&gt;&lt;b&gt;&lt;font color="#000066"&gt;LinkedIn&lt;/font&gt;&lt;/b&gt;&amp;nbsp;&amp;nbsp;&lt;a href="http://linkedin.com/in/mikestankavich" target="_blank"&gt;http://linkedin.com/in/mikestankavich&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;&lt;font color="#000066"&gt;Facebook&lt;/font&gt;&lt;/b&gt;&amp;nbsp;&amp;nbsp;&lt;a href="http://facebook.com/mike.stankavich" target="_blank"&gt;http://facebook.com/mike.stankavich&lt;/a&gt;&lt;/div&gt; &lt;div&gt;&lt;b&gt;&lt;font color="#000066"&gt;Twitter&lt;/font&gt;&lt;/b&gt;&amp;nbsp;&amp;nbsp;&lt;a href="http://twitter.com/#!/mikestankavich" target="_blank"&gt;http://twitter.com/#!/mikestankavich&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;b&gt;&lt;font color="#000066"&gt;Skype&amp;nbsp;&lt;/font&gt;&lt;/b&gt;&amp;nbsp;MikeStankavich&lt;/div&gt; &lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;br&gt; &lt;/div&gt;  &lt;p&gt;&lt;/p&gt;  -- &lt;br&gt; You received this message because you are subscribed to the Google Groups "iPhone Software Business" group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:iphonesb@googlegroups.com"&gt;iphonesb@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphonesb+unsubscribe@googlegroups.com"&gt;iphonesb+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;  For more options, visit this group at &lt;a href="http://groups.google.com/group/iphonesb?hl=en"&gt;http://groups.google.com/group/iphonesb?hl=en&lt;/a&gt;.&lt;br&gt;   &lt;/div&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-2436863556452823184?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/2436863556452823184/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphonesb-contracting-for-someone-who_2995.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/2436863556452823184'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/2436863556452823184'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphonesb-contracting-for-someone-who_2995.html' title='Re: [iphonesb] Contracting for someone who wants iTunes presence'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-2066678774809544699</id><published>2012-01-31T13:40:00.001-08:00</published><updated>2012-01-31T13:40:53.601-08:00</updated><title type='text'>Re: Converting a discrete code for GuiDesigner</title><content type='html'>&lt;div&gt;Attached you&amp;#39;ll find a guifile with all the discrete codes in Global Caché format, ready to use ;)&lt;/div&gt;&lt;div&gt;For the volume buttons you can set a repeat delay of 25ms at button proporties.&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;Have fun!&lt;/div&gt; &lt;div&gt;Joep&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;div class="gmail_quote"&gt;Op 31 januari 2012 20:16 schreef BR-101 &lt;span dir="ltr"&gt;&amp;lt;&lt;a href="mailto:intellipad@hotmail.com"&gt;intellipad@hotmail.com&lt;/a&gt;&amp;gt;&lt;/span&gt; het volgende:&lt;br&gt;&lt;blockquote style="margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left-color:rgb(204,204,204);border-left-width:1px;border-left-style:solid" class="gmail_quote"&gt; I would like to convert a discrete IR code for GuiDesigner, is this&lt;br&gt; possible?&lt;br&gt; The command is sent through a iTach&lt;br&gt; grateful&lt;br&gt; &lt;span class="HOEnZb"&gt;&lt;font color="#888888"&gt;&lt;br&gt; --&lt;br&gt; You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt; For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en" target="_blank"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;br&gt; &lt;br&gt; &lt;/font&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;  &lt;p&gt;&lt;/p&gt;  -- &lt;br /&gt; You received this message because you are subscribed to the Google Groups "CommandFusion" group.&lt;br /&gt; To post to this group, send email to commandfusion@googlegroups.com.&lt;br /&gt; To unsubscribe from this group, send email to commandfusion+unsubscribe@googlegroups.com.&lt;br /&gt;  For more options, visit this group at http://groups.google.com/group/commandfusion?hl=en.&lt;br /&gt;   &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-2066678774809544699?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/2066678774809544699/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-converting-discrete-code-for_7974.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/2066678774809544699'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/2066678774809544699'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-converting-discrete-code-for_7974.html' title='Re: Converting a discrete code for GuiDesigner'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-9107917858140167567</id><published>2012-01-31T13:39:00.001-08:00</published><updated>2012-01-31T13:39:27.351-08:00</updated><title type='text'>Re: Converting a discrete code for GuiDesigner</title><content type='html'>HI, CONVERT THROW ICONVERT ON GLOBAL CACHE, YOU JUST HAVE TO PUT sendir 1:1......and the code, on the botton press in command fusion put a REPEAT DELAY ON THE PROPERTY BOTON, this way you would have the repetition on vol and once you don`t touch the boton it stop increasing.&lt;br&gt; &lt;br&gt;regards&lt;br&gt;&lt;br&gt;&lt;div class="gmail_quote"&gt;2012/1/31 BR-101 &lt;span dir="ltr"&gt;&amp;lt;&lt;a href="mailto:intellipad@hotmail.com"&gt;intellipad@hotmail.com&lt;/a&gt;&amp;gt;&lt;/span&gt;&lt;br&gt;&lt;blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"&gt; I would like to convert a discrete IR code for GuiDesigner, is this&lt;br&gt; possible?&lt;br&gt; The command is sent through a iTach&lt;br&gt; grateful&lt;br&gt; &lt;span class="HOEnZb"&gt;&lt;font color="#888888"&gt;&lt;br&gt; --&lt;br&gt; You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt; For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en" target="_blank"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;br&gt; &lt;br&gt; &lt;/font&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear="all"&gt;&lt;br&gt;-- &lt;br&gt;Renato Ruiz Orozco&lt;br&gt;Epidemia Sound Studio&lt;br&gt;&lt;a href="mailto:epidemia.sound.studio@gmail.com"&gt;epidemia.sound.studio@gmail.com&lt;/a&gt;&lt;br&gt;Ofna. 55.44.61.18&lt;br&gt; Cell. 55.16.04.59.77&lt;br&gt;Base Ball # 181&lt;br&gt;Col. Country Club, Del. Coyoacán, México, D.F.&lt;br&gt;©Antes de imprimir este correo, piensa en el medio ambiente.&lt;br&gt;  &lt;p&gt;&lt;/p&gt;  -- &lt;br /&gt; You received this message because you are subscribed to the Google Groups "CommandFusion" group.&lt;br /&gt; To post to this group, send email to commandfusion@googlegroups.com.&lt;br /&gt; To unsubscribe from this group, send email to commandfusion+unsubscribe@googlegroups.com.&lt;br /&gt;  For more options, visit this group at http://groups.google.com/group/commandfusion?hl=en.&lt;br /&gt;   &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-9107917858140167567?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/9107917858140167567/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-converting-discrete-code-for_1334.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/9107917858140167567'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/9107917858140167567'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-converting-discrete-code-for_1334.html' title='Re: Converting a discrete code for GuiDesigner'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-8129521560318440625</id><published>2012-01-31T13:35:00.000-08:00</published><updated>2012-01-31T13:36:04.742-08:00</updated><title type='text'>Re: Converting a discrete code for GuiDesigner</title><content type='html'>valeu Denis abra&amp;#231;ao estou retomando o servi&amp;#231;o. ab&amp;#231;&lt;p&gt;Enviado / iPhone&lt;p&gt;Em 31/01/2012, &amp;#224;s 19:33, &amp;quot;Denis&amp;quot; &amp;lt;&lt;a href="mailto:denis.renesto@gmail.com"&gt;denis.renesto@gmail.com&lt;/a&gt;&amp;gt; escreveu:&lt;p&gt;&amp;gt; Vou te enviar os c&amp;#243;digos discretos no padr&amp;#227;o global cache. Mas eles est&amp;#227;o no pc do meu trabalho ent&amp;#227;o amanha eu te mando....&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Nos j&amp;#225; nos falamos antes.... Te pedi uma ajuda no layout.&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Um abra&amp;#231;&amp;#227;o.&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Enviado via iPhone&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Em 31/01/2012, &amp;#224;s 19:26, &amp;quot;Carlos A. Casanova&amp;quot; &amp;lt;&lt;a href="mailto:intellipad@hotmail.com"&gt;intellipad@hotmail.com&lt;/a&gt;&amp;gt; escreveu:&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; yes i am a member what should i do ? &lt;br&gt;&amp;gt;&amp;gt; tks&lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; Enviado / iPhone&lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; Em 31/01/2012, &amp;#224;s 19:23, &amp;quot;Denis&amp;quot; &amp;lt;&lt;a href="mailto:denis.renesto@gmail.com"&gt;denis.renesto@gmail.com&lt;/a&gt;&amp;gt; escreveu:&lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; You are member of the htforum?&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I have the samsung discrete code.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Thanks.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Enviado via iPhone&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Em 31/01/2012, &amp;#224;s 19:00, BR-101 &amp;lt;&lt;a href="mailto:intellipad@hotmail.com"&gt;intellipad@hotmail.com&lt;/a&gt;&amp;gt; escreveu:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Hello Scott, I need the commands including Samsung TV Input ON / OFF.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Thank you, my e mail is &lt;a href="mailto:intellipad@hotmail.com"&gt;intellipad@hotmail.com&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; On 31 jan, 18:56, Scott &amp;lt;&lt;a href="mailto:scottahl...@gmail.com"&gt;scottahl...@gmail.com&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Send me your email address to Scott at Automated Atmospheres dot com and I will send you the discrete codes in global cache format&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Sent from my iPhone&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; On Jan 31, 2012, at 12:52 PM, BR-101 &amp;lt;&lt;a href="mailto:intelli...@hotmail.com"&gt;intelli...@hotmail.com&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Hello Barry, I need to send a command to switch inputs on a Samsung&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; TV, something like Input HDMI 1, HDMI 2, Component 2, AV1 these&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; things. In the area of the Central Remote Pronto commands are discrete&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; and would like to use it because of the original TV remote control&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; there is only one button to navigate the different inputs.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Tks&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; On 31 jan, 17:29, &amp;quot;Barry Gordon&amp;quot; &amp;lt;&lt;a href="mailto:ba...@the-gordons.net"&gt;ba...@the-gordons.net&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Tenho a certeza a resposta &amp;#233; sim, mas o que voc&amp;#234; quer dizer com converter. O que&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; exatamente o que voc&amp;#234; tem?&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Acho que voc&amp;#234; deseja enviar o padr&amp;#227;o adequado para uma iTach de guiDesigner&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; para caus&amp;#225;-lo para emitir um c&amp;#243;digo espec&amp;#237;fico IR para um dispositivo espec&amp;#237;fico. Voc&amp;#234; precisa ser&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; capaz de estabelecer a seq&amp;#252;&amp;#234;ncia adequada HEX que o iTach quer ver (&amp;#233;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; documentados no protocolo de documentos em seu site) e ent&amp;#227;o voc&amp;#234; precisa&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; causa guiDesigner para envi&amp;#225;-lo para fora uma porta TCP para o endere&amp;#231;o do iTach.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Mas a primeira pergunta &amp;#233; o que voc&amp;#234; tem? por exemplo, uma string Hex Pronto&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; representa&amp;#231;&amp;#227;o do que voc&amp;#234; deseja enviar?&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; ----- Original Message -----&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; De: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt; [mailto: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;]&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Em nome de BR-101&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Sent: ter&amp;#231;a-feira, 31 janeiro, 2012 14:16&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Para: CommandFusion&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Assunto: Convers&amp;#227;o de um c&amp;#243;digo discreto para GuiDesigner&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Gostaria de converter um c&amp;#243;digo discreto IR para GuiDesigner, &amp;#233; este&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; poss&amp;#237;vel?&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; O comando &amp;#233; enviado atrav&amp;#233;s de um iTach&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; grato&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; -&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Voc&amp;#234; recebeu esta mensagem porque est&amp;#225; inscrito no Google Groups&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;quot;CommandFusion&amp;quot; do grupo.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Para postar neste grupo, envie um e-mail para &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Para sair deste grupo, envie um e-mail para&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; commandfusion + &lt;a href="mailto:unsubscribe@googlegroups.com"&gt;unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Para obter mais op&amp;#231;&amp;#245;es, visite este grupo emhttp://&lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; --&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; For more options, visit this group athttp://&lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; -- &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; -- &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; -- &lt;br&gt;&amp;gt;&amp;gt; You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;&amp;gt;&amp;gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt; To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt; For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; -- &lt;br&gt;&amp;gt; You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;&amp;gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt; &lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-8129521560318440625?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/8129521560318440625/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-converting-discrete-code-for_5083.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/8129521560318440625'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/8129521560318440625'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-converting-discrete-code-for_5083.html' title='Re: Converting a discrete code for GuiDesigner'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-6487075958633603892</id><published>2012-01-31T13:33:00.002-08:00</published><updated>2012-01-31T13:34:05.188-08:00</updated><title type='text'>Re: Converting a discrete code for GuiDesigner</title><content type='html'>Vou te enviar os c&amp;#243;digos discretos no padr&amp;#227;o global cache. Mas eles est&amp;#227;o no pc do meu trabalho ent&amp;#227;o amanha eu te mando....&lt;p&gt;Nos j&amp;#225; nos falamos antes.... Te pedi uma ajuda no layout.&lt;p&gt;Um abra&amp;#231;&amp;#227;o.&lt;p&gt;Enviado via iPhone&lt;p&gt;Em 31/01/2012, &amp;#224;s 19:26, &amp;quot;Carlos A. Casanova&amp;quot; &amp;lt;&lt;a href="mailto:intellipad@hotmail.com"&gt;intellipad@hotmail.com&lt;/a&gt;&amp;gt; escreveu:&lt;p&gt;&amp;gt; yes i am a member what should i do ? &lt;br&gt;&amp;gt; tks&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Enviado / iPhone&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Em 31/01/2012, &amp;#224;s 19:23, &amp;quot;Denis&amp;quot; &amp;lt;&lt;a href="mailto:denis.renesto@gmail.com"&gt;denis.renesto@gmail.com&lt;/a&gt;&amp;gt; escreveu:&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; You are member of the htforum?&lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; I have the samsung discrete code.&lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; Thanks.&lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; Enviado via iPhone&lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; Em 31/01/2012, &amp;#224;s 19:00, BR-101 &amp;lt;&lt;a href="mailto:intellipad@hotmail.com"&gt;intellipad@hotmail.com&lt;/a&gt;&amp;gt; escreveu:&lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Hello Scott, I need the commands including Samsung TV Input ON / OFF.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Thank you, my e mail is &lt;a href="mailto:intellipad@hotmail.com"&gt;intellipad@hotmail.com&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; On 31 jan, 18:56, Scott &amp;lt;&lt;a href="mailto:scottahl...@gmail.com"&gt;scottahl...@gmail.com&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Send me your email address to Scott at Automated Atmospheres dot com and I will send you the discrete codes in global cache format&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Sent from my iPhone&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; On Jan 31, 2012, at 12:52 PM, BR-101 &amp;lt;&lt;a href="mailto:intelli...@hotmail.com"&gt;intelli...@hotmail.com&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Hello Barry, I need to send a command to switch inputs on a Samsung&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; TV, something like Input HDMI 1, HDMI 2, Component 2, AV1 these&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; things. In the area of the Central Remote Pronto commands are discrete&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; and would like to use it because of the original TV remote control&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; there is only one button to navigate the different inputs.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Tks&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; On 31 jan, 17:29, &amp;quot;Barry Gordon&amp;quot; &amp;lt;&lt;a href="mailto:ba...@the-gordons.net"&gt;ba...@the-gordons.net&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Tenho a certeza a resposta &amp;#233; sim, mas o que voc&amp;#234; quer dizer com converter. O que&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; exatamente o que voc&amp;#234; tem?&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Acho que voc&amp;#234; deseja enviar o padr&amp;#227;o adequado para uma iTach de guiDesigner&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; para caus&amp;#225;-lo para emitir um c&amp;#243;digo espec&amp;#237;fico IR para um dispositivo espec&amp;#237;fico. Voc&amp;#234; precisa ser&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; capaz de estabelecer a seq&amp;#252;&amp;#234;ncia adequada HEX que o iTach quer ver (&amp;#233;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; documentados no protocolo de documentos em seu site) e ent&amp;#227;o voc&amp;#234; precisa&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; causa guiDesigner para envi&amp;#225;-lo para fora uma porta TCP para o endere&amp;#231;o do iTach.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Mas a primeira pergunta &amp;#233; o que voc&amp;#234; tem? por exemplo, uma string Hex Pronto&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; representa&amp;#231;&amp;#227;o do que voc&amp;#234; deseja enviar?&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; ----- Original Message -----&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; De: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt; [mailto: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;]&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Em nome de BR-101&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Sent: ter&amp;#231;a-feira, 31 janeiro, 2012 14:16&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Para: CommandFusion&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Assunto: Convers&amp;#227;o de um c&amp;#243;digo discreto para GuiDesigner&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Gostaria de converter um c&amp;#243;digo discreto IR para GuiDesigner, &amp;#233; este&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; poss&amp;#237;vel?&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; O comando &amp;#233; enviado atrav&amp;#233;s de um iTach&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; grato&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; -&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Voc&amp;#234; recebeu esta mensagem porque est&amp;#225; inscrito no Google Groups&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;quot;CommandFusion&amp;quot; do grupo.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Para postar neste grupo, envie um e-mail para &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Para sair deste grupo, envie um e-mail para&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; commandfusion + &lt;a href="mailto:unsubscribe@googlegroups.com"&gt;unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Para obter mais op&amp;#231;&amp;#245;es, visite este grupo emhttp://&lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; --&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; For more options, visit this group athttp://&lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; -- &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; -- &lt;br&gt;&amp;gt;&amp;gt; You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;&amp;gt;&amp;gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt; To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt; For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; -- &lt;br&gt;&amp;gt; You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;&amp;gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt; &lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-6487075958633603892?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/6487075958633603892/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-converting-discrete-code-for_7520.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/6487075958633603892'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/6487075958633603892'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-converting-discrete-code-for_7520.html' title='Re: Converting a discrete code for GuiDesigner'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-1520925174552138829</id><published>2012-01-31T13:33:00.001-08:00</published><updated>2012-01-31T13:33:47.302-08:00</updated><title type='text'>Re: [iphonesb] Contracting for someone who wants iTunes presence</title><content type='html'>Hi Kenneth,&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I just looked at Apple&amp;#39;s website.  I didn&amp;#39;t see how the 299 program would provide those benefits over the 99 program in your company&amp;#39;s name.  The difference between the programs according to apple is that you can do internal and limited distribution of apps, for example line of business apps for your employees.  Am I missing something here?&lt;/div&gt; &lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Thx, Mike&lt;br&gt;&lt;br&gt;&lt;div class="gmail_quote"&gt;On Wed, Feb 1, 2012 at 4:14 AM, Kenneth Ballenegger &lt;span dir="ltr"&gt;&amp;lt;&lt;a href="mailto:kenneth@ballenegger.com"&gt;kenneth@ballenegger.com&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt; &lt;blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"&gt;&lt;div style="word-wrap:break-word"&gt;They might want to get the $299 business account, for tax / contractual / liability protection reasons.&lt;div&gt; &lt;br&gt;&lt;/div&gt;&lt;div&gt;-Kenneth&lt;br&gt;&lt;div&gt; &lt;span style="text-indent:0px;letter-spacing:normal;font-variant:normal;text-align:-webkit-auto;font-style:normal;font-weight:normal;line-height:normal;border-collapse:separate;text-transform:none;font-size:medium;white-space:normal;font-family:Helvetica;word-spacing:0px"&gt;&lt;span style="text-indent:0px;letter-spacing:normal;font-variant:normal;font-style:normal;font-weight:normal;line-height:normal;border-collapse:separate;text-transform:none;font-size:medium;white-space:normal;font-family:Helvetica;word-spacing:0px"&gt;&lt;div style="word-wrap:break-word"&gt; &lt;span style="text-indent:0px;letter-spacing:normal;font-variant:normal;font-style:normal;font-weight:normal;line-height:normal;border-collapse:separate;text-transform:none;font-size:medium;white-space:normal;font-family:Helvetica;word-spacing:0px"&gt;&lt;div style="word-wrap:break-word"&gt; &lt;span style="text-indent:0px;letter-spacing:normal;font-variant:normal;font-style:normal;font-weight:normal;line-height:normal;border-collapse:separate;text-transform:none;font-size:12px;white-space:normal;font-family:Helvetica;word-spacing:0px"&gt;&lt;div style="word-wrap:break-word"&gt; &lt;span style="text-indent:0px;letter-spacing:normal;font-variant:normal;font-style:normal;font-weight:normal;line-height:normal;border-collapse:separate;text-transform:none;font-size:12px;white-space:normal;font-family:Helvetica;word-spacing:0px"&gt;&lt;div style="word-wrap:break-word"&gt; &lt;div&gt;&lt;div&gt;&lt;br&gt;---&lt;/div&gt;&lt;span class="HOEnZb"&gt;&lt;font color="#888888"&gt;&lt;div&gt;Kenneth Ballenegger&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;a href="http://www.kswizz.com" target="_blank"&gt;www.kswizz.com&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;br&gt;&lt;/div&gt;&lt;/span&gt;&lt;br&gt;&lt;/div&gt;&lt;/span&gt;&lt;br&gt;&lt;/span&gt;&lt;br&gt; &lt;/div&gt;&lt;div&gt;&lt;div class="h5"&gt; &lt;br&gt;&lt;div&gt;&lt;div&gt;On Jan 31, 2012, at 9:36 AM, Adam Martin wrote:&lt;/div&gt;&lt;br&gt;&lt;blockquote type="cite"&gt;&lt;div&gt;The company name is tied VERY tightly to the Developer account that&lt;br&gt;submitted the app.&lt;br&gt;&lt;br&gt;Even something as simple as a typo in the name can be very difficult&lt;br&gt; to get changed.&lt;br&gt;&lt;br&gt;So ... no, you can&amp;#39;t use your account - they need to pay the $99/year&lt;br&gt;themselves.&lt;br&gt;&lt;br&gt;On 31 January 2012 17:09, howardk &amp;lt;&lt;a href="mailto:howardck@gmail.com" target="_blank"&gt;howardck@gmail.com&lt;/a&gt;&amp;gt; wrote:&lt;br&gt; &lt;blockquote type="cite"&gt;Hi,&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;I&amp;#39;m about to do a small iPhone app contract for somebody who wants&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;their company name listed as the Seller on the iTunes page for the&lt;br&gt; &lt;/blockquote&gt;&lt;blockquote type="cite"&gt;app. Can I use my existing developer account to do this (I&amp;#39;m listed as&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;an individual, not corporate), or would they have to join the&lt;br&gt;&lt;/blockquote&gt; &lt;blockquote type="cite"&gt;Developer Program and have me set up and use a corporate account for&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;them so that they can get the exposure? Or something else yet again? I&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt; couldn&amp;#39;t find anything online.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;Thanks,&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;Howard&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;--&lt;br&gt;&lt;/blockquote&gt; &lt;blockquote type="cite"&gt;You received this message because you are subscribed to the Google Groups &amp;quot;iPhone Software Business&amp;quot; group.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;To post to this group, send email to &lt;a href="mailto:iphonesb@googlegroups.com" target="_blank"&gt;iphonesb@googlegroups.com&lt;/a&gt;.&lt;br&gt; &lt;/blockquote&gt;&lt;blockquote type="cite"&gt;To unsubscribe from this group, send email to &lt;a href="mailto:iphonesb+unsubscribe@googlegroups.com" target="_blank"&gt;iphonesb+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt; For more options, visit this group at &lt;a href="http://groups.google.com/group/iphonesb?hl=en" target="_blank"&gt;http://groups.google.com/group/iphonesb?hl=en&lt;/a&gt;.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;br&gt; -- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;iPhone Software Business&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:iphonesb@googlegroups.com" target="_blank"&gt;iphonesb@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphonesb+unsubscribe@googlegroups.com" target="_blank"&gt;iphonesb+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/iphonesb?hl=en" target="_blank"&gt;http://groups.google.com/group/iphonesb?hl=en&lt;/a&gt;.&lt;br&gt; &lt;br&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="HOEnZb"&gt;&lt;div class="h5"&gt;  &lt;p&gt;&lt;/p&gt;  -- &lt;br&gt; You received this message because you are subscribed to the Google Groups &amp;quot;iPhone Software Business&amp;quot; group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:iphonesb@googlegroups.com" target="_blank"&gt;iphonesb@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphonesb%2Bunsubscribe@googlegroups.com" target="_blank"&gt;iphonesb+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;  For more options, visit this group at &lt;a href="http://groups.google.com/group/iphonesb?hl=en" target="_blank"&gt;http://groups.google.com/group/iphonesb?hl=en&lt;/a&gt;.&lt;br&gt;   &lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear="all"&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;-- &lt;br&gt;&lt;div&gt;Best, Mike&lt;/div&gt;&lt;div&gt;-------------------&lt;/div&gt;&lt;div&gt;&lt;b&gt;&lt;font color="#000066"&gt;Blog&lt;/font&gt;&lt;/b&gt;  &lt;a href="http://mikestankavich.com" target="_blank"&gt;http://mikestankavich.com&lt;/a&gt;&lt;/div&gt; &lt;div&gt;&lt;b&gt;&lt;font color="#000066"&gt;LinkedIn&lt;/font&gt;&lt;/b&gt;  &lt;a href="http://linkedin.com/in/mikestankavich" target="_blank"&gt;http://linkedin.com/in/mikestankavich&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;&lt;font color="#000066"&gt;Facebook&lt;/font&gt;&lt;/b&gt;  &lt;a href="http://facebook.com/mike.stankavich" target="_blank"&gt;http://facebook.com/mike.stankavich&lt;/a&gt;&lt;/div&gt; &lt;div&gt;&lt;b&gt;&lt;font color="#000066"&gt;Twitter&lt;/font&gt;&lt;/b&gt;  &lt;a href="http://twitter.com/#!/mikestankavich" target="_blank"&gt;http://twitter.com/#!/mikestankavich&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;b&gt;&lt;font color="#000066"&gt;Skype &lt;/font&gt;&lt;/b&gt; MikeStankavich&lt;/div&gt; &lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;br&gt; &lt;/div&gt;  &lt;p&gt;&lt;/p&gt;  -- &lt;br /&gt; You received this message because you are subscribed to the Google Groups "iPhone Software Business" group.&lt;br /&gt; To post to this group, send email to iphonesb@googlegroups.com.&lt;br /&gt; To unsubscribe from this group, send email to iphonesb+unsubscribe@googlegroups.com.&lt;br /&gt;  For more options, visit this group at http://groups.google.com/group/iphonesb?hl=en.&lt;br /&gt;   &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-1520925174552138829?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/1520925174552138829/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphonesb-contracting-for-someone-who_3045.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/1520925174552138829'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/1520925174552138829'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphonesb-contracting-for-someone-who_3045.html' title='Re: [iphonesb] Contracting for someone who wants iTunes presence'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-6841893970631778665</id><published>2012-01-31T13:26:00.001-08:00</published><updated>2012-01-31T13:26:32.511-08:00</updated><title type='text'>Re: Converting a discrete code for GuiDesigner</title><content type='html'>yes i am a member what should i do ? &lt;br&gt;tks&lt;p&gt;Enviado / iPhone&lt;p&gt;Em 31/01/2012, &amp;#224;s 19:23, &amp;quot;Denis&amp;quot; &amp;lt;&lt;a href="mailto:denis.renesto@gmail.com"&gt;denis.renesto@gmail.com&lt;/a&gt;&amp;gt; escreveu:&lt;p&gt;&amp;gt; You are member of the htforum?&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; I have the samsung discrete code.&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Thanks.&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Enviado via iPhone&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; Em 31/01/2012, &amp;#224;s 19:00, BR-101 &amp;lt;&lt;a href="mailto:intellipad@hotmail.com"&gt;intellipad@hotmail.com&lt;/a&gt;&amp;gt; escreveu:&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; Hello Scott, I need the commands including Samsung TV Input ON / OFF.&lt;br&gt;&amp;gt;&amp;gt; Thank you, my e mail is &lt;a href="mailto:intellipad@hotmail.com"&gt;intellipad@hotmail.com&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; On 31 jan, 18:56, Scott &amp;lt;&lt;a href="mailto:scottahl...@gmail.com"&gt;scottahl...@gmail.com&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Send me your email address to Scott at Automated Atmospheres dot com and I will send you the discrete codes in global cache format&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Sent from my iPhone&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; On Jan 31, 2012, at 12:52 PM, BR-101 &amp;lt;&lt;a href="mailto:intelli...@hotmail.com"&gt;intelli...@hotmail.com&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Hello Barry, I need to send a command to switch inputs on a Samsung&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; TV, something like Input HDMI 1, HDMI 2, Component 2, AV1 these&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; things. In the area of the Central Remote Pronto commands are discrete&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; and would like to use it because of the original TV remote control&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; there is only one button to navigate the different inputs.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Tks&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; On 31 jan, 17:29, &amp;quot;Barry Gordon&amp;quot; &amp;lt;&lt;a href="mailto:ba...@the-gordons.net"&gt;ba...@the-gordons.net&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Tenho a certeza a resposta &amp;#233; sim, mas o que voc&amp;#234; quer dizer com converter. O que&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; exatamente o que voc&amp;#234; tem?&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Acho que voc&amp;#234; deseja enviar o padr&amp;#227;o adequado para uma iTach de guiDesigner&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; para caus&amp;#225;-lo para emitir um c&amp;#243;digo espec&amp;#237;fico IR para um dispositivo espec&amp;#237;fico. Voc&amp;#234; precisa ser&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; capaz de estabelecer a seq&amp;#252;&amp;#234;ncia adequada HEX que o iTach quer ver (&amp;#233;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; documentados no protocolo de documentos em seu site) e ent&amp;#227;o voc&amp;#234; precisa&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; causa guiDesigner para envi&amp;#225;-lo para fora uma porta TCP para o endere&amp;#231;o do iTach.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Mas a primeira pergunta &amp;#233; o que voc&amp;#234; tem? por exemplo, uma string Hex Pronto&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; representa&amp;#231;&amp;#227;o do que voc&amp;#234; deseja enviar?&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; ----- Original Message -----&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; De: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt; [mailto: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;]&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Em nome de BR-101&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Sent: ter&amp;#231;a-feira, 31 janeiro, 2012 14:16&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Para: CommandFusion&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Assunto: Convers&amp;#227;o de um c&amp;#243;digo discreto para GuiDesigner&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Gostaria de converter um c&amp;#243;digo discreto IR para GuiDesigner, &amp;#233; este&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; poss&amp;#237;vel?&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; O comando &amp;#233; enviado atrav&amp;#233;s de um iTach&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; grato&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; -&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Voc&amp;#234; recebeu esta mensagem porque est&amp;#225; inscrito no Google Groups&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;quot;CommandFusion&amp;quot; do grupo.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Para postar neste grupo, envie um e-mail para &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Para sair deste grupo, envie um e-mail para&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; commandfusion + &lt;a href="mailto:unsubscribe@googlegroups.com"&gt;unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Para obter mais op&amp;#231;&amp;#245;es, visite este grupo emhttp://&lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; --&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; For more options, visit this group athttp://&lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; -- &lt;br&gt;&amp;gt;&amp;gt; You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;&amp;gt;&amp;gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt; To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt; For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; -- &lt;br&gt;&amp;gt; You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;&amp;gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt; &lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-6841893970631778665?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/6841893970631778665/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-converting-discrete-code-for_2671.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/6841893970631778665'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/6841893970631778665'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-converting-discrete-code-for_2671.html' title='Re: Converting a discrete code for GuiDesigner'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-7669348484283248869</id><published>2012-01-31T13:23:00.001-08:00</published><updated>2012-01-31T13:23:38.681-08:00</updated><title type='text'>Re: Converting a discrete code for GuiDesigner</title><content type='html'>You are member of the htforum?&lt;p&gt;I have the samsung discrete code.&lt;p&gt;Thanks.&lt;p&gt;&lt;br&gt;Enviado via iPhone&lt;p&gt;Em 31/01/2012, &amp;#224;s 19:00, BR-101 &amp;lt;&lt;a href="mailto:intellipad@hotmail.com"&gt;intellipad@hotmail.com&lt;/a&gt;&amp;gt; escreveu:&lt;p&gt;&amp;gt; Hello Scott, I need the commands including Samsung TV Input ON / OFF.&lt;br&gt;&amp;gt; Thank you, my e mail is &lt;a href="mailto:intellipad@hotmail.com"&gt;intellipad@hotmail.com&lt;/a&gt;&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; On 31 jan, 18:56, Scott &amp;lt;&lt;a href="mailto:scottahl...@gmail.com"&gt;scottahl...@gmail.com&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt;&amp;gt; Send me your email address to Scott at Automated Atmospheres dot com and I will send you the discrete codes in global cache format&lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; Sent from my iPhone&lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; On Jan 31, 2012, at 12:52 PM, BR-101 &amp;lt;&lt;a href="mailto:intelli...@hotmail.com"&gt;intelli...@hotmail.com&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Hello Barry, I need to send a command to switch inputs on a Samsung&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; TV, something like Input HDMI 1, HDMI 2, Component 2, AV1 these&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; things. In the area of the Central Remote Pronto commands are discrete&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; and would like to use it because of the original TV remote control&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; there is only one button to navigate the different inputs.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Tks&lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; On 31 jan, 17:29, &amp;quot;Barry Gordon&amp;quot; &amp;lt;&lt;a href="mailto:ba...@the-gordons.net"&gt;ba...@the-gordons.net&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Tenho a certeza a resposta &amp;#233; sim, mas o que voc&amp;#234; quer dizer com converter. O que&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; exatamente o que voc&amp;#234; tem?&lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Acho que voc&amp;#234; deseja enviar o padr&amp;#227;o adequado para uma iTach de guiDesigner&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; para caus&amp;#225;-lo para emitir um c&amp;#243;digo espec&amp;#237;fico IR para um dispositivo espec&amp;#237;fico. Voc&amp;#234; precisa ser&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; capaz de estabelecer a seq&amp;#252;&amp;#234;ncia adequada HEX que o iTach quer ver (&amp;#233;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; documentados no protocolo de documentos em seu site) e ent&amp;#227;o voc&amp;#234; precisa&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; causa guiDesigner para envi&amp;#225;-lo para fora uma porta TCP para o endere&amp;#231;o do iTach.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Mas a primeira pergunta &amp;#233; o que voc&amp;#234; tem? por exemplo, uma string Hex Pronto&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; representa&amp;#231;&amp;#227;o do que voc&amp;#234; deseja enviar?&lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; ----- Original Message -----&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; De: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt; [mailto: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;]&lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Em nome de BR-101&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Sent: ter&amp;#231;a-feira, 31 janeiro, 2012 14:16&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Para: CommandFusion&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Assunto: Convers&amp;#227;o de um c&amp;#243;digo discreto para GuiDesigner&lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Gostaria de converter um c&amp;#243;digo discreto IR para GuiDesigner, &amp;#233; este&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; poss&amp;#237;vel?&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; O comando &amp;#233; enviado atrav&amp;#233;s de um iTach&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; grato&lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; -&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Voc&amp;#234; recebeu esta mensagem porque est&amp;#225; inscrito no Google Groups&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;quot;CommandFusion&amp;quot; do grupo.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Para postar neste grupo, envie um e-mail para &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Para sair deste grupo, envie um e-mail para&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; commandfusion + &lt;a href="mailto:unsubscribe@googlegroups.com"&gt;unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Para obter mais op&amp;#231;&amp;#245;es, visite este grupo emhttp://&lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; --&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; For more options, visit this group athttp://&lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; -- &lt;br&gt;&amp;gt; You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;&amp;gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt; &lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-7669348484283248869?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/7669348484283248869/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-converting-discrete-code-for_6294.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7669348484283248869'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7669348484283248869'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-converting-discrete-code-for_6294.html' title='Re: Converting a discrete code for GuiDesigner'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-5563870221441996072</id><published>2012-01-31T13:16:00.001-08:00</published><updated>2012-01-31T13:16:50.633-08:00</updated><title type='text'>[Showmetech] Showmetech.com.br</title><content type='html'>&lt;style type="text/css"&gt;                          h1 a:hover {background-color:#888;color:#fff ! important;}                          div#emailbody table#itemcontentlist tr td div ul {                                         list-style-type:square;                                         padding-left:1em;                         }                                  div#emailbody table#itemcontentlist tr td div blockquote {                                 padding-left:6px;                                 border-left: 6px solid #dadada;                                 margin-left:1em;                         }                                  div#emailbody table#itemcontentlist tr td div li {                                 margin-bottom:1em;                                 margin-left:1em;                         }                           table#itemcontentlist tr td a:link, table#itemcontentlist tr td a:visited, table#itemcontentlist tr td a:active, ul#summarylist li a {                                 color:#FF6600;                                 font-weight:bold;                                 text-decoration:none;                         }                                 img {border:none;}                   &lt;/style&gt; &lt;div xmlns="http://www.w3.org/1999/xhtml" id="emailbody" style="margin:0 2em;font-family:Georgia,Helvetica,Arial,Sans-Serif;line-height:140%;font-size:13px;color:#000000;"&gt; &lt;table style="border:0;padding:0;margin:0;width:100%"&gt; &lt;tr&gt; &lt;td style="vertical-align:top" width="99%"&gt; &lt;h1 style="margin:0;padding-bottom:6px;"&gt; &lt;a style="color:#888;font-size:22px;font-family:Verdana, Arial, Helvetica, sans-serif;font-weight:normal;text-decoration:none;" href="http://showmetech.com.br" title="(http://showmetech.com.br)"&gt;Showmetech.com.br&lt;/a&gt; &lt;br /&gt; &lt;a href="http://fusion.google.com/add?source=atgs&amp;amp;feedurl=http://feeds.feedburner.com/Showmetechcombr"&gt; &lt;img style="padding-top:6px" alt="" border="0" src="http://gmodules.com/ig/images/plus_google.gif" /&gt; &lt;/a&gt; &lt;/h1&gt; &lt;/td&gt; &lt;td width="1%"&gt; &lt;a href="http://showmetech.com.br"&gt; &lt;img src="http://showmetech.com.br/wp-content/uploads/2011/11/Showmetech-Shout-novo-SMT-logo-mini.jpg" alt="Link to Showmetech" id="feedimage" style="padding:0 0 10px 3px;border:0;" /&gt; &lt;/a&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;hr style="border:1px solid #ccc;padding:0;margin:0" /&gt; &lt;table id="itemcontentlist"&gt; &lt;tr xmlns=""&gt; &lt;td style="margin-bottom:0;line-height:1.4em;"&gt; &lt;p style="margin:1em 0 3px 0;"&gt; &lt;a name="1" style="font-family:Verdana, Arial, Helvetica, sans-serif;font-size:18px;" href="http://feedproxy.google.com/~r/Showmetechcombr/~3/rSWkcsIS9cA/enquete-voce-compraria-um-windows-phone?utm_source=feedburner&amp;utm_medium=email"&gt;Enquete: Voc&amp;ecirc; compraria um Windows Phone?&lt;/a&gt; &lt;/p&gt; &lt;p style="font-size:13px;color:#555;margin:9px 0 3px 0;font-family:Georgia,Helvetica,Arial,Sans-Serif;line-height:140%;font-size:13px;"&gt; &lt;span&gt;Posted:&lt;/span&gt; 30 Jan 2012 07:27 PM PST&lt;/p&gt; &lt;div style="margin:0;font-family:Georgia,Helvetica,Arial,Sans-Serif;line-height:140%;font-size:13px;color:#000000;"&gt;&lt;p&gt;&lt;a href="http://showmetech.com.br/wp-content/uploads/2012/01/Windows-Phone-7-5.jpg"&gt;&lt;img class="aligncenter size-full wp-image-21838" title="Windows-Phone-7-5" src="http://showmetech.com.br/wp-content/uploads/2012/01/Windows-Phone-7-5.jpg" alt="" width="520" height="280" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;Oficialmente, o ano de 2012 começará com &lt;strong&gt;4 modelos&lt;/strong&gt; de smartphones que carregam o sistema &lt;strong&gt;Windows Phone&lt;/strong&gt; no Brasil: são eles o &lt;strong&gt;HTC Ultimate&lt;/strong&gt;, o &lt;strong&gt;Samsung W&lt;/strong&gt;, &lt;strong&gt;Nokia Lumia 800&lt;/strong&gt; e &lt;strong&gt;Nokia Lumia 710&lt;/strong&gt;. Se você optar por comprar algum modelo no exterior, a lista fica ainda maior.&lt;/p&gt; &lt;p&gt;Por isso, o &lt;strong&gt;Showmetech&lt;/strong&gt; propõe uma enquete: queremos saber se você trocaria seu smartphone por um aparelho com o novo sistema operacional da &lt;strong&gt;Microsoft&lt;/strong&gt;.&lt;/p&gt; &lt;p&gt;Ajude a gente, selecionando uma das respostas do questionário abaixo:&lt;/p&gt; &lt;a href="http://polldaddy.com/poll/5892452"&gt;Take Our Poll&lt;/a&gt;  &lt;p&gt;&lt;a href="https://feedads.g.doubleclick.net/~a/AulG5wQfUn-MPvI6j5yinBvSngk/6XruI_LfVoRLj_u5kZXOYRaSKpI/0/pa"&gt;&lt;img src="https://feedads.g.doubleclick.net/~a/AulG5wQfUn-MPvI6j5yinBvSngk/6XruI_LfVoRLj_u5kZXOYRaSKpI/0/pi" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt; &lt;a href="https://feedads.g.doubleclick.net/~a/AulG5wQfUn-MPvI6j5yinBvSngk/6XruI_LfVoRLj_u5kZXOYRaSKpI/1/pa"&gt;&lt;img src="https://feedads.g.doubleclick.net/~a/AulG5wQfUn-MPvI6j5yinBvSngk/6XruI_LfVoRLj_u5kZXOYRaSKpI/1/pi" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt; &lt;a href="http://feeds.feedburner.com/~ff/Showmetechcombr?a=rSWkcsIS9cA:gxmK1nkCuus:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Showmetechcombr?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Showmetechcombr?a=rSWkcsIS9cA:gxmK1nkCuus:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Showmetechcombr?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Showmetechcombr/~4/rSWkcsIS9cA?utm_source=feedburner&amp;utm_medium=email" height="1" width="1"/&gt;&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;table style="border-top:1px solid #999;padding-top:4px;margin-top:1.5em;width:100%" id="footer"&gt; &lt;tr&gt; &lt;td style="text-align:left;font-family:Helvetica,Arial,Sans-Serif;font-size:11px;margin:0 6px 1.2em 0;color:#333;"&gt;You are subscribed to email updates from &lt;a href="http://showmetech.com.br"&gt;Showmetech&lt;/a&gt; &lt;br /&gt;To stop receiving these emails, you may &lt;a href="http://feedburner.google.com/fb/a/mailunsubscribe?k=AulG5wQfUn-MPvI6j5yinBvSngk"&gt;unsubscribe now&lt;/a&gt;.&lt;/td&gt; &lt;td style="font-family:Helvetica,Arial,Sans-Serif;font-size:11px;margin:0 6px 1.2em 0;color:#333;text-align:right;vertical-align:top"&gt;Email delivery powered by Google&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td colspan="2" style="text-align:left;font-family:Helvetica,Arial,Sans-Serif;font-size:11px;margin:0 6px 1.2em 0;color:#333;"&gt;Google Inc., 20 West Kinzie, Chicago IL USA 60610&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/div&gt; &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-5563870221441996072?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/5563870221441996072/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/showmetech-showmetechcombr_31.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/5563870221441996072'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/5563870221441996072'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/showmetech-showmetechcombr_31.html' title='[Showmetech] Showmetech.com.br'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-5185389704134382044</id><published>2012-01-31T13:10:00.001-08:00</published><updated>2012-01-31T13:10:41.622-08:00</updated><title type='text'>Commands continue while the button is pressed</title><content type='html'>I ask the experts I&amp;#39;m sorry but I need to build a volume button as&lt;br&gt;they keep it pressed him to continue sending the command and of course&lt;br&gt;when you release it to stop sending the command.&lt;br&gt;Tks&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-5185389704134382044?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/5185389704134382044/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/commands-continue-while-button-is.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/5185389704134382044'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/5185389704134382044'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/commands-continue-while-button-is.html' title='Commands continue while the button is pressed'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-1471539252629639221</id><published>2012-01-31T13:00:00.001-08:00</published><updated>2012-01-31T13:00:32.484-08:00</updated><title type='text'>Re: Converting a discrete code for GuiDesigner</title><content type='html'>Hello Scott, I need the commands including Samsung TV Input ON / OFF.&lt;br&gt;Thank you, my e mail is &lt;a href="mailto:intellipad@hotmail.com"&gt;intellipad@hotmail.com&lt;/a&gt;&lt;p&gt;On 31 jan, 18:56, Scott &amp;lt;&lt;a href="mailto:scottahl...@gmail.com"&gt;scottahl...@gmail.com&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt; Send me your email address to Scott at Automated Atmospheres dot com and I will send you the discrete codes in global cache format&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Sent from my iPhone&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; On Jan 31, 2012, at 12:52 PM, BR-101 &amp;lt;&lt;a href="mailto:intelli...@hotmail.com"&gt;intelli...@hotmail.com&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Hello Barry, I need to send a command to switch inputs on a Samsung&lt;br&gt;&amp;gt; &amp;gt; TV, something like Input HDMI 1, HDMI 2, Component 2, AV1 these&lt;br&gt;&amp;gt; &amp;gt; things. In the area of the Central Remote Pronto commands are discrete&lt;br&gt;&amp;gt; &amp;gt; and would like to use it because of the original TV remote control&lt;br&gt;&amp;gt; &amp;gt; there is only one button to navigate the different inputs.&lt;br&gt;&amp;gt; &amp;gt; Tks&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; On 31 jan, 17:29, &amp;quot;Barry Gordon&amp;quot; &amp;lt;&lt;a href="mailto:ba...@the-gordons.net"&gt;ba...@the-gordons.net&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Tenho a certeza a resposta &amp;#233; sim, mas o que voc&amp;#234; quer dizer com converter. O que&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; exatamente o que voc&amp;#234; tem?&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Acho que voc&amp;#234; deseja enviar o padr&amp;#227;o adequado para uma iTach de guiDesigner&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; para caus&amp;#225;-lo para emitir um c&amp;#243;digo espec&amp;#237;fico IR para um dispositivo espec&amp;#237;fico. Voc&amp;#234; precisa ser&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; capaz de estabelecer a seq&amp;#252;&amp;#234;ncia adequada HEX que o iTach quer ver (&amp;#233;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; documentados no protocolo de documentos em seu site) e ent&amp;#227;o voc&amp;#234; precisa&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; causa guiDesigner para envi&amp;#225;-lo para fora uma porta TCP para o endere&amp;#231;o do iTach.&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Mas a primeira pergunta &amp;#233; o que voc&amp;#234; tem? por exemplo, uma string Hex Pronto&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; representa&amp;#231;&amp;#227;o do que voc&amp;#234; deseja enviar?&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; ----- Original Message -----&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; De: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt; [mailto: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;]&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Em nome de BR-101&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Sent: ter&amp;#231;a-feira, 31 janeiro, 2012 14:16&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Para: CommandFusion&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Assunto: Convers&amp;#227;o de um c&amp;#243;digo discreto para GuiDesigner&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Gostaria de converter um c&amp;#243;digo discreto IR para GuiDesigner, &amp;#233; este&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; poss&amp;#237;vel?&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; O comando &amp;#233; enviado atrav&amp;#233;s de um iTach&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; grato&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; -&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Voc&amp;#234; recebeu esta mensagem porque est&amp;#225; inscrito no Google Groups&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;quot;CommandFusion&amp;quot; do grupo.&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Para postar neste grupo, envie um e-mail para &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Para sair deste grupo, envie um e-mail para&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; commandfusion + &lt;a href="mailto:unsubscribe@googlegroups.com"&gt;unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Para obter mais op&amp;#231;&amp;#245;es, visite este grupo emhttp://&lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; --&lt;br&gt;&amp;gt; &amp;gt; You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;&amp;gt; &amp;gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; &amp;gt; To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; &amp;gt; For more options, visit this group athttp://&lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-1471539252629639221?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/1471539252629639221/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-converting-discrete-code-for_1906.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/1471539252629639221'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/1471539252629639221'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-converting-discrete-code-for_1906.html' title='Re: Converting a discrete code for GuiDesigner'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-8054839953648355274</id><published>2012-01-31T12:56:00.003-08:00</published><updated>2012-01-31T12:56:43.836-08:00</updated><title type='text'>Re: Converting a discrete code for GuiDesigner</title><content type='html'>Send me your email address to Scott at Automated Atmospheres dot com and I will send you the discrete codes in global cache format&lt;p&gt;Sent from my iPhone&lt;p&gt;On Jan 31, 2012, at 12:52 PM, BR-101 &amp;lt;&lt;a href="mailto:intellipad@hotmail.com"&gt;intellipad@hotmail.com&lt;/a&gt;&amp;gt; wrote:&lt;p&gt;&amp;gt; Hello Barry, I need to send a command to switch inputs on a Samsung&lt;br&gt;&amp;gt; TV, something like Input HDMI 1, HDMI 2, Component 2, AV1 these&lt;br&gt;&amp;gt; things. In the area of the Central Remote Pronto commands are discrete&lt;br&gt;&amp;gt; and would like to use it because of the original TV remote control&lt;br&gt;&amp;gt; there is only one button to navigate the different inputs.&lt;br&gt;&amp;gt; Tks&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; On 31 jan, 17:29, &amp;quot;Barry Gordon&amp;quot; &amp;lt;&lt;a href="mailto:ba...@the-gordons.net"&gt;ba...@the-gordons.net&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt;&amp;gt; Tenho a certeza a resposta &amp;#233; sim, mas o que voc&amp;#234; quer dizer com converter. O que&lt;br&gt;&amp;gt;&amp;gt; exatamente o que voc&amp;#234; tem?&lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; Acho que voc&amp;#234; deseja enviar o padr&amp;#227;o adequado para uma iTach de guiDesigner&lt;br&gt;&amp;gt;&amp;gt; para caus&amp;#225;-lo para emitir um c&amp;#243;digo espec&amp;#237;fico IR para um dispositivo espec&amp;#237;fico. Voc&amp;#234; precisa ser&lt;br&gt;&amp;gt;&amp;gt; capaz de estabelecer a seq&amp;#252;&amp;#234;ncia adequada HEX que o iTach quer ver (&amp;#233;&lt;br&gt;&amp;gt;&amp;gt; documentados no protocolo de documentos em seu site) e ent&amp;#227;o voc&amp;#234; precisa&lt;br&gt;&amp;gt;&amp;gt; causa guiDesigner para envi&amp;#225;-lo para fora uma porta TCP para o endere&amp;#231;o do iTach.&lt;br&gt;&amp;gt;&amp;gt; Mas a primeira pergunta &amp;#233; o que voc&amp;#234; tem? por exemplo, uma string Hex Pronto&lt;br&gt;&amp;gt;&amp;gt; representa&amp;#231;&amp;#227;o do que voc&amp;#234; deseja enviar?&lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; ----- Original Message -----&lt;br&gt;&amp;gt;&amp;gt; De: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt; [mailto: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;]&lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; Em nome de BR-101&lt;br&gt;&amp;gt;&amp;gt; Sent: ter&amp;#231;a-feira, 31 janeiro, 2012 14:16&lt;br&gt;&amp;gt;&amp;gt; Para: CommandFusion&lt;br&gt;&amp;gt;&amp;gt; Assunto: Convers&amp;#227;o de um c&amp;#243;digo discreto para GuiDesigner&lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; Gostaria de converter um c&amp;#243;digo discreto IR para GuiDesigner, &amp;#233; este&lt;br&gt;&amp;gt;&amp;gt; poss&amp;#237;vel?&lt;br&gt;&amp;gt;&amp;gt; O comando &amp;#233; enviado atrav&amp;#233;s de um iTach&lt;br&gt;&amp;gt;&amp;gt; grato&lt;br&gt;&amp;gt;&amp;gt; &lt;br&gt;&amp;gt;&amp;gt; -&lt;br&gt;&amp;gt;&amp;gt; Voc&amp;#234; recebeu esta mensagem porque est&amp;#225; inscrito no Google Groups&lt;br&gt;&amp;gt;&amp;gt; &amp;quot;CommandFusion&amp;quot; do grupo.&lt;br&gt;&amp;gt;&amp;gt; Para postar neste grupo, envie um e-mail para &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt; Para sair deste grupo, envie um e-mail para&lt;br&gt;&amp;gt;&amp;gt; commandfusion + &lt;a href="mailto:unsubscribe@googlegroups.com"&gt;unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt; Para obter mais op&amp;#231;&amp;#245;es, visite este grupo emhttp://&lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; -- &lt;br&gt;&amp;gt; You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;&amp;gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt; &lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-8054839953648355274?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/8054839953648355274/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-converting-discrete-code-for_5822.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/8054839953648355274'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/8054839953648355274'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-converting-discrete-code-for_5822.html' title='Re: Converting a discrete code for GuiDesigner'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-6138633551982608106</id><published>2012-01-31T12:56:00.001-08:00</published><updated>2012-01-31T12:56:27.323-08:00</updated><title type='text'>Re: Converting a discrete code for GuiDesigner</title><content type='html'>Thanks Joep, execute your information right now ... will inform the&lt;br&gt;result. Tks ....&lt;p&gt;On 31 jan, 17:31, Joep van den Aker &amp;lt;&lt;a href="mailto:jvda2...@gmail.com"&gt;jvda2...@gmail.com&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt; Voc&amp;#234; pode usar iConvert. &amp;#201; uma ferramenta a partir de cache global para converter um hexadecimal&lt;br&gt;&amp;gt; (Discreto) C&amp;#243;digo de ir a um c&amp;#243;digo de GC.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &lt;a href="http://www.icasa-domotica.nl/webshop/download/iConvert.zip"&gt;http://www.icasa-domotica.nl/webshop/download/iConvert.zip&lt;/a&gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Com os melhores cumprimentos,&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Joep van den Aker&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Op 31 de janeiro 2012 om 20:16 heeft BR-101 &amp;lt;intelli...@ &lt;a href="http://hotmail.com"&gt;hotmail.com&lt;/a&gt;&amp;gt; het&lt;br&gt;&amp;gt; volgende geschreven:&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Gostaria de converter um c&amp;#243;digo discreto IR para GuiDesigner, &amp;#233; este&lt;br&gt;&amp;gt; &amp;gt; Poss&amp;#237;vel?&lt;br&gt;&amp;gt; &amp;gt; O comando &amp;#233; enviado atrav&amp;#233;s de um iTach&lt;br&gt;&amp;gt; &amp;gt; Grato&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; -&lt;br&gt;&amp;gt; &amp;gt; Voc&amp;#234; recebeu esta mensagem porque se inscreveu para o Google &amp;quot;CommandFusion&amp;quot; Grupos grupo.&lt;br&gt;&amp;gt; &amp;gt; Para postar neste grupo, envie um e-mail para &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; &amp;gt; Para sair deste grupo, envie um e-mail para commandfusion + &lt;a href="mailto:unsubscribe@googlegroups.com"&gt;unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; &amp;gt; Para mais op&amp;#231;&amp;#245;es, visite este grupo emhttp://&lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-6138633551982608106?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/6138633551982608106/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-converting-discrete-code-for_11.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/6138633551982608106'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/6138633551982608106'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-converting-discrete-code-for_11.html' title='Re: Converting a discrete code for GuiDesigner'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-6285425279673918871</id><published>2012-01-31T12:52:00.000-08:00</published><updated>2012-01-31T12:53:00.751-08:00</updated><title type='text'>Re: Converting a discrete code for GuiDesigner</title><content type='html'>Hello Barry, I need to send a command to switch inputs on a Samsung&lt;br&gt;TV, something like Input HDMI 1, HDMI 2, Component 2, AV1 these&lt;br&gt;things. In the area of the Central Remote Pronto commands are discrete&lt;br&gt;and would like to use it because of the original TV remote control&lt;br&gt;there is only one button to navigate the different inputs.&lt;br&gt;Tks&lt;p&gt;On 31 jan, 17:29, &amp;quot;Barry Gordon&amp;quot; &amp;lt;&lt;a href="mailto:ba...@the-gordons.net"&gt;ba...@the-gordons.net&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt; Tenho a certeza a resposta &amp;#233; sim, mas o que voc&amp;#234; quer dizer com converter. O que&lt;br&gt;&amp;gt; exatamente o que voc&amp;#234; tem?&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Acho que voc&amp;#234; deseja enviar o padr&amp;#227;o adequado para uma iTach de guiDesigner&lt;br&gt;&amp;gt; para caus&amp;#225;-lo para emitir um c&amp;#243;digo espec&amp;#237;fico IR para um dispositivo espec&amp;#237;fico. Voc&amp;#234; precisa ser&lt;br&gt;&amp;gt; capaz de estabelecer a seq&amp;#252;&amp;#234;ncia adequada HEX que o iTach quer ver (&amp;#233;&lt;br&gt;&amp;gt; documentados no protocolo de documentos em seu site) e ent&amp;#227;o voc&amp;#234; precisa&lt;br&gt;&amp;gt; causa guiDesigner para envi&amp;#225;-lo para fora uma porta TCP para o endere&amp;#231;o do iTach.&lt;br&gt;&amp;gt; Mas a primeira pergunta &amp;#233; o que voc&amp;#234; tem? por exemplo, uma string Hex Pronto&lt;br&gt;&amp;gt; representa&amp;#231;&amp;#227;o do que voc&amp;#234; deseja enviar?&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; ----- Original Message -----&lt;br&gt;&amp;gt; De: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt; [mailto: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;]&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Em nome de BR-101&lt;br&gt;&amp;gt; Sent: ter&amp;#231;a-feira, 31 janeiro, 2012 14:16&lt;br&gt;&amp;gt; Para: CommandFusion&lt;br&gt;&amp;gt; Assunto: Convers&amp;#227;o de um c&amp;#243;digo discreto para GuiDesigner&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Gostaria de converter um c&amp;#243;digo discreto IR para GuiDesigner, &amp;#233; este&lt;br&gt;&amp;gt; poss&amp;#237;vel?&lt;br&gt;&amp;gt; O comando &amp;#233; enviado atrav&amp;#233;s de um iTach&lt;br&gt;&amp;gt; grato&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; -&lt;br&gt;&amp;gt; Voc&amp;#234; recebeu esta mensagem porque est&amp;#225; inscrito no Google Groups&lt;br&gt;&amp;gt; &amp;quot;CommandFusion&amp;quot; do grupo.&lt;br&gt;&amp;gt; Para postar neste grupo, envie um e-mail para &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; Para sair deste grupo, envie um e-mail para&lt;br&gt;&amp;gt; commandfusion + &lt;a href="mailto:unsubscribe@googlegroups.com"&gt;unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; Para obter mais op&amp;#231;&amp;#245;es, visite este grupo emhttp://&lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-6285425279673918871?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/6285425279673918871/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-converting-discrete-code-for_3210.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/6285425279673918871'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/6285425279673918871'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-converting-discrete-code-for_3210.html' title='Re: Converting a discrete code for GuiDesigner'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-5180093214627627121</id><published>2012-01-31T12:14:00.001-08:00</published><updated>2012-01-31T12:14:40.464-08:00</updated><title type='text'>Re: [iphonesb] Contracting for someone who wants iTunes presence</title><content type='html'>They might want to get the $299 business account, for tax / contractual / liability protection reasons.&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;-Kenneth&lt;br&gt;&lt;div apple-content-edited="true"&gt; &lt;span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; "&gt;&lt;span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; "&gt;&lt;div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "&gt;&lt;span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "&gt;&lt;div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "&gt;&lt;span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "&gt;&lt;div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "&gt;&lt;span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "&gt;&lt;div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "&gt;&lt;div&gt;&lt;div&gt;&lt;br class="Apple-interchange-newline"&gt;---&lt;/div&gt;&lt;div&gt;Kenneth Ballenegger&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;a href="http://www.kswizz.com"&gt;www.kswizz.com&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;br class="Apple-interchange-newline"&gt;&lt;/div&gt;&lt;/span&gt;&lt;br class="Apple-interchange-newline"&gt;&lt;/div&gt;&lt;/span&gt;&lt;br class="Apple-interchange-newline"&gt;&lt;/span&gt;&lt;br class="Apple-interchange-newline"&gt; &lt;/div&gt; &lt;br&gt;&lt;div&gt;&lt;div&gt;On Jan 31, 2012, at 9:36 AM, Adam Martin wrote:&lt;/div&gt;&lt;br class="Apple-interchange-newline"&gt;&lt;blockquote type="cite"&gt;&lt;div&gt;The company name is tied VERY tightly to the Developer account that&lt;br&gt;submitted the app.&lt;br&gt;&lt;br&gt;Even something as simple as a typo in the name can be very difficult&lt;br&gt;to get changed.&lt;br&gt;&lt;br&gt;So ... no, you can't use your account - they need to pay the $99/year&lt;br&gt;themselves.&lt;br&gt;&lt;br&gt;On 31 January 2012 17:09, howardk &amp;lt;&lt;a href="mailto:howardck@gmail.com"&gt;howardck@gmail.com&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&lt;blockquote type="cite"&gt;Hi,&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;I'm about to do a small iPhone app contract for somebody who wants&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;their company name listed as the Seller on the iTunes page for the&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;app. Can I use my existing developer account to do this (I'm listed as&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;an individual, not corporate), or would they have to join the&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;Developer Program and have me set up and use a corporate account for&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;them so that they can get the exposure? Or something else yet again? I&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;couldn't find anything online.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;Thanks,&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;Howard&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;--&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;You received this message because you are subscribed to the Google Groups "iPhone Software Business" group.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;To post to this group, send email to &lt;a href="mailto:iphonesb@googlegroups.com"&gt;iphonesb@googlegroups.com&lt;/a&gt;.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;To unsubscribe from this group, send email to &lt;a href="mailto:iphonesb+unsubscribe@googlegroups.com"&gt;iphonesb+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/iphonesb?hl=en"&gt;http://groups.google.com/group/iphonesb?hl=en&lt;/a&gt;.&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type="cite"&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;br&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups "iPhone Software Business" group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:iphonesb@googlegroups.com"&gt;iphonesb@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:iphonesb+unsubscribe@googlegroups.com"&gt;iphonesb+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/iphonesb?hl=en"&gt;http://groups.google.com/group/iphonesb?hl=en&lt;/a&gt;.&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&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/2789322492541150578-5180093214627627121?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/5180093214627627121/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphonesb-contracting-for-someone-who_6750.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/5180093214627627121'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/5180093214627627121'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphonesb-contracting-for-someone-who_6750.html' title='Re: [iphonesb] Contracting for someone who wants iTunes presence'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-1583004806028485165</id><published>2012-01-31T11:31:00.001-08:00</published><updated>2012-01-31T11:31:49.364-08:00</updated><title type='text'>Re: Converting a discrete code for GuiDesigner</title><content type='html'>You can use iconvert. It&amp;#39;s a tool from Global Cach&amp;#233; to convert a hex&lt;br&gt;(discrete) ir code to a GC code.&lt;p&gt;&lt;a href="http://www.icasa-domotica.nl/webshop/download/iConvert.zip"&gt;http://www.icasa-domotica.nl/webshop/download/iConvert.zip&lt;/a&gt;&lt;p&gt;Best regards,&lt;p&gt;Joep van den Aker&lt;p&gt;Op 31 jan. 2012 om 20:16 heeft BR-101 &amp;lt;&lt;a href="mailto:intellipad@hotmail.com"&gt;intellipad@hotmail.com&lt;/a&gt;&amp;gt; het&lt;br&gt;volgende geschreven:&lt;p&gt;&amp;gt; I would like to convert a discrete IR code for GuiDesigner, is this&lt;br&gt;&amp;gt; possible?&lt;br&gt;&amp;gt; The command is sent through a iTach&lt;br&gt;&amp;gt; grateful&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; --&lt;br&gt;&amp;gt; You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;&amp;gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt;&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-1583004806028485165?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/1583004806028485165/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-converting-discrete-code-for_31.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/1583004806028485165'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/1583004806028485165'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-converting-discrete-code-for_31.html' title='Re: Converting a discrete code for GuiDesigner'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-8969471405699836063</id><published>2012-01-31T11:29:00.001-08:00</published><updated>2012-01-31T11:29:43.139-08:00</updated><title type='text'>RE: Converting a discrete code for GuiDesigner</title><content type='html'>I am pretty sure the answer is yes, but what do you mean by convert.  What&lt;br&gt;exactly do you have? &lt;p&gt;I take it you want to send  the proper pattern to an iTach from guiDesigner&lt;br&gt;to cause it to issue a specific IR code to a specific device. You need to be&lt;br&gt;able to establish the proper HEX string that the iTach wants to see (it is&lt;br&gt;documented in the protocol documents at their site) and then you need to&lt;br&gt;cause guiDesigner to send it out a TCP Port to the address of the iTach.&lt;br&gt;But the first questions is what do you have ? e.g. a Pronto Hex string&lt;br&gt;representation of what you want to send?&lt;p&gt;-----Original Message-----&lt;br&gt;From: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt; [mailto:&lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;]&lt;br&gt;On Behalf Of BR-101&lt;br&gt;Sent: Tuesday, January 31, 2012 2:16 PM&lt;br&gt;To: CommandFusion&lt;br&gt;Subject: Converting a discrete code for GuiDesigner&lt;p&gt;I would like to convert a discrete IR code for GuiDesigner, is this&lt;br&gt;possible?&lt;br&gt;The command is sent through a iTach&lt;br&gt;grateful&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups&lt;br&gt;&amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to&lt;br&gt;&lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at&lt;br&gt;&lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-8969471405699836063?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/8969471405699836063/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-converting-discrete-code-for.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/8969471405699836063'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/8969471405699836063'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-converting-discrete-code-for.html' title='RE: Converting a discrete code for GuiDesigner'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-2341836229695938836</id><published>2012-01-31T11:16:00.001-08:00</published><updated>2012-01-31T11:16:34.880-08:00</updated><title type='text'>Converting a discrete code for GuiDesigner</title><content type='html'>I would like to convert a discrete IR code for GuiDesigner, is this&lt;br&gt;possible?&lt;br&gt;The command is sent through a iTach&lt;br&gt;grateful&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-2341836229695938836?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/2341836229695938836/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/converting-discrete-code-for.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/2341836229695938836'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/2341836229695938836'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/converting-discrete-code-for.html' title='Converting a discrete code for GuiDesigner'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-5562826502421514939</id><published>2012-01-31T09:47:00.000-08:00</published><updated>2012-01-31T09:48:22.343-08:00</updated><title type='text'>Re: [iphonesb] Contracting for someone who wants iTunes presence</title><content type='html'>I spent a year sending many dozens of increasing angry emails getting my itunes company name changed.  I followed up with phone calls and every approach you could think of.&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;When I first did it years ago, due to confusing fields, I ended up putting an app name as the company name.  Now, I &lt;i&gt;finally&lt;/i&gt; got the name changed from the gibberish it was before.  Now, my itunes company name is Dusty Technologis.... &lt;b&gt;&lt;i&gt;*sigh*&lt;/i&gt;&lt;/b&gt;&lt;/div&gt;  &lt;div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="http://itunes.apple.com/app/screen-spy/id369234281?mt=8"&gt;http://itunes.apple.com/app/screen-spy/id369234281?mt=8&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;div class="gmail_quote"&gt;On Tue, Jan 31, 2012 at 9:36 AM, Adam Martin &lt;span dir="ltr"&gt;&amp;lt;&lt;a href="mailto:adam.m.s.martin@gmail.com"&gt;adam.m.s.martin@gmail.com&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;  &lt;blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"&gt;The company name is tied VERY tightly to the Developer account that&lt;br&gt; submitted the app.&lt;br&gt; &lt;br&gt; Even something as simple as a typo in the name can be very difficult&lt;br&gt; to get changed.&lt;br&gt; &lt;br&gt; So ... no, you can&amp;#39;t use your account - they need to pay the $99/year&lt;br&gt; themselves.&lt;br&gt; &lt;div class="HOEnZb"&gt;&lt;div class="h5"&gt;&lt;br&gt; On 31 January 2012 17:09, howardk &amp;lt;&lt;a href="mailto:howardck@gmail.com"&gt;howardck@gmail.com&lt;/a&gt;&amp;gt; wrote:&lt;br&gt; &amp;gt; Hi,&lt;br&gt; &amp;gt; I&amp;#39;m about to do a small iPhone app contract for somebody who wants&lt;br&gt; &amp;gt; their company name listed as the Seller on the iTunes page for the&lt;br&gt; &amp;gt; app. Can I use my existing developer account to do this (I&amp;#39;m listed as&lt;br&gt; &amp;gt; an individual, not corporate), or would they have to join the&lt;br&gt; &amp;gt; Developer Program and have me set up and use a corporate account for&lt;br&gt; &amp;gt; them so that they can get the exposure? Or something else yet again? I&lt;br&gt; &amp;gt; couldn&amp;#39;t find anything online.&lt;br&gt; &amp;gt; Thanks,&lt;br&gt; &amp;gt; Howard&lt;br&gt; &amp;gt;&lt;br&gt; &amp;gt; --&lt;br&gt; &amp;gt; You received this message because you are subscribed to the Google Groups &amp;quot;iPhone Software Business&amp;quot; group.&lt;br&gt; &amp;gt; To post to this group, send email to &lt;a href="mailto:iphonesb@googlegroups.com"&gt;iphonesb@googlegroups.com&lt;/a&gt;.&lt;br&gt; &amp;gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphonesb%2Bunsubscribe@googlegroups.com"&gt;iphonesb+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt; &amp;gt; For more options, visit this group at &lt;a href="http://groups.google.com/group/iphonesb?hl=en" target="_blank"&gt;http://groups.google.com/group/iphonesb?hl=en&lt;/a&gt;.&lt;br&gt; &amp;gt;&lt;br&gt; &lt;br&gt; --&lt;br&gt; You received this message because you are subscribed to the Google Groups &amp;quot;iPhone Software Business&amp;quot; group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:iphonesb@googlegroups.com"&gt;iphonesb@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphonesb%2Bunsubscribe@googlegroups.com"&gt;iphonesb+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt; For more options, visit this group at &lt;a href="http://groups.google.com/group/iphonesb?hl=en" target="_blank"&gt;http://groups.google.com/group/iphonesb?hl=en&lt;/a&gt;.&lt;br&gt; &lt;br&gt; &lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;  &lt;p&gt;&lt;/p&gt;  -- &lt;br /&gt; You received this message because you are subscribed to the Google Groups "iPhone Software Business" group.&lt;br /&gt; To post to this group, send email to iphonesb@googlegroups.com.&lt;br /&gt; To unsubscribe from this group, send email to iphonesb+unsubscribe@googlegroups.com.&lt;br /&gt;  For more options, visit this group at http://groups.google.com/group/iphonesb?hl=en.&lt;br /&gt;   &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-5562826502421514939?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/5562826502421514939/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphonesb-contracting-for-someone-who_31.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/5562826502421514939'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/5562826502421514939'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphonesb-contracting-for-someone-who_31.html' title='Re: [iphonesb] Contracting for someone who wants iTunes presence'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-3876746270518995995</id><published>2012-01-31T09:36:00.001-08:00</published><updated>2012-01-31T09:36:48.403-08:00</updated><title type='text'>Re: [iphonesb] Contracting for someone who wants iTunes presence</title><content type='html'>The company name is tied VERY tightly to the Developer account that&lt;br&gt;submitted the app.&lt;p&gt;Even something as simple as a typo in the name can be very difficult&lt;br&gt;to get changed.&lt;p&gt;So ... no, you can&amp;#39;t use your account - they need to pay the $99/year&lt;br&gt;themselves.&lt;p&gt;On 31 January 2012 17:09, howardk &amp;lt;&lt;a href="mailto:howardck@gmail.com"&gt;howardck@gmail.com&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt; Hi,&lt;br&gt;&amp;gt; I&amp;#39;m about to do a small iPhone app contract for somebody who wants&lt;br&gt;&amp;gt; their company name listed as the Seller on the iTunes page for the&lt;br&gt;&amp;gt; app. Can I use my existing developer account to do this (I&amp;#39;m listed as&lt;br&gt;&amp;gt; an individual, not corporate), or would they have to join the&lt;br&gt;&amp;gt; Developer Program and have me set up and use a corporate account for&lt;br&gt;&amp;gt; them so that they can get the exposure? Or something else yet again? I&lt;br&gt;&amp;gt; couldn&amp;#39;t find anything online.&lt;br&gt;&amp;gt; Thanks,&lt;br&gt;&amp;gt; Howard&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; --&lt;br&gt;&amp;gt; You received this message because you are subscribed to the Google Groups &amp;quot;iPhone Software Business&amp;quot; group.&lt;br&gt;&amp;gt; To post to this group, send email to &lt;a href="mailto:iphonesb@googlegroups.com"&gt;iphonesb@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; To unsubscribe from this group, send email to &lt;a href="mailto:iphonesb%2Bunsubscribe@googlegroups.com"&gt;iphonesb+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; For more options, visit this group at &lt;a href="http://groups.google.com/group/iphonesb?hl=en"&gt;http://groups.google.com/group/iphonesb?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt;&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;iPhone Software Business&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:iphonesb@googlegroups.com"&gt;iphonesb@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:iphonesb%2Bunsubscribe@googlegroups.com"&gt;iphonesb+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/iphonesb?hl=en"&gt;http://groups.google.com/group/iphonesb?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-3876746270518995995?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/3876746270518995995/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphonesb-contracting-for-someone-who.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/3876746270518995995'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/3876746270518995995'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-iphonesb-contracting-for-someone-who.html' title='Re: [iphonesb] Contracting for someone who wants iTunes presence'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-6782152441340093090</id><published>2012-01-31T09:31:00.001-08:00</published><updated>2012-01-31T09:31:25.958-08:00</updated><title type='text'>Re: iOS5.0.1 and Crestron CIP1.1</title><content type='html'>Maybe I should explain what the problem is I&amp;#39;m having on-site...&lt;p&gt;Since I got back from holiday the client started complaining about the&lt;br&gt;iPads taking forever to update the button feedback (digitals) and any&lt;br&gt;serial text flieds, whenever the iPads come out of standby.&lt;p&gt;There was a couple of changes to the system since I got back:&lt;p&gt;1) Upgraded all the iPads from iOS5.0 to iOS5.0.1&lt;p&gt;2) Install iViewer 4 (v4.0.196) - The client used iViewer Next&lt;br&gt;(v4.0.184) during the holiday as there wasn&amp;#39;t enough time to change&lt;br&gt;and test. The system was working fine for the holiday.&lt;p&gt;3) I also added another 3 iPads and moved one or two between the&lt;br&gt;Crestron processors&lt;p&gt;My initial thinking was that the point 3 might have cause some delays&lt;br&gt;for Crestron&amp;#39;s side, but when using SIMPL Debugger I saw the the&lt;br&gt;signals and serial had the correct values. I did however decide to&lt;br&gt;buffer all the serials to each iPad so only the necessary signals are&lt;br&gt;sent whenever the relevant page is displayed. With some more testing I&lt;br&gt;found that some subpages, that are controlled via a Loopback system in&lt;br&gt;every iPad wasn&amp;#39;t working properly. Whenever you select a subpage it&lt;br&gt;should first clear any other subpage that&amp;#39;s active before it slides&lt;br&gt;into the page, however every subpage will just slide in and on top of&lt;br&gt;whatever is already there. This was working perfectly.&lt;p&gt;It&amp;#39;s then that I decided to download iViewer Next (v4.0.190) again and&lt;br&gt;now everything seems to be back to normal. Digitals and Serials are&lt;br&gt;updated almost immediately when I open the app or when the iPad comes&lt;br&gt;out of standby.&lt;p&gt;&lt;br&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-6782152441340093090?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/6782152441340093090/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-ios501-and-crestron-cip11_31.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/6782152441340093090'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/6782152441340093090'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-ios501-and-crestron-cip11_31.html' title='Re: iOS5.0.1 and Crestron CIP1.1'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-7251349923107243009</id><published>2012-01-31T09:29:00.001-08:00</published><updated>2012-01-31T09:29:50.697-08:00</updated><title type='text'>Re: [Pi] Why are software development task estimations regularly off by a factor of 2-3?</title><content type='html'>Great Analogy. Thanks for posting, Matthew. I think we can all relate as Software development has so many twist, turns and curves. A good programmer however will still meet his friends for lunch, even if its a few months late because he made that commitment. We cant give up on our trip simply because we didnt realize that its not a straight line between San Francisco and LA. &lt;br&gt; &lt;br&gt;&lt;div class="gmail_quote"&gt;On Tue, Jan 31, 2012 at 9:34 AM, Matthew Frederick &lt;span dir="ltr"&gt;&amp;lt;&lt;a href="mailto:fastlearner@gmail.com"&gt;fastlearner@gmail.com&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"&gt; An excellent analogy on Quora, as answered by Michael Wolfe:&lt;br&gt; &lt;br&gt; &lt;a href="http://www.quora.com/Engineering-Management/Why-are-software-development-task-estimations-regularly-off-by-a-factor-of-2-3" target="_blank"&gt;http://www.quora.com/Engineering-Management/Why-are-software-development-task-estimations-regularly-off-by-a-factor-of-2-3&lt;/a&gt;&lt;br&gt;  &lt;br&gt; (Yes, there are ways to help ameliorate it, and if you&amp;#39;re an&lt;br&gt; experienced hiker, blah blah blah... still a really great analogy.)&lt;br&gt; &lt;span class="HOEnZb"&gt;&lt;font color="#888888"&gt;&lt;br&gt; -- Matthew&lt;br&gt; &lt;br&gt; --&lt;br&gt; You received this message because you are subscribed to the Google Groups &amp;quot;Phoenix iOS Developer Group&amp;quot; group.&lt;br&gt; To post to this group, send email to &lt;a href="mailto:phx-ios-developer-group@googlegroups.com"&gt;phx-ios-developer-group@googlegroups.com&lt;/a&gt;.&lt;br&gt; To unsubscribe from this group, send email to &lt;a href="mailto:phx-ios-developer-group%2Bunsubscribe@googlegroups.com"&gt;phx-ios-developer-group+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt; For more options, visit this group at &lt;a href="http://groups.google.com/group/phx-ios-developer-group?hl=en" target="_blank"&gt;http://groups.google.com/group/phx-ios-developer-group?hl=en&lt;/a&gt;.&lt;br&gt; &lt;br&gt; &lt;/font&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear="all"&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;-- &lt;br&gt;-------------------------------------------------------&lt;br&gt;Ali Abid Husain&lt;br&gt;.NET Programmer&lt;br&gt;  &lt;p&gt;&lt;/p&gt;  -- &lt;br /&gt; You received this message because you are subscribed to the Google Groups "Phoenix iOS Developer Group" group.&lt;br /&gt; To post to this group, send email to phx-ios-developer-group@googlegroups.com.&lt;br /&gt; To unsubscribe from this group, send email to phx-ios-developer-group+unsubscribe@googlegroups.com.&lt;br /&gt;  For more options, visit this group at http://groups.google.com/group/phx-ios-developer-group?hl=en.&lt;br /&gt;   &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-7251349923107243009?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/7251349923107243009/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-pi-why-are-software-development-task_31.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7251349923107243009'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7251349923107243009'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-pi-why-are-software-development-task_31.html' title='Re: [Pi] Why are software development task estimations regularly off by a factor of 2-3?'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-4549240621726909025</id><published>2012-01-31T09:13:00.000-08:00</published><updated>2012-01-31T09:14:06.986-08:00</updated><title type='text'>RE: Changing an image depending on slider value in Javascript</title><content type='html'>First of all you&amp;#39;ll need to change your logic as when value&amp;lt;2, value&amp;lt;3, etc.&lt;br&gt;conditions are met, it will also trigger actions for value&amp;lt;1. For each of&lt;br&gt;your 12 images, you would want to set the value to be value =1,&lt;br&gt;value=2,value=3, etc until value=12.&lt;p&gt;Than use CF.setJoin to set the path for your image. Your function would&lt;br&gt;probaly look something like this :&lt;p&gt;onSliderChanged(join, value) {&lt;br&gt;if (value = 1) { CF.setJoin(&amp;quot;s1&amp;quot;, *path for your first image here*); // set&lt;br&gt;first image here } else if (value = 2) { CF.setJoin(&amp;quot;s1&amp;quot;, *path for your&lt;br&gt;second image here*); // set second image here } and etc.&lt;br&gt; &lt;p&gt;-----Original Message-----&lt;br&gt;From: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt; [mailto:&lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;]&lt;br&gt;On Behalf Of &lt;a href="mailto:chubby_blade@hotmail.com"&gt;chubby_blade@hotmail.com&lt;/a&gt;&lt;br&gt;Sent: 01 February 2012 00:48&lt;br&gt;To: CommandFusion&lt;br&gt;Subject: Changing an image depending on slider value in Javascript&lt;p&gt;Hi&lt;br&gt;Florent originally gave me advice on this matter in the chat room, but I&lt;br&gt;cant quite see how to get it to work.&lt;br&gt;I have 12 images which show the different states of a slider and I want them&lt;br&gt;to change depending on the slider value.&lt;br&gt;I understand that first I need to watch the slider&amp;#39;s join&lt;p&gt;CF.watch(CF.JoinChangeEvent, &amp;quot;a1&amp;quot;, onSliderChanged)&lt;p&gt;Then  add a function to get the image to change&lt;p&gt;onSliderChanged(join, value) {if (value &amp;lt; 1) { /* set first image here */ }&lt;br&gt;else if (value &amp;lt; 2) { /* set second image here */ }&lt;p&gt;etc&lt;p&gt;But I&amp;#39;m having trouble actually putting this into practice. Assuming my&lt;br&gt;slider is on a1 and my image is on s1, how do I get it to change?&lt;br&gt;I&amp;#39;ve tried loads of comibinations, but no joy so far :-(&lt;p&gt;Thanks&lt;p&gt;Rob&lt;p&gt;--&lt;br&gt;You received this message because you are subscribed to the Google Groups&lt;br&gt;&amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to&lt;br&gt;&lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at&lt;br&gt;&lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-4549240621726909025?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/4549240621726909025/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-changing-image-depending-on-slider.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/4549240621726909025'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/4549240621726909025'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-changing-image-depending-on-slider.html' title='RE: Changing an image depending on slider value in Javascript'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-8980921202017816945</id><published>2012-01-31T09:09:00.000-08:00</published><updated>2012-01-31T09:10:18.133-08:00</updated><title type='text'>[iphonesb] Contracting for someone who wants iTunes presence</title><content type='html'>Hi,&lt;br&gt;I&amp;#39;m about to do a small iPhone app contract for somebody who wants&lt;br&gt;their company name listed as the Seller on the iTunes page for the&lt;br&gt;app. Can I use my existing developer account to do this (I&amp;#39;m listed as&lt;br&gt;an individual, not corporate), or would they have to join the&lt;br&gt;Developer Program and have me set up and use a corporate account for&lt;br&gt;them so that they can get the exposure? Or something else yet again? I&lt;br&gt;couldn&amp;#39;t find anything online.&lt;br&gt;Thanks,&lt;br&gt;Howard&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;iPhone Software Business&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:iphonesb@googlegroups.com"&gt;iphonesb@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:iphonesb%2Bunsubscribe@googlegroups.com"&gt;iphonesb+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/iphonesb?hl=en"&gt;http://groups.google.com/group/iphonesb?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-8980921202017816945?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/8980921202017816945/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/iphonesb-contracting-for-someone-who.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/8980921202017816945'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/8980921202017816945'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/iphonesb-contracting-for-someone-who.html' title='[iphonesb] Contracting for someone who wants iTunes presence'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-1546212311510473118</id><published>2012-01-31T09:03:00.000-08:00</published><updated>2012-01-31T09:04:04.112-08:00</updated><title type='text'>Re: [Pi] Why are software development task estimations regularly off by a factor of 2-3?</title><content type='html'>Loved this post.&lt;p&gt;On Jan 31, 2012, at 9:34 AM, Matthew Frederick wrote:&lt;p&gt;&amp;gt; An excellent analogy on Quora, as answered by Michael Wolfe:&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; &lt;a href="http://www.quora.com/Engineering-Management/Why-are-software-development-task-estimations-regularly-off-by-a-factor-of-2-3"&gt;http://www.quora.com/Engineering-Management/Why-are-software-development-task-estimations-regularly-off-by-a-factor-of-2-3&lt;/a&gt;&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; (Yes, there are ways to help ameliorate it, and if you&amp;#39;re an&lt;br&gt;&amp;gt; experienced hiker, blah blah blah... still a really great analogy.)&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; -- Matthew&lt;br&gt;&amp;gt; &lt;br&gt;&amp;gt; -- &lt;br&gt;&amp;gt; You received this message because you are subscribed to the Google Groups &amp;quot;Phoenix iOS Developer Group&amp;quot; group.&lt;br&gt;&amp;gt; To post to this group, send email to &lt;a href="mailto:phx-ios-developer-group@googlegroups.com"&gt;phx-ios-developer-group@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; To unsubscribe from this group, send email to &lt;a href="mailto:phx-ios-developer-group%2Bunsubscribe@googlegroups.com"&gt;phx-ios-developer-group+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; For more options, visit this group at &lt;a href="http://groups.google.com/group/phx-ios-developer-group?hl=en"&gt;http://groups.google.com/group/phx-ios-developer-group?hl=en&lt;/a&gt;.&lt;br&gt;&amp;gt; &lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;Phoenix iOS Developer Group&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:phx-ios-developer-group@googlegroups.com"&gt;phx-ios-developer-group@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:phx-ios-developer-group%2Bunsubscribe@googlegroups.com"&gt;phx-ios-developer-group+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/phx-ios-developer-group?hl=en"&gt;http://groups.google.com/group/phx-ios-developer-group?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-1546212311510473118?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/1546212311510473118/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-pi-why-are-software-development-task.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/1546212311510473118'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/1546212311510473118'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-pi-why-are-software-development-task.html' title='Re: [Pi] Why are software development task estimations regularly off by a factor of 2-3?'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-5169363864015122267</id><published>2012-01-31T08:47:00.000-08:00</published><updated>2012-01-31T08:48:05.288-08:00</updated><title type='text'>Changing an image depending on slider value in Javascript</title><content type='html'>Hi&lt;br&gt;Florent originally gave me advice on this matter in the chat room, but&lt;br&gt;I cant quite see how to get it to work.&lt;br&gt;I have 12 images which show the different states of a slider and I&lt;br&gt;want them to change depending on the slider value.&lt;br&gt;I understand that first I need to watch the slider&amp;#39;s join&lt;p&gt;CF.watch(CF.JoinChangeEvent, &amp;quot;a1&amp;quot;, onSliderChanged)&lt;p&gt;Then  add a function to get the image to change&lt;p&gt;onSliderChanged(join, value) {if (value &amp;lt; 1) { /* set first image here&lt;br&gt;*/ } else if (value &amp;lt; 2) { /* set second image here */ }&lt;p&gt;etc&lt;p&gt;But I&amp;#39;m having trouble actually putting this into practice. Assuming&lt;br&gt;my slider is on a1 and my image is on s1, how do I get it to change?&lt;br&gt;I&amp;#39;ve tried loads of comibinations, but no joy so far :-(&lt;p&gt;Thanks&lt;p&gt;Rob&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-5169363864015122267?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/5169363864015122267/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/changing-image-depending-on-slider.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/5169363864015122267'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/5169363864015122267'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/changing-image-depending-on-slider.html' title='Changing an image depending on slider value in Javascript'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-7859568193643303338</id><published>2012-01-31T08:34:00.001-08:00</published><updated>2012-01-31T08:34:40.911-08:00</updated><title type='text'>[Pi] Why are software development task estimations regularly off by a factor of 2-3?</title><content type='html'>An excellent analogy on Quora, as answered by Michael Wolfe:&lt;p&gt;&lt;a href="http://www.quora.com/Engineering-Management/Why-are-software-development-task-estimations-regularly-off-by-a-factor-of-2-3"&gt;http://www.quora.com/Engineering-Management/Why-are-software-development-task-estimations-regularly-off-by-a-factor-of-2-3&lt;/a&gt;&lt;p&gt;(Yes, there are ways to help ameliorate it, and if you&amp;#39;re an&lt;br&gt;experienced hiker, blah blah blah... still a really great analogy.)&lt;p&gt;-- Matthew&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;Phoenix iOS Developer Group&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:phx-ios-developer-group@googlegroups.com"&gt;phx-ios-developer-group@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:phx-ios-developer-group%2Bunsubscribe@googlegroups.com"&gt;phx-ios-developer-group+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/phx-ios-developer-group?hl=en"&gt;http://groups.google.com/group/phx-ios-developer-group?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-7859568193643303338?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/7859568193643303338/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/pi-why-are-software-development-task.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7859568193643303338'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7859568193643303338'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/pi-why-are-software-development-task.html' title='[Pi] Why are software development task estimations regularly off by a factor of 2-3?'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-5201457296275413342</id><published>2012-01-31T07:50:00.001-08:00</published><updated>2012-01-31T07:50:55.373-08:00</updated><title type='text'>who has done an NSDataDetector</title><content type='html'>who has worked on their own custom NSDataDetector and can share some insights with me about it?&lt;p&gt;the documentation is paltry!&lt;p&gt;&lt;br&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;iPhone SDK Development&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:iphonesdkdevelopment@googlegroups.com"&gt;iphonesdkdevelopment@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:iphonesdkdevelopment%2Bunsubscribe@googlegroups.com"&gt;iphonesdkdevelopment+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/iphonesdkdevelopment?hl=en"&gt;http://groups.google.com/group/iphonesdkdevelopment?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-5201457296275413342?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/5201457296275413342/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/who-has-done-nsdatadetector.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/5201457296275413342'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/5201457296275413342'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/who-has-done-nsdatadetector.html' title='who has done an NSDataDetector'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-3182260831363288720</id><published>2012-01-31T06:18:00.001-08:00</published><updated>2012-01-31T06:18:40.247-08:00</updated><title type='text'>Re: Control System Re-Initialization</title><content type='html'>iViewer will automatically reconnect on wake.&lt;p&gt;A system defined in system manager does not send/receive commands using &lt;br&gt;our control system protocol.&lt;br&gt;Only the main control system defined in project properties handles this &lt;br&gt;protocol.&lt;p&gt;Jarrod&lt;p&gt;On 30/01/12 10:08 PM, MarkusKl wrote:&lt;br&gt;&amp;gt; Hi all,&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; is there a way to re-initialize the control system (GIRA Homeserver)&lt;br&gt;&amp;gt; via CF ?&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; I know about the OnGuiResumed() mechanism and it works perfectly well&lt;br&gt;&amp;gt; for GUI inits, but how can I re-initialize the TCP/IP connection with&lt;br&gt;&amp;gt; my control server?&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; The point is that after the iPad goes into standby (multitasking for&lt;br&gt;&amp;gt; CF &amp;quot;on&amp;quot;), it does not have the connection to the control system&lt;br&gt;&amp;gt; anymore which I do indicate by a digital join within the control&lt;br&gt;&amp;gt; system setup.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; By the way, can one also use a &amp;quot;normal system&amp;quot; configured as a control&lt;br&gt;&amp;gt; system without any commands ?&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Markus&lt;br&gt;&amp;gt;&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-3182260831363288720?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/3182260831363288720/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-control-system-re-initialization.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/3182260831363288720'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/3182260831363288720'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-control-system-re-initialization.html' title='Re: Control System Re-Initialization'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-7256350207976524600</id><published>2012-01-31T04:37:00.000-08:00</published><updated>2012-01-31T04:38:13.973-08:00</updated><title type='text'>Re: Snap To Grid</title><content type='html'>Yeah guiDesigner was purposely designed to not allow you to drag off a &lt;br&gt;page. I HATE how VTPro allowed that.&lt;p&gt;Jarrod&lt;p&gt;On 31/01/12 7:35 PM, Jordan wrote:&lt;br&gt;&amp;gt; I think David means the impossibility to use the arrow keys/mouse drag&lt;br&gt;&amp;gt; to move an object beyond the bounds of the page. You can however&lt;br&gt;&amp;gt; insert negative coord to position an object outside a page.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Personally I like it how it is, VT-Pro is a pain when an object goes&lt;br&gt;&amp;gt; outside the page&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; On 31 Gen, 04:28, Jarrod Bell&amp;lt;&lt;a href="mailto:jar...@guilink.com"&gt;jar...@guilink.com&lt;/a&gt;&amp;gt;  wrote:&lt;br&gt;&amp;gt;&amp;gt; What do you mean? I don&amp;#39;t think theres any limitations when an object is&lt;br&gt;&amp;gt;&amp;gt; on the edges or full width/height?&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; Jarrod&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; On 31/01/12 12:57 PM, David Collins wrote:&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I agree.  The alignment tools are useful, and the X/Y/width/height&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; tags are helpful, most of the time.  It would be nice if there was a&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; way to still use them when your object is up against the edge of the&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; page, or the full width/height of the page.&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-7256350207976524600?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/7256350207976524600/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-snap-to-grid_818.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7256350207976524600'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7256350207976524600'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-snap-to-grid_818.html' title='Re: Snap To Grid'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-2704425656936214162</id><published>2012-01-31T00:35:00.000-08:00</published><updated>2012-01-31T00:36:00.670-08:00</updated><title type='text'>Re: Snap To Grid</title><content type='html'>I think David means the impossibility to use the arrow keys/mouse drag&lt;br&gt;to move an object beyond the bounds of the page. You can however&lt;br&gt;insert negative coord to position an object outside a page.&lt;p&gt;Personally I like it how it is, VT-Pro is a pain when an object goes&lt;br&gt;outside the page&lt;p&gt;On 31 Gen, 04:28, Jarrod Bell &amp;lt;&lt;a href="mailto:jar...@guilink.com"&gt;jar...@guilink.com&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt; What do you mean? I don&amp;#39;t think theres any limitations when an object is&lt;br&gt;&amp;gt; on the edges or full width/height?&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Jarrod&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; On 31/01/12 12:57 PM, David Collins wrote:&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; I agree. &amp;#160;The alignment tools are useful, and the X/Y/width/height&lt;br&gt;&amp;gt; &amp;gt; tags are helpful, most of the time. &amp;#160;It would be nice if there was a&lt;br&gt;&amp;gt; &amp;gt; way to still use them when your object is up against the edge of the&lt;br&gt;&amp;gt; &amp;gt; page, or the full width/height of the page.&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-2704425656936214162?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/2704425656936214162/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-snap-to-grid_31.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/2704425656936214162'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/2704425656936214162'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-snap-to-grid_31.html' title='Re: Snap To Grid'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-368220241108791519</id><published>2012-01-30T23:26:00.001-08:00</published><updated>2012-01-30T23:26:24.933-08:00</updated><title type='text'>Re: Android</title><content type='html'>We said we&amp;#39;ll release the beta when we feel it&amp;#39;s ready. Going to be very soon now.&lt;p&gt;Florent&lt;p&gt;On Jan 31, 2012, at 3:14 AM, Trikom wrote:&lt;p&gt;&amp;gt; Any news about Android Viewer?&lt;br&gt;&amp;gt; Regards,&lt;br&gt;&amp;gt; Trikom&lt;p&gt;--&lt;br&gt;Florent Pillet - Software Engineering Lead&lt;br&gt;&lt;a href="http://www.commandfusion.com"&gt;www.commandfusion.com&lt;/a&gt;&lt;p&gt;&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-368220241108791519?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/368220241108791519/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-android.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/368220241108791519'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/368220241108791519'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-android.html' title='Re: Android'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-3271485867778835931</id><published>2012-01-30T23:11:00.001-08:00</published><updated>2012-01-30T23:11:45.137-08:00</updated><title type='text'>Re: iOS5.0.1 and Crestron CIP1.1</title><content type='html'>Noted. I&amp;#39;m wondering how others have dealt with this?&lt;p&gt;Could somebody perhaps give me a brief description of what happens&lt;br&gt;during the CIP1.1 connection/re-connection to a Crestron processor?&lt;p&gt;Tx&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-3271485867778835931?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/3271485867778835931/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-ios501-and-crestron-cip11_30.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/3271485867778835931'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/3271485867778835931'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-ios501-and-crestron-cip11_30.html' title='Re: iOS5.0.1 and Crestron CIP1.1'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-3614639501467092631</id><published>2012-01-30T21:39:00.001-08:00</published><updated>2012-01-30T21:39:49.035-08:00</updated><title type='text'>Re: iOS5.0.1 and Crestron CIP1.1</title><content type='html'>Only way to do that is to disable sleep mode in the iPad.&lt;br&gt;Otherwise as soon as it sleep, it risks losing connection.&lt;p&gt;Jarrod&lt;p&gt;On 31/01/12 4:36 PM, Etienne Terblanche wrote:&lt;br&gt;&amp;gt; Hi,&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Apologies if this topic has been discussed in the past...&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; I recently updated all the iPads (27) at a site and now I find that&lt;br&gt;&amp;gt; when they come out of standby they take seconds, sometimes minutes to&lt;br&gt;&amp;gt; actually update all the button feedbacks and serial text. I&amp;#39;ve got the&lt;br&gt;&amp;gt; iPads spread across 6 processors and they were fine with iOS5.0. I&amp;#39;ve&lt;br&gt;&amp;gt; got multitasking enabled and I have seen emails on other forums&lt;br&gt;&amp;gt; regarding workarounds to keep the Wi-Fi enabled while the iPad is in&lt;br&gt;&amp;gt; standby. Any ideas from somebody here that could help with this? The&lt;br&gt;&amp;gt; iPads are 99% of the time docked in i-Room wall docks so battery&lt;br&gt;&amp;gt; issues shouldn&amp;#39;t be a problem.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; PS: I&amp;#39;ve seen that the guys using Crestron&amp;#39;s Mobile Pro G uses an&lt;br&gt;&amp;gt; oscillator to send serial text every 10 seconds to each iPad to keep&lt;br&gt;&amp;gt; the comms up. Tried this, but no luck.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Thank you!&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Et&lt;br&gt;&amp;gt;&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-3614639501467092631?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/3614639501467092631/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-ios501-and-crestron-cip11.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/3614639501467092631'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/3614639501467092631'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-ios501-and-crestron-cip11.html' title='Re: iOS5.0.1 and Crestron CIP1.1'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-77149212807899646</id><published>2012-01-30T21:36:00.001-08:00</published><updated>2012-01-30T21:36:28.495-08:00</updated><title type='text'>iOS5.0.1 and Crestron CIP1.1</title><content type='html'>Hi,&lt;p&gt;Apologies if this topic has been discussed in the past...&lt;p&gt;I recently updated all the iPads (27) at a site and now I find that&lt;br&gt;when they come out of standby they take seconds, sometimes minutes to&lt;br&gt;actually update all the button feedbacks and serial text. I&amp;#39;ve got the&lt;br&gt;iPads spread across 6 processors and they were fine with iOS5.0. I&amp;#39;ve&lt;br&gt;got multitasking enabled and I have seen emails on other forums&lt;br&gt;regarding workarounds to keep the Wi-Fi enabled while the iPad is in&lt;br&gt;standby. Any ideas from somebody here that could help with this? The&lt;br&gt;iPads are 99% of the time docked in i-Room wall docks so battery&lt;br&gt;issues shouldn&amp;#39;t be a problem.&lt;p&gt;PS: I&amp;#39;ve seen that the guys using Crestron&amp;#39;s Mobile Pro G uses an&lt;br&gt;oscillator to send serial text every 10 seconds to each iPad to keep&lt;br&gt;the comms up. Tried this, but no luck.&lt;p&gt;&lt;p&gt;Thank you!&lt;p&gt;Et&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-77149212807899646?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/77149212807899646/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/ios501-and-crestron-cip11.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/77149212807899646'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/77149212807899646'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/ios501-and-crestron-cip11.html' title='iOS5.0.1 and Crestron CIP1.1'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-4273371019498779386</id><published>2012-01-30T19:28:00.000-08:00</published><updated>2012-01-30T19:29:19.045-08:00</updated><title type='text'>Re: Snap To Grid</title><content type='html'>What do you mean? I don&amp;#39;t think theres any limitations when an object is &lt;br&gt;on the edges or full width/height?&lt;p&gt;Jarrod&lt;p&gt;On 31/01/12 12:57 PM, David Collins wrote:&lt;br&gt;&amp;gt; I agree.  The alignment tools are useful, and the X/Y/width/height&lt;br&gt;&amp;gt; tags are helpful, most of the time.  It would be nice if there was a&lt;br&gt;&amp;gt; way to still use them when your object is up against the edge of the&lt;br&gt;&amp;gt; page, or the full width/height of the page.&lt;br&gt;&amp;gt;&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-4273371019498779386?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/4273371019498779386/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-snap-to-grid_3060.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/4273371019498779386'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/4273371019498779386'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-snap-to-grid_3060.html' title='Re: Snap To Grid'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-1048904802089164858</id><published>2012-01-30T18:14:00.001-08:00</published><updated>2012-01-30T18:14:39.585-08:00</updated><title type='text'>Android</title><content type='html'>Any news about Android Viewer?&lt;br&gt;Regards,&lt;br&gt;Trikom&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-1048904802089164858?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/1048904802089164858/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/android.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/1048904802089164858'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/1048904802089164858'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/android.html' title='Android'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-7885474294706876781</id><published>2012-01-30T17:57:00.001-08:00</published><updated>2012-01-30T17:57:40.332-08:00</updated><title type='text'>Re: Snap To Grid</title><content type='html'>I agree.  The alignment tools are useful, and the X/Y/width/height&lt;br&gt;tags are helpful, most of the time.  It would be nice if there was a&lt;br&gt;way to still use them when your object is up against the edge of the&lt;br&gt;page, or the full width/height of the page.&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-7885474294706876781?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/7885474294706876781/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-snap-to-grid_30.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7885474294706876781'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7885474294706876781'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-snap-to-grid_30.html' title='Re: Snap To Grid'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-667093480336394343</id><published>2012-01-30T13:22:00.001-08:00</published><updated>2012-01-30T13:22:37.550-08:00</updated><title type='text'>[Showmetech] Showmetech.com.br</title><content type='html'>&lt;style type="text/css"&gt;                          h1 a:hover {background-color:#888;color:#fff ! important;}                          div#emailbody table#itemcontentlist tr td div ul {                                         list-style-type:square;                                         padding-left:1em;                         }                                  div#emailbody table#itemcontentlist tr td div blockquote {                                 padding-left:6px;                                 border-left: 6px solid #dadada;                                 margin-left:1em;                         }                                  div#emailbody table#itemcontentlist tr td div li {                                 margin-bottom:1em;                                 margin-left:1em;                         }                           table#itemcontentlist tr td a:link, table#itemcontentlist tr td a:visited, table#itemcontentlist tr td a:active, ul#summarylist li a {                                 color:#FF6600;                                 font-weight:bold;                                 text-decoration:none;                         }                                 img {border:none;}                   &lt;/style&gt; &lt;div xmlns="http://www.w3.org/1999/xhtml" id="emailbody" style="margin:0 2em;font-family:Georgia,Helvetica,Arial,Sans-Serif;line-height:140%;font-size:13px;color:#000000;"&gt; &lt;table style="border:0;padding:0;margin:0;width:100%"&gt; &lt;tr&gt; &lt;td style="vertical-align:top" width="99%"&gt; &lt;h1 style="margin:0;padding-bottom:6px;"&gt; &lt;a style="color:#888;font-size:22px;font-family:Verdana, Arial, Helvetica, sans-serif;font-weight:normal;text-decoration:none;" href="http://showmetech.com.br" title="(http://showmetech.com.br)"&gt;Showmetech.com.br&lt;/a&gt; &lt;br /&gt; &lt;a href="http://fusion.google.com/add?source=atgs&amp;amp;feedurl=http://feeds.feedburner.com/Showmetechcombr"&gt; &lt;img style="padding-top:6px" alt="" border="0" src="http://gmodules.com/ig/images/plus_google.gif" /&gt; &lt;/a&gt; &lt;/h1&gt; &lt;/td&gt; &lt;td width="1%"&gt; &lt;a href="http://showmetech.com.br"&gt; &lt;img src="http://showmetech.com.br/wp-content/uploads/2011/11/Showmetech-Shout-novo-SMT-logo-mini.jpg" alt="Link to Showmetech" id="feedimage" style="padding:0 0 10px 3px;border:0;" /&gt; &lt;/a&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;hr style="border:1px solid #ccc;padding:0;margin:0" /&gt; &lt;ul style="clear:both;padding:0 0 0 1.2em;width:100%" id="summarylist"&gt; &lt;li&gt; &lt;a href="#1"&gt;Review completo: Motorola Milestone 3, o smartphone &amp;ldquo;all-in-one&amp;rdquo; da Motorola&lt;/a&gt; &lt;/li&gt; &lt;li&gt; &lt;a href="#2"&gt;Nokia Lumia 710 e 800 aparecem no site da Nokia do Brasil&lt;/a&gt; &lt;/li&gt; &lt;li&gt; &lt;a href="#3"&gt;Nokia Lumia 800 &amp;eacute; homologado pela Anatel&lt;/a&gt; &lt;/li&gt; &lt;/ul&gt; &lt;table id="itemcontentlist"&gt; &lt;tr xmlns=""&gt; &lt;td style="margin-bottom:0;line-height:1.4em;"&gt; &lt;p style="margin:1em 0 3px 0;"&gt; &lt;a name="1" style="font-family:Verdana, Arial, Helvetica, sans-serif;font-size:18px;" href="http://feedproxy.google.com/~r/Showmetechcombr/~3/T4MkKnba-48/review-completo-motorola-milestone-3-o-smartphone-all-in-one-da-motorola?utm_source=feedburner&amp;utm_medium=email"&gt;Review completo: Motorola Milestone 3, o smartphone &amp;ldquo;all-in-one&amp;rdquo; da Motorola&lt;/a&gt; &lt;/p&gt; &lt;p style="font-size:13px;color:#555;margin:9px 0 3px 0;font-family:Georgia,Helvetica,Arial,Sans-Serif;line-height:140%;font-size:13px;"&gt; &lt;span&gt;Posted:&lt;/span&gt; 30 Jan 2012 05:13 AM PST&lt;/p&gt; &lt;div style="margin:0;font-family:Georgia,Helvetica,Arial,Sans-Serif;line-height:140%;font-size:13px;color:#000000;"&gt;&lt;p&gt;&lt;a href="http://showmetech.com.br/wp-content/uploads/2012/01/Motorola-Milestone-3.jpg"&gt;&lt;img class="aligncenter size-full wp-image-21828" title="Motorola Milestone 3" src="http://showmetech.com.br/wp-content/uploads/2012/01/Motorola-Milestone-3.jpg" alt="" width="600" height="470" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;O &lt;strong&gt;Milestone 3&lt;/strong&gt; é um celular que assusta, sem exageros. Ele aparenta ser mais pesado e bem maior que os seus antecessores, mas não é (pelo menos não tanto). É um aparelho que lembra, em parte, o primeiro&lt;strong&gt; Milestone&lt;/strong&gt;, com os toques de acabamento do segundo aparelho. A traseira do celular vem com um detalhe interessante, pois é o primeiro Milestone a receber a marca &amp;#8220;&lt;em&gt;with Google&lt;/em&gt;&amp;#8221; (o &lt;strong&gt;Droid&lt;/strong&gt; possui, o &lt;strong&gt;Milestone&lt;/strong&gt; não).&lt;/p&gt; &lt;p&gt;Considerá-lo um celular "&lt;em&gt;all-in-one&lt;/em&gt;" não é para menos. Usá-lo apenas pelo &lt;em&gt;touch&lt;/em&gt;, com o teclado qwerty slide, através de comandos de voz, console de game ou ainda como agenda ou estação multimídia é muito simples e rápido. No fim, a marca registrada da linha &lt;strong&gt;Milestone&lt;/strong&gt; prevalece: a busca pelo casamento entre entretenimento e uso corporativo.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Hardware&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;O &lt;strong&gt;Milestone 3&lt;/strong&gt; conta com a configuração interessante. Com um processador TI-OMAP dual-core de 1GHz, 512MB de memória RAM e 16Gb de memória interna, expansível através de cartão microSD de até 32 GB, câmera de 8MP e uma câmera frontal, rádio FM com RDS, tela qHD (960x540p) de 4 polegadas e sua marca registrada, o teclado qwerty deslizantete, o Milestone 3 conta com um conjunto interessante para os mais diversos usos. Tudo isso num aparelho, claro, possui um preço: o &lt;strong&gt;Milestone 3&lt;/strong&gt; pesa 184g, o que é bem mais pesado que aparelhos como o &lt;strong&gt;Galaxy SII&lt;/strong&gt;.&lt;/p&gt; &lt;p&gt;A sua marca registradada, o QUERTY slide, está presente com 5 linhas, sendo uma delas exclusivamente numérica, está mais confortável e com botões maiores. Além disso, conta com teclas dedicadas à escrita e pesquisa por voz, led informando o uso do Alt e do Shift. Particularmente, no primeiro &lt;strong&gt;Milestone&lt;/strong&gt;, usava mais o touch, neste, o texto não se torna cansativo, chegando a dar prazer ao utilizá-lo, principalmente para digitar textos longos.&lt;/p&gt; &lt;p&gt;Mesmo não tendo a cobertura metálica, o &lt;strong&gt;Milestone 3&lt;/strong&gt; é um aparelho sólido, que demonstra segurança. Na parte superior, apenas o botão power e a entrada para fone de ouvido&amp;#8230;.&lt;/p&gt; &lt;p&gt;&lt;a href="http://showmetech.com.br/review-completo-motorola-milestone-3-o-smartphone-all-in-one-da-motorola/dscf6302" rel="attachment wp-att-21774"&gt;&lt;img class="aligncenter size-large wp-image-21774" src="http://showmetech.com.br/wp-content/uploads/2012/01/DSCF6302-610x457.jpg" alt="" width="610" height="457" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;No lado direito, apenas os botões de volume. Neste modelo, não existe o botão dedicado à câmera, o que me deixou um pouco chateado&amp;#8230;.&lt;/p&gt; &lt;p&gt;&lt;a href="http://showmetech.com.br/review-completo-motorola-milestone-3-o-smartphone-all-in-one-da-motorola/dscf6301" rel="attachment wp-att-21775"&gt;&lt;img class="aligncenter size-large wp-image-21775" src="http://showmetech.com.br/wp-content/uploads/2012/01/DSCF6301-610x457.jpg" alt="" width="610" height="457" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;No lado esquerdo, a saída HDMI e a entrada Micro USB.&lt;/p&gt; &lt;p&gt;&lt;a href="http://showmetech.com.br/review-completo-motorola-milestone-3-o-smartphone-all-in-one-da-motorola/dscf6303" rel="attachment wp-att-21776"&gt;&lt;img class="aligncenter size-large wp-image-21776" src="http://showmetech.com.br/wp-content/uploads/2012/01/DSCF6303-610x457.jpg" alt="" width="610" height="457" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;Atrás, uma tampa emborrachada, com a marca &amp;#8220;with Google&amp;#8221;, alto falante e a câmera de 8MP com LED duplo, por baixo, entrada MicroSD e do cartão SIM.&lt;/p&gt; &lt;p style="text-align: center;"&gt;&lt;a href="http://showmetech.com.br/review-completo-motorola-milestone-3-o-smartphone-all-in-one-da-motorola/dscf6298" rel="attachment wp-att-21778"&gt;&lt;img class="wp-image-21778 aligncenter" src="http://showmetech.com.br/wp-content/uploads/2012/01/DSCF6298-610x457.jpg" alt="" width="403" height="301" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p style="text-align: center;"&gt;&lt;a href="http://showmetech.com.br/review-completo-motorola-milestone-3-o-smartphone-all-in-one-da-motorola/dscf6310" rel="attachment wp-att-21777"&gt;&lt;img class="aligncenter  wp-image-21777" src="http://showmetech.com.br/wp-content/uploads/2012/01/DSCF6310-610x457.jpg" alt="" width="488" height="366" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p style="text-align: left;"&gt;Teclado qwerty de 5 linhas, sendo uma exclusivamente numérica e extremamente confortável.&lt;/p&gt; &lt;p style="text-align: left;"&gt;&lt;a href="http://showmetech.com.br/review-completo-motorola-milestone-3-o-smartphone-all-in-one-da-motorola/dscf6296" rel="attachment wp-att-21787"&gt;&lt;img class="aligncenter size-large wp-image-21787" src="http://showmetech.com.br/wp-content/uploads/2012/01/DSCF6296-610x457.jpg" alt="" width="610" height="457" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Sistema Operacional&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;O aparelho roda o &lt;strong&gt;Android Gingerbread 2.3.4&lt;/strong&gt;, com atualização oficial disponível para&lt;strong&gt; 2.3.5&lt;/strong&gt; conta com um aparato de aplicativos acrescidos no pacote da Motorola o deixou interessante, tanto para o uso corporativo, quanto para multimídia e games. Um upgrade interessante foi o acréscimo de widgets redimensionáveis e com interface 3D, que eu só havia visto semelhante no &lt;strong&gt;Honeycomb&lt;/strong&gt;.&lt;/p&gt; &lt;p&gt;A Motorola acrescentou funções bem interessantes ao aparelho: um sistema de controle e gerenciamento de dados e bateria, um equalizador de som que funciona, tanto nos fones de ouvido como no alto-falante, editor de documentos, Sync com impressoras via wi-fi, &lt;strong&gt;DLNA&lt;/strong&gt; e sistema de compartilhamento de mídia marcam a nova cara do aparelho.&lt;/p&gt; &lt;p&gt;O&lt;strong&gt; Motoblur&lt;/strong&gt; deixou o software mais &amp;#8220;casado&amp;#8221; com o aparelho, além disso, a fluidez do aparelho é comparável ou superior ao do &lt;strong&gt;Motorola&lt;/strong&gt; &lt;strong&gt;Atrix&lt;/strong&gt;, mesmo com metade da sua memória RAM. Mesmo assim, ainda achei o conjunto multimídia, principalmente câmera e galeria, um pouco mais lentos do que de costume, acredito que pelo constante downloads de dados, pela interação entre redes sociais (inclusive o orkut!) que o &lt;strong&gt;Motoblur&lt;/strong&gt; oferece.&lt;/p&gt; &lt;p&gt;Ainda há a esperança da atualização para o novíssimo &lt;strong&gt;Ice Cream Sandwich&lt;/strong&gt;, que ainda não foi visto em nenhum aparelho &lt;strong&gt;Motorola&lt;/strong&gt;, para este ano.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Multimídia&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;O &lt;strong&gt;Milestone 3&lt;/strong&gt; não possui tegra2 (ufa!) o que faz com que ele rode arquivos em 720p em praticamente todos os codecs que encontrei. &lt;strong&gt;DivX, MP4, MKV, AVI&lt;/strong&gt; e tantos outros não foram problema, inclusive com legenda, vi ele engasgar em apenas um codec do avi, que é muito pouco utilizado. A resolução da tela (960x540p) permitiu a percepção de detalhes de forma agradável.&lt;/p&gt; &lt;p&gt;No quesito música, o &lt;strong&gt;Milestone 3&lt;/strong&gt; possui equalizador próprio, rádio FM com RDS (finalmente!) e um player integrado ao Motoblur que, inclusive, identifica as músicas que estão tocando, no player, expondo as letras de cada uma e; no ambiente.&lt;/p&gt; &lt;p&gt;A câmera, com 8MP de resolução máxima com modo macro e panorama, garante boas fotos durante o dia e em lugares iluminados e fotos medianas durante a noite, mesmo com um flash com LED duplo. Quando se fala em vídeos, o Milestone 3 captura imagens a 1080p, ou seja, &lt;strong&gt;FullHD&lt;/strong&gt; e consegue reproduzi-los tranquilamente. O aparelho ainda conta com o game Need for Speed Shift HD completo.&lt;/p&gt; &lt;p&gt;Vídeo curto em 1080p, filmado do &lt;strong&gt;Milestone 3&lt;/strong&gt;:&lt;/p&gt; &lt;p&gt;&lt;a href="http://showmetech.com.br/review-completo-motorola-milestone-3-o-smartphone-all-in-one-da-motorola"&gt;&lt;em&gt;Clique aqui para assistir o vídeo inserido.&lt;/em&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;Vale acrescentar que, depois da &lt;strong&gt;atualização oficial para 2.3.5&lt;/strong&gt;, a câmera do aparelho recebeu um upgrade interessante, tirando fotos menos azuladas (marca registrada da &lt;strong&gt;Motorola&lt;/strong&gt; até o &lt;strong&gt;Atrix&lt;/strong&gt;).&lt;/p&gt; &lt;div id="attachment_21782" class="wp-caption aligncenter" style="width: 620px"&gt;&lt;a href="http://showmetech.com.br/review-completo-motorola-milestone-3-o-smartphone-all-in-one-da-motorola/2012-01-17_23-28-22_936" rel="attachment wp-att-21782"&gt;&lt;img class="size-large wp-image-21782" src="http://showmetech.com.br/wp-content/uploads/2012/01/2012-01-17_23-28-22_936-610x343.jpg" alt="" width="610" height="343" /&gt;&lt;/a&gt;&lt;p class="wp-caption-text"&gt;Foto com baixa luminosidade, com flash&lt;/p&gt;&lt;/div&gt; &lt;div id="attachment_21783" class="wp-caption aligncenter" style="width: 620px"&gt;&lt;a href="http://showmetech.com.br/review-completo-motorola-milestone-3-o-smartphone-all-in-one-da-motorola/2012-01-27_09-17-07_68" rel="attachment wp-att-21783"&gt;&lt;img class="size-large wp-image-21783" src="http://showmetech.com.br/wp-content/uploads/2012/01/2012-01-27_09-17-07_68-610x69.jpg" alt="" width="610" height="69" /&gt;&lt;/a&gt;&lt;p class="wp-caption-text"&gt;Foto Panorâmica do aparelho.&lt;/p&gt;&lt;/div&gt; &lt;div id="attachment_21789" class="wp-caption aligncenter" style="width: 620px"&gt;&lt;a href="http://showmetech.com.br/review-completo-motorola-milestone-3-o-smartphone-all-in-one-da-motorola/2012-01-27_17-25-12_858" rel="attachment wp-att-21789"&gt;&lt;img class="size-large wp-image-21789" src="http://showmetech.com.br/wp-content/uploads/2012/01/2012-01-27_17-25-12_858-610x457.jpg" alt="" width="610" height="457" /&gt;&lt;/a&gt;&lt;p class="wp-caption-text"&gt;Foto em modo macro.&lt;/p&gt;&lt;/div&gt; &lt;p&gt;Para mais fotos, confira este pequeno álbum no &lt;a href="http://www.flickr.com/photos/68757909@N07/sets/72157629057248755/show/"&gt;Flickr&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Acessórios e bateria&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;Quando abri a caixa do &lt;strong&gt;Milestone 3&lt;/strong&gt;, fiquei assustado com a quantidade de acessórios. Não sei se é exclusividade da TIM, mas o kit do aparelho da operadora veio até com dock multimídia! Além dele, o kit conta com cabo HDMI, carregador veicular, carregador de parede e cabo USB.&lt;/p&gt; &lt;p&gt;Vale a atenção para o HDMI que, diferente do &lt;strong&gt;Atrix&lt;/strong&gt;, espelha a tela do aparelho em seu televisor e dá para jogar Need for Speed Shift usando o celular como joystick. Já o Dock multimídia não é o mesmo do Atrix, não conta com entradas USB, mas se torna uma estação multimídia interessante ou uma agenda corporativa digital, mas opções cabeceira ou produtividade.&lt;/p&gt; &lt;p&gt;&lt;a href="http://showmetech.com.br/review-completo-motorola-milestone-3-o-smartphone-all-in-one-da-motorola/dscf6291" rel="attachment wp-att-21784"&gt;&lt;img class="aligncenter size-large wp-image-21784" src="http://showmetech.com.br/wp-content/uploads/2012/01/DSCF6291-610x457.jpg" alt="" width="610" height="457" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;Em relação à bateria, o &lt;strong&gt;Milestone 3&lt;/strong&gt; é "mais do mesmo". Em uso pesado (GPS + 3G + 2h médias de música + uploads de imagens para redes sociais), sua bateria dificilmente ultrapassará 7h. Em uso moderado, é possível acabar o dia com 15% ou 20% da carga total.&lt;/p&gt; &lt;p&gt;No mais, o &lt;strong&gt;Milestone 3&lt;/strong&gt; é um aparelho que se compara a um clínico geral: conhece e atende as necessidades de todos, contanto que estas necessidades não sejam complexas demais. Ele atende as necessidades básicas de um executivo: sim. Ele substituiria um tablet corporativo, um notebook ou um desktop: não (se bem que, neste quesito, nenhum aparelho cumpra esta função).&lt;/p&gt;  &lt;p&gt;&lt;a href="https://feedads.g.doubleclick.net/~a/AulG5wQfUn-MPvI6j5yinBvSngk/ZDDjqyRkUslPrOwWCIG1vv65rx4/0/pa"&gt;&lt;img src="https://feedads.g.doubleclick.net/~a/AulG5wQfUn-MPvI6j5yinBvSngk/ZDDjqyRkUslPrOwWCIG1vv65rx4/0/pi" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt; &lt;a href="https://feedads.g.doubleclick.net/~a/AulG5wQfUn-MPvI6j5yinBvSngk/ZDDjqyRkUslPrOwWCIG1vv65rx4/1/pa"&gt;&lt;img src="https://feedads.g.doubleclick.net/~a/AulG5wQfUn-MPvI6j5yinBvSngk/ZDDjqyRkUslPrOwWCIG1vv65rx4/1/pi" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt; &lt;a href="http://feeds.feedburner.com/~ff/Showmetechcombr?a=T4MkKnba-48:dmw4GOH4CIs:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Showmetechcombr?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Showmetechcombr?a=T4MkKnba-48:dmw4GOH4CIs:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Showmetechcombr?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Showmetechcombr/~4/T4MkKnba-48?utm_source=feedburner&amp;utm_medium=email" height="1" width="1"/&gt;&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td style="margin-bottom:0;line-height:1.4em;"&gt; &lt;p style="margin:1em 0 3px 0;"&gt; &lt;a name="2" style="font-family:Verdana, Arial, Helvetica, sans-serif;font-size:18px;" href="http://feedproxy.google.com/~r/Showmetechcombr/~3/8CqKNhJsZpM/nokia-lumia-710-e-800-aparecem-no-site-da-nokia-do-brasil?utm_source=feedburner&amp;utm_medium=email"&gt;Nokia Lumia 710 e 800 aparecem no site da Nokia do Brasil&lt;/a&gt; &lt;/p&gt; &lt;p style="font-size:13px;color:#555;margin:9px 0 3px 0;font-family:Georgia,Helvetica,Arial,Sans-Serif;line-height:140%;font-size:13px;"&gt; &lt;span&gt;Posted:&lt;/span&gt; 30 Jan 2012 04:24 AM PST&lt;/p&gt; &lt;div style="margin:0;font-family:Georgia,Helvetica,Arial,Sans-Serif;line-height:140%;font-size:13px;color:#000000;"&gt;&lt;p&gt;&lt;a href="http://showmetech.com.br/wp-content/uploads/2012/01/Nokias-Lumia-600x231.png"&gt;&lt;img class="aligncenter size-full wp-image-21821" title="Nokias-Lumia-600x231" src="http://showmetech.com.br/wp-content/uploads/2012/01/Nokias-Lumia-600x231.png" alt="" width="600" height="231" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;Os novos celulares &lt;strong&gt;Nokia Lumia 710&lt;/strong&gt; e &lt;strong&gt;Lumia 800&lt;/strong&gt; estão cada vez mais próximos de chegarem oficialmente nas prateleiras das lojas brasileiras, e também em algumas operadoras. Eles já podem ser encontrados no site brasileiro da empresa, embora ainda não esteja detalhada a sua data de lançamento ou seu preço.&lt;/p&gt; &lt;p&gt;Estes são os primeiros aparelhos da &lt;strong&gt;Nokia&lt;/strong&gt; com o sistema operacional &lt;strong&gt;Windows Phone&lt;/strong&gt;. Conforme ficamos sabendo durante a &lt;a href="http://showmetech.com.br/detalhes-do-evento-da-nokia-com-stephen-elop-informacoes-e-fotos"&gt;visita de &lt;strong&gt;Stephen Elop&lt;/strong&gt; ao Brasil&lt;/a&gt;, eles serão vendidos no país já neste primeiro trimestre. Ambos já foram &lt;a href="http://showmetech.com.br/nokia-lumia-800-e-homologado-pela-anatel"&gt;homologados&lt;/a&gt; pela Anatel.&lt;/p&gt;  &lt;a href='http://showmetech.com.br/nokia-lumia-710-e-800-aparecem-no-site-da-nokia-do-brasil/nwwp-range-3-jpg' title='NWWP-range-3-jpg'&gt;&lt;img width="150" height="150" src="http://showmetech.com.br/wp-content/uploads/2012/01/NWWP-range-3-jpg-150x150.jpg" class="attachment-thumbnail" alt="NWWP-range-3-jpg" title="NWWP-range-3-jpg" /&gt;&lt;/a&gt; &lt;a href='http://showmetech.com.br/nokia-lumia-710-e-800-aparecem-no-site-da-nokia-do-brasil/nwwp-range-2-jpg' title='NWWP-range-2-jpg'&gt;&lt;img width="150" height="150" src="http://showmetech.com.br/wp-content/uploads/2012/01/NWWP-range-2-jpg-150x150.jpg" class="attachment-thumbnail" alt="NWWP-range-2-jpg" title="NWWP-range-2-jpg" /&gt;&lt;/a&gt; &lt;a href='http://showmetech.com.br/nokia-lumia-710-e-800-aparecem-no-site-da-nokia-do-brasil/nwwp-range-1-jpg' title='NWWP-range-1-jpg'&gt;&lt;img width="150" height="150" src="http://showmetech.com.br/wp-content/uploads/2012/01/NWWP-range-1-jpg-150x150.jpg" class="attachment-thumbnail" alt="NWWP-range-1-jpg" title="NWWP-range-1-jpg" /&gt;&lt;/a&gt; &lt;a href='http://showmetech.com.br/nokia-lumia-710-e-800-aparecem-no-site-da-nokia-do-brasil/nokias-lumia-600x231' title='Nokias-Lumia-600x231'&gt;&lt;img width="150" height="150" src="http://showmetech.com.br/wp-content/uploads/2012/01/Nokias-Lumia-600x231-150x150.png" class="attachment-thumbnail" alt="Nokias-Lumia-600x231" title="Nokias-Lumia-600x231" /&gt;&lt;/a&gt;  &lt;p&gt;Para mais informações, visite: &lt;a href="http://www.nokia.com/br-pt/produtos/caracteristicas-do-produto/"&gt;Nokia.com.br&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="https://feedads.g.doubleclick.net/~a/AulG5wQfUn-MPvI6j5yinBvSngk/o_A__F7jXqbLSLfVWry46PhQqa8/0/pa"&gt;&lt;img src="https://feedads.g.doubleclick.net/~a/AulG5wQfUn-MPvI6j5yinBvSngk/o_A__F7jXqbLSLfVWry46PhQqa8/0/pi" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt; &lt;a href="https://feedads.g.doubleclick.net/~a/AulG5wQfUn-MPvI6j5yinBvSngk/o_A__F7jXqbLSLfVWry46PhQqa8/1/pa"&gt;&lt;img src="https://feedads.g.doubleclick.net/~a/AulG5wQfUn-MPvI6j5yinBvSngk/o_A__F7jXqbLSLfVWry46PhQqa8/1/pi" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt; &lt;a href="http://feeds.feedburner.com/~ff/Showmetechcombr?a=8CqKNhJsZpM:TFznGmK4qpc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Showmetechcombr?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Showmetechcombr?a=8CqKNhJsZpM:TFznGmK4qpc:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Showmetechcombr?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Showmetechcombr/~4/8CqKNhJsZpM?utm_source=feedburner&amp;utm_medium=email" height="1" width="1"/&gt;&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td style="margin-bottom:0;line-height:1.4em;"&gt; &lt;p style="margin:1em 0 3px 0;"&gt; &lt;a name="3" style="font-family:Verdana, Arial, Helvetica, sans-serif;font-size:18px;" href="http://feedproxy.google.com/~r/Showmetechcombr/~3/0ynj0j8zPls/nokia-lumia-800-e-homologado-pela-anatel?utm_source=feedburner&amp;utm_medium=email"&gt;Nokia Lumia 800 &amp;eacute; homologado pela Anatel&lt;/a&gt; &lt;/p&gt; &lt;p style="font-size:13px;color:#555;margin:9px 0 3px 0;font-family:Georgia,Helvetica,Arial,Sans-Serif;line-height:140%;font-size:13px;"&gt; &lt;span&gt;Posted:&lt;/span&gt; 30 Jan 2012 04:04 AM PST&lt;/p&gt; &lt;div style="margin:0;font-family:Georgia,Helvetica,Arial,Sans-Serif;line-height:140%;font-size:13px;color:#000000;"&gt;&lt;p&gt;&lt;a href="http://showmetech.com.br/wp-content/uploads/2012/01/nokia-800.jpg"&gt;&lt;img class="aligncenter size-full wp-image-21815" title="nokia 800" src="http://showmetech.com.br/wp-content/uploads/2012/01/nokia-800.jpg" alt="" width="541" height="664" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;Recebemos informações de que o aguardado smartphone &lt;strong&gt;Nokia Lumia 800&lt;/strong&gt; já está em processo de homologação no Brasil. Ao que tudo indica, logo já será possível comprá-lo em terras nacionais. As imagens deste post, extraídas do próprio processo, indicam que o aparelho foi registrado como &lt;strong&gt;modelo 800.2&lt;/strong&gt;.&lt;/p&gt; &lt;p&gt;&lt;a href="http://showmetech.com.br/wp-content/uploads/2012/01/nokia-800-1.jpg"&gt;&lt;img class="aligncenter size-full wp-image-21816" title="nokia 800 1" src="http://showmetech.com.br/wp-content/uploads/2012/01/nokia-800-1.jpg" alt="" width="598" height="750" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;Ainda não existem detalhes sobre o preço ou a data de lançamento oficial.&lt;/p&gt;  &lt;p&gt;&lt;a href="https://feedads.g.doubleclick.net/~a/AulG5wQfUn-MPvI6j5yinBvSngk/XKzwoAsOYR45c6KtXDRmqP3cAMQ/0/pa"&gt;&lt;img src="https://feedads.g.doubleclick.net/~a/AulG5wQfUn-MPvI6j5yinBvSngk/XKzwoAsOYR45c6KtXDRmqP3cAMQ/0/pi" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt; &lt;a href="https://feedads.g.doubleclick.net/~a/AulG5wQfUn-MPvI6j5yinBvSngk/XKzwoAsOYR45c6KtXDRmqP3cAMQ/1/pa"&gt;&lt;img src="https://feedads.g.doubleclick.net/~a/AulG5wQfUn-MPvI6j5yinBvSngk/XKzwoAsOYR45c6KtXDRmqP3cAMQ/1/pi" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt; &lt;a href="http://feeds.feedburner.com/~ff/Showmetechcombr?a=0ynj0j8zPls:dSWN2Af7grk:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Showmetechcombr?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Showmetechcombr?a=0ynj0j8zPls:dSWN2Af7grk:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Showmetechcombr?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Showmetechcombr/~4/0ynj0j8zPls?utm_source=feedburner&amp;utm_medium=email" height="1" width="1"/&gt;&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;table style="border-top:1px solid #999;padding-top:4px;margin-top:1.5em;width:100%" id="footer"&gt; &lt;tr&gt; &lt;td style="text-align:left;font-family:Helvetica,Arial,Sans-Serif;font-size:11px;margin:0 6px 1.2em 0;color:#333;"&gt;You are subscribed to email updates from &lt;a href="http://showmetech.com.br"&gt;Showmetech&lt;/a&gt; &lt;br /&gt;To stop receiving these emails, you may &lt;a href="http://feedburner.google.com/fb/a/mailunsubscribe?k=AulG5wQfUn-MPvI6j5yinBvSngk"&gt;unsubscribe now&lt;/a&gt;.&lt;/td&gt; &lt;td style="font-family:Helvetica,Arial,Sans-Serif;font-size:11px;margin:0 6px 1.2em 0;color:#333;text-align:right;vertical-align:top"&gt;Email delivery powered by Google&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td colspan="2" style="text-align:left;font-family:Helvetica,Arial,Sans-Serif;font-size:11px;margin:0 6px 1.2em 0;color:#333;"&gt;Google Inc., 20 West Kinzie, Chicago IL USA 60610&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/div&gt; &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-667093480336394343?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/667093480336394343/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/showmetech-showmetechcombr_30.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/667093480336394343'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/667093480336394343'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/showmetech-showmetechcombr_30.html' title='[Showmetech] Showmetech.com.br'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-4676801658277323640</id><published>2012-01-30T09:37:00.000-08:00</published><updated>2012-01-30T09:38:21.992-08:00</updated><title type='text'>Re: Macros and timing reliability</title><content type='html'>Not entirely true. GC boxes will struggle sometimes with longer IR &lt;br&gt;codes, etc.&lt;p&gt;Not having any problems with macros here, and no other reports, so not &lt;br&gt;sure what your issue could be.&lt;p&gt;You have &amp;quot;maintain constant connection&amp;quot; checked right?&lt;p&gt;Jarrod&lt;p&gt;On 30/01/12 9:45 PM, MarkusKl wrote:&lt;br&gt;&amp;gt; Jarrod,&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; I agree that using amps with RS-232 is the best technical solution.&lt;br&gt;&amp;gt; But we are doing project (and having customers) with absolutely high-&lt;br&gt;&amp;gt; end audio hardware and this brand does not have RS-232 yet.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Joep,&lt;br&gt;&amp;gt; the GC boxes are not the problem, because I am having other devices&lt;br&gt;&amp;gt; which do not need those great delays and the IR commands fired are&lt;br&gt;&amp;gt; correctly received all the way through the IP/devices/IR chain ;-)&lt;br&gt;&amp;gt; GC&amp;#39;s devices are quite quick...&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; On 29 Jan., 11:46, Joep van den Aker&amp;lt;&lt;a href="mailto:jvda2...@gmail.com"&gt;jvda2...@gmail.com&lt;/a&gt;&amp;gt;  wrote:&lt;br&gt;&amp;gt;&amp;gt; I think your problem is the time that is needed to execute the ir code&lt;br&gt;&amp;gt;&amp;gt; by the Global Cach&amp;#233; device.&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; Joep&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; Op 27 jan. 2012 om 23:33 heeft Jarrod Bell&amp;lt;&lt;a href="mailto:jar...@guilink.com"&gt;jar...@guilink.com&lt;/a&gt;&amp;gt;  het&lt;br&gt;&amp;gt;&amp;gt; volgende geschreven:&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Of course discrete vol is the real answer, but I have not heard of anyone having issues with macro timing.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 1 second should be plenty of delay, but then again IR is very hardware dependent. I don&amp;#39;t think its a network issue.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Waiting 10-20 seconds for vol adjustment sounds like a very bad situation. Why not use an amp that has RS232 control?&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Jarrod&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; On 28/01/12 1:29 AM, MarkusKl wrote:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Hi,&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; I have a few questions regarding macros, command timings within macros&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; etc.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; We have a couple of projects done now each of them having the same&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; hardware amps controlled by global caches IP bus devices via IR&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; commands.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; I do know about IR code problematics etc. but I can for sure say that&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; all codes are working fine because we developed them on our own with&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; the manufacturer.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; To clarify the situation a little bit more we are having audio scenes&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; within a multiroom environment and we are controlling the amps and the&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; audio zones by setting the volume levels on the amps differently (via&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; the mentioned IR/GC combos).&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Now as you might expect the macros are quite extensive because each of&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; the amps have 102 (!!) volume steps.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Besides this there are also a few other things to do in the macros.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Of course, not always 102 steps/commands are send per amp, we have&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; some improvements and used some tricks so we are talking about 10-20&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; steps per amp.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Knowing that each vol up/vol down command needs ~500ms for execution&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; within the amp we have a delay of 1000ms in our macros (which are real&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; CF macros, no JS code) to ensure the commands are send adequately.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; I am wondering if I can rely on the 1000ms within the macro&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; execution ?&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; And also, is it ensured that the macros are executed serially (which&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; is what I am expecting, of course)?&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Would it make sense to program the macros within JS ? Would that bring&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; any benefits/more reliability? Also, how to code the delays and ensure&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; the serial execution ? (The UI is blocked for the user in any case to&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; ensure correct execution and finalization of the macros)!&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; I am asking this because even when I further delay the commands for&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; vol up/down sometimes (I would say in 1-3% of the cases) not all the&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; commands are received by the amps which results in differences in the&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; audio scenes...it&amp;#39;s not something the user probably hears, but I can&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; track it in our devlopement/debuging software of the amps...and&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; because it&amp;#39;s a question of professionality i would like to have this&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; 100% solved !&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; It could be that the network has some delay in theory, although it is&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; a multimedia network used and installed ONLY for audio (!), no other&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; pc or NAS devices etc., also it&amp;#39;s a gigabit network...&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; I am just curious what other guys/installers say about this behavior,&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; and also would appreciate any idea to solve the issue.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; I know that the best way is to have discrete volume level commands&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; which in fact is something we are working at with the manufacturer but&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; it&amp;#39;s not guaranteed that we will get them...&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; So, any ideas ?&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Markus&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; --&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; For more options, visit this group athttp://&lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-4676801658277323640?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/4676801658277323640/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-macros-and-timing-reliability_4435.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/4676801658277323640'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/4676801658277323640'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-macros-and-timing-reliability_4435.html' title='Re: Macros and timing reliability'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-6975059009894494840</id><published>2012-01-30T03:08:00.001-08:00</published><updated>2012-01-30T03:08:32.133-08:00</updated><title type='text'>Control System Re-Initialization</title><content type='html'>Hi all,&lt;p&gt;is there a way to re-initialize the control system (GIRA Homeserver)&lt;br&gt;via CF ?&lt;p&gt;I know about the OnGuiResumed() mechanism and it works perfectly well&lt;br&gt;for GUI inits, but how can I re-initialize the TCP/IP connection with&lt;br&gt;my control server?&lt;p&gt;The point is that after the iPad goes into standby (multitasking for&lt;br&gt;CF &amp;quot;on&amp;quot;), it does not have the connection to the control system&lt;br&gt;anymore which I do indicate by a digital join within the control&lt;br&gt;system setup.&lt;p&gt;By the way, can one also use a &amp;quot;normal system&amp;quot; configured as a control&lt;br&gt;system without any commands ?&lt;p&gt;Markus&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-6975059009894494840?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/6975059009894494840/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/control-system-re-initialization.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/6975059009894494840'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/6975059009894494840'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/control-system-re-initialization.html' title='Control System Re-Initialization'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-3559342374666741731</id><published>2012-01-30T02:45:00.001-08:00</published><updated>2012-01-30T02:45:29.453-08:00</updated><title type='text'>Re: Macros and timing reliability</title><content type='html'>Jarrod,&lt;p&gt;I agree that using amps with RS-232 is the best technical solution.&lt;br&gt;But we are doing project (and having customers) with absolutely high-&lt;br&gt;end audio hardware and this brand does not have RS-232 yet.&lt;p&gt;Joep,&lt;br&gt;the GC boxes are not the problem, because I am having other devices&lt;br&gt;which do not need those great delays and the IR commands fired are&lt;br&gt;correctly received all the way through the IP/devices/IR chain ;-)&lt;br&gt;GC&amp;#39;s devices are quite quick...&lt;p&gt;&lt;p&gt;On 29 Jan., 11:46, Joep van den Aker &amp;lt;&lt;a href="mailto:jvda2...@gmail.com"&gt;jvda2...@gmail.com&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt; I think your problem is the time that is needed to execute the ir code&lt;br&gt;&amp;gt; by the Global Cach&amp;#233; device.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Joep&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Op 27 jan. 2012 om 23:33 heeft Jarrod Bell &amp;lt;&lt;a href="mailto:jar...@guilink.com"&gt;jar...@guilink.com&lt;/a&gt;&amp;gt; het&lt;br&gt;&amp;gt; volgende geschreven:&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Of course discrete vol is the real answer, but I have not heard of anyone having issues with macro timing.&lt;br&gt;&amp;gt; &amp;gt; 1 second should be plenty of delay, but then again IR is very hardware dependent. I don&amp;#39;t think its a network issue.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Waiting 10-20 seconds for vol adjustment sounds like a very bad situation. Why not use an amp that has RS232 control?&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Jarrod&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; On 28/01/12 1:29 AM, MarkusKl wrote:&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Hi,&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; I have a few questions regarding macros, command timings within macros&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; etc.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; We have a couple of projects done now each of them having the same&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; hardware amps controlled by global caches IP bus devices via IR&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; commands.&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; I do know about IR code problematics etc. but I can for sure say that&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; all codes are working fine because we developed them on our own with&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; the manufacturer.&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; To clarify the situation a little bit more we are having audio scenes&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; within a multiroom environment and we are controlling the amps and the&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; audio zones by setting the volume levels on the amps differently (via&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; the mentioned IR/GC combos).&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Now as you might expect the macros are quite extensive because each of&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; the amps have 102 (!!) volume steps.&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Besides this there are also a few other things to do in the macros.&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Of course, not always 102 steps/commands are send per amp, we have&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; some improvements and used some tricks so we are talking about 10-20&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; steps per amp.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Knowing that each vol up/vol down command needs ~500ms for execution&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; within the amp we have a delay of 1000ms in our macros (which are real&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; CF macros, no JS code) to ensure the commands are send adequately.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; I am wondering if I can rely on the 1000ms within the macro&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; execution ?&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; And also, is it ensured that the macros are executed serially (which&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; is what I am expecting, of course)?&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Would it make sense to program the macros within JS ? Would that bring&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; any benefits/more reliability? Also, how to code the delays and ensure&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; the serial execution ? (The UI is blocked for the user in any case to&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; ensure correct execution and finalization of the macros)!&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; I am asking this because even when I further delay the commands for&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; vol up/down sometimes (I would say in 1-3% of the cases) not all the&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; commands are received by the amps which results in differences in the&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; audio scenes...it&amp;#39;s not something the user probably hears, but I can&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; track it in our devlopement/debuging software of the amps...and&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; because it&amp;#39;s a question of professionality i would like to have this&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; 100% solved !&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; It could be that the network has some delay in theory, although it is&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; a multimedia network used and installed ONLY for audio (!), no other&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; pc or NAS devices etc., also it&amp;#39;s a gigabit network...&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; I am just curious what other guys/installers say about this behavior,&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; and also would appreciate any idea to solve the issue.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; I know that the best way is to have discrete volume level commands&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; which in fact is something we are working at with the manufacturer but&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; it&amp;#39;s not guaranteed that we will get them...&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; So, any ideas ?&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Markus&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; --&lt;br&gt;&amp;gt; &amp;gt; You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;&amp;gt; &amp;gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; &amp;gt; To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; &amp;gt; For more options, visit this group athttp://&lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-3559342374666741731?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/3559342374666741731/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-macros-and-timing-reliability_30.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/3559342374666741731'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/3559342374666741731'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-macros-and-timing-reliability_30.html' title='Re: Macros and timing reliability'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-4637684852078448962</id><published>2012-01-29T23:09:00.001-08:00</published><updated>2012-01-29T23:09:45.155-08:00</updated><title type='text'>RE: Dune Player</title><content type='html'>&lt;a href="http://dune-hd.com/firmware/ip_control/dune_ip_control_overview.txt"&gt;http://dune-hd.com/firmware/ip_control/dune_ip_control_overview.txt&lt;/a&gt; &lt;p&gt;-----Original Message-----&lt;br&gt;From: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt; [mailto:&lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;]&lt;br&gt;On Behalf Of sarneel&lt;br&gt;Sent: 30 January 2012 14:51&lt;br&gt;To: CommandFusion&lt;br&gt;Subject: Re: Dune Player&lt;p&gt;Has the dune got an IP protocol? discrete on/off, feedback of time / title&lt;br&gt;etc. ?&lt;p&gt;Thanks!&lt;p&gt;On 29 jan, 22:12, &amp;quot;Barry Gordon&amp;quot; &amp;lt;&lt;a href="mailto:ba...@the-gordons.net"&gt;ba...@the-gordons.net&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt; The problem is that the PC that controls the theater is where all the &lt;br&gt;&amp;gt; work is done. &amp;#160;The iPad just lets the PC know which button (screen, &lt;br&gt;&amp;gt; button as two&lt;br&gt;&amp;gt; digits) was touched on its screen. &amp;#160;the PC then does all the &lt;br&gt;&amp;gt; communicatoions to the various theater components&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; -----Original Message-----&lt;br&gt;&amp;gt; From: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt; &lt;br&gt;&amp;gt; [mailto:&lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;]&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; On Behalf Of Nahshon Williams&lt;br&gt;&amp;gt; Sent: Sunday, January 29, 2012 2:55 PM&lt;br&gt;&amp;gt; To: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;&lt;br&gt;&amp;gt; Subject: Re: Dune Player&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Would you be willing to share your CF system for dune?&lt;br&gt;&amp;gt; I use RAID 6 over gigabit. It is seamless with blu-rays.&lt;br&gt;&amp;gt; N&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; On 29/01/2012 19:52, Barry Gordon wrote:&lt;br&gt;&amp;gt; &amp;gt; You&amp;#39;re quite welcome. &amp;#160;I have been using a Dune player for well over &lt;br&gt;&amp;gt; &amp;gt; a&lt;br&gt;&amp;gt; year.&lt;br&gt;&amp;gt; &amp;gt; I wrote my own librarian which looks very much like Kaliedescape and &lt;br&gt;&amp;gt; &amp;gt; runs&lt;br&gt;&amp;gt; on&lt;br&gt;&amp;gt; &amp;gt; the PC that controls the theater. You select a title using the iPad &lt;br&gt;&amp;gt; &amp;gt; or a Pronto PRO and the dune player gets commanded over IP to play the&lt;br&gt;Movie.&lt;br&gt;&amp;gt; &amp;gt; All movies are stored on a Raid 5 system that is actually an &lt;br&gt;&amp;gt; &amp;gt; improvement IMHO over standard raid 5 in that two errors will not&lt;br&gt;destroy the array.&lt;br&gt;&amp;gt; &amp;gt; While the movie is playing you can pull the chapters down to the &lt;br&gt;&amp;gt; &amp;gt; iPad and skip around, stop, pause, fast forward and rewind etc. I &lt;br&gt;&amp;gt; &amp;gt; have never had a DVD or BD that the Dune could not play. &amp;#160;What I &lt;br&gt;&amp;gt; &amp;gt; like the best about the entire system is that from the moment I &lt;br&gt;&amp;gt; &amp;gt; select the film (or TV show or&lt;br&gt;&amp;gt; &amp;gt; concert) to watch, it is playing in about 7 seconds with no &lt;br&gt;&amp;gt; &amp;gt; previews, warnings, etc. That however is because of the way I rip &lt;br&gt;&amp;gt; &amp;gt; them, not anything to do with the Dune player.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; -----Original Message-----&lt;br&gt;&amp;gt; &amp;gt; From: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;&lt;br&gt;&amp;gt; [mailto:&lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;]&lt;br&gt;&amp;gt; &amp;gt; On Behalf Of Nahshon Williams&lt;br&gt;&amp;gt; &amp;gt; Sent: Sunday, January 29, 2012 12:10 PM&lt;br&gt;&amp;gt; &amp;gt; To: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; Subject: Dune Player&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; This is wonderful technology!&lt;br&gt;&amp;gt; &amp;gt; Very reliable!&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Never again will I install Media Center for a client!&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Thanks Barry Gordon&lt;br&gt;&amp;gt; &amp;gt; Nahshon&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; --&lt;br&gt;&amp;gt; You received this message because you are subscribed to the Google &lt;br&gt;&amp;gt; Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;&amp;gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; To unsubscribe from this group, send email to&lt;br&gt;&amp;gt; &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; For more options, visit this group &lt;br&gt;&amp;gt; athttp://&lt;a href="http://groups.google.com/group/commandfusion?hl=en.-"&gt;groups.google.com/group/commandfusion?hl=en.-&lt;/a&gt; Tekst uit &lt;br&gt;&amp;gt; oorspronkelijk bericht niet weergeven -&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; - Tekst uit oorspronkelijk bericht weergeven -&lt;p&gt;--&lt;br&gt;You received this message because you are subscribed to the Google Groups&lt;br&gt;&amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to&lt;br&gt;&lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at&lt;br&gt;&lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-4637684852078448962?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/4637684852078448962/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-dune-player_2696.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/4637684852078448962'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/4637684852078448962'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-dune-player_2696.html' title='RE: Dune Player'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-6083614045570283572</id><published>2012-01-29T22:50:00.000-08:00</published><updated>2012-01-29T22:51:15.821-08:00</updated><title type='text'>Re: Dune Player</title><content type='html'>Has the dune got an IP protocol? discrete on/off, feedback of time /&lt;br&gt;title etc. ?&lt;p&gt;Thanks!&lt;p&gt;On 29 jan, 22:12, &amp;quot;Barry Gordon&amp;quot; &amp;lt;&lt;a href="mailto:ba...@the-gordons.net"&gt;ba...@the-gordons.net&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt; The problem is that the PC that controls the theater is where all the work&lt;br&gt;&amp;gt; is done. &amp;#160;The iPad just lets the PC know which button (screen, button as two&lt;br&gt;&amp;gt; digits) was touched on its screen. &amp;#160;the PC then does all the communicatoions&lt;br&gt;&amp;gt; to the various theater components&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; -----Original Message-----&lt;br&gt;&amp;gt; From: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt; [mailto:&lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;]&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; On Behalf Of Nahshon Williams&lt;br&gt;&amp;gt; Sent: Sunday, January 29, 2012 2:55 PM&lt;br&gt;&amp;gt; To: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;&lt;br&gt;&amp;gt; Subject: Re: Dune Player&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Would you be willing to share your CF system for dune?&lt;br&gt;&amp;gt; I use RAID 6 over gigabit. It is seamless with blu-rays.&lt;br&gt;&amp;gt; N&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; On 29/01/2012 19:52, Barry Gordon wrote:&lt;br&gt;&amp;gt; &amp;gt; You&amp;#39;re quite welcome. &amp;#160;I have been using a Dune player for well over a&lt;br&gt;&amp;gt; year.&lt;br&gt;&amp;gt; &amp;gt; I wrote my own librarian which looks very much like Kaliedescape and runs&lt;br&gt;&amp;gt; on&lt;br&gt;&amp;gt; &amp;gt; the PC that controls the theater. You select a title using the iPad or a&lt;br&gt;&amp;gt; &amp;gt; Pronto PRO and the dune player gets commanded over IP to play the Movie.&lt;br&gt;&amp;gt; &amp;gt; All movies are stored on a Raid 5 system that is actually an improvement&lt;br&gt;&amp;gt; &amp;gt; IMHO over standard raid 5 in that two errors will not destroy the array.&lt;br&gt;&amp;gt; &amp;gt; While the movie is playing you can pull the chapters down to the iPad and&lt;br&gt;&amp;gt; &amp;gt; skip around, stop, pause, fast forward and rewind etc. I have never had a&lt;br&gt;&amp;gt; &amp;gt; DVD or BD that the Dune could not play. &amp;#160;What I like the best about the&lt;br&gt;&amp;gt; &amp;gt; entire system is that from the moment I select the film (or TV show or&lt;br&gt;&amp;gt; &amp;gt; concert) to watch, it is playing in about 7 seconds with no previews,&lt;br&gt;&amp;gt; &amp;gt; warnings, etc. That however is because of the way I rip them, not anything&lt;br&gt;&amp;gt; &amp;gt; to do with the Dune player.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; -----Original Message-----&lt;br&gt;&amp;gt; &amp;gt; From: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;&lt;br&gt;&amp;gt; [mailto:&lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;]&lt;br&gt;&amp;gt; &amp;gt; On Behalf Of Nahshon Williams&lt;br&gt;&amp;gt; &amp;gt; Sent: Sunday, January 29, 2012 12:10 PM&lt;br&gt;&amp;gt; &amp;gt; To: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; Subject: Dune Player&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; This is wonderful technology!&lt;br&gt;&amp;gt; &amp;gt; Very reliable!&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Never again will I install Media Center for a client!&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Thanks Barry Gordon&lt;br&gt;&amp;gt; &amp;gt; Nahshon&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; --&lt;br&gt;&amp;gt; You received this message because you are subscribed to the Google Groups&lt;br&gt;&amp;gt; &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;&amp;gt; To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; To unsubscribe from this group, send email to&lt;br&gt;&amp;gt; &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;&amp;gt; For more options, visit this group athttp://&lt;a href="http://groups.google.com/group/commandfusion?hl=en.-"&gt;groups.google.com/group/commandfusion?hl=en.-&lt;/a&gt; Tekst uit oorspronkelijk bericht niet weergeven -&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; - Tekst uit oorspronkelijk bericht weergeven -&lt;p&gt;-- &lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;CommandFusion&amp;quot; group.&lt;br&gt;To post to this group, send email to &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;.&lt;br&gt;To unsubscribe from this group, send email to &lt;a href="mailto:commandfusion%2Bunsubscribe@googlegroups.com"&gt;commandfusion+unsubscribe@googlegroups.com&lt;/a&gt;.&lt;br&gt;For more options, visit this group at &lt;a href="http://groups.google.com/group/commandfusion?hl=en"&gt;http://groups.google.com/group/commandfusion?hl=en&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-6083614045570283572?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/6083614045570283572/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-dune-player_7612.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/6083614045570283572'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/6083614045570283572'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-dune-player_7612.html' title='Re: Dune Player'/><author><name>Marcio</name><uri>http://www.blogger.com/profile/01832981791089956730</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-2789322492541150578.post-4448683170964565902</id><published>2012-01-29T16:43:00.001-08:00</published><updated>2012-01-29T16:43:26.054-08:00</updated><title type='text'>Re: How to - multiple instances of similar systems / objects</title><content type='html'>Yes simplest solution would be to create some sort of routing object. &lt;br&gt;Set a variable within that object to tell it what system name to send &lt;br&gt;data to, whenever you change the device you want to control.&lt;p&gt;Jarrod&lt;p&gt;On 30/01/12 11:37 AM, Heath Volmer wrote:&lt;br&gt;&amp;gt; That did the trick.  Thanks.  I&amp;#39;m 50% there.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Regarding multiple similar devices and an earlier question that got &lt;br&gt;&amp;gt; overlooked:  While your suggestion to switch IP addresses on the fly &lt;br&gt;&amp;gt; is valid, this is a media server that builds up data when it &lt;br&gt;&amp;gt; connects.  I&amp;#39;d rather not have to do that each time I connect so we &lt;br&gt;&amp;gt; will have to assume I will have multiple objects representing my &lt;br&gt;&amp;gt; multiple servers.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; If each button on subpage is connected to one object, I&amp;#39;m assuming the &lt;br&gt;&amp;gt; only way to connect them to another object is to manually go through &lt;br&gt;&amp;gt; and adjust the JS on each buttons action.  Yuk  (There is no &amp;quot;F9&amp;quot; in &lt;br&gt;&amp;gt; Gui Designer...)&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; OR, I point the buttons at an object that in itself acts as a &amp;quot;router&amp;quot; &lt;br&gt;&amp;gt; that directs the command at the currently-selected object.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Make sense?&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Heath Volmer&lt;br&gt;&amp;gt; Digital Domain Systems&lt;br&gt;&amp;gt; 303-517-9714&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; On 1/29/12 5:12 PM, Heath Volmer wrote:&lt;br&gt;&amp;gt;&amp;gt; That&amp;#39;s probably where I&amp;#39;m going wrong.  I was declaring them in &lt;br&gt;&amp;gt;&amp;gt; CF.userMain, which didn&amp;#39;t seem like the right scope.  I&amp;#39;ll give that &lt;br&gt;&amp;gt;&amp;gt; a shot.&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; Heath Volmer&lt;br&gt;&amp;gt;&amp;gt; Digital Domain Systems&lt;br&gt;&amp;gt;&amp;gt; 303-517-9714&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; On 1/29/12 4:29 PM, Jarrod Bell wrote:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; And make sure the object is defined globally (ie. outside of &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; CF.userMain) first so that it can be referenced from buttons.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; eg.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; // Create the object here&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; var myObject;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; CF.userMain = function() {&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;     // instantiate the object here&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;     myObject = new myDevice();&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; };&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Jarrod&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; On 30/01/12 6:26 AM, Heath Volmer wrote:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; If I have a class &amp;quot;MyDevice&amp;quot; and I create a couple instances of it &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; (say myDevice1 and myDevice2) can I make calls, from buttons, like:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;     myDevice1(&amp;quot;play&amp;quot;);&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; or do I have to use a singleton pattern and only have one class &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; object to call on?&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; I&amp;#39;ve been trying different non-singleton things with no luck so far...&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br
