Web dev and programming discussions forums
Username
Forgot password?
Sign in with Twitter account
Sign in with Facebook account
List archives

3D in Cappuccino

CPOutlineview sample
(9 lines)
Cappuccino plugin for eclipse???
(14 lines)
Mar 10, 2010
Johannes Fahrenkrug
Johannes Fahrenkrug
Hi,

I'm thinking about building a fullscreen 3D application with
Cappuccino. You know those 360 degree views where you're standing in
the middle of Times Square and can move around? That kind of thing.
Using the canvas tag and some pseudo 3D, that should be possible,
right?

Do any of you have some advice for me or any experience with this?

Thank you!

- Johannes





Reply
Tags: pseudo, tag, canvas
Messages in this thread
3D in Cappuccino
reply RE: 3D in Cappuccino
(31 lines) Mar 10, 2010 09:03
reply Re: 3D in Cappuccino
(52 lines) Mar 10, 2010 09:20
reply Re: 3D in Cappuccino
(64 lines) Mar 10, 2010 09:42
reply Re: 3D in Cappuccino
(75 lines) Mar 10, 2010 10:05
reply Re: 3D in Cappuccino
(12 lines) Mar 10, 2010 15:23
reply Re: 3D in Cappuccino
(16 lines) Mar 10, 2010 15:29
reply Re: 3D in Cappuccino
(10 lines) Mar 10, 2010 15:44
reply Re: 3D in Cappuccino
(88 lines) Mar 10, 2010 15:26
reply Newbie Question
(51 lines) Mar 10, 2010 11:03
reply Re: Newbie Question
(82 lines) Mar 10, 2010 16:36
reply Re: Newbie Question
(74 lines) Mar 10, 2010 17:44
reply Re: Newbie Question
(107 lines) Mar 10, 2010 18:15
Similar threads
Cappuccino and DWR
Has anybody implemented Cappuccino and DWR successfully?





Cappuccino and SEO?
Hey guys, It is really interesting what are you doing with Cappuccino
& Objective-J! Thumbs up! :D I wonder how well plays the framework (I
mean what approaches are you taking?) when there is the need to deal
with search engines optimizations?

Thanks a lot and keep the good work!





Cappuccino on IE7
Hello,

I have a couple of problems with an application not rendering properly on
IE7,
specifically with a button and a split view.

The button displays as as if it were a CPTextField, it is not clickable
and the button's image
does not display, just the text.

The split view does work but the image that actually splits the view does
not display.
I can drag it, I just cannot see the image.

Are these known issues? How can I fix them?

I'm a bit concerned about IE7. After finding these issues I browsed
through some
of the demos (on the cappuccino site and elsewhere) and some of them do
not even load.

I absolutely need to support IE7. In fact, it's the primary browser (if
not the only one)
that will be used to access the app I'm building (an internal tool). In
your experience, is it doable
without jumping too many hoops?

Thanks a lot.
ja






Cappuccino 0.8.0 is Final
Hey guys, we finally pushed the final version of 0.8.0 last night, and
you can read about it here:
http://cappuccino.org/discuss/2010/04/07/cappuccino-0-8/
(Although I'm sure people on this list are already pretty familiar
with it).

Thanks a bunch for all the bug reports, patches, RC testing, and of
course just using Cappuccino! Here's lookin' at 1.0.





Cappuccino 1.0 Roadmap
Now that 0.8 is out the door we're going to be focusing on putting
together a roadmap for 1.0. I'd like to first have a discussion as to
what features everyone thinks are must haves, and then from that list
create a roadmap we can all work together towards. I've included below
what we believe to be some obvious features, but none of these have to
necessarily make the final list (in fact it would be surprising if all
of them made the final list).

1. Better theme support - support for CSS-style cascading, and a
generally easier way to put together themes
2. Build out remaining Aristo widgets - (color picker, stepper view,
calendar, tabs, etc -- all themable of course)
3. Documentation - If you caught my presentation on Socratic at JSConf
you'll know that we're currently working on a new tool to provide wiki-
based documentation to the Cappuccino project.
4. Bindings support (probably building off the existing bindings
branch).
5. Performance - Coupled with a tool that can accurately report
performance, it would be nice to come up with some solid targets for
the performance we'd want for 1.0
6. TextView (and better text support in general)
7. CoreData/LocalStorage/Modeling stuff in general
8. Comprehensive tests

So please comment on what is most important to you and add anything I
may have left out.

Francisco





Node.js + Cappuccino example
I wrote up about it here: http://techblog.gomockingbird.com/socket-to-em .
 There's a link to the code in there and a screencast.





IE debugging a Cappuccino app
Hi,

IE debugging sucks, there's no question. But are there any approaches
how to get the most information out of an IE error?
My latest project is failing while loading the application with the
following message:

"Unknown Runtimeerror (Objective-J.js,3165)"

Is there any information in this message? Is it a general problem? Is
it my fault? Am I using JS code which i unsupported in IE?


Elias





Cappuccino vs. Dashcode API
Hey dudes, any arguments/thoughts about why the Cappuccino API is
better than the Dashcode API? Saying "cos cappuccino is cocoa for the
web" isn't *really* an answer by the way.

I'm doing some research right now, kind of "on the fence" about
messing around with Dashcode to make WebApps.



laters,


@Cstep4





Re: Cappuccino and TypeKit
IMHO, @font-face could override Cappuccino’s default font, so it’ll
probably work.  If you add:


/*!
    Sets the system font
    @param aName
*/
+ (void)setSystemFontString:(CPString)aName
{
    _CPFontSystemFontFace = aName;
    _CPFonts = {};    // Clears cache object
}


in CPFont.j and use this method somewhere like awakeFromCib: or
applicationDidFinishLaunching:, everything not having an explicit typeface
set will then render using the typeface of your choice.  e.g., specify
[CPFont setSystemFontString:@"Lucida Grande"].  Also note that CSS typeface
definitions “fall thru”.

If you fix main.j (quick and dirty hack, there must be a better way) so it
looks like this:


function main(args, namedArgs) {

	CPLogRegister(CPLogPopup);

	window.CPLoadApplication = ((function (args, namedArgs) {
	
		return function () {

			CPApplicationMain(args, namedArgs);
			
		};
	
	})(args, namedArgs))

}


You could call CPLoadApplication() after TypeKit finishes its work (before
that, the use sees the spinner), so everything renders nicely.  also,
TypeKit ( http://gist.github.com/401726 ) has sample code on leveraging
their newly released Font Events.

Caveat: nib2cib zaps Lucida Grande by default.





ev

On May 14, 2010, at 7:08 PM, Stephen Ierodiaconou wrote:

 Not sure if this has been brought up before but a search on the
google group brings up nothing
 
 Anyone managed to get TypeKit and Cappuccino (CPFont) working
together ?
 
 Steve
 
 -- 
 
Cappuccino integration
hello everyone,

i am working on a big project. We use Play! framework on eclipse so i
wanna integrate Cappuccino with Play! but i know that Cappuccino can't
work on eclipse
so i was asking if it is possible to work with Cappuccino on NetBeans
and then integrate this work with play ???
and if yes please tell me how to integrate it
so anyone could help

Thanks :)





NSSound for Cappuccino
I just finished a port of NSSound for Cappuccino
Although it is html5 and the browser's file compatibility sucks, maybe
it will be interesting in the (hopefully near) future.

http://github.com/eliasklughammer/EKSound

Any feedback?






Re: NSSound for Cappuccino
Twas in a different branch…

http://github.com/fisk/cappuccino/tree/CPSound



On Dec 27, 11:04 am, Elias <elias### @gmail.com> wrote:
 Thanks for the information but I can't see any repsoitory in there.
 Can you give me a link?






FusionCharts in cappuccino
Is it possible to use FusionCharts in a Cappuccino app?
i alreadu have a license and I'd like to create some charts in the app
I'm starting now.


Thanks

Sig





Cappuccino IE7, IE8 Support.
First of all, thank you for an awesome toolset, hats off to all of
you!

I'm starting a web app and cappuccino is my best option so far for
building the interface. I just started playing with it and here is
what I did.

1. Installed from source following the instructions here
http://wiki.github.com/280north/cappu...ilding-the-source

2. I followed this tutorial
http://www.wattz.net/article/intro_to_cappuccino/
and built a simple hello world app using unterface builder and nib2cib

3. I deployed to an apache server in my local machine and tested on
IE7, IE8, Firefox 3.5 and Chrome in a virtual machine running windows
XP. I'm on snow leopard. I also tested on Safari and Firefox on the
Mac.

4. All the tests went fine except for IE7 AND IE8. On IE7 the app
would not load at all, it was stuck on the 'Loading helloWorld' screen
and on IE8 the text of the button was way off it's position and the
click event for the button didn't seem to be working.

5. I uninstalled all the tools following the instructions here
http://suitmymind.com/blog/2009/11/04...-the-jake-branch/

6. Reinstalled the 0.7.1 Tools package from http://cappuccino.org/download
and created the helloWorld app again. This time the app worked in IE 7
(with minor bugs such as main menu missing the arrows) and IE8 BUT, it
ran veeeeeery slowly, specially on IE7.



What I'm trying to figure out is:

1. Are the performance issues on IE likely to become a show stopper
when the app starts getting bigger? Are there any options for
optimizing speed?

2. If I end up choosing Capp, should I start development using the
0.7.1 release or the master branch? When the master branch reaches 0.8
status, is it going to have full support for IE7 and 8? Is there an
ETA for that?

Thanks in advance for your input on this! Salud!





Cappuccino and the iPad
Hi everyone,

just for fun I tried to launch a cappuccino application in the iPad
simulator and ... it works!

Not so sure that it will work on the actual device, but it certainly
is fun.

I have uploaded a screenshot at:
http://tinypic.com/view.php?pic=2e6h64l&s=6

Enjoy. Bruno.





Downloadify + Cappuccino?
Hey

Anyone had any luck with integrating something like downloadify
<http://downloadify.info/> with cappuccino? I've been playing around
trying to make it work from a few different angles but I can't get
anything working.

Any help/pointers appreciated!

// Andreas





Which Cappuccino objects are being used here?
Hello.

Please take a look at this image taken from the timetable app website.
http://www.timetableapp.com/images/fe...ntsScreenshot.png

Can someone identify the class that is being used to create the
buttons on the left column. With the icon, name and badge for each
person?

Taking this question further, where can I find a resource that shows
all the UI elements that are available in Cappuccino? I've been
playing around with Atlas, Interface Builder an nib2cib but I can't
identify a lot of elements that I've seen in other Cappuccino apps and
demos.

Thanks!





Cappuccino T-Shirts or something else ?
Hi,
there are no Cappuccino Merchandising available today or ?

I have an Idea for the Design :

Front-Side :

- Big Cappuccino Logo in the Middle
- Maybe Cappuccino as Text above the Logo ?

Backside :

- Text "We change the Web" or "Change the Web" ?

What do you think about the idea ?





#cappuccino IRC logs
Hi,

Is there some logs of the IRC channel somewhere?
I would be interested in it. I've been leaving my laptop on all night
so I can read through the discussions in the morning. I'm not sure I
would do it everyday, but I thought it might be interesting to have a
searchable archive.

What do you guys think?
Does such a thing already exists? How could we achieve that?

Thanks,
Thomas.


Cappuccino vs others frameworks
Cappuccino is cool, I like it, but what are advantages over Flex, Adobe Air,
Java Fx, etc.

Thanks people