NIBs combining NSTabView and NSDrawer

2013-11-07 Thread Joseph Ayers
t’s a NSTabViewItem it does not expose a view outlet. Moreover, how one associates a NSVIewController with a NSTabViewItem is a bit confounding. Can someone point me to some sample code or documentation that deals with these issues? Thanks, Joseph Ayers Joseph Ayers, Professor Departments of Marin

Re: NSTabView

2013-09-16 Thread Joseph Ayers
click on the oscilloscope tab, the oscilloscope image doesn't come back. Thanks for your help. Joseph Joseph Ayers, Professor Departments of Marine and Environmental Science Biology, Civil and Environmental Engineering and Marine Science Center Northeastern University East Point, Nahant, MA

Re: NSTabView

2013-09-12 Thread Joseph Ayers
That got the delegate proc working. Onward and thanks, Joseph On Sep 12, 2013, at 11:54 AM, Graham Cox wrote: > > On 12/09/2013, at 5:25 PM, Joseph Ayers wrote: > >> -(void) awakeFromNib >> { >> [self setDelegate:self]; >> >> } >>

NSTabView

2013-09-12 Thread Joseph Ayers
When you click on a tab in a NSTabView, what action gets sent to what target? Where can I find this information? Thanks, Joseph Joseph Ayers, Professor Departments of Marine and Environmental Science Biology, Civil and Environmental Engineering and Marine Science Center Northeastern University

Strange AVFoundation Errors

2013-06-21 Thread Joseph Ayers
hronizer_Audio Joseph Ayers, Professor Depts. of Marine and Environmental Sciences, Biology and Marine Science Center Northeastern University East Point, Nahant, MA 01908 Phone (781) 581-7370 x309(office), x335(lab) Boston: 444 Richards Hall (617) 373-4044 Cellular (617) 755-7523, FAX: (781) 581-60

MacOS: Selecting from Multiple tables in the same window

2012-11-20 Thread Joseph Ayers
and the Change in tablesTable branch also gets gets executed. In other words aNotification always reports the tablesTable as the tableCandidate no matter what table i click on in the window. How can I respond to a selection in the clipList Table? Thanks, Joseph Ayers, Professor Department of Bio

Link Error: following -F not found

2010-07-17 Thread Joseph Ayers
I get a link error: ld: warning: directory '/Users/lobster/Programming/Roboplasm/../../../core-plot/framework/build/Debug' following -F not found I can't find a reference to core-plot anywhere in the code. How do I interpret: /../../../ in the message? Thanks, __

NSColor may not respond to colorWithCalibratedRed

2008-12-27 Thread Joseph Ayers
thCalibratedColorRed' What's wrong here? Thanks, Joseph Ayers, Professor Department of Biology and Marine Science Center Northeastern University East Point, Nahant, MA 01908 Phone (781) 581-7370 x309(office), x335(lab) Boston: 444 Richards Hall (617) 373-4044 Cellular (617) 755-7

NSAttributedString in NSAffineTransform

2008-11-09 Thread Joseph Ayers
ntext restoreGraphicsState]; } } yLabel is a NSAttributed String gHeight is the height of rect. rect is a bounding rect for the graph that is smaller than the frame of the NSView. yLabel doesn't appear in the NSView What am I doing wrong here I remain, Joseph Ayers, Professor

Re: Data Types for Extracting samples from Audio Buffer: Resolved

2008-10-06 Thread Joseph Ayers
FlagIsFloat | kAudioFormatFlagIsPacked | kAudioFormatFlagIsNonInterleaved; so you have 32 bit float values for each sample. Divide the byte count by 4 and use [NSNumber numberWithFloat:], and use a float* pointer type. Note - the docs also state that this is the default format you get

Re: Data Types for Extracting samples from Audio Buffer

2008-10-06 Thread Joseph Ayers
3162882048 2008-10-06 09:08:03.214 Roboplasm[33253:813] isamp 98 ipsamp 1008238592 idsamp 3162865664 2008-10-06 09:08:03.214 Roboplasm[33253:813] isamp 99 ipsamp 1007157248 idsamp 3163078656 Many thanks: Joseph On Oct 6, 2008, at 9:01 AM, Graham Cox wrote: On 6 Oct 2008, at 11:45 pm, Jo

Re: Data Types for Extracting samples from Audio Buffer

2008-10-06 Thread Joseph Ayers
his alternation is not rigid as the 0's can be substituted with reasonable numbers. Any idea what's going on here? Thanks again, Joseph On Oct 6, 2008, at 7:53 AM, Graham Cox wrote: On 6 Oct 2008, at 10:27 pm, Joseph Ayers wrote: unsigned short *ippointer = (unsigned short *)abl

Re: Data Types for Extracting samples from Audio Buffer

2008-10-06 Thread Joseph Ayers
inappropriate for 16 bit audio samples. How can I determine what is going wrong here. Thanks, Joseph On Oct 5, 2008, at 2:32 PM, Jacob Lukas wrote: On Oct 5, 2008, at 09:47, Joseph Ayers wrote: I'm trying to extract the audio samples from an audio buffer returned from the QuickTim

Data Types for Extracting samples from Audio Buffer

2008-10-05 Thread Joseph Ayers
; with Program received signal: “EXC_BAD_ACCESS”. isamp is 1. Am I using the wrong data types? thanks, Joseph Ayers, Professor Department of Biology and Marine Science Center Northeastern University East Point, Nahant, MA 01908 Phone (781) 581-7370 x309(office), x335(lab) Boston: 444 Richards Hall

Re: Accessing Audio Samples in Cocoa

2008-08-25 Thread Joseph Ayers
and the next sample being the subsequent left sample. Thanks, Joseph Jean-Daniel Dupas wrote: Le 25 août 08 à 16:02, Joseph Ayers a écrit : I am interested in doing some signal processing on the audio channels of a QuickTime Movie. I can retrieve the buffer using

Accessing Audio Samples in Cocoa

2008-08-25 Thread Joseph Ayers
data sample arrays. I assume that these are 16 bit audio samples, but I have yet to find a method that returns the two separate (left and right) arrays or the appropriate Cocoa data type to use with such sample data. Any ideas or examples? Thanks, -- Joseph Ayers, Professor Department of Biology

Allocating outlets from NIB file

2008-06-24 Thread Joseph Ayers
ew: [[SpriteView alloc] init]]; to loadSpriteController with no consequence. spriteView gets a pointer but [[spriteController spriteView] drawRect:[[spriteController spriteWindow] bounds]]; does not get to drawRect ja -- Joseph Ayers, Professor Department of Biology and Marine Science Center Northea

Re: Cocoa et al as HCI usability problem

2008-05-21 Thread Joseph Ayers
nd the Research Assistant do be indispensable. But given Cocoa's novel syntax, the class references could be improved by some code snippets that show how to message the different methods from the sender. Joseph Ayers Jeff LaMarche wrote: On May 21, 2008, at 3:06 AM, Scott Anguish wrot

Re: Guidance for Cocoa's steep learning curve

2008-05-15 Thread Joseph Ayers
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 Subscription: http://lists.apple.com/mailman/options/cocoa-dev/lobster%40neu.edu This email sent to [EMAIL PROTECTED] -- Joseph Ayers, Professor D

Re: NSTableView and loadNibNamed

2008-05-04 Thread Joseph Ayers
That was it. Many thanks, Joseph Hamish Allan wrote: On Sun, May 4, 2008 at 4:14 PM, Joseph Ayers <[EMAIL PROTECTED]> wrote: Indeed the NIB tableWindow has file's Owner set to tableController and there is a connection made to dataTable from a TableController object.

Re: NSTableView and loadNibNamed

2008-05-04 Thread Joseph Ayers
e unchanged indeed, the file's Owner is TableController and dataTable is connected to the NSTableView object in the NIB. Thanks, Joseph Ayers Keary Suska wrote: on 5/4/08 9:14 AM, [EMAIL PROTECTED] purportedly said: I have a NSTableView as an instance of a NSWindowContro

NSTableView and loadNibNamed

2008-05-04 Thread Joseph Ayers
tableController, but the field dataTable is nil. How do I get dataTable to point to the NSTableView in the nib? Thanks, Joseph Ayers -- Joseph Ayers, Professor Department of Biology and Marine Science Center Northeastern University East Point, Nahant, MA 01908 Phone (781) 581-7370 x309(office), x33

Interpreting [movie currentTime]

2008-03-25 Thread Joseph Ayers
, the current frame, or 3? If its 3, what is 15? How do I translate this into a time in seconds? Thanks, Joseph Ayers -- Joseph Ayers, Professor Department of Biology and Marine Science Center Northeastern University East Point, Nahant, MA 01908 Phone (781) 581-7370 x309(office), x335(lab) Cellular

NSView over QTMovieView

2008-03-25 Thread Joseph Ayers
ems to get renderings of NSView to appear above the QTMovieView. How can I get the NSView superimposed over the QTMovieView? Thanks, Joseph -- Joseph Ayers, Professor Department of Biology and Marine Science Center Northeastern University East Point, Nahant, MA 01908 Phone (781) 581-7370 x309(office)

Determining Class from Instance address

2008-03-21 Thread Joseph Ayers
Given a log messages like: 2008-03-21 09:06:35.464 Roboplasm[12210:10b] *** -[VideoController measureMethodChanged:]: unrecognized selector sent to instance 0x3dfbc0 How does one determine the sender and self In my code VideoController doesn't get sent measureMethodChanged... -- J