psychotik

1,043
Reputation
148 views

Registered User

Name psychotik
Member for 6 months
Seen 2 days ago
Website
Location Bellevue, WA
Age
Boo!
2h
accepted Cause <DIV> contents to spread out?
Nov
5
comment Menu of app in Status Bar wont work on Snow Leopard
Switching to using dynamic menus and not having a delegate for the menu in the designer seems to have done the trick. I was looking at some documentation around what's new in Menus in 10.6 and I found this new protocol which might have something to do with it - basically, the object you set as delegate needs to implement this interface, I believe - it is 10.6 only. developer.apple.com/mac/library/…
Nov
5
comment Menu of app in Status Bar wont work on Snow Leopard
Peter, thanks for looking. #1 isn't standard but the menu item is an object so it should be fine, specially since 10.5 doesn't have a problem with it. I'll try using the more standard way and let you know if it helped. #2 is just a case of class name not matching file name. It wouldn't run on 10.5 otherwise. #3 is an interesting approach - certainly looks promising. I'll give these changes a shot. Thanks!
Nov
4
revised Menu of app in Status Bar wont work on Snow Leopard
added 83 characters in body
Nov
4
comment Menu of app in Status Bar wont work on Snow Leopard
I uploaded a simple repro - if you have the time, I'd appreciate you taking a look incase you can figure it out. It's about 20 lines of code + the xib.
Nov
4
revised Menu of app in Status Bar wont work on Snow Leopard
added 437 characters in body
Nov
4
comment Menu of app in Status Bar wont work on Snow Leopard
Thanks. I'm not adding these menu items programatically. I created the menu in IB. That these are not hooked up sounds very plausible, except that they are - the same binary functions fine on Leopard. Is there some scenario you know where something changed here from 10.5->10.6?
Nov
4
asked Menu of app in Status Bar wont work on Snow Leopard
Oct
31
answered MySQL - Rename Column
Oct
31
comment C# object reference
Can you re-phrase? It's really hard to understand what you're looking for help with.
Oct
30
answered localhost is slow sometimes
Oct
30
answered Why don’t STL containers have virtual destructors?
Oct
29
answered Why won’t my program terminate?
Oct
29
answered What should I be reading for intermediate Cocoa programming instruction?
Oct
29
awarded  
Oct
27
comment makeKeyAndOrderFront only does the latter.
Oh, no focus? How about [window makeFirstResponder:nil]?
Oct
27
answered What PHP/Web technologies do I need to get up to speed ?
Oct
27
answered makeKeyAndOrderFront only does the latter.
Oct
27
answered Why does an overridden function in the derived class hide other overloads of the base class?
Oct
26
revised Write your own square root function.
edited tags
Oct
23
answered jquery help dynmic page title
Oct
22
asked Represent numbers as shorten like SO does (13500 => 13.5k)?
Oct
21
answered PHP Variable Variables
Oct
20
comment Modify url of an XMLHttpRequest object
That's what I tried first, but the XMLHttpRequest object has already been constructed by this time and so editing the url in the request options doesn't work. I need to edit the 'xhr' instance passed in.
Oct
20
revised Modify url of an XMLHttpRequest object
added 1 characters in body
Oct
20
asked Modify url of an XMLHttpRequest object
Oct
20
asked jQuery ajax call to url containing accent character sends bad Uri from IE to server
Oct
20
comment Understanding typedefs for function pointers in C: Examples, hints and tips, please.
en.wikipedia.org/wiki/Typedef
Oct
19
revised Understanding typedefs for function pointers in C: Examples, hints and tips, please.
deleted 7 characters in body
Oct
19
answered Understanding typedefs for function pointers in C: Examples, hints and tips, please.
Oct
16
answered Web based method to determine if an iPhone is connected via 3G or Wifi
Oct
15
comment OSX: Launching multiple instances of an app and passing them command line args
This flag might be new in 10.6 - I'm glad to see they added it. It's not going to get too much adoption until a couple years though - I suspect 10.5 is going to remain the most popular version of OSX for a bit. OP - you're probably using 10.5
Oct
15
comment OSX: Launching multiple instances of an app and passing them command line args
open doesn't take command line args. See the link in my reply for options/details.
Oct
15
answered OSX: Launching multiple instances of an app and passing them command line args
Oct
15
awarded  Autobiographer
Oct
14
comment Anchor tag, to go to the beginning of a div class w/ USING jQuery
Ok, so what's your question?
Oct
14
awarded  Organizer
Oct
14
revised How to apply effects to only newly appended nodes (jQuery)
edited tags
Oct
14
comment How to apply effects to only newly appended nodes (jQuery)
I didn't know you could pass html content as a selector to $... really?
Oct
14
asked Set position of page footer using CSS/JS
Oct
14
accepted How to mentor newly hired software engineers with no industry experience ?
Oct
14
answered How to mentor newly hired software engineers with no industry experience ?
Oct
14
answered How to apply effects to only newly appended nodes (jQuery)
Oct
13
comment How should I localise pluggable components.
see my comments there...
Oct
13
accepted Fastest way to count total number and then list a set of records in MySQL
Oct
13
comment Fastest way to count total number and then list a set of records in MySQL
Right - make your where clause as complete as you can and then don't worry about doing that second query. Since it is immediately after the first, results will come from the cache like I said.
Oct
13
answered Is this a good solution for localisation of pluggable components?
Oct
13
comment Is this a good solution for localisation of pluggable components?
To edit the rex, use the built-in Resource Editor. But that warning should be ignorable, AFAICT.
Oct
13
comment Is this a good solution for localisation of pluggable components?
EKS, what you're suggesting is primitive. .NET has a bunch of support built into it to use resx files and satellite assemblies which dont require new code to be shipped. For updates/new translations you simply ship the resource binaries, which is NOT code.
Oct
13
answered Fastest way to count total number and then list a set of records in MySQL