NSTextFieldCell Delegate?

2009-05-27 Thread Walker Argendeli
esn't seem to have delegate methods? Why is this, and what can I do (other than subclassing) to be informed when editing is finished? - Walker Argendeli ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin reques

Class Design for delegate, outlets, and mouse events

2009-05-26 Thread Walker Argendeli
her, they're confusing me. Broken down, I need to access & manipulate IBOutlets I have set in IB, determine when buttons are clicked (and which button was clicked). I'd like to be able to do this from another class so as to not clutter up the Ap

Re: NULL Outlets in one file work in another

2009-05-26 Thread Walker Argendeli
e, just located in different files. Both App_Delegate and FirstLaunch have the Outlet ivars connected in IB and give no warnings or errors. Thanks for your help, - Walker Argendeli On May 26, 2009, at 10:45 AM, Volker in Lists wrote: Hi, are you using - (void)applicationDidFinishLaunch:

NULL Outlets in one file work in another

2009-05-26 Thread Walker Argendeli
tlets work fin, and in another they're null. Thanks, - Walker Argendeli ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists

Re: Resizing Funky

2009-05-25 Thread Walker Argendeli
ely showing. I haven't made many connections yet, so I can't imagine it has to do with my code. Perhaps it's me doing something weird in the size inspector, but some of these seem odd. Thanks for the help, - Walker Argendeli On May 23, 2009, at 12:51 PM, Fritz Anderson wrote:

Resizing Funky

2009-05-21 Thread Walker Argendeli
y dragging the corner: moves a pixel or two and stops. If anyone could give me ideas on what to look for to solve this, I'd appreciate it. - Walker Argendeli ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin reque

Format Column for Selected Row

2009-05-17 Thread Walker Argendeli
e bindings and a number formatter, but I'm not sure if that would accomplish my goal, and I'm not sure how I would do that, either. Thanks, - Walker Argendeli ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin re

Re: Core Data Suddenly Losing Changes

2009-04-27 Thread Walker Argendeli
it's had data in it in the past. Sorry I wasn't able to completely answer your question. Thanks, - Walker Argendeli On Apr 27, 2009, at 4:36 PM, Adam Swift wrote: Is your call to save: the managed object context succeeding? ... what does that managed object context return for

Re: Core Data Suddenly Losing Changes

2009-04-27 Thread Walker Argendeli
tion for a few months now and things have been working fine. I'm sure I made some simple, stupid change, but for the life of me, I can't figure out what and like I said, rolling back to a previous version through subversion didn't solve the problem. - Walker Argendeli On A

Core Data Suddenly Losing Changes

2009-04-26 Thread Walker Argendeli
e exact same problem, but I'm certain this wasn't happening a few days. I'm not sure what I could've done that could have caused this, but I'm completely stuck and going crazy trying to get my app to work again. Thanks, - Walker Argendeli __

Identical Attributes, Only one works

2009-04-22 Thread Walker Argendeli
setting the priority, and yet it works with one and doesn't work with another. Does anyone have any ideas of further places to look? Thanks, - Walker Argendeli ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post ad

Change view on resize

2009-04-09 Thread Walker Argendeli
? Thanks, - Walker Argendeli ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscrip

Re: HUD-Style buttons

2009-04-09 Thread Walker Argendeli
I also found this one: http://code.google.com/p/bghudappkit/ Doe anyone have experience with either one or have a preference? - Walker Argendeli On Apr 9, 2009, at 10:23 AM, jonat...@mugginsoft.com wrote: Checkout the BWToolkit http://www.brandonwalkin.com/blog/2008/11/13/introducing

HUD-Style buttons

2009-04-09 Thread Walker Argendeli
tails window, but I can't figure out how to do it. Thanks, - Walker Argendeli ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admin

Floating window on top of everything

2009-04-07 Thread Walker Argendeli
I am making a simple application that consists of a small HUD window that needs to float above another application. How do I make it so that A. it floats above everything, and B. when I switch to another application, it remains on top. Thanks, - Walker Argendeli

Re: NSLevelIndicator Bindings Crash

2009-03-24 Thread Walker Argendeli
to the original value after you change it? If I have a row selected in the table view, change the level indicator, select another row, and come back to the original row, the row I changed will have defaulted back to 1. Thanks, - Walker Argendeli ___

Re: NSLevelIndicator Bindings Crash

2009-03-23 Thread Walker Argendeli
ing. Thanks - Walker Argendeli On Mar 23, 2009, at 3:55 PM, Keary Suska wrote: On Mar 23, 2009, at 1:13 PM, Walker Argendeli wrote: When i do this, however, every time I switch back to another item, the level defaults back to 1. Also, I checked that chapter in Hillegass's book, and it had

Re: NSLevelIndicator Bindings Crash

2009-03-23 Thread Walker Argendeli
fixing this before I continue development. Thanks, - Walker Argendeli On Mar 22, 2009, at 10:05 AM, Richard Somers wrote: On Mar 21, 2009, at 3:41PM, Walker Argendeli wrote: I'm using Core Data, and I have an entity; we'll call it "Item". It has an attribute called "p

NSLevelIndicator Bindings Crash

2009-03-21 Thread Walker Argendeli
lection.priority, the controls don't set each item's priority individually. What should I bind to? Secondly, an NSLevelIndicator wants a float for its value, whereas an NSStepper wants a double for its value. Which should I set it to in

Re: Model & Table Cell Updating Issues

2009-03-18 Thread Walker Argendeli
replace? - How do I programmatically update the right attribute of the right entity of the model? - How do I use bindings to do this? - How do I typecast in objective-c? - Walker Argendeli On Mar 17, 2009, at 8:07 PM, Dave Keck wrote: I'll take the easy one: How do I create a blank NSImage

Model & Table Cell Updating Issues

2009-03-17 Thread Walker Argendeli
;priority%i", priority]]]; // ... and update model. [[iItemController selectedObjects] setValue:priority forKey:priority]; } Thanks for the help, and I apologize for all the questions. - Walker Argendeli ___ Cocoa-dev mailing l

Re: makeKeyAndOrderFront Crashing

2009-02-26 Thread Walker Argendeli
Thanks guys, that was it. - Walker Argendeli On Feb 26, 2009, at 4:20 PM, Kyle Sluder wrote: -doesNotRecognizeSelector: does not throw an exception. You have a memory management error, and an NSCFType instance is winding up at the address your window used to be. Have you checked "Re

Re: makeKeyAndOrderFront Crashing

2009-02-26 Thread Walker Argendeli
nt to instance 0x15eed0 2009-02-26 16:14:11.806 MyAppName[2316:10b] *** -[NSCFType makeKeyAndOrderFront:]: unrecognized selector sent to instance 0x15eed0 I'm not really sure what else I can do to figure out whats wrong. - Walker Argendeli On Feb 25, 2009, at 8:09 PM, Walker Argendeli wrote:

Re: NSComboBox Bindings

2009-02-26 Thread Walker Argendeli
eas? FROM : Jerry Krinock DATE : Thu Feb 26 14:25:18 2009 On 2009 Feb 25, at 17:08, Walker Argendeli wrote: > With an NSPopUpButton, you can bind content to Kind.arrangedObjects, > content values to Kind.arrangedObjects.title, and selected object to > Item.kind. I want the functionality of an

Re: Select tablecell on creation through arrayController

2009-02-25 Thread Walker Argendeli
. Anybody know what's going on here? - Walker Argendeli On Feb 25, 2009, at 5:11 PM, Walker Argendeli wrote: I have a table with one column, that's bound to an array controller. It calls add: on the array controller when I hit a plus button. Problem is, I want the textFieldCell to be s

One IBAction, multiple results from multiple methods

2009-02-25 Thread Walker Argendeli
like this, if there is no solution, or if I was doing it the traditional way (code snippet 1?) To summarize: - What's the traditional way of handling a situation like this? - Why aren't the objectID's working? - What solutions are there? Thanks, - Walker Argendeli ___

Re: makeKeyAndOrderFront Crashing

2009-02-25 Thread Walker Argendeli
y the method isn't working. - Walker Argendeli On Feb 25, 2009, at 5:04 PM, Walker Argendeli wrote: My app has a toolbar, and I recently added a panel. Then, I put a new button in the toolbar, and set its action makeKeyAndOrderFront: on the new panel. Problem is, the moment I make t

Re: Core Data Relationships

2009-02-25 Thread Walker Argendeli
uld I bind to to get this working? Thanks, - Walker Argendeli On Feb 24, 2009, at 7:52 PM, Walker Argendeli wrote: I apologize beforehand for the beginner-level of this question. I'm getting started with core data, and I've gone through several tutorials. Let's say I have 2 enti

Select tablecell on creation through arrayController

2009-02-25 Thread Walker Argendeli
#x27;s going one, or have any code that would make it work? [notebookController add:sender]; [tableView editColumn:1 row:[tableView selectedRow] withEvent:nil select:YES]; Thanks, - Walker Argendeli ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple

makeKeyAndOrderFront Crashing

2009-02-25 Thread Walker Argendeli
I try to customize the toolbar (by opening the customize dropdown) everything works fine, until I close the new panel and try and customize again. Then, the debugger launches. I'm not sure why this causes the app to crash, but it does. Anyone have ideas? - Walker Arge

Core Data Relationships

2009-02-24 Thread Walker Argendeli
tCell where you could enter a Kind. I haven't decided whether you would be forced to enter a kind that is already in the Kinds array, or could just type anything. Anyways, what bindings would I want to use to accomplish this. Thanks, - Walker Argendeli __

Drop Down Toolbar Button

2009-02-17 Thread Walker Argendeli
the dropdown comes down. Thanks for your help! - Walker Argendeli ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)li

Convert Cocoa App to Core Data App

2009-02-16 Thread Walker Argendeli
ther files, and I want to continue in the same project. Would converting my project to use core data be as simple as adding a Data model and MySchoolPlanner_AppDelegate? (Yes, I'm ignorant about Core Data; I'm fairly new to Cocoa) Thanks

Keyword Filtering & Weekday Selection

2009-02-03 Thread Walker Argendeli
it's a compiled application that's not mine, I can't see more than that. Thanks, - Walker Argendeli ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Conta

Subversion Problems

2009-01-30 Thread Walker Argendeli
nodename nor servname provided, or not known and cvs [update aborted] : end of file from server (consult above messages if any) had x's. Next, list /Users/Shared/Subversion/Linear followed the same scheme. I'm not really sure what's going wrong here, but I&#

Test for typeName failing

2009-01-19 Thread Walker Argendeli
don't understand why, when I test for that, it fails. What's going on? Here's the code: if (typeName == @"public.zip-archive") [task setLaunchPath:@"/usr/bin/zipinfo"]; Thanks, - Walker Argendeli __

Setting Custom View as First Responder

2009-01-17 Thread Walker Argendeli
o make it the first responder. if (![[view1 window] firstResponder] { // Do something } How do I set a custom view to be the firstResponder? - Walker Argendeli ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin reques

Localized Nib Still In English

2009-01-15 Thread Walker Argendeli
references to French. Then, I built and ran the app, and it was in French (for example, if I tried to save a modified document, the save dialog was in french) but my localized nib was not loaded. It showed the regular English one. What's going on? - W

Apply Preferences To Current Window

2009-01-14 Thread Walker Argendeli
onceptual/DrawColor/Tasks/StoringNSColorInDefaults.html#/ /apple_ref/doc/uid/20001693-SW3 Thanks for the help! - Walker Argendeli ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderato

NumberFormatter Defaulting all values when input incorrect

2009-01-12 Thread Walker Argendeli
emerge to compare the two. At this point, however, I was stumped, because there were quite a few differences, so I gave up and am posting here. Thanks for all your help! - Walker Argendeli ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.

Re: Programatically locking user screen

2009-01-06 Thread Walker Argendeli
What you're talking about is called kiosk mode, and there's compromises no matter how you go around it, but if you're intending the software for use in an instructional environment where other use of the computer shouldn't be vital while your app is running, then the impact shouldn't be an

Re: setTextColor, display string, then set it back not working

2009-01-06 Thread Walker Argendeli
x wrote: On 7 Jan 2009, at 7:34 am, Walker Argendeli wrote: But if I uncomment the last line again, countDisplay remains black, displaying the message in black instead of red. What's going on? // Set display text to red for zero-length warning... [countDisplay setTe

setTextColor, display string, then set it back not working

2009-01-06 Thread Walker Argendeli
Ok, so I have a NSTextField (a label) called countDisplay, and when a zero-length string is entered into another text field, I'd like to change the color of countDisplay to red, display a message, and change back to black again. Only problem is that it displays in black no matter what. Wh