Search results

  1. G

    Help with a 'code'

    This is easier than it looks. For each name, it generates a code. Given one name, it will always generate the same code. So say u have an app and you have a user send u his name and credit card number to register. You type the info in your code generator and send him the reulting code. He...
  2. G

    Java

    Maybe I'm confused... but was that suppose to be funny? F-bacher
  3. G

    acceding to InfoPlist.strings (cocoa)

    What does executing the code return? You never actually said what happens, only that it doesn't work. Does it return @"error"? F-bacher
  4. G

    !? NSView Question

    Uhmm... it's pretty easy. If you make a custom object, then you can give it actions. Then all you have to do is link an IB sender (like an NSButton) to your custom view and select your action. Here's a little sample program that I put together that changes the size of an NSView. HTH...
  5. G

    !? NSView Question

    Try adding a custom view object to a window in IB, get info on the view, and click the size tab. There you can have the NSView resize in response to the way the window is moving. There's just one case of where an NSView's frame size can be changed on the fly. You should be able to call...
  6. G

    Cocoa Newbie needs help…

    Here we go... The IB stuff is exactly the same. In your header file of your controller you shade have your NSMovieView object declared (I'm sure you've already know how to do this). In your Controller.m (what are these called again?), you should have a method as so...
  7. G

    Cocoa Newbie needs help…

    I'll post the simple HOW-TO when I get back to my dorm (a female friend of mine is kicking me out - stupid sleep ;)) It's almost exactly the same process. F-bacher
  8. G

    textView scrolling

    The best thing I can come up with is this: NSScrollView (NSTextView's from IB are automatically wrapped in an NSScrollView) has a contentView that displays inforamtion. It's an instance of NSClipView. NSClipView has an instance method called scrollToPoint which changes the origin of the...
  9. G

    Cocoa Programming With Java & Plists!!

    Java has a class called NSPropertyListSerialization... but I haven't looked at it much. Looks promising though. F-bacher
  10. G

    Sheet at start-up

    Source code would be helpful, or atleast a more detailed description of what your code does. F-bacher
  11. G

    How do I make a custom sheet?

    You have to make sure your window you are attatching your sheet to has had [window makeKeyAndOrderFront:self] called before you call the sheet. (not on the real basic question, the cocoa question) F-bacher
  12. G

    displaying a window?!?

    For those who look at this thread in the future for the answer, he would have called [hWnd makeKeyAndOrderFront:self]. F-bacher
  13. G

    Windows always on top

    There's an option for NSPanel's to become Utility windows: i.e. those that float on top of all other windows. Just make an NSPanel in interface builder and there's a check box about that in the get info window. There's probably an easy way to do it programmatically, but I haven't looked into...
  14. G

    Cocoa Newbie needs help…

    I'll asume Java for the mean time, but I can post ObjC instructions too (it's prretty much the same). Drag an instance of NSMovieView to ur window in Interface Builder(it's the icon that looks like a big Q for quicktime). Hook it up to your controller object. In your controller code, create...
  15. G

    Windows Media Player

    What did you say? I couldn't hear you. Oh sorry, that was a bad Rush Limbaugh joke. ;) He's going deaf, and I think his producers have to type up what he's callers are saying sometimes. It's hilarious when there's these giant pauses after a caller says something - one time a person asked...
  16. G

    OSX Alarm clock? To wake me in the morning?

    What you want you can't have... yet. Apple hasn't implemented the stuff in 9 in X that would allow ur mac to wake up and shut down at certain times. You can have alarms that play mp3s or repeat system beeps, etc. I suggest Alarm Clock S.E., www.students.uiuc.edu/~fahrenba/computers/AC.html...
  17. G

    [HOWTO] - Use iTunes as an alarm clock

    Then so should Alarm Clock S.E.! www.students.uiuc.edu/~fahrenba/computers/AC.html F-bacher
  18. G

    It's Here!!!...

    Is it appropriate to post apps to be reviewed in this section of the site? It seems a little out of place... plus it could really commercialize macosx.com. If it is appropriate, can I post the status of an app I'm writing and get reviews without people chewing off my head? (granted, it's...
  19. G

    I think I found an update to 10.1 already

    If it's under 10Mbs, it's some fake thing that's been going around limewire. Just pitch it - I have no idea what it really is. F-bacher
  20. G

    NSMovieView never !isPlaying

    (if I post this in enough forums, I got to get a good answer eventually, right? :)) Okay, so I created this nice NSMovieView object that I can play NSMovies in. aiff and mp3 files are coming out great. I didn't add it into any contentViews cause I wanted to control it entirely...
Back
Top