mac Questions - Stack Overflow most recent 30 from stackoverflow.com 2009-07-04T14:33:43Z http://stackoverflow.com/feeds/tag/mac http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081536/python-how-to-set-breakpoints-on-mac-with-idle-debugger Python: How to set breakpoints on mac with IDLE debugger? PythonAndy 2009-07-04T05:00:20Z 2009-07-04T05:55:21Z <p>I have access to both a PC and a mac for a python class. I find I am unable to set breakpoints in the IDLE debugger in the mac (works fine on the PC). </p> <p>I've tried "ctrl-click" and configuring the touchpad to recognize two taps at once as a secondary click. I don't have a mouse for the mac, just the touchpad.</p> <p>MAC OS 10.4.10 tiger </p> <p>Python/IDLE version 2.6.1</p> <p>I have tried STFW unsuccessfully...</p> 1 http://stackoverflow.com/questions/1005281/remove-newline-character-from-first-line-of-nsstring Remove newline character from first line of NSString Brock Woolf 2009-06-17T05:39:10Z 2009-07-04T05:20:19Z <p>How can I remove the first <strong>\n</strong> character from an NSString?</p> <p>Edit: Just to clarify, what I would like to do is: If the first line of the string contains a \n character, delete it else do nothing.</p> <p>ie: If the string is like this:</p> <pre><code>@"\nhello, this is the first line\nthis is the second line" </code></pre> <p>and opposed to a string that does not contain a newline in the first line:</p> <pre><code>@"hello, this is the first line\nthis is the second line." </code></pre> <p>I hope THAT makes it abundantly clear.</p> 3 http://stackoverflow.com/questions/1081218/ideal-way-to-single-instance-apps-on-the-mac Ideal way to single instance apps on the Mac psychotik 2009-07-04T00:42:12Z 2009-07-04T01:27:54Z <p>On Windows, it's common practice to create a named mutex and use the presence of that to determine that an instance of a given app is already running. This has its brawbacks, but mostly works.</p> <p>I can think of a ways to do this on the mac: 1. named pthread mutexes 2. enumerate running processes and look for one that matches 3. create and lock a file</p> <p>Is there something built into Cocoa/Carbon that's easier than the options above? If not, which of the three are most used on the mac? I would assume 2 or 3... </p> 3 http://stackoverflow.com/questions/1080545/how-to-display-a-raw-yuv-frame-in-a-cocoa-opengl-program How to display a raw YUV frame in a Cocoa OpenGL program ReachConnection 2009-07-03T19:23:04Z 2009-07-03T19:51:22Z <p>Hello everyone, </p> <p>I have been assigned wit the task to write a program that takes a sample raw YUV file and display it in a Cocoa OpenGL program.</p> <p>I am an intern at my job and I have little or no clue how to start. I have been reading wikipedia &amp; articles on YUV, but I couldn't find any good source code on how to open a raw YUV file, extract the data and convert it into RGB and display it in the view window.</p> <p>Essentially, I need help with the following aspects of the task -how to extract the YUV data from the sample YUV file -how to convert the YUV data into RGB color space -how to display the RGB color space in OpenGL. (This one I think I can figure out with time, but I really need help with the first two points)</p> <p>please either tell me the classes to use, or point me to places where i can learn about YUV graphic/video display</p> 1 http://stackoverflow.com/questions/27729/flex-tools-for-mac Flex tools for Mac Alotor 2008-08-26T10:48:04Z 2009-07-03T17:55:56Z <p>I'm starting developing with Flex on my Mac but i don't find good tools to ease the development (apart from Flex Builder).</p> <p>What is your favourite choice for Flex development on Mac?</p> 3 http://stackoverflow.com/questions/1079144/os-x-process-control OS X Process control giaviv 2009-07-03T12:29:55Z 2009-07-03T12:29:55Z <p>Hey guys,</p> <p>I'm writing a process-controller kernel extension for leopard. The application enables me to suspend process's with SIGSUS and to make the computer sleep. My problem is when an application that uses video / audio (e.g iTunes or GarageBand) is suspended and then I try to make the computer sleep, the sleep process waits on the audio / video application to end with a timeout of 30 seconds. In reality, when i try to put the computer in to sleep when an audio / video application is suspended, the computer hangs for 30 seconds (probably the suspended application is not responding to the sleep request) and then it sleeps normally. When I put the computer out of sleep and send SIGCON to the video / audio application, it continues normally. Is there a way to change that 30 sec wait time out? Or to make it not wait at all? Or any ohter solution?</p> <p>Thanks! </p> 0 http://stackoverflow.com/questions/1078319/what-to-do-when-java-util-is-missing-on-a-mac What to do when java.util is missing on a Mac Till 2009-07-03T08:15:26Z 2009-07-03T08:22:38Z <p>This is kind of weired but my Mac/Eclipse isn't offering me any java.util classes. I am still able to run the project which contains heavy use of (let's say) Vector, but I am not able to add a new Vector in the code anywhere.</p> <p>Eclipse isn't offereing me...</p> <p>I spent the last night reconfiguering the installed JRE's and build path etc. but it remains ...</p> <p>I am running Java 1.60 on mac. I tried Eclipse Galielo, Ganymede.</p> <p>What am I missing?</p> 2 http://stackoverflow.com/questions/1074557/in-cocoa-how-do-i-set-the-ttl-on-a-packet In Cocoa, how do I set the TTL on a packet? casademora 2009-07-02T14:04:37Z 2009-07-03T06:04:14Z <p>I want to be able to explicitly set the TTL value for a socket connection using Cocoa. I've been unable to see anything useful in the CoreFoundation docs. Do I need to go even lower to the BSD Sockets to set the TTL value?</p> 2 http://stackoverflow.com/questions/1009511/mac-event-loop-qt-plugin-in-a-non-qt-application Mac Event Loop QT Plugin in a NON QT Application Grant Hickey 2009-06-17T21:03:37Z 2009-07-03T04:01:25Z <p>I am trying to write a Trolltech QT library that will be used from a NON-QT CFM Application written in MacApp. I am having trouble that when I have created QApplication it is taking over my event loop in my non-Qt MacApp mac application. I have override QApplication::macEventFilter to call CallNextEventHandler but this calls my Carbon Event Handler in the MacApp Application but events like selecting a menu item do not work yet hot keys to the same item work fine. I am in desperate need to figure this out. Is there a Mac Version of QMFCApp. I need to get this to work and get it to work the right way. Button clicks and menu items do not seem to work but other events such as typing seem to function. I think I some how need to deal with old EventRecord events and repost the event but I am not sure. How do I get QT to work as a plugin in my old Application. Please help I am desperate.</p> <p>Grant Hickey</p> 1 http://stackoverflow.com/questions/77787/which-ide-is-the-best-to-get-started-for-developing-micro-java-application-on-mac Which IDE is the best to get started for developing micro java application on mac os X? Alexandre Hauser 2008-09-16T22:10:23Z 2009-07-03T00:19:09Z <p>I would like to develop micro java (j2me) application on mac os X.</p> <p>A lot of IDE are available on PC from Nokia, Samsung and Sun (Netbeans + mobility), but they do not exist for mac os X.</p> 9 http://stackoverflow.com/questions/981147/how-to-change-qt-applicationss-dock-icon-at-run-time-in-macos How to change Qt applications's dock icon at run-time in MacOS? Michael 2009-06-11T13:41:04Z 2009-07-02T19:09:06Z <p>I need to change my Qt application's dock icon (in MacOS X) in run-time according to some conditions.</p> <p>I've found several recipes on <a href="http://trolltech.com" rel="nofollow">trolltech.com</a>:</p> <ol> <li><code>QApplication::setIcon()</code></li> <li><code>setApplicationIcon()</code></li> <li><code>qt_mac_set_app_icon()</code></li> </ol> <p>but none of it works: there is no such methods/functions in Qt 4.5.</p> <p>How can I change my application's dock icon and what icon formats can I use?</p> <p>Thank you.</p> 2 http://stackoverflow.com/questions/1076117/weird-problem-generating-an-xls-file-and-mac Weird problem generating an XLS file and MAC Ezequiel 2009-07-02T19:01:59Z 2009-07-02T19:01:59Z <p>Hi, we have a strange problem with a web application that is generating some reports in CSV format. The report contains words with non-english chars (á, ñ, etc). The strange thing is when the report has 200 rows or more, everything works ok in MAC, when we generate a filtered report with for example 20 rows all the non-english chars are broken. The generation code for both report is the same. Any ideas??</p> <p>Thanks,</p> <p>Ezequiel</p> 0 http://stackoverflow.com/questions/381914/does-getmovieaudiovolumelevels-support-more-than-two-channels-of-audio Does GetMovieAudioVolumeLevels() support more than two channels of audio? lwdupont 2008-12-19T19:15:31Z 2009-07-02T11:00:00Z <p>I have some code that uses GetMovieAudioVolumeLevels() to get levels of a QuickTime movie during playback.</p> <p>I have an 8 audio channel QuickTime movie, but using the GetMovieAudioVolumeLevels() call it only ever returns 2 channels. I am using kQTAudioMeter_DeviceMix, and right now I'm assuming because my MacPro can only actually playback 2 channels of audio (left and right) QuickTime is mixing the 8 channels down to 2 channels. </p> <p>Does anyone have any more experience with this?</p> <p>Thanks.</p> 1 http://stackoverflow.com/questions/1071287/start-using-java-out-of-the-box-on-mac-os-x Start using Java out of the box on Mac OS X. dlamblin 2009-07-01T20:40:58Z 2009-07-01T20:50:19Z <p>My 10.5.3 install on a MacBook doesn't seem to want to build <a href="http://java.sun.com/docs/books/tutorial/essential/regex/test%5Fharness.html" rel="nofollow">an example</a> from Sun. It claims it can't find java.io.Console to import. This is annoying to me, and after much searching I can't figure out what I should do to fix it.</p> <p>I have installed the Apple Developer Tools.</p> <p>Here's what happens:</p> <pre><code>macbook:~ dlamblin$ javac RegexTestHarness.java RegexTestHarness.java:32: cannot find symbol symbol : class Console location: package java.io import java.io.Console; ^ RegexTestHarness.java:39: cannot find symbol symbol : class Console location: class RegexTestHarness Console console = System.console(); ^ RegexTestHarness.java:39: cannot find symbol symbol : method console() location: class java.lang.System Console console = System.console(); ^ 3 errors </code></pre> 2 http://stackoverflow.com/questions/1070327/setting-apple-awt-graphics-usequartz-to-false-for-applets-with-apples-1-5-update Setting apple.awt.graphics.UseQuartz to false for applets with Apple's 1.5 update 4 jsight 2009-07-01T17:19:09Z 2009-07-01T17:47:34Z <p>Apple seems to have quart rendering on by default: <a href="http://lists.apple.com/archives/Java-dev/2007/Jun/msg00066.html" rel="nofollow">http://lists.apple.com/archives/Java-dev/2007/Jun/msg00066.html</a></p> <p>However there are cases where this is attrociously slow. From a desktop app, I merely add: -Dapple.awt.graphics.UseQuartz=false</p> <p>This fixes the slow rendering. But there's isn't a place in the Java preferences panel to set this, and all of my attempts to set it in ~/Library/Caches/Java/deployment.properties have failed so far.</p> <p>Is there a workaround? </p> <p>Also, will it be possible to generate an applet that sets this for the user in some way?</p> 0 http://stackoverflow.com/questions/958281/is-anything-required-to-get-a-quartz-callback-besides-registering-for-it Is anything required to get a Quartz callback besides registering for it? Andrew Lusk 2009-06-05T21:44:08Z 2009-07-01T17:41:05Z <p>I'm trying to use <code>CGDisplayRegisterReconfigurationCallback</code> to get display reconfiguration events in Quartz on Mac OS X. Here's the super-simple code:</p> <pre><code>void CB(CGDirectDisplayID display, CGDisplayChangeSummaryFlags flags, void *userInfo) { std::cout &lt;&lt; "In callback!" &lt;&lt; std::endl; } int main (int argc, char * const argv[]) { std::cout &lt;&lt; CGDisplayRegisterReconfigurationCallback(CB, NULL) &lt;&lt; std::endl; std::cout &lt;&lt; "Registered callback, sleeping..." &lt;&lt; std::endl; sleep(10000000); return 0; } </code></pre> <p>However, the callback isn't getting called when I plug/unplug monitors, etc. <code>CGDisplayRegisterReconfigurationCallback</code> returns success.</p> <p>'new to os x development' would be an overstatement of my background knowledge here. Do I need to instantiate something like a quartz event loop to get callbacks to work?</p> 0 http://stackoverflow.com/questions/1065672/how-to-link-against-boost-system-with-cmake How to link against boost.system with cmake Janusz 2009-06-30T19:54:29Z 2009-07-01T17:01:23Z <p>I use a cmake generated makefile to compile a c++ file that depends on the boost filesystem library. </p> <p>During the linking process I get the following error: </p> <pre> Undefined symbols: "boost::system::get_generic_category()", referenced from: __static_initialization_and_destruction_0(int, int)in FaceRecognizer.cpp.o __static_initialization_and_destruction_0(int, int)in FaceRecognizer.cpp.o __static_initialization_and_destruction_0(int, int)in FaceRecognizer.cpp.o "boost::system::get_system_category()", referenced from: __static_initialization_and_destruction_0(int, int)in FaceRecognizer.cpp.o __static_initialization_and_destruction_0(int, int)in FaceRecognizer.cpp.o ld: symbol(s) not found collect2: ld returned 1 exit status make[2]: *** [src/ImageMarker] Error 1 </pre> <p>The action from the makefile that generates this error is this line: </p> <pre> cd /Users/janusz/Documents/workspace/ImageMarker/Debug/src && /opt/local/bin/cmake -E cmake_link_script CMakeFiles/ImageMarker.dir/link.txt --verbose=1 /usr/bin/c++ -O3 -Wall -Wno-deprecated -g -verbose -Wl,-search_paths_first -headerpad_max_install_names -fPIC CMakeFiles/ImageMarker.dir/ImageMarker.cpp.o CMakeFiles/ImageMarker.dir/Image.cpp.o CMakeFiles/ImageMarker.dir/utils.cpp.o CMakeFiles/ImageMarker.dir/XMLWriter.cpp.o CMakeFiles/ImageMarker.dir/FaceRecognizer.cpp.o -o ImageMarker -L/opt/local/lib ../libTinyXml.a /opt/local/lib/libboost_filesystem-mt.dylib </pre> <p>Some googling showed me that this error seems to be common on macs with the boost file system library because I have to link against a boost.system library or make my project depending on the boost.system library.</p> <p>How do i force cmake to link against the library without hardcoding the library path?</p> <p>Here the result from otool:</p> <pre><code>otool -L /opt/local/lib/libboost_filesystem-mt.dylib /opt/local/lib/libboost_filesystem-mt.dylib: /opt/local/lib/libboost_filesystem-mt.dylib (compatibility version 0.0.0, current version 0.0.0) /opt/local/lib/libboost_system-mt.dylib (compatibility version 0.0.0, current version 0.0.0) /usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 7.4.0) /usr/lib/libgcc_s.1.dylib (compatibility version 1.0.0, current version 1.0.0) /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 111.0.0) </code></pre> 1 http://stackoverflow.com/questions/196357/making-iterm-to-translate-meta-key-in-the-same-way-as-in-other-oses Making iTerm to translate 'meta-key' in the same way as in other OSes ejel 2008-10-13T00:17:53Z 2009-07-01T00:13:20Z <p>In bash shell with emacs key-binding, you can use key combination like M-f, M-b to move one word forward or backward on the shell prompt respectively. Usually, the meta key is mapped to Alt key on Windows and Linux. However, in iTerm, I could not find a way to map this meta key to either Option or Command key on my MacBook Pro.</p> <p>It seems that in OS X, the meta key is by default mapped to ESC key. So you can use ESC-f, ESC-b on iTerm. However, ESC key is apparently not practical to use. In addition, iTerm does have option that allow you to modifier mapping for the meta key (Bookmarks > Profiles > Keyboard Profiles > Global > Option Key as...), this setting does not seem to work at all.</p> <p>Therefore, if anyone know what is the solution to this problem, please let me know. </p> <p>I have upgraded to the latest release, 0.9.6.1012, and this behavior is still persist.</p> <p><strong>Edit:</strong> Some clarification to my question. The key-binding I'm talking about is for bash shell, not in emacs. It just happens that, by default, bash shell also use the same key-binding as emacs.</p> 7 http://stackoverflow.com/questions/1065691/how-to-set-the-background-color-of-a-jbutton-on-the-mac-os How to Set the Background Color of a JButton on the Mac OS Stephane Grenier 2009-06-30T19:57:24Z 2009-06-30T20:55:21Z <p>Normally with Java Swing you can set the background color of a button with:</p> <pre><code>myJButton.setBackground(Color.RED); </code></pre> <p>which would cause the button to be red. But on the Mac OS, this method seems to be ignored. The button just stays the default color.</p> <p>How can the color of a JButton be set on the Mac OS?</p> 1 http://stackoverflow.com/questions/1065407/good-mac-client-gui-for-postgresql Good Mac Client/GUI for Postgresql? Brian Armstrong 2009-06-30T19:04:52Z 2009-06-30T19:07:27Z <p>Anyone found one of these?</p> <p>"Sequel Pro" is awesome for MySQL development on Mac, and they say they are working on Postgresql support (see <a href="http://groups.google.com/group/sequel-pro/browse%5Fthread/thread/e84bf11f9acbe1d8" rel="nofollow">discussion here</a>) but I haven't found anything else in the mean time. pgAdmin III is horrible.</p> 1 http://stackoverflow.com/questions/913401/fsevents-weirdness-on-os-x-leopard FSEvents weirdness on OS X Leopard psychotik 2009-05-27T00:18:29Z 2009-06-30T17:02:36Z <p>I want to monitor file-system events for a couple of directories on the mac. The directories I want to monitor might change at runtime, so using FSEvents here's what my app does:</p> <ul> <li>creates a global callback function to handle callbacks</li> <li>create a new FSEventStreamRef per folder, associating it with the callback created above and adding a context to the eventStream that helps me associate the change callback with this folder</li> </ul> <p>Stuff seems to mostly work, but I've noticed some weirdness in when the callbacks are invoked and the 'eventPaths' values being sent to the callback.</p> <p>For instance, if I've created StreamRefs for /Foo and /Bar, if I add a file in /Bar my callback is invoked almost immediately but the eventPaths points to a location in /Foo, and the context I associated with the StreamRef is also that of /Foo.</p> <p>Or, say I'm monitoring /Foo and /Bar and then remove /Bar (by stopping and closing the StreamRef for /Bar correctly). I now create a new FSEventStreamRef for /Fee and associate with the same callback. Any changes I make to /Fee don't cause the callback to be invoked but changes to /Foo continue raising the callback.</p> <p>Any example or documentation I've seen online only talks of monitoring a single folder. Is something busted with how I'm associating the single callbacks with multiple FSEventStreamRefs? It sounds like that shouldn't be a problem though...</p> <p>Has anyone done something similar in a way that works reliably, or any suggestions for what I might try differently?</p> <p>One thing I did attempt to do as I was experimenting with this is use a single FSEventStreamRef and pass it a CFArrayRef with all the paths I wanted, and when my watch list changes close and re-create a new FSEventStreamRef - this works even worse that the above.</p> 1 http://stackoverflow.com/questions/1064693/compiling-java-code-on-the-command-line-in-mac-os-x Compiling Java code on the command line in Mac OS X Derek Organ 2009-06-30T16:31:01Z 2009-06-30T16:37:32Z <p>Really basic question I'm sure for some of you Java heads out there. </p> <p>I have a list of java files and jars that are required.</p> <p>On windows to build I have this batch file</p> <pre><code>javac -cp .;opencsv-1.8.jar;mysql-connector.jar -source 1.4 -target 1.4 *.java jar cvf cup.jar *.class del *.class </code></pre> <p>If I want to do the same thing on mac how would a write a shell script to do the same?</p> 1 http://stackoverflow.com/questions/1055671/how-do-i-readlink-f-on-a-mac How do i readlink -f on a Mac? troelskn 2009-06-28T20:26:33Z 2009-06-30T13:46:02Z <p>On Linux, the <code>readlink</code> utility accepts an option <code>-f</code> that follows additional links. This doesn't seem to work on Mac and possibly bsd based systems. What would the equivalent be?</p> <p>Here's some debug information:</p> <pre><code>$ which readlink; readlink -f /usr/bin/readlink readlink: illegal option -f usage: readlink [-n] [file ...] </code></pre> 2 http://stackoverflow.com/questions/1059164/is-it-possible-to-access-the-mac-address-book-api-from-pure-java Is it possible to access the Mac Address book API from pure Java? Fin 2009-06-29T16:14:21Z 2009-06-30T12:17:07Z <p>Just wondering if it is possible to access the Mac OS X Address Book API's from pure Java 6 code? I want to keep this completely platform independent as my program is built for Windows &amp; Linux also (open source &amp; free: <a href="http://jsmsirl.sourceforge.net/" rel="nofollow">http://jsmsirl.sourceforge.net/</a>).</p> <p>Any help is much appreciated!</p> 1 http://stackoverflow.com/questions/668069/how-to-specify-which-gdb-i-can-use-in-xcode-on-macos How to specify which GDB I can use in XCode on MacOS yinglcs 2009-03-20T21:27:58Z 2009-06-30T08:57:14Z <p>Hi,</p> <p>How to specify which GDB (with the full path) I can use in XCode on MacOS? Thank you.</p> 1 http://stackoverflow.com/questions/960824/how-can-i-create-a-source-list-on-mac-os-x How can I create a 'source list' on Mac OS X? Mark 2009-06-06T23:46:08Z 2009-06-30T08:12:23Z <p>The Apple guidelines talk about using a <a href="http://developer.apple.com/documentation/UserExperience/Conceptual/AppleHIGuidelines/XHIGWindows/XHIGWindows.html#//apple%5Fref/doc/uid/20000961-CHDDIGDE" rel="nofollow">source list</a> - how do I create this source list, either in Carbon or Cocoa? Is there an official API somewhere for this component?</p> 2 http://stackoverflow.com/questions/1060919/how-come-the-unix-locate-command-still-shows-files-folders-that-arent-there-any How come the unix locate command still shows files/folders that aren't there any more? James Morris 2009-06-29T22:35:24Z 2009-06-30T03:19:32Z <p>I recently moved my whole local web development area over to using MacPorts stuff, rather than using MAMP on my Mac. I've been getting into Python/Django and didn't really need MAMP any more.</p> <p>Thing is, I have uninstalled MAMP from the Applications folder, with the preferences file too, but how come when I run the 'locate MAMP' command in the Terminal it still shows all my /Applications/MAMP/ stuff as if it's all still there? And when I '<code>cd</code>' into /Applications/MAMP/ it doesn't exist?</p> <p>Something to do with locate being a kind of index searching system, hence things these old filepaths are cached? Please explain why, and how to sort it so they don't show anymore.</p> 5 http://stackoverflow.com/questions/1061116/jws-jnlp-no-desktop-icon-on-mac JWS JNLP no Desktop Icon on Mac banray 2009-06-29T23:44:31Z 2009-06-29T23:44:31Z <p>I seem to be having a problem getting the icon for a Java Web Start program to appear on the Mac desktop, or under "Applications". The icon's and menu's are created and work properly under windows XP and Vista, is there something different that must be done for Macs?</p> <p>On the Mac there aren't output any errors, it prompts me with the question if I would like to create the shortcuts, I click yes, and then it continues launching the program but never seems to produce them.</p> 0 http://stackoverflow.com/questions/1057361/looking-for-java-binary-for-mac-os-x Looking for Java binary for Mac OS X Neoryder 2009-06-29T09:20:01Z 2009-06-29T22:53:50Z <p>Hi,</p> <p>I'm trying to build zimbra from source on a mac mini running on mac os x 10.4.10.</p> <p>It seems that I need a file like this "jdk-1_5_0_16-linux-i586.bin" but I can't seem to find a jdk binary that is made for mac osx.</p> <p>Can anybody point me to this binary? </p> <p>Here is what zimbra does with the binary:</p> <pre><code>sh jdk-1_5_0_15-linux-amd64.bin tar czf jdk1.5.0_15.tgz jdk1.5.0_15 mv jdk1.5.0_15.tgz /opt/build.zimbra/source/FRANKLIN/ThirdPartyBuilds/x86_64/java/ </code></pre> <p>If I cannot download this, Is there a way to create the tgz from an installation of java?</p> 3 http://stackoverflow.com/questions/1058639/how-to-display-indeterminate-nsprogressindicator-in-the-nsoutlineview How to display indeterminate NSProgressIndicator in the NSOutlineView? Stream 2009-06-29T14:29:20Z 2009-06-29T15:30:30Z <p>I need to display a progress of loading of item's children. Please advise how to implement a progress indicator like it's done in Mail application:</p> <p><img src="http://www.quicksnapper.com/files/10513/5329281414A48CEBA2FFE0%5Fm.png" alt="Progress Indicator in Outline View" /></p> 2