Cappuccino is an Objective-J framework for developing modern applications which run in a web browser.

learn more… | top users | synonyms

0
votes
1answer
20 views

Resize content of CPScrollView

I have a CPWindow. In it, i have a CPScrollView which is set to 284px of width and 434px of height. This code show how i fill out the CPScrollView: for(var i = 0; i < 50; i++) { var ...
-1
votes
0answers
14 views

Cappuccino Getting Start Tutorial: don't show changes on AppController.j

I guess I am doing something really stupid. Trying to get through Getting Start tutorial, I came to the part of modifying Hello World to add a button. Run it over (through OSX web server) but button ...
0
votes
0answers
13 views

Getting mismatch in the dimensions on returning

I am getting a mismatch in the dimensions of a window while calling in a method in cappuccino... Here is my code: var window1= [[WindowView alloc] initWithFrame:CGRectMake(0,0,600,300)]; I am ...
0
votes
1answer
20 views

Page resizing using cappuccino

How can I increase my window size when dragging an object in the window, after it's bounds using cappuccino. Here is my sample code: if(dragLocation.x < 1000.0 && dragLocation.y < ...
0
votes
0answers
13 views

Drag and drop using cappuccino

How to add drag and drop to the shapes in cappuccino. I found only for images, unable to extend it to the cappuccino shapes. Thanks.
32
votes
3answers
9k views

SproutCore vs Cappucino vs Ember vs Extjs [closed]

I've found a lot of topics covering some of the aspects, but these topics are old (2009 and 2010). Among them there are very good comparisons like: SproutCore vs. Cappuccino Differences between ...
0
votes
0answers
24 views

Cappuccino runloops and event handling

I wonder how runloops are impelmented in Cappuccino or at least how we can use them. Which effect has [CPRunLoop limitDateForMode:CPDefaultRunLoopMode]; ? Or: why do cursor-setting methods like ...
0
votes
1answer
77 views

locking mouse events in cappuccino web application

while developping a web-application based on the cappuccino-framework which only has to run in a Chromium browser environment (~ chromium V.19 released spring this year) I struggle with the following ...
1
vote
1answer
77 views

Cappuccino [warn]: Could not connect the action

This has to be something stupid, because this is so basic and even then it is not working. Anyways, ➜ ~ capp --version cappuccino 0.9.6 (2012-11-17 788ee6) I built a basic NibApplication from ...
0
votes
1answer
47 views

Cappuccino Drag and Drop Error

I'm trying to implement drag and drop in cappuccino but keep getting an error when i drop an image on a CPView, i copied the error message from console below. CPInvalidArgumentException: - [CPImage ...
0
votes
2answers
181 views

SproutCore/Cappuccino/Vaadin: which one should I choose to execute shell programs?

I've a command line tool I've written in some language and I like to build a web interface upon it. Can SproutCore run such a program and take the output? I'm also taking in consideration other ...
1
vote
1answer
118 views

Objective-J CPView, CALayer, CPImageView Drawing

I'm learning Cappuccino Objective J, having a little difficulty understanding the difference between CPView, CALayer, CPImageView when it comes to drawing. I have a good knowledge of JavaScript, but ...
0
votes
1answer
53 views

Customising the look of controls in Cappuccino

I need to make a row of buttons on the bottom of the screen placed on what looks like a toolbar . But it should have a custom look ie. custom background and hover effects . I initially tried to ...
1
vote
2answers
181 views

Print List of Github Issues

Is there a way to print out a list of Github issues? Other than by printing the HTML page. I've tried using the GitHub Issues Cappuccino App. I got the app working in Chrome, but it never finishes ...
0
votes
1answer
202 views

HTML5 Framework for a custom product editor

I'm looking into several html5 frameworks for a project that would be in some ways similar to the iMakeMyCase editor. The main features that have to be implemented: choosing a predefined background ...
1
vote
1answer
52 views

Is it possible to customize a CPToolbar in Cappuccino

I may need to change toolbar background, heading font and position. Is it possible to do that with the standard CPToolbar? I was looking through the ThemeDescriptors.j, and there is nothing about a ...
1
vote
1answer
122 views

Is there an IDE that provides code completion for Cappuccino

I have tried almost every IDE listed here, but none of them provide code completion. As a Flex developer I am used to code completion in Flash Builder. It saves tons of time and helps with spelling ...
1
vote
1answer
59 views

Import in Cappuccino

When I create new Cappuccino project using terminal command capp gen MyProject, I get AppController.j that uses many Foundation and AppKit classes, but has just one import statement @import ...
2
votes
2answers
68 views

Vertical and Horizontal layouts in Cappuccino

In Flex, there are such things as HGroup and VGroup. They allow to align content horizontally and vertically with some prespecified gap between elements. Is there something simular in Cappuccino? I ...
0
votes
1answer
52 views

CPComboBox in Cappuccino

It seems like there is no ComboBox component in Cappuccino framework. I see that there are many widgets in Cappuccino that are not used very often (like Predicate Editor), but ComboBox is missing. Is ...
4
votes
1answer
413 views

How Can I Use Node.js With Cappuccino?

I'd like to have a client application implemented in Cappuccino that uses Node.js as the server. I have currently got Node running with Express: var express = require( 'express' ); var app = ...
2
votes
1answer
75 views

Using custom components in Cappuccino with Interface Builder

I know that in Cocoa, in order to use custom component in Interface Builder I should go to property inspector panel and change, say, my standard NSView to the custom one. Is there any solution for ...
0
votes
1answer
152 views

Resources for Learning Objective-J and Cappuccino?

I have noticed, for some odd reason there is absolutely no books out on the Cappuccino Web Framework, and Objective-J. I would really like to learn these, but I cant find any resources other than ...
0
votes
1answer
126 views

Installing Cappuccino (Objective J)

I have to confess I am not an expert in Mac OS but I am trying to install Cappuccino. I ran the script and the following files are now in the "narwhal" subdirectory. Trouble is, I have no idea what ...
2
votes
1answer
60 views

Disabling a view in cappuccino

How can I disable a CPView? (so that the user can't interact with it while it's still visible) It's useful for example when the user clicks on something that sends a request to the server and it ...
0
votes
1answer
72 views

Using Cocoa class names with Cappuccino

Is it possible to use Cocoa names for equivalent Cappuccino classes while developing for Cappuccino? I'm thinking about trying to leverage JSCocoa, Cappuccino and Emscripten to develop either ...
0
votes
2answers
62 views

CPOpenPanel not working in Cappuccino

I am trying to use CPOpenPanel to select a file for upload, when I call runModal upon CPOpenPanel object , it is throwing an exception as CPInvalidArgumentException: - [CPOpenPanel runModel] ...
0
votes
1answer
111 views

Is there a recent CPTableView tutorial using IB?

I'm looking for a recent Cappuccino tutorial that shows how to implement a CPTableView using IB/Xcode 4 with XcodeCapp -- all of the CPTableView examples that I've found are fully implemented in code ...
2
votes
1answer
93 views

Cannot add category to CPView Cappuccino

I am trying to add this category to CPView but XCodeCapp gives an error and I get unrecognized selector sent to instance error when I try to use this method. @import <AppKit/CPView.j> ...
2
votes
1answer
68 views

Cappuccino - take an image from a CPView

I have a CPView with some children (CPImageView's, CPTextField's, etc) and I would like to know if it's possible to take an screenshot of that parent view. Thanks
1
vote
2answers
172 views

Is there a tool that picks up where 280 North's “Atlas” left off?

Occasionally I go back and watch this video. And then I cry a little bit because 280 North got swallowed up by Motorola and to this day no one really knows exactly what became of them. I know that ...
0
votes
1answer
199 views

Integrating Cappuccino with Ruby on Rails

I have a Cappuccino app that I am integrating with a Rails backend. A key feature of the app is authentication which is managed entirely by rails. The way I set it up is that the cappuccino js ...
0
votes
0answers
160 views

Loading CPImage and CPImageView

I'm trying to load an image in my cappuccino app using the standard procedure, but the image is not showing up on the page. the imageDidLoad delegate is firing so it's no a problem with the image ...
0
votes
2answers
234 views

Cappuccino: Keyboard events getting squashed in reCAPTCHA input field

I'm integrating a reCAPTCHA into my Cappuccino app and I have it all working besides this odd input functionality in the reCAPTCHA input text field: Only some keys seem to work, "qwrszcv" and a few ...
0
votes
1answer
206 views

Cappuccino - Load images from disk to a CPImageView

I am looking for a way to load an image from my disk into a CPImageView. Is this possible?
0
votes
1answer
100 views

Connecting / Linking CIB files to a regular application template in cappuccino

I'm new to cappuccino framework and I would like to know if there is any way i can link a regular application template to cib files. Let's say i just generated an application using the application ...
0
votes
1answer
45 views

CPRangeException thrown when objects added to an CPArray

In my cappuccino app, I am reading from an RoR backend via JSON and putting the results onto a list. When the app first loads everything is fine, but when I edit an item (and write the edit to the ...
1
vote
2answers
241 views

JSON.parse not evaluating JSON strings properly

I am using JSON.parse to parse this JSON string [{"created_at":"2012-01-24T22:36:21Z","name":"joe","age":42,"updated_at":"2012-01-24T22:36:21Z"}] However I am simply getting this result as the ...
0
votes
1answer
150 views

Adding a delete button to a CPTableView column in Cappuccino

This seems like it would be an easy thing to do but I am having a lot of trouble getting a button to respond to events while in a CPTableView. Here is the initialization code: //deleteColumn is ...
0
votes
1answer
132 views

How to draw text in Cappuccino

I am trying to draw some text in my CPView, I have this: - (void)drawRect:(CGRect)aRect{ var ctx = [[CPGraphicsContext currentContext] graphicsPort], viewBounds = [self bounds]; ...
0
votes
1answer
101 views

Resize handlers on Cappuccino

how do I add the resize handlers to a CPView in Cappuccino? I saw an example that has rotation handlers, but I want to resize the view freely. Rotate example
2
votes
1answer
152 views

Transition from iOS only support to iOS + Android + web

I have a couple of iOS apps (Objective-C + iOS frameworks + a few web APIs). No fancy graphics, no opengl, no fancy audio processing. I want to also support Android as well as general web users ...
0
votes
1answer
188 views

How to make a custom editable table column in cappuccino

I am trying to make a CPTableColumn that can change values without having to click it. An Example is I am trying to have a slider show up in the table that when dragged will change the table value for ...
0
votes
1answer
112 views

How to set up Objective-J and Cappuccino

I am trying to start development in Objective-J but I am completely lost as to how to set it up. The documentation about setting it up, didn't really help me. I am very familiar with web development ...
0
votes
3answers
117 views

CPPredicateEditor is blank

I'm building a web application with the Cappuccino framework, and I'm using the new Xcode integration through the XcodeCapp-Cocoa listener. When I place an NSPredicateEditor into a nib file (like ...
1
vote
1answer
36 views

Is there a way to permit the display of the browser's scrollbar with cappuccino?

The question says it all; I'm interested in using Cappuccino to make layout simpler for me, so I'd like to keep the browser scrollbar active.
1
vote
1answer
86 views

How can I add a border to CPView?

I'm new to cappuccino, but I'm picking the language up fast. How can I add a border to a CPView? Or should I be using a different object instead? I've got a CPView that I'm using as a content view, ...
0
votes
1answer
90 views

Rails / Cappuccino App Not Loading on Heroku

I have a rails app with a cappuccino front end that I am trying to deploy onto Heroku. The app works fine when I run it on localhost using WEBrick, but when I push onto Heroku I get the error message ...
1
vote
1answer
132 views

CPTreeController (Cappuccino)

what is the best way to build a binding compatible outline view datasouce in cappuccino ? i.e. a kind of CPTreeController my source is currently a jSON object (containing objects and arrays) and I ...
1
vote
2answers
403 views

Objective-J with windows

Is there any way to work on Objective-J in Windows platform ? Any such IDE, Compiler for Objective-J for windows ? Is Cappuccino developed only for Windows?

1 2 3