[iPhone-AppDev-Auditors] Re: Assignment 3

Saturday, December 31, 2011
FYI:I am working the assignment 3. And I am using following logic to
determine how to iterate though. Also I wrote to helper ViewToGraph,
GraphToView.
CGFloat pixel = 1 / self.programView.contentScaleFactor;
for(CGFloat xGraph = self.programView.bounds.origin.x; xGraph <
self.programView.bounds.size.width; xGraph+=pixel)
{

On Jan 1, 7:25 am, James Massara <ja...@11thdimension.com> wrote:
> Hi Jonathan,
>
> I'm still a bit confused. :)  I'm iterating over the width of my viewing space (rect.size.width).  I calculate x, doing the conversion based on origin and scale, and then use that to determine y.  I then convert those values back to rect's coordinate space.  Assuming I understand correctly, I would then do this?
>
>         if (!i) CGContextMoveToPoint(context, x, y);
>         else {
>             if (self.contentScaleFactor > 1) CGContextAddLineToPoint(context, x-0.5f, y);
>             CGContextAddLineToPoint(context, x, y);
>         }
>
> Thanks for your help!
> James
>
> On Dec 31, 2011, at 2:07 PM, jonathan.nyc wrote:
>
>
>
>
>
>
>
> > James, when you're writing for retina display the dimensions of the
> > views are the same as before.  The maximum height is still 480.  Max
> > width is still 320.
>
> > The difference is in precision.  If you were using a number of points
> > to define a section of a graph, in retina display you should use twice
> > as many.
>
> > For example,  you're starting out with (0, 25) and (1, 35)
>
> > In retina display, you will still use those points, but retina can
> > also use an in-between value such as (0.5, 32) so the device can
> > display a more refined curve.  Shouldn't take a lot of code
> > adjustments to do this.
>
> > Jonathan
>
> > On Dec 31, 11:46 am, James <iphone...@11thdimension.com> wrote:
> >> So I finished up assignment 3 with the exception of implementing
> >> contentScaleFactor.  I'm struggling to figure out how to implement its
> >> use in my GraphView's drawRect:.  Does anyone have any pointers on how
> >> this works when drawing Points (or dots) across the X axis?
>
> >> Thanks,
> >> James
>
> > --
> > You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.
> > To post to this group, send email to iphone-appdev-auditors@googlegroups.com.
> > To unsubscribe from this group, send email to iphone-appdev-auditors+unsubscribe@googlegroups.com.
> > For more options, visit this group athttp://groups.google.com/group/iphone-appdev-auditors?hl=en.

--
You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.
To post to this group, send email to iphone-appdev-auditors@googlegroups.com.
To unsubscribe from this group, send email to iphone-appdev-auditors+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/iphone-appdev-auditors?hl=en.

[Pi] Re: New iPhone App: My Lightup

Congratulations!
Happy New Year,
Dierk

On Dec 31, 12:37 pm, ali husain <webappg...@gmail.com> wrote:
> Hey Guys.... I got my app approved like 2 days ago. Its picking up speed in
> mutiple countries. Should be a lot of fun tonight.
>
> The concept is you compete with anonymous check in at the country and city
> level for most NYE spirit.
>
> Please help spread the word and of course the reviews are appreciated.
>
> Link to PR:http://www.prlog.org/11760954-scottsdale-company-creates-smartphone-a...
>
> Link to App:http://itunes.apple.com/us/app/mylightup/id491256957?mt=8
>
> Happy New Year. Lets make sure the US wins this one!
>
> --
> -------------------------------------------------------
> Ali Abid Husain
> .NET Programmer

--
You received this message because you are subscribed to the Google Groups "Phoenix iOS Developer Group" group.
To post to this group, send email to phx-ios-developer-group@googlegroups.com.
To unsubscribe from this group, send email to phx-ios-developer-group+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/phx-ios-developer-group?hl=en.

[iPhone-AppDev-Auditors] Re: Assignment 3

The CGFloat values can have a high level of precision of course. On
an old device, an algorithm calculates how to display an image, which
can be highly-detailed, using a 320x480 grid.

With retina display it's the same process, except the grid is 640x960,
allowing for less reduction in resolution.

Writing to a point at a fractional value on an old device is wasteful,
since it will be interpolated out of existence.

But with retina display the same step can result in a superior
display, which is why it's part of the assignment.

On Dec 31, 8:16 pm, Duane Bender <duane.ben...@gmail.com> wrote:
> I haven't gotten that far yet on Assignment 3, but I have given it some
> thought, and I really don't think I understand what difference it makes. I
> mean, you could use ContentScaleFactor to calculate Y values for more X
> values, but as far as I can find, Core Graphics only draws to points, not
> to pixels.
>
> Duane

--
You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.
To post to this group, send email to iphone-appdev-auditors@googlegroups.com.
To unsubscribe from this group, send email to iphone-appdev-auditors+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/iphone-appdev-auditors?hl=en.

Re: KNX

I send to you my project which modified from KNX plugin example GUI.
It work perfect with On command but Off command long time delay. In bus
monitor of ETS I see many (not stable) command OFF sended with only one
time press Off button.
On Sat, 31 Dec 2011 21:33:51 +0700, Michael <wischenhofen@t-online.de>
wrote:

> How much is the KNX bus traffic? You can send me your project.
> Regards Michael
>


--
VS Alec Smarthome

--
You received this message because you are subscribed to the Google Groups "CommandFusion" group.
To post to this group, send email to commandfusion@googlegroups.com.
To unsubscribe from this group, send email to commandfusion+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/commandfusion?hl=en.

[iPhone-AppDev-Auditors] Re: Assignment 3

I haven't gotten that far yet on Assignment 3, but I have given it some thought, and I really don't think I understand what difference it makes. I mean, you could use ContentScaleFactor to calculate Y values for more X values, but as far as I can find, Core Graphics only draws to points, not to pixels.

Duane

--
You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.
To view this discussion on the web visit https://groups.google.com/d/msg/iphone-appdev-auditors/-/84dhCc2o07EJ.
To post to this group, send email to iphone-appdev-auditors@googlegroups.com.
To unsubscribe from this group, send email to iphone-appdev-auditors+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/iphone-appdev-auditors?hl=en.

[iPhone-AppDev-Auditors] Re: Assignment 3

James, there are some problems with your code.

You've got two "add line" commands. Your code will be simpler if you
use a single command for every line you add.
The condition tests for the scale factor being greater than 1 &
assumes its value is 2 in that case. You'll have to fix your code if
Apple releases a
screen with an even better resolution someday.
You've coded a single value of y for two different x values. That's
incorrect, of course.

I was able to accommodate retina display with minor revisions to two
lines of code. So look for something very simple to accomplish
this.


On Dec 31, 6:25 pm, James Massara <ja...@11thdimension.com> wrote:
> Hi Jonathan,
>
> I'm still a bit confused. :)  I'm iterating over the width of my viewing space (rect.size.width).  I calculate x, doing the conversion based on origin and scale, and then use that to determine y.  I then convert those values back to rect's coordinate space.  Assuming I understand correctly, I would then do this?
>
>         if (!i) CGContextMoveToPoint(context, x, y);
>         else {
>             if (self.contentScaleFactor > 1) CGContextAddLineToPoint(context, x-0.5f, y);
>             CGContextAddLineToPoint(context, x, y);
>         }
>
> Thanks for your help!
> James
>
> On Dec 31, 2011, at 2:07 PM, jonathan.nyc wrote:
>
>
>
>
>
>
>
> > James, when you're writing for retina display the dimensions of the
> > views are the same as before.  The maximum height is still 480.  Max
> > width is still 320.
>
> > The difference is in precision.  If you were using a number of points
> > to define a section of a graph, in retina display you should use twice
> > as many.
>
> > For example,  you're starting out with (0, 25) and (1, 35)
>
> > In retina display, you will still use those points, but retina can
> > also use an in-between value such as (0.5, 32) so the device can
> > display a more refined curve.  Shouldn't take a lot of code
> > adjustments to do this.
>
> > Jonathan
>
> > On Dec 31, 11:46 am, James <iphone...@11thdimension.com> wrote:
> >> So I finished up assignment 3 with the exception of implementing
> >> contentScaleFactor.  I'm struggling to figure out how to implement its
> >> use in my GraphView's drawRect:.  Does anyone have any pointers on how
> >> this works when drawing Points (or dots) across the X axis?
>
> >> Thanks,
> >> James
>
> > --
> > You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.
> > To post to this group, send email to iphone-appdev-auditors@googlegroups.com.
> > To unsubscribe from this group, send email to iphone-appdev-auditors+unsubscribe@googlegroups.com.
> > For more options, visit this group athttp://groups.google.com/group/iphone-appdev-auditors?hl=en.

--
You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.
To post to this group, send email to iphone-appdev-auditors@googlegroups.com.
To unsubscribe from this group, send email to iphone-appdev-auditors+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/iphone-appdev-auditors?hl=en.

Re: [iPhone-AppDev-Auditors] Assignment 3

Hi Jonathan,

I'm still a bit confused. :) I'm iterating over the width of my viewing space (rect.size.width). I calculate x, doing the conversion based on origin and scale, and then use that to determine y. I then convert those values back to rect's coordinate space. Assuming I understand correctly, I would then do this?

if (!i) CGContextMoveToPoint(context, x, y);
else {
if (self.contentScaleFactor > 1) CGContextAddLineToPoint(context, x-0.5f, y);
CGContextAddLineToPoint(context, x, y);
}

Thanks for your help!
James

On Dec 31, 2011, at 2:07 PM, jonathan.nyc wrote:

> James, when you're writing for retina display the dimensions of the
> views are the same as before. The maximum height is still 480. Max
> width is still 320.
>
> The difference is in precision. If you were using a number of points
> to define a section of a graph, in retina display you should use twice
> as many.
>
> For example, you're starting out with (0, 25) and (1, 35)
>
> In retina display, you will still use those points, but retina can
> also use an in-between value such as (0.5, 32) so the device can
> display a more refined curve. Shouldn't take a lot of code
> adjustments to do this.
>
> Jonathan
>
> On Dec 31, 11:46 am, James <iphone...@11thdimension.com> wrote:
>> So I finished up assignment 3 with the exception of implementing
>> contentScaleFactor. I'm struggling to figure out how to implement its
>> use in my GraphView's drawRect:. Does anyone have any pointers on how
>> this works when drawing Points (or dots) across the X axis?
>>
>> Thanks,
>> James
>
> --
> You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.
> To post to this group, send email to iphone-appdev-auditors@googlegroups.com.
> To unsubscribe from this group, send email to iphone-appdev-auditors+unsubscribe@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/iphone-appdev-auditors?hl=en.
>

--
You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.
To post to this group, send email to iphone-appdev-auditors@googlegroups.com.
To unsubscribe from this group, send email to iphone-appdev-auditors+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/iphone-appdev-auditors?hl=en.

Simple Blogger Tutorials

Simple Blogger Tutorials

Link to Simple Blogger Tutorials

Wish You Happy New Year - 2012

Posted: 31 Dec 2011 09:10 AM PST


I wish you all a Happy New Year...

Google Doodle 2012
Google Doodle for 2012!

So, what will be your New Year blogging Resolutions?

[iPhone-AppDev-Auditors] Re: Assignment 3

James, when you're writing for retina display the dimensions of the
views are the same as before. The maximum height is still 480. Max
width is still 320.

The difference is in precision. If you were using a number of points
to define a section of a graph, in retina display you should use twice
as many.

For example, you're starting out with (0, 25) and (1, 35)

In retina display, you will still use those points, but retina can
also use an in-between value such as (0.5, 32) so the device can
display a more refined curve. Shouldn't take a lot of code
adjustments to do this.

Jonathan

On Dec 31, 11:46 am, James <iphone...@11thdimension.com> wrote:
> So I finished up assignment 3 with the exception of implementing
> contentScaleFactor.  I'm struggling to figure out how to implement its
> use in my GraphView's drawRect:.  Does anyone have any pointers on how
> this works when drawing Points (or dots) across the X axis?
>
> Thanks,
> James

--
You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.
To post to this group, send email to iphone-appdev-auditors@googlegroups.com.
To unsubscribe from this group, send email to iphone-appdev-auditors+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/iphone-appdev-auditors?hl=en.

[Showmetech] Showmetech.com.br

Showmetech.com.br

Link to Showmetech

Perspectiva: visão de outros planetas em relação à Terra

Posted: 31 Dec 2011 06:48 AM PST

O vídeo abaixo mostra como veríamos os outros planetas do Sistema Solar caso eles orbitassem a Terra na mesma distância em que hoje está a lua. Ainda que não seja preciso, dá uma idéia da imensidão de alguns dos corpos celestes que nos circundam. Veja abaixo:

Scale from Brad Goodspeed on Vimeo.


[Pi] New iPhone App: My Lightup

Hey Guys.... I got my app approved like 2 days ago. Its picking up speed in mutiple countries. Should be a lot of fun tonight. 

The concept is you compete with anonymous check in at the country and city level for most NYE spirit. 

Please help spread the word and of course the reviews are appreciated. 

Link to PR:


Happy New Year. Lets make sure the US wins this one!

--
-------------------------------------------------------
Ali Abid Husain
.NET Programmer

--
You received this message because you are subscribed to the Google Groups "Phoenix iOS Developer Group" group.
To post to this group, send email to phx-ios-developer-group@googlegroups.com.
To unsubscribe from this group, send email to phx-ios-developer-group+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/phx-ios-developer-group?hl=en.

Re: [iPhone-AppDev-Auditors] Assignment 3

you're way ahead of me.. i'm still in the middle of 2, considering 1 isn't even due until after jan 9!

On Dec 31, 2011, at 11:46 AM, James wrote:

So I finished up assignment 3 with the exception of implementing
contentScaleFactor.  I'm struggling to figure out how to implement its
use in my GraphView's drawRect:.  Does anyone have any pointers on how
this works when drawing Points (or dots) across the X axis?

Thanks,
James

--
You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.
To post to this group, send email to iphone-appdev-auditors@googlegroups.com.
To unsubscribe from this group, send email to iphone-appdev-auditors+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/iphone-appdev-auditors?hl=en.



[iPhone-AppDev-Auditors] Assignment 3

So I finished up assignment 3 with the exception of implementing
contentScaleFactor. I'm struggling to figure out how to implement its
use in my GraphView's drawRect:. Does anyone have any pointers on how
this works when drawing Points (or dots) across the X axis?

Thanks,
James

--
You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.
To post to this group, send email to iphone-appdev-auditors@googlegroups.com.
To unsubscribe from this group, send email to iphone-appdev-auditors+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/iphone-appdev-auditors?hl=en.

[Pi] Re: Pi… Under New Management...

Jiva

I was going to suggest such an action. Even if by chance someone is
using the theater, you will always be able to find another room. I
would be there to help out if I could but I have a previous
engagement.

Phil

On Dec 29, 10:16 am, Jiva DeVoe <jiva-li...@devoesquared.com> wrote:
> Phil:
>
> That would be awesome, thanks!  Yes, it's currently scheduled for January 4th.
>
> Truth be known, I'm of the mind that UAT is so loosely scheduled that even if we didn't hear from them, I was gonna just show up and see if they kick us out. ;)  I bet they wouldn't.
>
> On Dec 29, 2011, at 7:48 AM, philh wrote:
>
>
>
>
>
>
>
> > Jiva
>
> > I work at UAT and I can tell you the school is pretty much closed for
> > the vacation period. I will follow up early next week to determine the
> > status and I'll let you know what I find out. I take it the meeting is
> > scheduled for January 4th?
>
> > Phil Hartley
>
> > On Dec 28, 11:19 am, Jiva DeVoe <jiva-li...@devoesquared.com> wrote:
> >> Brad,
>
> >> I don't really know how you could so totally misinterpret everything I said in my email to mean "effectively ending Pi as we've known it." That is absolutely not what I said.
>
> >> In fact, when Matthew and I discussed it, we arrived at the conclusion that: 1. Pi has a higher attendance rate than CocoaHeads; 2. It has a bigger mailing list.  3. The UAT space is better than where CocoaHeads-Phoenix meets; and 4. All of the above means that if possible, change as little as we can about Pi.
>
> >> To be fair, CocoaHeads-Phoenix has it's share of value as well.  Not the least of which is the expertise of it's membership, which, although smaller than Pi, has much better technical expertise and so is a valuable, untapped asset in Phoenix.  By merging the groups, I hope to bring that expertise to Pi so that I am not the only one presenting.
>
> >> I'll respond to some of the points below specifically, although I'd like to take this off-list after this just to avoid misinformation being spread.  Thanks.
>
> >> That said, rest assured, Pi is not ending.  It's growing.
>
> >> Notes below...
>
> >> On Dec 28, 2011, at 12:17 AM, Brad O'Hearne wrote:
>
> >>> - What is the difference between the "merge" as described and just killing Pi? Pragmatically, the two sound the same. The aftermath doesn't seem to be preserving anything about Pi, but rather it seems to be one meeting with CocoaHeads content. Other than calling it  "Pi" (if even that survives), what makes the aftermath Pi?
>
> >> No, it doesn't sound like killing Pi at all.  Pi will still have mostly the same content and format, and if possible, will even continue the same meeting location and time.  The fact is, Pi has always had overlap with CocoaHeads, you just never attended the CocoaHeads meetings to find out. ;)  The biggest challenge that I have had, as a presenter to both groups, is coming up with different presentations each month since there's so much overlap and I didn't want to bore people at either group.
>
> >>> - If one of the problems of Pi is that it is a lot of work for one person, how does having one person run not only Pi, but CocoaHeads as well solves the problem of workload? That seems to compound the problem, if indeed there is supposed to be any kind of dual personality/identity to the group.
>
> >> Because, as the main presenter at both groups, currently I have 2 wednesdays a month eaten up, as well as the time required for preparing presentations for both meetings every month.  By combining the groups, it will be less of a strain on my time.  Additionally, by bringing the people with the greater expertise (and thus better presentations) to Pi from CocoaHeads, I'll (hopefully) get some help with presenting.  (Lookin at you Brad M, Brian, Joe, and friends... ;))  As it was headed in 2011, I was having to bow out of presenting at Pi altogether due to time commitments.  Now, I and others can commit to presenting at Pi-CocoaHeads since it will just be one meeting.  Yay!
>
> >>> - UAT was central and one of the easier parts of the equation while I lead -- perhaps that's changed. Sky Song seems pretty central too, but if meetings move farther north in Scottsdale, out of general central proximity in the Phoenix area into a corner of the map, I think there's a good chance of losing attendance.
>
> >> UAT is an awesome meeting space, when we can get it.  Sadly, there've been numerous cases where they have changed the space without telling us.  Additionally, UAT itself has *not* confirmed that we have the room for 2012.  This is a HUGE problem, considering our meeting is next week.  I'd love to get some confirmation from UAT that we have the room.  If you have a contact person there, I'd appreciate it if you'd forward me their info.
>
> >> Sky Song is virtually identical in terms of location.  The rooms there are excellent and well maintained, but there are some logistical problems in terms of quantity of seats and late night access.  It's better than nowhere though, which, if UAT falls through, is where we'll be.
>
> >> No one said anything about north Scottsdale.  At this time, only UAT and Sky Song are in the running for locations.
>
> >>> - Getting presenters is always a challenge. But one of the things Pi did have for a good stretch was a lot of new blood, volunteers, and good attendance. There were reasons for that -- and it is a lengthy topic I won't go into in full here. I kind of think the solution to getting volunteers is doing the things which encourage more people to present, not making drastic changes to (or ending outright) the group so that one person can carry the presenting schedule.
>
> >> Again, Pi is not ending, and there are no drastic changes planned that are not forced upon us by facilities (ie: UAT etc).  I would hope I won't be the only presenter going forward.  My plan is definitely to delegate and bring on more presenters as I said here and in my previous post.
>
> > --
> > You received this message because you are subscribed to the Google Groups "Phoenix iOS Developer Group" group.
> > To post to this group, send email to phx-ios-developer-group@googlegroups.com.
> > To unsubscribe from this group, send email to phx-ios-developer-group+unsubscribe@googlegroups.com.
> > For more options, visit this group athttp://groups.google.com/group/phx-ios-developer-group?hl=en.

--
You received this message because you are subscribed to the Google Groups "Phoenix iOS Developer Group" group.
To post to this group, send email to phx-ios-developer-group@googlegroups.com.
To unsubscribe from this group, send email to phx-ios-developer-group+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/phx-ios-developer-group?hl=en.

Re: KNX

How much is the KNX bus traffic? You can send me your project.
Regards Michael

--
You received this message because you are subscribed to the Google Groups "CommandFusion" group.
To view this discussion on the web visit https://groups.google.com/d/msg/commandfusion/-/B1H_ygTQNE0J.
To post to this group, send email to commandfusion@googlegroups.com.
To unsubscribe from this group, send email to commandfusion+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/commandfusion?hl=en.

Re: KNX

Hi
I do not know yet. But probably there is a version for other 3 Montate valid. If you want you can also have an unlimited version. But I have not thought about whether and if so how much it will cost.
Regards Michael

--
You received this message because you are subscribed to the Google Groups "CommandFusion" group.
To view this discussion on the web visit https://groups.google.com/d/msg/commandfusion/-/zRR7puFJszwJ.
To post to this group, send email to commandfusion@googlegroups.com.
To unsubscribe from this group, send email to commandfusion+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/commandfusion?hl=en.

Re: connecting to mobilepro app with systembuilder

Motech:

I sent you an email off-list with some screenshots and a simple
instruction list.

Matt

On Dec 30, 1:02 pm, motech <moseyl...@gmail.com> wrote:
> I'm new to CF.
> i created a little gui in CF and uploaded it to my phone.
> i got sub pages working and scrolling lists with simulated feedback.
>
> thats as far as I've gone so far.
>
> i program crestron systems in system builder and simpl.
>
> i would like to try and get CF working on a system builder project.
> is that possible using this method:https://github.com/CommandFusion/CrestronMobile
>
> im not really sure what to do where to put the joins and how to set up the
> system in CF.
>
> any help would be greatly appreciated.

--
You received this message because you are subscribed to the Google Groups "CommandFusion" group.
To post to this group, send email to commandfusion@googlegroups.com.
To unsubscribe from this group, send email to commandfusion+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/commandfusion?hl=en.

Re: XBMC

I take the 11.0 Eden . i have use the wrong Version . Thx a lot

On 28 Dez., 19:52, "Terence " <terryla...@gmail.com> wrote:
> It's working fine for me. Please make sure you're using the latest nightly
> build. If you're still having problems, please post the debugger's log.
>
>
>
>
>
>
>
> -----Original Message-----
> From: commandfusion@googlegroups.com [mailto:commandfusion@googlegroups.com]
>
> On Behalf Of marco.marino1...@googlemail.com
> Sent: 29 December 2011 02:37
> To: CommandFusion
> Subject: Re: XBMC
>
> Yes . Which Version of XBMC u use ?
>
> Greatz
>
> On 28 Dez., 19:33, "Terence " <terryla...@gmail.com> wrote:
> > Did you enter the licensing details for your device?
>
> > -----Original Message-----
> > From: commandfusion@googlegroups.com
> > [mailto:commandfusion@googlegroups.com]
>
> > On Behalf Of marco.marino1...@googlemail.com
> > Sent: 29 December 2011 02:23
> > To: CommandFusion
> > Subject: Re: XBMC
>
> > I'm online the Wireless Symbol is blue but i don't see any movie or
> > music or file . NOthing
>
> > regards THx
>
> > On 28 Dez., 18:14, "Waldy,,,, Liverpool Uk" <i...@phoneworkshop.co.uk>
> > wrote:
> > > I had a similar problem.. Click the settings button and check your
> > > details are there. If they are just go to edit them and press "done".
> > > This works for me
>
> > --
> > You received this message because you are subscribed to the Google
> > Groups "CommandFusion" group.
> > To post to this group, send email to commandfusion@googlegroups.com.
> > To unsubscribe from this group, send email to
> > commandfusion+unsubscribe@googlegroups.com.
> > For more options, visit this group
> athttp://groups.google.com/group/commandfusion?hl=en.
>
> --
> You received this message because you are subscribed to the Google Groups
> "CommandFusion" group.
> To post to this group, send email to commandfusion@googlegroups.com.
> To unsubscribe from this group, send email to
> commandfusion+unsubscribe@googlegroups.com.
> For more options, visit this group athttp://groups.google.com/group/commandfusion?hl=en.

--
You received this message because you are subscribed to the Google Groups "CommandFusion" group.
To post to this group, send email to commandfusion@googlegroups.com.
To unsubscribe from this group, send email to commandfusion+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/commandfusion?hl=en.

Re: KNX

Friday, December 30, 2011
I could control my light with CF on iPad but have long delay time : after press button about >5s. Anyone have experience about this problem??
Thanks, 

--
You received this message because you are subscribed to the Google Groups "CommandFusion" group.
To view this discussion on the web visit https://groups.google.com/d/msg/commandfusion/-/q3yYdUzbwPcJ.
To post to this group, send email to commandfusion@googlegroups.com.
To unsubscribe from this group, send email to commandfusion+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/commandfusion?hl=en.

Re: Image Downloaded from server

I suggest sending the image as plain binary data, perhaps with gzip
compression. Many web servers support it natively, and decompressing
it on an iPad would not take very long.

On Dec 30, 9:41 am, karthik damodara <damodara.kart...@gmail.com>
wrote:
> Ya i know JSON is text, we are getting the image as string Format,
> and we in our code converting the string into NSData and from NSData to
> image...
> By the way we are using 3G interenet connection...

--
You received this message because you are subscribed to the Google Groups "iPhone SDK Development" group.
To post to this group, send email to iphonesdkdevelopment@googlegroups.com.
To unsubscribe from this group, send email to iphonesdkdevelopment+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/iphonesdkdevelopment?hl=en.

connecting to mobilepro app with systembuilder

I'm new to CF.
i created a little gui in CF and uploaded it to my phone.
i got sub pages working and scrolling lists with simulated feedback.

thats as far as I've gone so far.

i program crestron systems in system builder and simpl.

i would like to try and get CF working on a system builder project.
is that possible using this method:
https://github.com/CommandFusion/CrestronMobile

im not really sure what to do where to put the joins and how to set up the system in CF.

any help would be greatly appreciated.

--
You received this message because you are subscribed to the Google Groups "CommandFusion" group.
To view this discussion on the web visit https://groups.google.com/d/msg/commandfusion/-/TjXiAM0EICkJ.
To post to this group, send email to commandfusion@googlegroups.com.
To unsubscribe from this group, send email to commandfusion+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/commandfusion?hl=en.

Re: Image Downloaded from server




Ya i know JSON is text, we are getting the image as string Format,
and we in our code converting the string into NSData and from NSData to image...
By the way we are using 3G interenet connection...

--
You received this message because you are subscribed to the Google Groups "iPhone SDK Development" group.
To post to this group, send email to iphonesdkdevelopment@googlegroups.com.
To unsubscribe from this group, send email to iphonesdkdevelopment+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/iphonesdkdevelopment?hl=en.

Re: Image Downloaded from server

well, this doesn't make sense.

JSON is not an image, JSON is text.

so, it sounds like you posted an image file from your device and you'd like to get that image back.

an asynchronous connection should do just that, so I'm not sure what's wrong.

do you get an error? what code are you using?

the time something takes to download is obviously dependent on the network which is often slow or unavailable for mobile devices so you'd need to handle that fact as well.

On Dec 30, 2011, at 12:13 PM, karthik damodara wrote:

> Ya sure Jesse,here is my problem in detail.
>
> I'm saving the image through Http post method in server,till here it is fine.
> But the problem is whenever i try to download the image from server it is taking to much time to download the image
> and i am using async connection without any connection timeout...
> the response is in JSON.....
> do u know any alternative to reduce the downloading time...
> pls help me...
>
>
>
>
>
>
> --
> You received this message because you are subscribed to the Google Groups "iPhone SDK Development" group.
> To post to this group, send email to iphonesdkdevelopment@googlegroups.com.
> To unsubscribe from this group, send email to iphonesdkdevelopment+unsubscribe@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/iphonesdkdevelopment?hl=en.

--
You received this message because you are subscribed to the Google Groups "iPhone SDK Development" group.
To post to this group, send email to iphonesdkdevelopment@googlegroups.com.
To unsubscribe from this group, send email to iphonesdkdevelopment+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/iphonesdkdevelopment?hl=en.

Re: Image Downloaded from server

Ya sure Jesse,here is my problem in detail.

I'm saving the image through Http post method in server,till here it is fine.
But the problem is whenever i try to download the image from server it is taking to much time to download the image
and i am using async connection without any connection timeout...
the response is in JSON.....
do u know any alternative to reduce the downloading time...
pls help me...





--
You received this message because you are subscribed to the Google Groups "iPhone SDK Development" group.
To post to this group, send email to iphonesdkdevelopment@googlegroups.com.
To unsubscribe from this group, send email to iphonesdkdevelopment+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/iphonesdkdevelopment?hl=en.

Re: gestures not recognized on iOS Simulator

Thanks for your input.

Gesture recognizer is working OK for my own code, so I can go forward
with coding & testing.

The problem may be unique to the example code provided.

On Dec 28, 12:26 am, Kadiyala Nagarjuna <nagu.advai...@gmail.com>
wrote:
> check the iOS simulator version compatability once.. run on iphone/ipad
> device if you have any..
>
> On Wed, Dec 28, 2011 at 7:33 AM, jonathan.nyc <jonathan....@gmail.com>wrote:
>
>
>
>
>
>
>
> > I'm starting the section of CS193P on gestures.  I ran the supplied
> > Happiness app OK when I first downloaded it.
>
> > Recently, it's not responding to any gestures.  I used debugger to
> > rule out any coding issues.
>
> > I redone the unzip, restarted my MacBook, & reset iOS Simulator.
> > Still no gesture recognition, which did work about three days ago.
>
> > I'm afraid I won't be able to do an adequate test on my own work if
> > this problem repeats.
>
> > Anyone else have the same problem?  Any tips?
>
> > Thanks,
> > Jonathan
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "iPhone SDK Development" group.
> > To post to this group, send email to iphonesdkdevelopment@googlegroups.com
> > .
> > To unsubscribe from this group, send email to
> > iphonesdkdevelopment+unsubscribe@googlegroups.com.
> > For more options, visit this group at
> >http://groups.google.com/group/iphonesdkdevelopment?hl=en.

--
You received this message because you are subscribed to the Google Groups "iPhone SDK Development" group.
To post to this group, send email to iphonesdkdevelopment@googlegroups.com.
To unsubscribe from this group, send email to iphonesdkdevelopment+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/iphonesdkdevelopment?hl=en.

Re: Subpage Transitions

Start here: http://www.commandfusion.com/docs/scripting/

Basically, add a new .js file in the same folder as your GUI's assets (i.e. same folder as GUI, or folder you defined as the images folder). Add the script file to the project using the Project Properties -> Script Manager

Wrap my code in a JS function that you call when you want to perform the crossfade.

Florent

On Dec 30, 2011, at 3:42 PM, Heath Volmer wrote:

> Thanks! Now all I have to do is learn where the JS lives, what code I wrap your snippet in, and how I call it. I'll dig into the JS help on the wiki.

--
Florent Pillet - Software Engineering Lead
www.commandfusion.com

--
You received this message because you are subscribed to the Google Groups "CommandFusion" group.
To post to this group, send email to commandfusion@googlegroups.com.
To unsubscribe from this group, send email to commandfusion+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/commandfusion?hl=en.

Re: Subpage Transitions

Thanks!  Now all I have to do is learn where the JS lives, what code I wrap your snippet in, and how I call it.   I'll dig into the JS help on the wiki.

Heath Volmer
Digital Domain Systems
(303) 517-9714

On Dec 29, 2011, at 5:43 PM, Florent Pillet wrote:

And of course there is a bug in the code below, in the "Perform crossfade" CF.setProperties, the
opacity of appearingSubpageJoin should of course be 1.0 not 0.0

Florent

On Dec 30, 2011, at 1:33 AM, Florent Pillet wrote:

From the top of my head, I think the best way to do this would be along the lines of:

// These are the two subpages to crossfade
var vanishingSubpageJoin = "d1";
var appearingSubpageJoin = "d2";

// immediately set opacity of appearing subpage to 0 (invisible)
CF.setProperties({ join: appearingSubpageJoin, opacity: 0.0 });

// Show new subpage
CF.setValue(appearingSubpageJoin, 1);

// Perform crossfade
CF.setProperties([
{ join: vanishingSubpageJoin, opacity: 0.0 },
{ join: appearingSubpageJoin, opacity: 0.0 },
  ],
  0.0, // start immediately
  0.5, // animation duration
  CF.AnimationCurveLinear,
  function() {
CF.setValue(vanishingSubpageJoin, 0);
// for the sake of completeness, you may want to restore
// regular opacity of vanishingSubpage here
CF.setProperties({join: vanishingSubpageJoin, opacity: 1.0});
  });

Florent

On Dec 30, 2011, at 12:51 AM, Heath Volmer wrote:

I have several subpages of identical size, location and background that I need to swap between (think a navigation-based iPhone-line thing with a back button…)  I'm using a fade transition between them but it looks like the buttons on the top (that are identical on each page) are fading out and in each time.  I'm not sure how to manipulate the fades / eases in an educated fashion.  Rather than a fade out - fade in, I'd like to do a crossfade.


--
Florent Pillet - Software Engineering Lead
www.commandfusion.com




--
Florent Pillet - Software Engineering Lead
www.commandfusion.com



--
You received this message because you are subscribed to the Google Groups "CommandFusion" group.
To post to this group, send email to commandfusion@googlegroups.com.
To unsubscribe from this group, send email to commandfusion+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/commandfusion?hl=en.


Re: AND operator

http://www.commandfusion.com/wiki/index.php?title=Math_Expressions

use the "and" operator:

{{if ((value and 128) != 0,1,0)}}

Florent

On Dec 30, 2011, at 3:00 PM, Michael wrote:

> Hi
>
> exist in Transform an "AND" operator like eg. {{if (value&&128,1,0)}}
>
> Regards
> Michael

--
Florent Pillet - Software Engineering Lead
www.commandfusion.com

--
You received this message because you are subscribed to the Google Groups "CommandFusion" group.
To post to this group, send email to commandfusion@googlegroups.com.
To unsubscribe from this group, send email to commandfusion+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/commandfusion?hl=en.

AND operator

Hi

exist in Transform an "AND" operator like eg. {{if (value&&128,1,0)}}

Regards
Michael

--
You received this message because you are subscribed to the Google Groups "CommandFusion" group.
To view this discussion on the web visit https://groups.google.com/d/msg/commandfusion/-/96gp0s_BNLgJ.
To post to this group, send email to commandfusion@googlegroups.com.
To unsubscribe from this group, send email to commandfusion+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/commandfusion?hl=en.

Re: Video Windows

No you can't monitor them, but I suspect that somehow the connection pool will not
allow more than 4. I'll check this out.

Florent

On Dec 30, 2011, at 5:09 AM, jamesng wrote:

> Florient - I was using the 4.0.196 and tested on on a current model
> iPod Touch, iPhone 4S and iPad 2, but still couldn't get more than 4
> dreams running. Is there any way to monitor what is happening with
> these connections via the remote debugger?

--
Florent Pillet - Software Engineering Lead
www.commandfusion.com

--
You received this message because you are subscribed to the Google Groups "CommandFusion" group.
To post to this group, send email to commandfusion@googlegroups.com.
To unsubscribe from this group, send email to commandfusion+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/commandfusion?hl=en.

[Pi] Guy Kawasaki speaking tomorrow dec 30 at Sky Song

Thursday, December 29, 2011
Guy is a fantastic speaker. Totally worth the trip if you can make it.

http://cherylmarquez.visibli.com/share/Wfo9wK


--
Jiva DeVoe
Random Ideas, LLC
http://www.random-ideas.net

--
You received this message because you are subscribed to the Google Groups "Phoenix iOS Developer Group" group.
To post to this group, send email to phx-ios-developer-group@googlegroups.com.
To unsubscribe from this group, send email to phx-ios-developer-group+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/phx-ios-developer-group?hl=en.

Re: Video Windows

Thanks for the suggestions - For the moment I've reverted to using
auto-refreshing image objects with a click through to the MJPEG video
stream.

Florient - I was using the 4.0.196 and tested on on a current model
iPod Touch, iPhone 4S and iPad 2, but still couldn't get more than 4
dreams running. Is there any way to monitor what is happening with
these connections via the remote debugger?

James

--
You received this message because you are subscribed to the Google Groups "CommandFusion" group.
To post to this group, send email to commandfusion@googlegroups.com.
To unsubscribe from this group, send email to commandfusion+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/commandfusion?hl=en.

Re: how to animate sprite on the tileMap in cocos2d.

Hi khushboo,

http://www.cocos2d-iphone.org/wiki/doku.php/prog_guide:tiled_maps

hope u solve the problem.

please share code, so we can know the problem.

On Thu, Dec 29, 2011 at 6:08 PM, khushboo sharma <khushi.cyber1@gmail.com> wrote:

Hi,


I created animated sprite, but i am not understanding how to add
animated sprite on the tilemap. My animated sprite(player) walk
without tiles , but when i add animated sprite on tile that does not
work(walk).

Thanx

--
You received this message because you are subscribed to the Google Groups "iPhone SDK Development" group.
To post to this group, send email to iphonesdkdevelopment@googlegroups.com.
To unsubscribe from this group, send email to iphonesdkdevelopment+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/iphonesdkdevelopment?hl=en.




--
with regards,
Ashok

--
You received this message because you are subscribed to the Google Groups "iPhone SDK Development" group.
To post to this group, send email to iphonesdkdevelopment@googlegroups.com.
To unsubscribe from this group, send email to iphonesdkdevelopment+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/iphonesdkdevelopment?hl=en.

Re: Subpage Transitions

And of course there is a bug in the code below, in the "Perform crossfade" CF.setProperties, the
opacity of appearingSubpageJoin should of course be 1.0 not 0.0

Florent

On Dec 30, 2011, at 1:33 AM, Florent Pillet wrote:

> From the top of my head, I think the best way to do this would be along the lines of:
>
> // These are the two subpages to crossfade
> var vanishingSubpageJoin = "d1";
> var appearingSubpageJoin = "d2";
>
> // immediately set opacity of appearing subpage to 0 (invisible)
> CF.setProperties({ join: appearingSubpageJoin, opacity: 0.0 });
>
> // Show new subpage
> CF.setValue(appearingSubpageJoin, 1);
>
> // Perform crossfade
> CF.setProperties([
> { join: vanishingSubpageJoin, opacity: 0.0 },
> { join: appearingSubpageJoin, opacity: 0.0 },
> ],
> 0.0, // start immediately
> 0.5, // animation duration
> CF.AnimationCurveLinear,
> function() {
> CF.setValue(vanishingSubpageJoin, 0);
> // for the sake of completeness, you may want to restore
> // regular opacity of vanishingSubpage here
> CF.setProperties({join: vanishingSubpageJoin, opacity: 1.0});
> });
>
> Florent
>
> On Dec 30, 2011, at 12:51 AM, Heath Volmer wrote:
>
>> I have several subpages of identical size, location and background that I need to swap between (think a navigation-based iPhone-line thing with a back button…) I'm using a fade transition between them but it looks like the buttons on the top (that are identical on each page) are fading out and in each time. I'm not sure how to manipulate the fades / eases in an educated fashion. Rather than a fade out - fade in, I'd like to do a crossfade.
>>
>
> --
> Florent Pillet - Software Engineering Lead
> www.commandfusion.com
>
>
>

--
Florent Pillet - Software Engineering Lead
www.commandfusion.com

--
You received this message because you are subscribed to the Google Groups "CommandFusion" group.
To post to this group, send email to commandfusion@googlegroups.com.
To unsubscribe from this group, send email to commandfusion+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/commandfusion?hl=en.

Re: Subpage Transitions

From the top of my head, I think the best way to do this would be along the lines of:

// These are the two subpages to crossfade
var vanishingSubpageJoin = "d1";
var appearingSubpageJoin = "d2";

// immediately set opacity of appearing subpage to 0 (invisible)
CF.setProperties({ join: appearingSubpageJoin, opacity: 0.0 });

// Show new subpage
CF.setValue(appearingSubpageJoin, 1);

// Perform crossfade
CF.setProperties([
{ join: vanishingSubpageJoin, opacity: 0.0 },
{ join: appearingSubpageJoin, opacity: 0.0 },
],
0.0, // start immediately
0.5, // animation duration
CF.AnimationCurveLinear,
function() {
CF.setValue(vanishingSubpageJoin, 0);
// for the sake of completeness, you may want to restore
// regular opacity of vanishingSubpage here
CF.setProperties({join: vanishingSubpageJoin, opacity: 1.0});
});

Florent

On Dec 30, 2011, at 12:51 AM, Heath Volmer wrote:

> I have several subpages of identical size, location and background that I need to swap between (think a navigation-based iPhone-line thing with a back button…) I'm using a fade transition between them but it looks like the buttons on the top (that are identical on each page) are fading out and in each time. I'm not sure how to manipulate the fades / eases in an educated fashion. Rather than a fade out - fade in, I'd like to do a crossfade.
>

--
Florent Pillet - Software Engineering Lead
www.commandfusion.com

--
You received this message because you are subscribed to the Google Groups "CommandFusion" group.
To post to this group, send email to commandfusion@googlegroups.com.
To unsubscribe from this group, send email to commandfusion+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/commandfusion?hl=en.

Re: KNX

Works perfect with my Siemens N148/22.  

It took me some time to make it work.  I deleted all systems and recreated it with your plugin (selected KNXnetIP) and start playing with success.

Great job!! 


What after 3/30/2012?

--
You received this message because you are subscribed to the Google Groups "CommandFusion" group.
To view this discussion on the web visit https://groups.google.com/d/msg/commandfusion/-/hTENPN_xjAkJ.
To post to this group, send email to commandfusion@googlegroups.com.
To unsubscribe from this group, send email to commandfusion+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/commandfusion?hl=en.

Subpage Transitions

I have several subpages of identical size, location and background that I need to swap between (think a navigation-based iPhone-line thing with a back button…)  I'm using a fade transition between them but it looks like the buttons on the top (that are identical on each page) are fading out and in each time.  I'm not sure how to manipulate the fades / eases in an educated fashion.  Rather than a fade out - fade in, I'd like to do a crossfade. 

Thanks, Heath

Heath Volmer
Digital Domain Systems
(303) 517-9714

Re: iViewer or iViewer Next?

http://www.commandfusion.com/wiki/index.php?title=IViewer_Versions

Currently we had to do some quick upgrades to the iViewer4 stable
version as we found a couple of tiny issues that we could fix without
having to go through the full release cycle again. So always check the
version numbers in the iViewer settings. This will tell you the latest.

At the moment, iViewer 4 v4.0.196 is the latest.

Jarrod


On 30/12/11 7:04 AM, Tjoepie wrote:
> Hi group,
>
> What's the best iViewer to use?
> Currently i'm using iViewer Next but i don't know of this is the
> latest or best version to use.
> Can someone please tell me wich version i can use best?
>
> Happy newyear!
>
> Joep
>

--
You received this message because you are subscribed to the Google Groups "CommandFusion" group.
To post to this group, send email to commandfusion@googlegroups.com.
To unsubscribe from this group, send email to commandfusion+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/commandfusion?hl=en.

[Showmetech] Showmetech.com.br

Showmetech.com.br

Link to Showmetech

Motorola Milestone 2 da TIM recebe atualização para o Android 2.3

Posted: 29 Dec 2011 06:54 AM PST

A Motorola liberou uma atualização para o smartphone Motorola Milestone 2 comercializado pela operadora TIM. A nova versão (2.3) do Android chega com um certo atraso, já existem aparelhos vendidos com a versão 4.0 do sistema). Porém, está dentro do cronograma de atualizações da empresa.

Para acessar a página de atualização, com o passo-a-passo e links para download, clique aqui.

E, claro, se você quiser se aventurar pelo mundo das roms customizadas, já existe uma versão Alfa da atualização Ice Cream Sandwich para o Motorola Milestone 2.  Recomendamos que somente usuários experientes brinquem com esta opção.


TV da Apple deve se tornar realidade em 2012

Posted: 28 Dec 2011 07:00 PM PST

Tudo indica que a Apple vai mesmo entrar no ramo de televisores em 2012. O primeiro aparelho da empresa será lançado no segundo ou terceiro trimestre de acordo com informações do site Digitimes. O novo produto será uma TV completa e não apenas um set-top box como o Apple TV já existente.

Segundo Walter Isaacson, autor da biografia de Steve Jobs, a aguardada "iTV" faz parte de um projeto liderado por Jobs que, antes de morrer, iniciou os trabalhos para criar um aparelho integrado e totalmente interativo.

Os rumores indicam que os primeiros aparelhos terão chips desenvolvidos pela Samsung e já estariam em produção desde novembro. As telas ficarão a cargo de outra empresa, a Sharp. A previsão é de que sejam lançados três tamanhos: 32, 37 e 55 polegadas.

Inovando no quesito interatividade, é bem provável que a TV da Apple possa ser controlada por comandos de voz, com auxílio do Siri, assistente pessoal já presente no iPhone 4S. Com isso, em vez do tradicional uso do controle remoto, a pessoa poderá usar a própria fala para trocar de canais, alterar configurações e obter informações através do aparelho.

É provável que o uso completo da TV exija o pagamento por serviços de TV a cabo. Segundo Shaw Wu, analista da Sterne Agee, serão oferecidos pacotes de programação customizados com uma assinatura mensal.

"Isso é, obviamente, muito mais complicado [do que o modelo atual] em termos de licenciamento", escreveu Wu. "Na nossa visão, isso mudaria o cenário da televisão e daria à Apple uma grande vantagem em relação à concorrência." O analista complementou ainda que a maneira mais fácil de oferecer tal comodidade seria em parceria com operadoras de TV a cabo, mas que a forma revolucionária seria entregar a programação pela internet.

A iTV deverá se conectar aos demais gadgets da empresa como o iPhone, iPad, iPod, além dos serviços iCloud e iTunes.

Fonte: Digitimes e MacMagazine.


iViewer or iViewer Next?

Hi group,

What's the best iViewer to use?
Currently i'm using iViewer Next but i don't know of this is the
latest or best version to use.
Can someone please tell me wich version i can use best?

Happy newyear!

Joep

--
You received this message because you are subscribed to the Google Groups "CommandFusion" group.
To post to this group, send email to commandfusion@googlegroups.com.
To unsubscribe from this group, send email to commandfusion+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/commandfusion?hl=en.

Re: KNX

You can also use the interface from AppleKNX. See appleknx.nl
They provide a demoproject for Command Fusion together with the interface.
The interface support up to 10 connections at the same time instead of one with a regular KNX IP interface.

Op 29 dec. 2011 om 12:00 heeft Bibi <giovanni.bianchino@gmail.com> het volgende geschreven:

Many Thanks Michael.
Much appreciated

--
You received this message because you are subscribed to the Google Groups "CommandFusion" group.
To view this discussion on the web visit https://groups.google.com/d/msg/commandfusion/-/64IOYf9WWmoJ.
To post to this group, send email to commandfusion@googlegroups.com.
To unsubscribe from this group, send email to commandfusion+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/commandfusion?hl=en.

Re: [iPhone-AppDev-Auditors] #2 required tasks

oh, duh... hahah thanks for pointing that out...

since that i got rid of the whole c-struct just so that i could keep the runprogram(double) API and have a runprogram with variable values with (id)... although i will fondly look back on my c-struct calculator days...

-Dave

On Dec 29, 2011, at 1:20 PM, Duane Bender wrote:

You posted this:
 
NSLog(@"popOperandOffProgramStack Returning %@. Error condition? %@",result.operand,result.gotMathError);
 
This string format calls for two objects (the %@ placeholders), but your second parameter to that string (result.gotMathError) is a BOOL, not an object. Try replacing the second %@ with a %d.
 
Duane

--
You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.
To view this discussion on the web visit https://groups.google.com/d/msg/iphone-appdev-auditors/-/QW0TdyN2QbsJ.
To post to this group, send email to iphone-appdev-auditors@googlegroups.com.
To unsubscribe from this group, send email to iphone-appdev-auditors+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/iphone-appdev-auditors?hl=en.


[iPhone-AppDev-Auditors] Re: #2 required tasks

You posted this:
 
NSLog(@"popOperandOffProgramStack Returning %@. Error condition? %@",result.operand,result.gotMathError);
 
This string format calls for two objects (the %@ placeholders), but your second parameter to that string (result.gotMathError) is a BOOL, not an object. Try replacing the second %@ with a %d.
 
Duane

--
You received this message because you are subscribed to the Google Groups "iPhone Application Development Auditors" group.
To view this discussion on the web visit https://groups.google.com/d/msg/iphone-appdev-auditors/-/QW0TdyN2QbsJ.
To post to this group, send email to iphone-appdev-auditors@googlegroups.com.
To unsubscribe from this group, send email to iphone-appdev-auditors+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/iphone-appdev-auditors?hl=en.