<?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-01-31T19:40:24.693-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>4341</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><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='0 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>0</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&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Thanks&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Heath Volmer&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Digital Domain Systems&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; 303-517-9714&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; On 1/28/12 7:09 PM, Jarrod Bell wrote:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; You can assign JS calls directly to buttons, no need to use join &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; numbers unless showing real feedback.&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; So you could have one system defined, and then change what device &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; it is talking to by modifying its IP address/port at runtime using &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; CF.setSystemProperties.&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; The button that you use to change what device you want to control &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; could have JS attached to it to perform the system properties &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; changes, then each button could just have something like:&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; myDevice.command(&amp;quot;play&amp;quot;);&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; With JavaScript it&amp;#39;s really capable of doing pretty much anything &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; you like - just up to you to program it in a way that suits your &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; requirements.&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 could even use the same join numbers for each system, and just &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; make sure to set the joins to a default state when changing &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; systems, and then request the new data from the system each time &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; you change.&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; Jarrod&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 29/01/12 10:22 AM, Heath Volmer wrote:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Going to ramble a tad here:&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; I have a JS file designed to talk to a media server.  I could &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; have multiple media servers, so I might need multiple systems and &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; multiple JS objects to handle them.  My JS is building the &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; multiple instances with no problem, but now that I&amp;#39;m to the point &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; of connecting the buttons on the server&amp;#39;s gui page to the JS &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; objects that talk to the system, I realize that I have no idea &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; how to access a given object from a button and call a function on &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; it.&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; One method (which I don&amp;#39;t like) is to watch joins and route them &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; to the currently-selected system.&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; Another way is to route different ranges of joins to different &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; systems (I like this even less, being a big proponent of reusing &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; things.)&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; Either way, I&amp;#39;m assuming that I have to do this routing to the &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; appropriate object outside of my objects.&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; My main questions:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Please tell me there is a better way that gets me out of &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; join-number-ville.  I&amp;#39;d like to say command(&amp;quot;Play&amp;quot;) on a button &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; press and have that button talk to the server it&amp;#39;s supposed to.  &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Do I need to have a central catcher of commands that says &amp;quot;He &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; pressed play, and he&amp;#39;s on media server 4.  Send the command to &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; that one&amp;quot;?  That might not be too messy.&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; Is there a way to attach a JS object to a subpage or page?  It&amp;#39;s &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; buttons would refer to a certain instance.   (Venturing into &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Mac-Xcode land here again folks) Like a page built in Interface &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Builder has a controller object attached to it.&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; Thanks&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;&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;&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-4448683170964565902?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/4448683170964565902/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-how-to-multiple-instances-of-similar_7866.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/4448683170964565902'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/4448683170964565902'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-how-to-multiple-instances-of-similar_7866.html' title='Re: How to - multiple instances of similar systems / objects'/><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-4688099200593344321</id><published>2012-01-29T16:37:00.000-08:00</published><updated>2012-01-29T16:38:11.940-08:00</updated><title type='text'>Re: How to - multiple instances of similar systems / objects</title><content type='html'>That did the trick.  Thanks.  I&amp;#39;m 50% there.&lt;p&gt;Regarding multiple similar devices and an earlier question that got &lt;br&gt;overlooked:  While your suggestion to switch IP addresses on the fly is &lt;br&gt;valid, this is a media server that builds up data when it connects.  I&amp;#39;d &lt;br&gt;rather not have to do that each time I connect so we will have to assume &lt;br&gt;I will have multiple objects representing my multiple servers.&lt;p&gt;If each button on subpage is connected to one object, I&amp;#39;m assuming the &lt;br&gt;only way to connect them to another object is to manually go through and &lt;br&gt;adjust the JS on each buttons action.  Yuk  (There is no &amp;quot;F9&amp;quot; in Gui &lt;br&gt;Designer...)&lt;p&gt;OR, I point the buttons at an object that in itself acts as a &amp;quot;router&amp;quot; &lt;br&gt;that directs the command at the currently-selected object.&lt;p&gt;Make sense?&lt;p&gt;Heath Volmer&lt;br&gt;Digital Domain Systems&lt;br&gt;303-517-9714&lt;p&gt;&lt;br&gt;On 1/29/12 5:12 PM, Heath Volmer wrote:&lt;br&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; CF.userMain, which didn&amp;#39;t seem like the right scope.  I&amp;#39;ll give that a &lt;br&gt;&amp;gt; shot.&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 4:29 PM, Jarrod Bell wrote:&lt;br&gt;&amp;gt;&amp;gt; And make sure the object is defined globally (ie. outside of &lt;br&gt;&amp;gt;&amp;gt; CF.userMain) first so that it can be referenced from buttons.&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; eg.&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; // Create the object here&lt;br&gt;&amp;gt;&amp;gt; var myObject;&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; CF.userMain = function() {&lt;br&gt;&amp;gt;&amp;gt;     // instantiate the object here&lt;br&gt;&amp;gt;&amp;gt;     myObject = new myDevice();&lt;br&gt;&amp;gt;&amp;gt; };&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 30/01/12 6:26 AM, Heath Volmer wrote:&lt;br&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; (say myDevice1 and myDevice2) can I make calls, from buttons, like:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;     myDevice1(&amp;quot;play&amp;quot;);&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&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; object to call on?&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&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;&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; Heath Volmer&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Digital Domain Systems&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 303-517-9714&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; On 1/28/12 7:09 PM, Jarrod Bell wrote:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; You can assign JS calls directly to buttons, no need to use join &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; numbers unless showing real feedback.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; So you could have one system defined, and then change what device &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; it is talking to by modifying its IP address/port at runtime using &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; CF.setSystemProperties.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; The button that you use to change what device you want to control &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; could have JS attached to it to perform the system properties &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; changes, then each button could just have something like:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; myDevice.command(&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; With JavaScript it&amp;#39;s really capable of doing pretty much anything &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; you like - just up to you to program it in a way that suits your &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; requirements.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; You could even use the same join numbers for each system, and just &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; make sure to set the joins to a default state when changing &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; systems, and then request the new data from the system each time &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; you change.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Jarrod&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; On 29/01/12 10:22 AM, Heath Volmer wrote:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Going to ramble a tad here:&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; I have a JS file designed to talk to a media server.  I could have &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; multiple media servers, so I might need multiple systems and &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; multiple JS objects to handle them.  My JS is building the &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; multiple instances with no problem, but now that I&amp;#39;m to the point &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; of connecting the buttons on the server&amp;#39;s gui page to the JS &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; objects that talk to the system, I realize that I have no idea how &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; to access a given object from a button and call a function on it.&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; One method (which I don&amp;#39;t like) is to watch joins and route them &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; to the currently-selected system.&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; Another way is to route different ranges of joins to different &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; systems (I like this even less, being a big proponent of reusing &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; things.)&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; Either way, I&amp;#39;m assuming that I have to do this routing to the &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; appropriate object outside of my objects.&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; My main questions:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Please tell me there is a better way that gets me out of &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; join-number-ville.  I&amp;#39;d like to say command(&amp;quot;Play&amp;quot;) on a button &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; press and have that button talk to the server it&amp;#39;s supposed to.  &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Do I need to have a central catcher of commands that says &amp;quot;He &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; pressed play, and he&amp;#39;s on media server 4.  Send the command to &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; that one&amp;quot;?  That might not be too messy.&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; Is there a way to attach a JS object to a subpage or page?  It&amp;#39;s &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; buttons would refer to a certain instance.   (Venturing into &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Mac-Xcode land here again folks) Like a page built in Interface &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Builder has a controller object attached to it.&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; Thanks&lt;br&gt;&amp;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;&lt;br&gt;&amp;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-4688099200593344321?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/4688099200593344321/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-how-to-multiple-instances-of-similar_2541.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/4688099200593344321'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/4688099200593344321'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-how-to-multiple-instances-of-similar_2541.html' title='Re: How to - multiple instances of similar systems / objects'/><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-7732101759747493295</id><published>2012-01-29T16:12:00.001-08:00</published><updated>2012-01-29T16:12:28.826-08:00</updated><title type='text'>Re: How to - multiple instances of similar systems / objects</title><content type='html'>That&amp;#39;s probably where I&amp;#39;m going wrong.  I was declaring them in &lt;br&gt;CF.userMain, which didn&amp;#39;t seem like the right scope.  I&amp;#39;ll give that a shot.&lt;p&gt;Heath Volmer&lt;br&gt;Digital Domain Systems&lt;br&gt;303-517-9714&lt;p&gt;&lt;br&gt;On 1/29/12 4:29 PM, Jarrod Bell wrote:&lt;br&gt;&amp;gt; And make sure the object is defined globally (ie. outside of &lt;br&gt;&amp;gt; CF.userMain) first so that it can be referenced from buttons.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; eg.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; // Create the object here&lt;br&gt;&amp;gt; var myObject;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; CF.userMain = function() {&lt;br&gt;&amp;gt;     // instantiate the object here&lt;br&gt;&amp;gt;     myObject = new myDevice();&lt;br&gt;&amp;gt; };&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Jarrod&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; On 30/01/12 6:26 AM, Heath Volmer wrote:&lt;br&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; (say myDevice1 and myDevice2) can I make calls, from buttons, like:&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;     myDevice1(&amp;quot;play&amp;quot;);&lt;br&gt;&amp;gt;&amp;gt;&lt;br&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; object to call on?&lt;br&gt;&amp;gt;&amp;gt;&lt;br&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;&lt;br&gt;&amp;gt;&amp;gt; Thanks&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/28/12 7:09 PM, Jarrod Bell wrote:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; You can assign JS calls directly to buttons, no need to use join &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; numbers unless showing real feedback.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; So you could have one system defined, and then change what device it &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; is talking to by modifying its IP address/port at runtime using &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; CF.setSystemProperties.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; The button that you use to change what device you want to control &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; could have JS attached to it to perform the system properties &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; changes, then each button could just have something like:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; myDevice.command(&amp;quot;play&amp;quot;);&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; With JavaScript it&amp;#39;s really capable of doing pretty much anything &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; you like - just up to you to program it in a way that suits your &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; requirements.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; You could even use the same join numbers for each system, and just &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; make sure to set the joins to a default state when changing systems, &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; and then request the new data from the system each time you change.&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 29/01/12 10:22 AM, Heath Volmer wrote:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Going to ramble a tad here:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; I have a JS file designed to talk to a media server.  I could have &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; multiple media servers, so I might need multiple systems and &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; multiple JS objects to handle them.  My JS is building the multiple &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; instances with no problem, but now that I&amp;#39;m to the point of &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; connecting the buttons on the server&amp;#39;s gui page to the JS objects &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; that talk to the system, I realize that I have no idea how to &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; access a given object from a button and call a function on it.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; One method (which I don&amp;#39;t like) is to watch joins and route them to &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; the currently-selected system.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Another way is to route different ranges of joins to different &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; systems (I like this even less, being a big proponent of reusing &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; things.)&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Either way, I&amp;#39;m assuming that I have to do this routing to the &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; appropriate object outside of my objects.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; My main questions:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Please tell me there is a better way that gets me out of &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; join-number-ville.  I&amp;#39;d like to say command(&amp;quot;Play&amp;quot;) on a button &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; press and have that button talk to the server it&amp;#39;s supposed to.  Do &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; I need to have a central catcher of commands that says &amp;quot;He pressed &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; play, and he&amp;#39;s on media server 4.  Send the command to that one&amp;quot;?  &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; That might not be too messy.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Is there a way to attach a JS object to a subpage or page?  It&amp;#39;s &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; buttons would refer to a certain instance.   (Venturing into &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Mac-Xcode land here again folks) Like a page built in Interface &lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Builder has a controller object attached to it.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Thanks&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;&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-7732101759747493295?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/7732101759747493295/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-how-to-multiple-instances-of-similar_7259.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7732101759747493295'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7732101759747493295'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-how-to-multiple-instances-of-similar_7259.html' title='Re: How to - multiple instances of similar systems / objects'/><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-7096566645994855936</id><published>2012-01-29T15:29:00.000-08:00</published><updated>2012-01-29T15:30:00.613-08:00</updated><title type='text'>Re: How to - multiple instances of similar systems / objects</title><content type='html'>And make sure the object is defined globally (ie. outside of &lt;br&gt;CF.userMain) first so that it can be referenced from buttons.&lt;p&gt;eg.&lt;p&gt;// Create the object here&lt;br&gt;var myObject;&lt;p&gt;CF.userMain = function() {&lt;br&gt;     // instantiate the object here&lt;br&gt;     myObject = new myDevice();&lt;br&gt;};&lt;p&gt;Jarrod&lt;p&gt;On 30/01/12 6:26 AM, Heath Volmer wrote:&lt;br&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; (say myDevice1 and myDevice2) can I make calls, from buttons, like:&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;     myDevice1(&amp;quot;play&amp;quot;);&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; or do I have to use a singleton pattern and only have one class object &lt;br&gt;&amp;gt; to call on?&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; I&amp;#39;ve been trying different non-singleton things with no luck so far...&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Thanks&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/28/12 7:09 PM, Jarrod Bell wrote:&lt;br&gt;&amp;gt;&amp;gt; You can assign JS calls directly to buttons, no need to use join &lt;br&gt;&amp;gt;&amp;gt; numbers unless showing real feedback.&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; So you could have one system defined, and then change what device it &lt;br&gt;&amp;gt;&amp;gt; is talking to by modifying its IP address/port at runtime using &lt;br&gt;&amp;gt;&amp;gt; CF.setSystemProperties.&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; The button that you use to change what device you want to control &lt;br&gt;&amp;gt;&amp;gt; could have JS attached to it to perform the system properties &lt;br&gt;&amp;gt;&amp;gt; changes, then each button could just have something like:&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; myDevice.command(&amp;quot;play&amp;quot;);&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; With JavaScript it&amp;#39;s really capable of doing pretty much anything you &lt;br&gt;&amp;gt;&amp;gt; like - just up to you to program it in a way that suits your &lt;br&gt;&amp;gt;&amp;gt; requirements.&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; You could even use the same join numbers for each system, and just &lt;br&gt;&amp;gt;&amp;gt; make sure to set the joins to a default state when changing systems, &lt;br&gt;&amp;gt;&amp;gt; and then request the new data from the system each time you change.&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 29/01/12 10:22 AM, Heath Volmer wrote:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Going to ramble a tad here:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I have a JS file designed to talk to a media server.  I could have &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; multiple media servers, so I might need multiple systems and &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; multiple JS objects to handle them.  My JS is building the multiple &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; instances with no problem, but now that I&amp;#39;m to the point of &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; connecting the buttons on the server&amp;#39;s gui page to the JS objects &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; that talk to the system, I realize that I have no idea how to access &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; a given object from a button and call a function on it.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; One method (which I don&amp;#39;t like) is to watch joins and route them to &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; the currently-selected system.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Another way is to route different ranges of joins to different &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; systems (I like this even less, being a big proponent of reusing &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; things.)&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Either way, I&amp;#39;m assuming that I have to do this routing to the &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; appropriate object outside of my objects.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; My main questions:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Please tell me there is a better way that gets me out of &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; join-number-ville.  I&amp;#39;d like to say command(&amp;quot;Play&amp;quot;) on a button &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; press and have that button talk to the server it&amp;#39;s supposed to.  Do &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I need to have a central catcher of commands that says &amp;quot;He pressed &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; play, and he&amp;#39;s on media server 4.  Send the command to that one&amp;quot;?  &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; That might not be too messy.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Is there a way to attach a JS object to a subpage or page?  It&amp;#39;s &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; buttons would refer to a certain instance.   (Venturing into &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Mac-Xcode land here again folks) Like a page built in Interface &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Builder has a controller object attached to it.&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;&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-7096566645994855936?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/7096566645994855936/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-how-to-multiple-instances-of-similar_5809.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7096566645994855936'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7096566645994855936'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-how-to-multiple-instances-of-similar_5809.html' title='Re: How to - multiple instances of similar systems / objects'/><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-7741217866313636683</id><published>2012-01-29T15:28:00.001-08:00</published><updated>2012-01-29T15:28:40.032-08:00</updated><title type='text'>Re: How to - multiple instances of similar systems / objects</title><content type='html'>You can call them as you say, but you need to call a function of that &lt;br&gt;object:&lt;br&gt;myObject.functionName(&amp;quot;param&amp;quot;)&lt;p&gt;Jarrod&lt;p&gt;On 30/01/12 6:26 AM, Heath Volmer wrote:&lt;br&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; (say myDevice1 and myDevice2) can I make calls, from buttons, like:&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;     myDevice1(&amp;quot;play&amp;quot;);&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; or do I have to use a singleton pattern and only have one class object &lt;br&gt;&amp;gt; to call on?&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; I&amp;#39;ve been trying different non-singleton things with no luck so far...&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Thanks&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/28/12 7:09 PM, Jarrod Bell wrote:&lt;br&gt;&amp;gt;&amp;gt; You can assign JS calls directly to buttons, no need to use join &lt;br&gt;&amp;gt;&amp;gt; numbers unless showing real feedback.&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; So you could have one system defined, and then change what device it &lt;br&gt;&amp;gt;&amp;gt; is talking to by modifying its IP address/port at runtime using &lt;br&gt;&amp;gt;&amp;gt; CF.setSystemProperties.&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; The button that you use to change what device you want to control &lt;br&gt;&amp;gt;&amp;gt; could have JS attached to it to perform the system properties &lt;br&gt;&amp;gt;&amp;gt; changes, then each button could just have something like:&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; myDevice.command(&amp;quot;play&amp;quot;);&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; With JavaScript it&amp;#39;s really capable of doing pretty much anything you &lt;br&gt;&amp;gt;&amp;gt; like - just up to you to program it in a way that suits your &lt;br&gt;&amp;gt;&amp;gt; requirements.&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; You could even use the same join numbers for each system, and just &lt;br&gt;&amp;gt;&amp;gt; make sure to set the joins to a default state when changing systems, &lt;br&gt;&amp;gt;&amp;gt; and then request the new data from the system each time you change.&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 29/01/12 10:22 AM, Heath Volmer wrote:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Going to ramble a tad here:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I have a JS file designed to talk to a media server.  I could have &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; multiple media servers, so I might need multiple systems and &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; multiple JS objects to handle them.  My JS is building the multiple &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; instances with no problem, but now that I&amp;#39;m to the point of &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; connecting the buttons on the server&amp;#39;s gui page to the JS objects &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; that talk to the system, I realize that I have no idea how to access &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; a given object from a button and call a function on it.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; One method (which I don&amp;#39;t like) is to watch joins and route them to &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; the currently-selected system.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Another way is to route different ranges of joins to different &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; systems (I like this even less, being a big proponent of reusing &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; things.)&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Either way, I&amp;#39;m assuming that I have to do this routing to the &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; appropriate object outside of my objects.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; My main questions:&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Please tell me there is a better way that gets me out of &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; join-number-ville.  I&amp;#39;d like to say command(&amp;quot;Play&amp;quot;) on a button &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; press and have that button talk to the server it&amp;#39;s supposed to.  Do &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I need to have a central catcher of commands that says &amp;quot;He pressed &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; play, and he&amp;#39;s on media server 4.  Send the command to that one&amp;quot;?  &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; That might not be too messy.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Is there a way to attach a JS object to a subpage or page?  It&amp;#39;s &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; buttons would refer to a certain instance.   (Venturing into &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Mac-Xcode land here again folks) Like a page built in Interface &lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Builder has a controller object attached to it.&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;&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-7741217866313636683?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/7741217866313636683/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-how-to-multiple-instances-of-similar_4615.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7741217866313636683'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7741217866313636683'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-how-to-multiple-instances-of-similar_4615.html' title='Re: How to - multiple instances of similar systems / objects'/><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-4390741754699290301</id><published>2012-01-29T13:12:00.001-08:00</published><updated>2012-01-29T13:12:49.352-08:00</updated><title type='text'>RE: Dune Player</title><content type='html'>The problem is that the PC that controls the theater is where all the work&lt;br&gt;is done.  The iPad just lets the PC know which button (screen, button as two&lt;br&gt;digits) was touched on its screen.  the PC then does all the communicatoions&lt;br&gt;to the various theater components&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 Nahshon Williams&lt;br&gt;Sent: Sunday, January 29, 2012 2:55 PM&lt;br&gt;To: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;&lt;br&gt;Subject: Re: Dune Player&lt;p&gt;Would you be willing to share your CF system for dune?&lt;br&gt;I use RAID 6 over gigabit. It is seamless with blu-rays.&lt;br&gt;N&lt;p&gt;&lt;p&gt;On 29/01/2012 19:52, Barry Gordon wrote:&lt;br&gt;&amp;gt; You&amp;#39;re quite welcome.  I have been using a Dune player for well over a&lt;br&gt;year.&lt;br&gt;&amp;gt; I wrote my own librarian which looks very much like Kaliedescape and runs&lt;br&gt;on&lt;br&gt;&amp;gt; the PC that controls the theater. You select a title using the iPad or a&lt;br&gt;&amp;gt; Pronto PRO and the dune player gets commanded over IP to play the Movie.&lt;br&gt;&amp;gt; All movies are stored on a Raid 5 system that is actually an improvement&lt;br&gt;&amp;gt; IMHO over standard raid 5 in that two errors will not destroy the array.&lt;br&gt;&amp;gt; While the movie is playing you can pull the chapters down to the iPad and&lt;br&gt;&amp;gt; skip around, stop, pause, fast forward and rewind etc. I have never had a&lt;br&gt;&amp;gt; DVD or BD that the Dune could not play.  What I like the best about the&lt;br&gt;&amp;gt; entire system is that from the moment I select the film (or TV show or&lt;br&gt;&amp;gt; concert) to watch, it is playing in about 7 seconds with no previews,&lt;br&gt;&amp;gt; warnings, etc. That however is because of the way I rip them, not anything&lt;br&gt;&amp;gt; to do with the Dune player.&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;[mailto:&lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;]&lt;br&gt;&amp;gt; On Behalf Of Nahshon Williams&lt;br&gt;&amp;gt; Sent: Sunday, January 29, 2012 12:10 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: Dune Player&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; This is wonderful technology!&lt;br&gt;&amp;gt; Very reliable!&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Never again will I install Media Center for a client!&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Thanks Barry Gordon&lt;br&gt;&amp;gt; Nahshon&lt;br&gt;&amp;gt;&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-4390741754699290301?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/4390741754699290301/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-dune-player_4513.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/4390741754699290301'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/4390741754699290301'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-dune-player_4513.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-1877897186229223133</id><published>2012-01-29T11:55:00.001-08:00</published><updated>2012-01-29T11:55:35.137-08:00</updated><title type='text'>Re: Dune Player</title><content type='html'>Would you be willing to share your CF system for dune?&lt;br&gt;I use RAID 6 over gigabit. It is seamless with blu-rays.&lt;br&gt;N&lt;p&gt;&lt;p&gt;On 29/01/2012 19:52, Barry Gordon wrote:&lt;br&gt;&amp;gt; You&amp;#39;re quite welcome.  I have been using a Dune player for well over a year.&lt;br&gt;&amp;gt; I wrote my own librarian which looks very much like Kaliedescape and runs on&lt;br&gt;&amp;gt; the PC that controls the theater. You select a title using the iPad or a&lt;br&gt;&amp;gt; Pronto PRO and the dune player gets commanded over IP to play the Movie.&lt;br&gt;&amp;gt; All movies are stored on a Raid 5 system that is actually an improvement&lt;br&gt;&amp;gt; IMHO over standard raid 5 in that two errors will not destroy the array.&lt;br&gt;&amp;gt; While the movie is playing you can pull the chapters down to the iPad and&lt;br&gt;&amp;gt; skip around, stop, pause, fast forward and rewind etc. I have never had a&lt;br&gt;&amp;gt; DVD or BD that the Dune could not play.  What I like the best about the&lt;br&gt;&amp;gt; entire system is that from the moment I select the film (or TV show or&lt;br&gt;&amp;gt; concert) to watch, it is playing in about 7 seconds with no previews,&lt;br&gt;&amp;gt; warnings, etc. That however is because of the way I rip them, not anything&lt;br&gt;&amp;gt; to do with the Dune player.&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 Nahshon Williams&lt;br&gt;&amp;gt; Sent: Sunday, January 29, 2012 12:10 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: Dune Player&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; This is wonderful technology!&lt;br&gt;&amp;gt; Very reliable!&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Never again will I install Media Center for a client!&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Thanks Barry Gordon&lt;br&gt;&amp;gt; Nahshon&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-1877897186229223133?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/1877897186229223133/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-dune-player_29.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/1877897186229223133'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/1877897186229223133'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-dune-player_29.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-690311344184494118</id><published>2012-01-29T11:52:00.001-08:00</published><updated>2012-01-29T11:52:19.764-08:00</updated><title type='text'>RE: Dune Player</title><content type='html'>You&amp;#39;re quite welcome.  I have been using a Dune player for well over a year.&lt;br&gt;I wrote my own librarian which looks very much like Kaliedescape and runs on&lt;br&gt;the PC that controls the theater. You select a title using the iPad or a&lt;br&gt;Pronto PRO and the dune player gets commanded over IP to play the Movie.&lt;br&gt;All movies are stored on a Raid 5 system that is actually an improvement&lt;br&gt;IMHO over standard raid 5 in that two errors will not destroy the array.&lt;br&gt;While the movie is playing you can pull the chapters down to the iPad and&lt;br&gt;skip around, stop, pause, fast forward and rewind etc. I have never had a&lt;br&gt;DVD or BD that the Dune could not play.  What I like the best about the&lt;br&gt;entire system is that from the moment I select the film (or TV show or&lt;br&gt;concert) to watch, it is playing in about 7 seconds with no previews,&lt;br&gt;warnings, etc. That however is because of the way I rip them, not anything&lt;br&gt;to do with the Dune player.&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 Nahshon Williams&lt;br&gt;Sent: Sunday, January 29, 2012 12:10 PM&lt;br&gt;To: &lt;a href="mailto:commandfusion@googlegroups.com"&gt;commandfusion@googlegroups.com&lt;/a&gt;&lt;br&gt;Subject: Dune Player&lt;p&gt;This is wonderful technology!&lt;br&gt;Very reliable!&lt;p&gt;Never again will I install Media Center for a client!&lt;p&gt;Thanks Barry Gordon&lt;br&gt;Nahshon&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-690311344184494118?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/690311344184494118/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-dune-player.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/690311344184494118'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/690311344184494118'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-dune-player.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-2289283100667505476</id><published>2012-01-29T11:26:00.000-08:00</published><updated>2012-01-29T11:27:01.705-08:00</updated><title type='text'>Re: How to - multiple instances of similar systems / objects</title><content type='html'>If I have a class &amp;quot;MyDevice&amp;quot; and I create a couple instances of it (say &lt;br&gt;myDevice1 and myDevice2) can I make calls, from buttons, like:&lt;p&gt;     myDevice1(&amp;quot;play&amp;quot;);&lt;p&gt;or do I have to use a singleton pattern and only have one class object &lt;br&gt;to call on?&lt;p&gt;I&amp;#39;ve been trying different non-singleton things with no luck so far...&lt;p&gt;Thanks&lt;p&gt;Heath Volmer&lt;br&gt;Digital Domain Systems&lt;br&gt;303-517-9714&lt;p&gt;&lt;br&gt;On 1/28/12 7:09 PM, Jarrod Bell wrote:&lt;br&gt;&amp;gt; You can assign JS calls directly to buttons, no need to use join &lt;br&gt;&amp;gt; numbers unless showing real feedback.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; So you could have one system defined, and then change what device it &lt;br&gt;&amp;gt; is talking to by modifying its IP address/port at runtime using &lt;br&gt;&amp;gt; CF.setSystemProperties.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; The button that you use to change what device you want to control &lt;br&gt;&amp;gt; could have JS attached to it to perform the system properties changes, &lt;br&gt;&amp;gt; then each button could just have something like:&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; myDevice.command(&amp;quot;play&amp;quot;);&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; With JavaScript it&amp;#39;s really capable of doing pretty much anything you &lt;br&gt;&amp;gt; like - just up to you to program it in a way that suits your &lt;br&gt;&amp;gt; requirements.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; You could even use the same join numbers for each system, and just &lt;br&gt;&amp;gt; make sure to set the joins to a default state when changing systems, &lt;br&gt;&amp;gt; and then request the new data from the system each time you change.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Jarrod&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; On 29/01/12 10:22 AM, Heath Volmer wrote:&lt;br&gt;&amp;gt;&amp;gt; Going to ramble a tad here:&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; I have a JS file designed to talk to a media server.  I could have &lt;br&gt;&amp;gt;&amp;gt; multiple media servers, so I might need multiple systems and multiple &lt;br&gt;&amp;gt;&amp;gt; JS objects to handle them.  My JS is building the multiple instances &lt;br&gt;&amp;gt;&amp;gt; with no problem, but now that I&amp;#39;m to the point of connecting the &lt;br&gt;&amp;gt;&amp;gt; buttons on the server&amp;#39;s gui page to the JS objects that talk to the &lt;br&gt;&amp;gt;&amp;gt; system, I realize that I have no idea how to access a given object &lt;br&gt;&amp;gt;&amp;gt; from a button and call a function on it.&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; One method (which I don&amp;#39;t like) is to watch joins and route them to &lt;br&gt;&amp;gt;&amp;gt; the currently-selected system.&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; Another way is to route different ranges of joins to different &lt;br&gt;&amp;gt;&amp;gt; systems (I like this even less, being a big proponent of reusing &lt;br&gt;&amp;gt;&amp;gt; things.)&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; Either way, I&amp;#39;m assuming that I have to do this routing to the &lt;br&gt;&amp;gt;&amp;gt; appropriate object outside of my objects.&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; My main questions:&lt;br&gt;&amp;gt;&amp;gt; Please tell me there is a better way that gets me out of &lt;br&gt;&amp;gt;&amp;gt; join-number-ville.  I&amp;#39;d like to say command(&amp;quot;Play&amp;quot;) on a button press &lt;br&gt;&amp;gt;&amp;gt; and have that button talk to the server it&amp;#39;s supposed to.  Do I need &lt;br&gt;&amp;gt;&amp;gt; to have a central catcher of commands that says &amp;quot;He pressed play, and &lt;br&gt;&amp;gt;&amp;gt; he&amp;#39;s on media server 4.  Send the command to that one&amp;quot;?  That might &lt;br&gt;&amp;gt;&amp;gt; not be too messy.&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; Is there a way to attach a JS object to a subpage or page?  It&amp;#39;s &lt;br&gt;&amp;gt;&amp;gt; buttons would refer to a certain instance.   (Venturing into &lt;br&gt;&amp;gt;&amp;gt; Mac-Xcode land here again folks) Like a page built in Interface &lt;br&gt;&amp;gt;&amp;gt; Builder has a controller object attached to it.&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;&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-2289283100667505476?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/2289283100667505476/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-how-to-multiple-instances-of-similar_29.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/2289283100667505476'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/2289283100667505476'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-how-to-multiple-instances-of-similar_29.html' title='Re: How to - multiple instances of similar systems / objects'/><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-1971249468898629019</id><published>2012-01-29T09:47:00.001-08:00</published><updated>2012-01-29T09:47:22.656-08:00</updated><title type='text'>Re: CIP does not connect</title><content type='html'>All devices use a different id to connect.&lt;br&gt;Didn&amp;#39;t want to stretch my luck on multiple connections to the same id.&lt;p&gt;Tried using a different id on that device, no connect.&lt;p&gt;Switched to the legacy connection now, which works fine....&lt;p&gt;Still somewhat strange.&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-1971249468898629019?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/1971249468898629019/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-cip-does-not-connect_1220.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/1971249468898629019'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/1971249468898629019'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-cip-does-not-connect_1220.html' title='Re: CIP does not connect'/><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-6181210779905643864</id><published>2012-01-29T09:10:00.001-08:00</published><updated>2012-01-29T09:10:27.034-08:00</updated><title type='text'>Dune Player</title><content type='html'>This is wonderful technology!&lt;br&gt;Very reliable!&lt;p&gt;Never again will I install Media Center for a client!&lt;p&gt;Thanks Barry Gordon&lt;br&gt;Nahshon&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-6181210779905643864?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/6181210779905643864/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/dune-player.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/6181210779905643864'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/6181210779905643864'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/dune-player.html' title='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-3027134944542579148</id><published>2012-01-29T04:56:00.000-08:00</published><updated>2012-01-29T04:57:02.207-08:00</updated><title type='text'>Alterações na Política de Privacidade e nos Termos de Serviço do Google</title><content type='html'>&lt;font face="Arial,Helvetica,sans-serif" size="2"&gt; &lt;table width="700" border="0" bordercolor="none"&gt; &lt;tbody&gt;  &lt;tr&gt;&lt;td colspan="4" valign="top"&gt;&lt;/td&gt; &lt;td valign="top"&gt; &lt;p style="line-height:14px;"&gt;&lt;font size="1" color="#777"&gt;Esta mensagens não está sendo exibida corretamente?&lt;br&gt; &lt;a href="http://www.google.com/policies"&gt;Abra-a em seu navegador.&lt;/a&gt;&lt;/font&gt;&lt;/p&gt; &lt;/td&gt;&lt;/tr&gt;   &lt;tr&gt;&lt;td colspan="5" valign="top"&gt; &lt;font color="#222"&gt; &lt;p style="line-height:18px;"&gt;Caro usuário do Google,&lt;/p&gt;  &lt;p style="line-height:18px;"&gt;Estamos substituindo mais de 60 políticas de privacidade diferentes do Google por uma política mais concisa e fácil de ler. A nova política abrange vários produtos e recursos, refletindo nosso objetivo de criar uma experiência extremamente simples e intuitiva em todos os produtos do Google.&lt;/p&gt;  &lt;p style="line-height:18px;"&gt;Isto é importante. Assim, dedique alguns minutos para ler as versões atualizadas da nossa Política de Privacidade e dos nossos Termos de Serviço em &lt;a href="http://www.google.com/policies"&gt;http://www.google.com/policies&lt;/a&gt;. Estas mudanças entrarão em vigor no dia 1º de março de 2012. &lt;/p&gt;&lt;/font&gt; &lt;br&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td colspan="5" height="40"&gt; &lt;font size="4" color="#222"&gt;Uma política, uma experiência no Google&lt;/font&gt; &lt;hr noshade="noshade" size="1"&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td width="200"&gt;&lt;img src="https://www.gstatic.com/policies/email/images/intl/en/products.png" width="200" height="113" alt="Fácil de trabalhar em vários produtos" vspace="16" border="1" style="border:1px solid #ccc;"&gt;&lt;/td&gt; &lt;td width="40"&gt;&lt;/td&gt; &lt;td width="200"&gt;&lt;img src="https://www.gstatic.com/policies/email/images/intl/pt-BR/you.png" width="200" height="113" alt="Sob medida para você" vspace="16" border="1" style="border:1px solid #ccc;"&gt;&lt;/td&gt; &lt;td width="40"&gt;&lt;/td&gt; &lt;td width="200"&gt;&lt;img src="https://www.gstatic.com/policies/email/images/intl/pt-BR/share.png" width="200" height="113" alt="Compartilhar e colaborar é fácil" vspace="16" border="1" style="border:1px solid #ccc;"&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td valign="top"&gt;&lt;font size="3" color="#222"&gt;Fácil de trabalhar em vários produtos&lt;/font&gt; &lt;p style="line-height:18px;"&gt;Nossa nova política reflete nosso desejo de criar uma experiência de produto simples, que ofereça o que você precisar, quando você quiser. Seja ao ler um e-mail que o faça lembrar de marcar um encontro familiar ou encontrar um vídeo favorito que você queira compartilhar, queremos que você possa utilizar com facilidade o Gmail, o Google Agenda, a ferramenta de pesquisa, o YouTube ou o que mais você quiser.&lt;/p&gt;&lt;/td&gt; &lt;td width="40"&gt;&lt;/td&gt; &lt;td valign="top"&gt; &lt;font size="3" color="#222"&gt;Sob medida para você&lt;/font&gt; &lt;p style="line-height:18px;"&gt;Se você fizer login no Google, podemos sugerir consultas de pesquisa ou adequar os resultados da pesquisa de acordo com os interesses que você expressou no Google+, Gmail e YouTube. Assim, poderemos compreender melhor qual versão do Pink ou Jaguar você está pesquisando e oferecer esses resultados com mais rapidez.&lt;/p&gt;&lt;/td&gt; &lt;td width="40"&gt;&lt;/td&gt; &lt;td valign="top"&gt; &lt;font size="3" color="#222"&gt;Compartilhar e colaborar é fácil&lt;/font&gt; &lt;p style="line-height:18px;"&gt;Ao postar ou criar um documento on-line, é provável que você queira que outras pessoas o vejam e contribuam. Ao lembrar as informações de contato das pessoas com quem você deseja compartilhar, facilitamos seu compartilhamento em qualquer produto ou serviço do Google com o mínimo de cliques e erros.&lt;/p&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td colspan="5" height="40"&gt; &lt;hr noshade="noshade" size="1"&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td valign="top"&gt;  &lt;font size="3" color="#222"&gt;A proteção de sua privacidade não mudou.&lt;/font&gt; &lt;p style="line-height:18px;"&gt;Nosso objetivo é fornecer a você o máximo de transparência e de escolha possível, por meio de produtos como Google Dashboard e Gerenciador de preferências de anúncios entre outras ferramentas. Nossos princípios de privacidade  permanecem os mesmos. Ainda, nunca venderemos nem compartilharemos suas informações profissionais sem sua permissão (a não ser em raras circunstâncias, como solicitações legais legítimas). &lt;/p&gt;&lt;/td&gt;  &lt;td width="40"&gt;&lt;/td&gt; &lt;td valign="top"&gt;  &lt;font size="3" color="#222"&gt;Alguma dúvida?&lt;br&gt; Temos a resposta.&lt;/font&gt; &lt;p style="line-height:18px;"&gt;Visite nossas Perguntas frequentes em &lt;a href="http://www.google.com/policies/faq"&gt;http://www.google.com/policies/faq&lt;/a&gt; para saber mais sobre estas mudanças. (Imaginamos que nossos usuários podem ter uma pergunta ou vinte e duas.)&lt;/p&gt;&lt;/td&gt;  &lt;td width="40"&gt;&lt;/td&gt; &lt;td valign="top"&gt;  &lt;p&gt; &lt;/p&gt;  &lt;/tr&gt; &lt;tr&gt; &lt;td colspan="5" height="40"&gt; &lt;hr noshade="noshade" size="1"&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt;&lt;td colspan="5" valign="top"&gt; &lt;font size="3" color="#222"&gt;Aviso de alteração&lt;/font&gt; &lt;p style="line-height:18px;"&gt;A nova Política de Privacidade e os novos Termos de Serviço do entrarão em vigor em 1º de março de 2012. Se optar por continuar usando o Google assim que a alteração ocorrer, você fará isso de acordo com a nova Política de Privacidade e os Termos de Serviço.&lt;/p&gt; &lt;p style="line-height:18px;"&gt;&lt;font size="1"&gt;Não responda a este e-mail. Respostas enviadas para este endereço não serão respondidas. Nunca insira sua senha após abrir um link que aponte para um site não confiável. Em vez disso, acesse diretamente o site, como mail.google.com ou www.google.com/accounts. O Google nunca mandará um e-mail pedindo sua senha ou outra informação confidencial.&lt;/font&gt;&lt;/p&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt; &lt;/font&gt;   &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2789322492541150578-3027134944542579148?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/3027134944542579148/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/alteracoes-na-politica-de-privacidade-e.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/3027134944542579148'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/3027134944542579148'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/alteracoes-na-politica-de-privacidade-e.html' title='Alterações na Política de Privacidade e nos Termos de Serviço do Google'/><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-5486082764191347585</id><published>2012-01-29T02:46:00.001-08:00</published><updated>2012-01-29T02:46:17.366-08:00</updated><title type='text'>Re: Macros and timing reliability</title><content type='html'>I think your problem is the time that is needed to execute the ir code&lt;br&gt;by the Global Cach&amp;#233; device.&lt;p&gt;Joep&lt;p&gt;Op 27 jan. 2012 om 23:33 heeft Jarrod Bell &amp;lt;&lt;a href="mailto:jarrod@guilink.com"&gt;jarrod@guilink.com&lt;/a&gt;&amp;gt; het&lt;br&gt;volgende geschreven:&lt;p&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; 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; 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; Jarrod&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; On 28/01/12 1:29 AM, MarkusKl wrote:&lt;br&gt;&amp;gt;&amp;gt; Hi,&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; I have a few questions regarding macros, command timings within macros&lt;br&gt;&amp;gt;&amp;gt; etc.&lt;br&gt;&amp;gt;&amp;gt;&lt;br&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; hardware amps controlled by global caches IP bus devices via IR&lt;br&gt;&amp;gt;&amp;gt; commands.&lt;br&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; all codes are working fine because we developed them on our own with&lt;br&gt;&amp;gt;&amp;gt; the manufacturer.&lt;br&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; within a multiroom environment and we are controlling the amps and the&lt;br&gt;&amp;gt;&amp;gt; audio zones by setting the volume levels on the amps differently (via&lt;br&gt;&amp;gt;&amp;gt; the mentioned IR/GC combos).&lt;br&gt;&amp;gt;&amp;gt;&lt;br&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; the amps have 102 (!!) volume steps.&lt;br&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; Of course, not always 102 steps/commands are send per amp, we have&lt;br&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; steps per amp.&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; Knowing that each vol up/vol down command needs ~500ms for execution&lt;br&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; CF macros, no JS code) to ensure the commands are send adequately.&lt;br&gt;&amp;gt;&amp;gt;&lt;br&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; execution ?&lt;br&gt;&amp;gt;&amp;gt; And also, is it ensured that the macros are executed serially (which&lt;br&gt;&amp;gt;&amp;gt; is what I am expecting, of course)?&lt;br&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; any benefits/more reliability? Also, how to code the delays and ensure&lt;br&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; ensure correct execution and finalization of the macros)!&lt;br&gt;&amp;gt;&amp;gt;&lt;br&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; vol up/down sometimes (I would say in 1-3% of the cases) not all the&lt;br&gt;&amp;gt;&amp;gt; commands are received by the amps which results in differences in the&lt;br&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; track it in our devlopement/debuging software of the amps...and&lt;br&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; 100% solved !&lt;br&gt;&amp;gt;&amp;gt;&lt;br&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; a multimedia network used and installed ONLY for audio (!), no other&lt;br&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;&lt;br&gt;&amp;gt;&amp;gt; I am just curious what other guys/installers say about this behavior,&lt;br&gt;&amp;gt;&amp;gt; and also would appreciate any idea to solve the issue.&lt;br&gt;&amp;gt;&amp;gt;&lt;br&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; which in fact is something we are working at with the manufacturer but&lt;br&gt;&amp;gt;&amp;gt; it&amp;#39;s not guaranteed that we will get them...&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; So, any ideas ?&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; Markus&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-5486082764191347585?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/5486082764191347585/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-macros-and-timing-reliability_29.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/5486082764191347585'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/5486082764191347585'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-macros-and-timing-reliability_29.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-7614854948317739496</id><published>2012-01-29T01:19:00.000-08:00</published><updated>2012-01-29T01:20:21.753-08:00</updated><title type='text'>Re: CIP does not connect</title><content type='html'>4 iPods connect at the same time? Or are you trying them one by one?&lt;br&gt;Maybe there is some limitation to the number of single connections to &lt;br&gt;the same IPID?&lt;p&gt;Does the 5th device work at all on its own? Could be a dodgy unit.&lt;p&gt;Jarrod&lt;p&gt;On 29/01/12 7:51 PM, Fakum12 wrote:&lt;br&gt;&amp;gt; Let&amp;#39;s clarify the situation.&lt;br&gt;&amp;gt; This does not happen after some time, but on the first time the&lt;br&gt;&amp;gt; iviewer is installed and launched.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; 1. Unpack the iPods&lt;br&gt;&amp;gt; 2. Update to the newest IOS&lt;br&gt;&amp;gt; 3. Install iviewer&lt;br&gt;&amp;gt; 4. Run iviewer&amp;amp;  load project.&lt;br&gt;&amp;gt; 5. 4 iPods connect, 1 does not.&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-7614854948317739496?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/7614854948317739496/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-cip-does-not-connect_8958.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7614854948317739496'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7614854948317739496'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-cip-does-not-connect_8958.html' title='Re: CIP does not connect'/><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-8769046583838748644</id><published>2012-01-29T00:51:00.001-08:00</published><updated>2012-01-29T00:51:48.271-08:00</updated><title type='text'>Re: CIP does not connect</title><content type='html'>Let&amp;#39;s clarify the situation.&lt;br&gt;This does not happen after some time, but on the first time the&lt;br&gt;iviewer is installed and launched.&lt;p&gt;1. Unpack the iPods&lt;br&gt;2. Update to the newest IOS&lt;br&gt;3. Install iviewer&lt;br&gt;4. Run iviewer &amp;amp; load project.&lt;br&gt;5. 4 iPods connect, 1 does not.&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-8769046583838748644?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/8769046583838748644/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-cip-does-not-connect_29.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/8769046583838748644'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/8769046583838748644'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-cip-does-not-connect_29.html' title='Re: CIP does not connect'/><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-3490559927328228656</id><published>2012-01-28T18:09:00.001-08:00</published><updated>2012-01-28T18:09:59.519-08:00</updated><title type='text'>Re: How to - multiple instances of similar systems / objects</title><content type='html'>You can assign JS calls directly to buttons, no need to use join numbers &lt;br&gt;unless showing real feedback.&lt;p&gt;So you could have one system defined, and then change what device it is &lt;br&gt;talking to by modifying its IP address/port at runtime using &lt;br&gt;CF.setSystemProperties.&lt;p&gt;The button that you use to change what device you want to control could &lt;br&gt;have JS attached to it to perform the system properties changes, then &lt;br&gt;each button could just have something like:&lt;p&gt;myDevice.command(&amp;quot;play&amp;quot;);&lt;p&gt;With JavaScript it&amp;#39;s really capable of doing pretty much anything you &lt;br&gt;like - just up to you to program it in a way that suits your requirements.&lt;p&gt;You could even use the same join numbers for each system, and just make &lt;br&gt;sure to set the joins to a default state when changing systems, and then &lt;br&gt;request the new data from the system each time you change.&lt;p&gt;Jarrod&lt;p&gt;On 29/01/12 10:22 AM, Heath Volmer wrote:&lt;br&gt;&amp;gt; Going to ramble a tad here:&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; I have a JS file designed to talk to a media server.  I could have &lt;br&gt;&amp;gt; multiple media servers, so I might need multiple systems and multiple &lt;br&gt;&amp;gt; JS objects to handle them.  My JS is building the multiple instances &lt;br&gt;&amp;gt; with no problem, but now that I&amp;#39;m to the point of connecting the &lt;br&gt;&amp;gt; buttons on the server&amp;#39;s gui page to the JS objects that talk to the &lt;br&gt;&amp;gt; system, I realize that I have no idea how to access a given object &lt;br&gt;&amp;gt; from a button and call a function on it.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; One method (which I don&amp;#39;t like) is to watch joins and route them to &lt;br&gt;&amp;gt; the currently-selected system.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Another way is to route different ranges of joins to different systems &lt;br&gt;&amp;gt; (I like this even less, being a big proponent of reusing things.)&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Either way, I&amp;#39;m assuming that I have to do this routing to the &lt;br&gt;&amp;gt; appropriate object outside of my objects.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; My main questions:&lt;br&gt;&amp;gt; Please tell me there is a better way that gets me out of &lt;br&gt;&amp;gt; join-number-ville.  I&amp;#39;d like to say command(&amp;quot;Play&amp;quot;) on a button press &lt;br&gt;&amp;gt; and have that button talk to the server it&amp;#39;s supposed to.  Do I need &lt;br&gt;&amp;gt; to have a central catcher of commands that says &amp;quot;He pressed play, and &lt;br&gt;&amp;gt; he&amp;#39;s on media server 4.  Send the command to that one&amp;quot;?  That might &lt;br&gt;&amp;gt; not be too messy.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Is there a way to attach a JS object to a subpage or page?  It&amp;#39;s &lt;br&gt;&amp;gt; buttons would refer to a certain instance.   (Venturing into Mac-Xcode &lt;br&gt;&amp;gt; land here again folks) Like a page built in Interface Builder has a &lt;br&gt;&amp;gt; controller object attached to it.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Thanks&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-3490559927328228656?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/3490559927328228656/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-how-to-multiple-instances-of-similar_28.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/3490559927328228656'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/3490559927328228656'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-how-to-multiple-instances-of-similar_28.html' title='Re: How to - multiple instances of similar systems / objects'/><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-7287197770532144723</id><published>2012-01-28T15:54:00.000-08:00</published><updated>2012-01-28T15:55:13.387-08:00</updated><title type='text'>Re: How to - multiple instances of similar systems / objects</title><content type='html'>As a follow up:&lt;p&gt;If I am forced to take the one range of joins for each server route, &lt;br&gt;each page will be identical.  Is there a way to offset a subpage&amp;#39;s &lt;br&gt;joins, so I can just paste in multiple copies of a subpage and have each &lt;br&gt;offset to it&amp;#39;s own range of joins?&lt;p&gt;Thanks&lt;p&gt;&lt;br&gt;Heath Volmer&lt;br&gt;Digital Domain Systems&lt;br&gt;303-517-9714&lt;p&gt;&lt;br&gt;On 1/28/12 4:22 PM, Heath Volmer wrote:&lt;br&gt;&amp;gt; Going to ramble a tad here:&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; I have a JS file designed to talk to a media server.  I could have &lt;br&gt;&amp;gt; multiple media servers, so I might need multiple systems and multiple &lt;br&gt;&amp;gt; JS objects to handle them.  My JS is building the multiple instances &lt;br&gt;&amp;gt; with no problem, but now that I&amp;#39;m to the point of connecting the &lt;br&gt;&amp;gt; buttons on the server&amp;#39;s gui page to the JS objects that talk to the &lt;br&gt;&amp;gt; system, I realize that I have no idea how to access a given object &lt;br&gt;&amp;gt; from a button and call a function on it.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; One method (which I don&amp;#39;t like) is to watch joins and route them to &lt;br&gt;&amp;gt; the currently-selected system.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Another way is to route different ranges of joins to different systems &lt;br&gt;&amp;gt; (I like this even less, being a big proponent of reusing things.)&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Either way, I&amp;#39;m assuming that I have to do this routing to the &lt;br&gt;&amp;gt; appropriate object outside of my objects.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; My main questions:&lt;br&gt;&amp;gt; Please tell me there is a better way that gets me out of &lt;br&gt;&amp;gt; join-number-ville.  I&amp;#39;d like to say command(&amp;quot;Play&amp;quot;) on a button press &lt;br&gt;&amp;gt; and have that button talk to the server it&amp;#39;s supposed to.  Do I need &lt;br&gt;&amp;gt; to have a central catcher of commands that says &amp;quot;He pressed play, and &lt;br&gt;&amp;gt; he&amp;#39;s on media server 4.  Send the command to that one&amp;quot;?  That might &lt;br&gt;&amp;gt; not be too messy.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Is there a way to attach a JS object to a subpage or page?  It&amp;#39;s &lt;br&gt;&amp;gt; buttons would refer to a certain instance.   (Venturing into Mac-Xcode &lt;br&gt;&amp;gt; land here again folks) Like a page built in Interface Builder has a &lt;br&gt;&amp;gt; controller object attached to it.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Thanks&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-7287197770532144723?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/7287197770532144723/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-how-to-multiple-instances-of-similar.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7287197770532144723'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/7287197770532144723'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-how-to-multiple-instances-of-similar.html' title='Re: How to - multiple instances of similar systems / objects'/><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-5361119154182778663</id><published>2012-01-28T15:22:00.000-08:00</published><updated>2012-01-28T15:23:01.772-08:00</updated><title type='text'>How to - multiple instances of similar systems / objects</title><content type='html'>Going to ramble a tad here:&lt;p&gt;I have a JS file designed to talk to a media server.  I could have &lt;br&gt;multiple media servers, so I might need multiple systems and multiple JS &lt;br&gt;objects to handle them.  My JS is building the multiple instances with &lt;br&gt;no problem, but now that I&amp;#39;m to the point of connecting the buttons on &lt;br&gt;the server&amp;#39;s gui page to the JS objects that talk to the system, I &lt;br&gt;realize that I have no idea how to access a given object from a button &lt;br&gt;and call a function on it.&lt;p&gt;One method (which I don&amp;#39;t like) is to watch joins and route them to the &lt;br&gt;currently-selected system.&lt;p&gt;Another way is to route different ranges of joins to different systems &lt;br&gt;(I like this even less, being a big proponent of reusing things.)&lt;p&gt;Either way, I&amp;#39;m assuming that I have to do this routing to the &lt;br&gt;appropriate object outside of my objects.&lt;p&gt;My main questions:&lt;br&gt;Please tell me there is a better way that gets me out of &lt;br&gt;join-number-ville.  I&amp;#39;d like to say command(&amp;quot;Play&amp;quot;) on a button press &lt;br&gt;and have that button talk to the server it&amp;#39;s supposed to.  Do I need to &lt;br&gt;have a central catcher of commands that says &amp;quot;He pressed play, and he&amp;#39;s &lt;br&gt;on media server 4.  Send the command to that one&amp;quot;?  That might not be &lt;br&gt;too messy.&lt;p&gt;Is there a way to attach a JS object to a subpage or page?  It&amp;#39;s buttons &lt;br&gt;would refer to a certain instance.   (Venturing into Mac-Xcode land here &lt;br&gt;again folks) Like a page built in Interface Builder has a controller &lt;br&gt;object attached to it.&lt;p&gt;Thanks&lt;p&gt;-- &lt;br&gt;Heath Volmer&lt;br&gt;Digital Domain Systems&lt;br&gt;303-517-9714&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-5361119154182778663?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/5361119154182778663/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/how-to-multiple-instances-of-similar.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/5361119154182778663'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/5361119154182778663'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/how-to-multiple-instances-of-similar.html' title='How to - multiple instances of similar systems / objects'/><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-6227978983994317318</id><published>2012-01-28T13:09:00.001-08:00</published><updated>2012-01-28T13:09:34.471-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;Google d&amp;aacute; adeus aos bot&amp;otilde;es f&amp;iacute;sicos&lt;/a&gt; &lt;/li&gt; &lt;li&gt; &lt;a href="#2"&gt;Humor: Twittando em 1991&lt;/a&gt; &lt;/li&gt; &lt;li&gt; &lt;a href="#3"&gt;Voc&amp;ecirc; j&amp;aacute; viu um beb&amp;ecirc;-rob&amp;ocirc;?&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/3MMz6adlD_I/google-da-adeus-aos-botoes-fisicos?utm_source=feedburner&amp;utm_medium=email"&gt;Google d&amp;aacute; adeus aos bot&amp;otilde;es f&amp;iacute;sicos&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; 28 Jan 2012 10:35 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/google-da-adeus-aos-botoes-fisicos/action-bar-2" rel="attachment wp-att-21795"&gt;&lt;img src="http://showmetech.com.br/wp-content/uploads/2012/01/action-bar-2.png" alt="" width="230" height="400" class="alignleft size-full wp-image-21795" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;O &lt;strong&gt;Google&lt;/strong&gt;, no &lt;em&gt;blog&lt;/em&gt; &lt;a href="http://android-developers.blogspot.com/2012/01/say-goodbye-to-menu-button.html" title="Android Developers" target="_blank"&gt;Android Developers&lt;/a&gt;, pede aos desenvolvedores de aplicativos para começar a migrar as funções do menu para a &lt;strong&gt;Action Bar&lt;/strong&gt;. Essa barra de ações não é um conceito novo, ela foi vista primeiramente no &lt;strong&gt;Honeycomb&lt;/strong&gt; (Android 3.0), porém como agora os novos &lt;em&gt;devices&lt;/em&gt; estão saindo da fábrica com &lt;strong&gt;Ice Cream Sandwich&lt;/strong&gt; (Android 4.0) essa mudança é inevitável. &lt;/p&gt; &lt;p&gt;&lt;a href="http://showmetech.com.br/google-da-adeus-aos-botoes-fisicos/action-bar" rel="attachment wp-att-21794"&gt;&lt;img src="http://showmetech.com.br/wp-content/uploads/2012/01/Action-Bar.png" alt="" width="400" height="49" class="alignleft size-full wp-image-21794" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;Uma preocupação dos desenvolvedores é o trabalho que esse recurso pode gerar no suporte às versões antigas, mas, segundo o &lt;em&gt;blog&lt;/em&gt;, eles podem continuar usando os botões físicos nas versões pré-honeycomb. &lt;/p&gt; &lt;p&gt;O uso da &lt;strong&gt;Action Bar&lt;/strong&gt; promete facilitar a experiência do usuário, principalmente com o &lt;strong&gt;Action Overflow&lt;/strong&gt;, um segundo menu com opções que os desenvolvedores julgam ser necessárias aos seus aplicativos, mas que não precisam estar no menu principal. &lt;/p&gt; &lt;p&gt;&lt;a href="http://showmetech.com.br/google-da-adeus-aos-botoes-fisicos/action-overflow" rel="attachment wp-att-21793"&gt;&lt;img src="http://showmetech.com.br/wp-content/uploads/2012/01/Action-Overflow.png" alt="" width="315" height="60" class="alignleft size-full wp-image-21793" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;Ações como essa, fazem parte da promessa de deixar o &lt;strong&gt;Android&lt;/strong&gt; cada vez mais padronizado, o que é bom para os usuários e desenvolvedores.&lt;/p&gt;  &lt;p&gt;&lt;a href="https://feedads.g.doubleclick.net/~a/AulG5wQfUn-MPvI6j5yinBvSngk/KGkw-Wmo34LbYd01TRtnA5oyVuY/0/pa"&gt;&lt;img src="https://feedads.g.doubleclick.net/~a/AulG5wQfUn-MPvI6j5yinBvSngk/KGkw-Wmo34LbYd01TRtnA5oyVuY/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/KGkw-Wmo34LbYd01TRtnA5oyVuY/1/pa"&gt;&lt;img src="https://feedads.g.doubleclick.net/~a/AulG5wQfUn-MPvI6j5yinBvSngk/KGkw-Wmo34LbYd01TRtnA5oyVuY/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=3MMz6adlD_I:zb6DM5p1QaU: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=3MMz6adlD_I:zb6DM5p1QaU: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/3MMz6adlD_I?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/c3ga6QnFuos/humor-twittando-em-1991?utm_source=feedburner&amp;utm_medium=email"&gt;Humor: Twittando em 1991&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; 27 Jan 2012 08:06 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/aD4oy.jpg"&gt;&lt;img class="aligncenter size-full wp-image-21771" title="aD4oy" src="http://showmetech.com.br/wp-content/uploads/2012/01/aD4oy.jpg" alt="" width="450" height="459" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;Via: &lt;a href="http://www.rodrigostoledo.com/2012/01/twitter-em-1991/?utm_source=feedburner&amp;amp;utm_medium=feed&amp;amp;utm_campaign=Feed%3A+rodrigostoledocom+%28rodrigostoledo.com%29"&gt;Rodrigostoledo&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;&lt;a href="https://feedads.g.doubleclick.net/~a/AulG5wQfUn-MPvI6j5yinBvSngk/nW-z9ulY4HeKyn-JHufch8L7JHI/0/pa"&gt;&lt;img src="https://feedads.g.doubleclick.net/~a/AulG5wQfUn-MPvI6j5yinBvSngk/nW-z9ulY4HeKyn-JHufch8L7JHI/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/nW-z9ulY4HeKyn-JHufch8L7JHI/1/pa"&gt;&lt;img src="https://feedads.g.doubleclick.net/~a/AulG5wQfUn-MPvI6j5yinBvSngk/nW-z9ulY4HeKyn-JHufch8L7JHI/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=c3ga6QnFuos:VSMSBDnulvE: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=c3ga6QnFuos:VSMSBDnulvE: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/c3ga6QnFuos?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/wVNBs0qPEtk/voce-ja-viu-um-bebe-robo?utm_source=feedburner&amp;utm_medium=email"&gt;Voc&amp;ecirc; j&amp;aacute; viu um beb&amp;ecirc;-rob&amp;ocirc;?&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; 27 Jan 2012 07:09 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;O robozinho abaixo foi criado pelo britânico &lt;strong&gt;Chris Clarke&lt;/strong&gt; para atender uma encomenda de uma novela norte-americana. Ele vem para resolver um problema muito comum em sets de filmagem: bebês de verdade podem chorar e não colaborar muito durante a gravação das cenas.&lt;/p&gt; &lt;p&gt;&lt;iframe src="http://www.youtube.com/embed/RbgzqFtcALA?feature=player_embedded" frameborder="0" width="640" height="360"&gt;&lt;/iframe&gt;&lt;/p&gt; &lt;p&gt;Embora os movimentos sejam muito convincentes, é estranho ver o pequeno robô sem uma &amp;#8220;pele&amp;#8221;, não é mesmo? Engenhoca digna da &lt;a href="http://pt.wikipedia.org/wiki/Cyberdyne_Systems"&gt;Cyberdyne Systems&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;Fonte: &lt;a href="http://www.geekologie.com/2012/01/creepy-animatronic-baby-made-for-soap-op.php"&gt;Geekologie&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;&lt;a href="https://feedads.g.doubleclick.net/~a/AulG5wQfUn-MPvI6j5yinBvSngk/DqyR1vUhI1VcpjSsAmPH-05YM68/0/pa"&gt;&lt;img src="https://feedads.g.doubleclick.net/~a/AulG5wQfUn-MPvI6j5yinBvSngk/DqyR1vUhI1VcpjSsAmPH-05YM68/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/DqyR1vUhI1VcpjSsAmPH-05YM68/1/pa"&gt;&lt;img src="https://feedads.g.doubleclick.net/~a/AulG5wQfUn-MPvI6j5yinBvSngk/DqyR1vUhI1VcpjSsAmPH-05YM68/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=wVNBs0qPEtk:AMryPwnqz5o: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=wVNBs0qPEtk:AMryPwnqz5o: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/wVNBs0qPEtk?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-6227978983994317318?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/6227978983994317318/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/showmetech-showmetechcombr_28.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/6227978983994317318'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/6227978983994317318'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/showmetech-showmetechcombr_28.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><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://img.youtube.com/vi/RbgzqFtcALA/default.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2789322492541150578.post-182347980027128932</id><published>2012-01-27T20:08:00.000-08:00</published><updated>2012-01-27T20:09:14.536-08:00</updated><title type='text'>Re: Itunes</title><content type='html'>Ok thank you Jarrod i hope so&lt;p&gt;On 28 Jan., 04:51, 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; Its in the works. No release timeframe just yet.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Jarrod&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; On 28/01/12 2:17 PM, &lt;a href="mailto:marco.marino1...@googlemail.com"&gt;marco.marino1...@googlemail.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; &amp;gt; Hi has anyone a itunes plugin ? Or where can i get it ?&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;gt; Regards&lt;br&gt;&amp;gt; &amp;gt; Saya- Zitierten Text ausblenden -&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; - Zitierten Text anzeigen -&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-182347980027128932?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/182347980027128932/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-itunes_27.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/182347980027128932'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/182347980027128932'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-itunes_27.html' title='Re: Itunes'/><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-8160451513621755087</id><published>2012-01-27T19:51:00.001-08:00</published><updated>2012-01-27T19:51:47.370-08:00</updated><title type='text'>Re: Itunes</title><content type='html'>Its in the works. No release timeframe just yet.&lt;p&gt;Jarrod&lt;p&gt;On 28/01/12 2:17 PM, &lt;a href="mailto:marco.marino1981@googlemail.com"&gt;marco.marino1981@googlemail.com&lt;/a&gt; wrote:&lt;br&gt;&amp;gt; Hi has anyone a itunes plugin ? Or where can i get it ?&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Regards&lt;br&gt;&amp;gt; Saya&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-8160451513621755087?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/8160451513621755087/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-itunes.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/8160451513621755087'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/8160451513621755087'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-itunes.html' title='Re: Itunes'/><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-544604776983110293</id><published>2012-01-27T19:17:00.000-08:00</published><updated>2012-01-27T19:18:06.153-08:00</updated><title type='text'>Itunes</title><content type='html'>Hi has anyone a itunes plugin ? Or where can i get it ?&lt;p&gt;Regards&lt;br&gt;Saya&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-544604776983110293?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/544604776983110293/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/itunes.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/544604776983110293'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/544604776983110293'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/itunes.html' title='Itunes'/><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-3539562627160671718</id><published>2012-01-27T14:33:00.001-08:00</published><updated>2012-01-27T14:33:45.107-08:00</updated><title type='text'>Re: Macros and timing reliability</title><content type='html'>Of course discrete vol is the real answer, but I have not heard of &lt;br&gt;anyone having issues with macro timing.&lt;br&gt;1 second should be plenty of delay, but then again IR is very hardware &lt;br&gt;dependent. I don&amp;#39;t think its a network issue.&lt;p&gt;Waiting 10-20 seconds for vol adjustment sounds like a very bad &lt;br&gt;situation. Why not use an amp that has RS232 control?&lt;p&gt;Jarrod&lt;p&gt;On 28/01/12 1:29 AM, MarkusKl wrote:&lt;br&gt;&amp;gt; Hi,&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; I have a few questions regarding macros, command timings within macros&lt;br&gt;&amp;gt; etc.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; We have a couple of projects done now each of them having the same&lt;br&gt;&amp;gt; hardware amps controlled by global caches IP bus devices via IR&lt;br&gt;&amp;gt; commands.&lt;br&gt;&amp;gt; I do know about IR code problematics etc. but I can for sure say that&lt;br&gt;&amp;gt; all codes are working fine because we developed them on our own with&lt;br&gt;&amp;gt; the manufacturer.&lt;br&gt;&amp;gt; To clarify the situation a little bit more we are having audio scenes&lt;br&gt;&amp;gt; within a multiroom environment and we are controlling the amps and the&lt;br&gt;&amp;gt; audio zones by setting the volume levels on the amps differently (via&lt;br&gt;&amp;gt; the mentioned IR/GC combos).&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Now as you might expect the macros are quite extensive because each of&lt;br&gt;&amp;gt; the amps have 102 (!!) volume steps.&lt;br&gt;&amp;gt; Besides this there are also a few other things to do in the macros.&lt;br&gt;&amp;gt; Of course, not always 102 steps/commands are send per amp, we have&lt;br&gt;&amp;gt; some improvements and used some tricks so we are talking about 10-20&lt;br&gt;&amp;gt; steps per amp.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Knowing that each vol up/vol down command needs ~500ms for execution&lt;br&gt;&amp;gt; within the amp we have a delay of 1000ms in our macros (which are real&lt;br&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; I am wondering if I can rely on the 1000ms within the macro&lt;br&gt;&amp;gt; execution ?&lt;br&gt;&amp;gt; And also, is it ensured that the macros are executed serially (which&lt;br&gt;&amp;gt; is what I am expecting, of course)?&lt;br&gt;&amp;gt; Would it make sense to program the macros within JS ? Would that bring&lt;br&gt;&amp;gt; any benefits/more reliability? Also, how to code the delays and ensure&lt;br&gt;&amp;gt; the serial execution ? (The UI is blocked for the user in any case to&lt;br&gt;&amp;gt; ensure correct execution and finalization of the macros)!&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; I am asking this because even when I further delay the commands for&lt;br&gt;&amp;gt; vol up/down sometimes (I would say in 1-3% of the cases) not all the&lt;br&gt;&amp;gt; commands are received by the amps which results in differences in the&lt;br&gt;&amp;gt; audio scenes...it&amp;#39;s not something the user probably hears, but I can&lt;br&gt;&amp;gt; track it in our devlopement/debuging software of the amps...and&lt;br&gt;&amp;gt; because it&amp;#39;s a question of professionality i would like to have this&lt;br&gt;&amp;gt; 100% solved !&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; It could be that the network has some delay in theory, although it is&lt;br&gt;&amp;gt; a multimedia network used and installed ONLY for audio (!), no other&lt;br&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; I am just curious what other guys/installers say about this behavior,&lt;br&gt;&amp;gt; and also would appreciate any idea to solve the issue.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; I know that the best way is to have discrete volume level commands&lt;br&gt;&amp;gt; which in fact is something we are working at with the manufacturer but&lt;br&gt;&amp;gt; it&amp;#39;s not guaranteed that we will get them...&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; So, any ideas ?&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-3539562627160671718?l=produceideas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://produceideas.blogspot.com/feeds/3539562627160671718/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-macros-and-timing-reliability.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/3539562627160671718'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2789322492541150578/posts/default/3539562627160671718'/><link rel='alternate' type='text/html' href='http://produceideas.blogspot.com/2012/01/re-macros-and-timing-reliability.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-557612745361038145</id><published>2012-01-27T13:35:00.000-08:00</published><updated>2012-01-27T13:36:05.907-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/2XJcPL5BBDY/google-maps-conta-agora-com-alerta-de-situacoes-de-emergencia?utm_source=feedburner&amp;utm_medium=email"&gt;Google Maps conta agora com alerta de situa&amp;ccedil;&amp;otilde;es de emerg&amp;ecirc;ncia&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; 27 Jan 2012 04:11 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/google-maps-conta-agora-com-alerta-de-situacoes-de-emergencia/public-alerts" rel="attachment wp-att-21724"&gt;&lt;img class="aligncenter size-large wp-image-21724" src="http://showmetech.com.br/wp-content/uploads/2012/01/Public-Alerts-610x381.jpg" alt="" width="610" height="381" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;O &lt;strong&gt;Google&lt;/strong&gt; integrou mais um serviço ao&lt;strong&gt; Google Maps&lt;/strong&gt;: O&lt;strong&gt; &lt;a href="http://www.google.org/publicalerts"&gt;Google Publics Alerts&lt;/a&gt;&lt;/strong&gt;. Ainda &lt;strong&gt;em fase beta&lt;/strong&gt; e &lt;strong&gt;indisponível para nosso idioma&lt;/strong&gt;, o serviço conta com&lt;strong&gt; informações detalhadas sobre situações emergenciais pelo mundo&lt;/strong&gt;, causadas &lt;strong&gt;por fenômenos naturais&lt;/strong&gt;.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Inundações&lt;/strong&gt;, &lt;strong&gt;terremotos&lt;/strong&gt;, &lt;strong&gt;tempestades de neve&lt;/strong&gt;, &lt;strong&gt;tornados&lt;/strong&gt;, dentre outros fenômenos passam a ser catalogados e registrados no serviço, informando gravidade, se há centros de ajuda por perto e o que providências estão sendo tomadas&lt;strong&gt;.&lt;/strong&gt; Há também a possibilidade de pesquisarmos, através de palavras-chave ou nos pontos de alerta no mapa, todo tipo de informação.&lt;/p&gt; &lt;p&gt;Para conferir de perto, acesse a página do &lt;strong&gt;Google Public Alerts&lt;/strong&gt;, clicando &lt;a href="http://www.google.org/publicalerts"&gt;aqui&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;&lt;a href="https://feedads.g.doubleclick.net/~a/AulG5wQfUn-MPvI6j5yinBvSngk/yhiPfeaAsfHTRQvg4w5cNPHE3Ow/0/pa"&gt;&lt;img src="https://feedads.g.doubleclick.net/~a/AulG5wQfUn-MPvI6j5yinBvSngk/yhiPfeaAsfHTRQvg4w5cNPHE3Ow/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/yhiPfeaAsfHTRQvg4w5cNPHE3Ow/1/pa"&gt;&lt;img src="https://feedads.g.doubleclick.net/~a/AulG5wQfUn-MPvI6j5yinBvSngk/yhiPfeaAsfHTRQvg4w5cNPHE3Ow/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=2XJcPL5BBDY:AdzurLfwmfo: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=2XJcPL5BBDY:AdzurLfwmfo: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/2XJcPL5BBDY?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/L1UHH62TeMA/nokia-n9-review?utm_source=feedburner&amp;utm_medium=email"&gt;Nokia N9 &amp;ndash; Review&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; 26 Jan 2012 05:20 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/2011/06/nokia-n9c.jpg"&gt;&lt;img class="aligncenter size-large wp-image-15301" title="nokia-n9c" src="http://showmetech.com.br/wp-content/uploads/2011/06/nokia-n9c-610x343.jpg" alt="" width="610" height="343" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;Sempre que se fala em &lt;strong&gt;Nokia,&lt;/strong&gt; bate uma saudade daquele tempo em que a empresa finlandesa tinha os celulares mais legais, ainda que o melhor de tudo fosse poder jogar Snake. Me vem à cabeça também o tempo em que o &lt;strong&gt;N95&lt;/strong&gt; era &lt;em&gt;estado-da-arte&lt;/em&gt; em termos de smartphone: câmera de 5MP, slider para cima e para baixo &amp;#8211; evidenciando o teclado ou os comandos de música, quando não era obrigatório haver&lt;em&gt; touchscreen&lt;/em&gt; -, câmera frontal, conectividade 3G, wi-fi, bluetooth&amp;#8230;&lt;/p&gt; &lt;p&gt;Porém, houve uma grande reviravolta no mercado de smartphones, novos aparelhos e sistemas operacionais surgiram, e a &lt;strong&gt;Nokia&lt;/strong&gt; ficou para trás com o &lt;strong&gt;Symbian&lt;/strong&gt;. Mas, com o excelente &lt;strong&gt;N9&lt;/strong&gt;, acredito que ela mostra que está ressurgindo como peça importante neste mercado.&lt;/p&gt; &lt;p&gt;Sendo assim, nos próximos parágrafos, vamos falar um pouco sobre o &lt;strong&gt;Nokia N9:&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;O aparelho&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;O &lt;strong&gt;Nokia N9&lt;/strong&gt; é um aparelho muito elegante e discreto. O corpo, formado em peça única de policarbonato de acabamento fosco, não possui vincos ou ressaltos. O vidro &lt;strong&gt;Gorilla Glass&lt;/strong&gt; possui curvatura nas suas bordas acompanhando o desenho do corpo, e protege uma &lt;strong&gt;tela AMOLED&lt;/strong&gt; de &lt;strong&gt;3,9 polegadas&lt;/strong&gt; (resolução de 854 x 480 pixels) com 16,7 milhões de cores, além da câmera frontal, curiosamente posicionada no canto inferior direito do aparelho.&lt;/p&gt; &lt;p&gt;&lt;a href="http://showmetech.com.br/nokia-n9-review/n9_frente1" rel="attachment wp-att-21555"&gt;&lt;img class="aligncenter size-full wp-image-21555" title="N9_frente1" src="http://showmetech.com.br/wp-content/uploads/2012/01/N9_frente1.jpg" alt="" width="562" height="1000" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;Na lateral direita, há três botões: os controles de volume e o botão de ligar/bloqueio/desbloqueio do aparelho. Mas o aparelho é tão bacana que dispensaria o uso deste botão pro desbloqueio: basta dois leves toques na tela e ela liga, pronta para ser desbloqueada.&lt;/p&gt; &lt;p&gt;&lt;a href="http://showmetech.com.br/nokia-n9-review/n9_costas1" rel="attachment wp-att-21554"&gt;&lt;img class="aligncenter size-full wp-image-21554" title="N9_costas1" src="http://showmetech.com.br/wp-content/uploads/2012/01/N9_costas1.png" alt="" width="562" height="1000" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;Na parte traseira, o aparelho apresenta uma curvatura suave (semelhante àquela encontrada nos iPod Touch de 3ª geração), tendo ao centro uma chapinha cromada contendo a câmera de 8 megapixels com lentes Carl Zeiss &amp;#8211; padrão na linha N da Nokia &amp;#8211; e ao lado o flash de LED duplo.&lt;/p&gt; &lt;p&gt;Na parte superior, o conector 3,5mm para fones de ouvido e microfone e duas portinhas: uma para o conector microUSB &amp;#8211; usado para recarga da bateria, conexão com o PC e leitura de pen-drives &amp;#8211; e outra com uma gavetinha para o microSIM. Um detalhe digno de nota: fui até a minha operadora para substituir o SIM por um microSIM, e eles não o substituem; apenas usam uma ferramenta que corta o SIM padrão pro formato microSIM. E não foi só na minha operadora que vi isto acontecer&amp;#8230;&lt;/p&gt; &lt;p&gt;&lt;a href="http://showmetech.com.br/nokia-n9-review/n9_topo" rel="attachment wp-att-21557"&gt;&lt;img class="aligncenter size-full wp-image-21557" title="N9_topo" src="http://showmetech.com.br/wp-content/uploads/2012/01/N9_topo.png" alt="" width="562" height="1000" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;Na parte inferior, a saída do alto-falante, que é apenas uma furação em formato oblongo na carcaça do aparelho.&lt;/p&gt; &lt;p&gt;Internamente, o aparelho apresenta um processador single-core Cortex A8 de 1 GHz, e uma GPU PowerVR SGX530. Ambos estão ligados a 1 GB de memória RAM, tornando um aparelho bem robusto em termos de recursos para aplicativos. De fato, como visto durante nossos testes, não houve engasgos ou transições travadas. Em termos de conectividade sem fio, temos 3G UMTS/HSPA pentaband, 2G GSM/EDGE quadband, Wi-Fi a/b/g/n, Bluetooth 2.1, GPS e o recém chegado NFC. Não há, contudo, receptor de FM, comum nos aparelhos Nokia, ou mesmo o transmissor FM, já visto no N97 e N8. A bateria de 1.450mAh mantém o padrão de autonomia dos aparelhos da Nokia, permitindo em casos de pouco uso ficar até 3 dias sem recarga.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;O sistema operacional&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;O Nokia N9 utiliza-se do MeeGo 1.2 Harmattan, a última versão do sistema operacional móvel baseado em Linux, fruto da fusão dos projetos Moblin (Intel) e Maemo (Nokia). Diferentemente do que outros sites falam, não considero o MeeGo um sistema &amp;#8220;zumbi&amp;#8221; ou&amp;#8221;natimorto&amp;#8221;. Antes de mais nada, o MeeGo é um sistema operacional móvel, com vistas para aplicação não somente em smartphones, mas também em tablets, netbooks, sistemas de navegação automotiva, smart TVs e outros sistemas embarcados, ou seja, não é exclusivo da Nokia.&lt;/p&gt; &lt;p&gt;O MeeGo é mais prático de usar que o Android e o iOS. Não há múltiplas telas, app drawers, launchers, widgets, planos de fundo, e todos os frufrus que costumam entupir a tela dos aparelhos. Há apenas três telas: Eventos, Aplicativos em execução, e Menu de aplicativos. Tudo num fundo preto, com um design simples e lindo de se ver, com fontes e ícones elegantes. Para mudar de tela, basta arrastar para os lados. Simples, sem botões. Se você abriu um aplicativo e quer fazer outra coisa, só arrastar para o lado até a tela de Menu. Se quer voltar, arraste para o lado até a tela de Aplicativos em execução, e selecione o aplicativo. Quer fechar o aplicativo? Arraste da borda superior para baixo (como se fosse abrir a barra de notificações de Android e iOS) e o aplicativo fecha. Com tudo isso, o MeeGo mostra uma de suas virtudes: não há necessidade de botões de comando. Isto inclui o desbloqueio da tela: dois toques suaves na tela acordam o aparelho para desbloqueio. Fantástico.&lt;/p&gt; &lt;p&gt;&lt;a href="http://showmetech.com.br/nokia-n9-review/telas" rel="attachment wp-att-21738"&gt;&lt;img class="aligncenter size-full wp-image-21738" title="Telas" src="http://showmetech.com.br/wp-content/uploads/2012/01/Telas.jpg" alt="" width="626" height="417" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;No Menu de Aplicativos, ícones bonitos e bem organizados, com fundo preto na tela. Recursos conhecidos de outros sistemas: segurando qualquer ícone, a tela entra em modo de edição, e você pode reorganizar os ícones de acordo com seu gosto, e também desinstalar aplicativos (ainda bem, quem usa Symbian sabe o sufoco que é desinstalar qualquer coisa) clicando no &amp;#8220;x&amp;#8221; que aparece.&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;Arraste a tela pra esquerda e você verá os aplicativos abertos. Não aparecerão ícones dos aplicativos, mas sim miniaturas dos aplicativos em execução. Se você selecionar algum, ele abre; se segurar, habilita a função para fechar os aplicativos individualmente ou todos de uma vez.&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;Arraste mais uma vez a tela, e chegam os Eventos. Aqui o MeeGo mostra o nível de integração das redes sociais no sistema: uma vez que você adicione suas contas do Twitter, Facebook e E-mail, ele mostra as atualizações de todas as redes em tempo real. Se você clicar em alguma, ele abre o aplicativo correspondente.  E claro, ele também mostra informações sobre data, hora e clima.&lt;/p&gt; &lt;p&gt;A ausência de botões de comando (como o Home do iOS, e todos os do Android) é uma quebra de paradigma, e o recurso Swipe os substitui com primazia. Me peguei algumas vezes depois de ter devolvido o aparelho tentando arrastar as telas do meu Android.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Câmera&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;Apesar do downgrade da câmera em relação ao N8, o conjunto óptico formado pelas lentes Carl Zeiss se sobressai frente à concorrência: fotos nítidas, com pouco ruído ou distorção, mesmo em condições adversas de iluminação. Abaixo vemos alguns exemplos de fotos, tiradas em condições de iluminação não muito favoráveis:&lt;/p&gt; &lt;p style="text-align: center;"&gt;&lt;a href="http://showmetech.com.br/nokia-n9-review/fotoscuro" rel="attachment wp-att-21744"&gt;&lt;img class="aligncenter size-full wp-image-21744" title="Fotoscuro" src="http://showmetech.com.br/wp-content/uploads/2012/01/Fotoscuro.png" alt="" width="500" height="500" /&gt;&lt;/a&gt;&lt;br /&gt; Foto tirada sem flash em ambiente interno com iluminação mediana&lt;/p&gt; &lt;p style="text-align: center;"&gt;&lt;a href="http://showmetech.com.br/nokia-n9-review/fotoexterno" rel="attachment wp-att-21741"&gt;&lt;img class="aligncenter size-full wp-image-21741" title="fotoexterno" src="http://showmetech.com.br/wp-content/uploads/2012/01/fotoexterno.png" alt="" width="500" height="500" /&gt;&lt;/a&gt;&lt;br /&gt; Foto tirada em ambiente externo em dia nublado&lt;/p&gt; &lt;p style="text-align: cente
