active questions tagged mac - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T10:13:12Z http://stackoverflow.com/feeds/tag/mac http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1699107/swing-object-first-settext-gets-stuck-when-using-mac-java-se-6 0 Swing object: first setText() gets "stuck" when using Mac Java SE 6 Tim 2009-11-09T04:34:00Z 2009-11-09T06:40:07Z <p>Hi there,</p> <p>I am a Java newbie trying to maintain an application that works fine under J2SE 5.0 (32- and 64-bit) but has a very specific problem when run under Java SE 6 64-bit:</p> <pre><code>[Tims-MPB:~] tlynch% java -version java version "1.6.0_15" Java(TM) SE Runtime Environment (build 1.6.0_15-b03-226) Java HotSpot(TM) 64-Bit Server VM (build 14.1-b02-92, mixed mode) </code></pre> <p>The application is cross-platform and reportedly works correctly on Java SE 6 under Windows, though I haven't been able to verify that myself.</p> <p>The program uses a JTextField for some text entry and a JLabel to indicate the text to be entered. The first time the showDialog() method is called to set the label text and display the dialog, it works correctly, but subsequent calls all result in the display of the label from the initial invocation rather than the one most recently specified via setText().</p> <pre><code>public void showDialog(String msgText) { System.out.println("set ChatDialog: " + msgText); jLabel1.setText(msgText); jLabel1.repaint(); // I added this; it didn't help System.out.println("get ChatDialog: " + jLabel1.getText()); super.setVisible(true); } </code></pre> <p>[the full text of the class is provided below]</p> <p>The added printlns validate that expected text is passed to the label's setText() method and is confirmed by retrieving it using getText(), but what shows up on the screen/GUI is always the text from the very first time the method was called for the object.</p> <p>A similar issue is observed with a JTextArea used to label another dialog box.</p> <p>These problem are consistent across multiple Mac systems running Java SE 6 under OS 10.5.x and 10.6.x, but they are never observed when one reverts to J2SE 5.0.</p> <p>If there is some background information pertinent to this problem that I have omitted, please let me know. Any insights or advice appreciated.</p> <pre><code>package gui; import java.awt.*; import java.awt.event.KeyEvent; import javax.swing.*; // Referenced classes of package gui: // MyJPanel, ChatDialog_jTextField1_keyAdapter, WarWindow public class ChatDialog extends JDialog { public ChatDialog(JFrame parent, WarWindow w) { super(parent, true); text = ""; borderLayout1 = new BorderLayout(); jPanel1 = new MyJPanel(); borderLayout2 = new BorderLayout(); jPanel2 = new MyJPanel(); jPanel3 = new MyJPanel(); jLabel1 = new JLabel(); jTextField1 = new JTextField(); warWindow = w; try { jbInit(); } catch(Exception exception) { System.out.println("Problem with ChatDialog init"); exception.printStackTrace(); } return; } public String getText() { return text; } void jTextField1_keyPressed(KeyEvent e) { int id = e.getKeyCode(); switch(id) { case 10: // '\n' text = jTextField1.getText(); setVisible(false); break; } } private void jbInit() throws Exception { setLocation(232, 450); setSize(560, 60); setModal(true); setResizable(false); setUndecorated(true); getContentPane().setLayout(borderLayout1); jPanel1.setLayout(borderLayout2); jPanel2.setMinimumSize(new Dimension(10, 20)); jPanel2.setPreferredSize(new Dimension(10, 20)); jLabel1.setPreferredSize(new Dimension(380, 15)); jLabel1.setHorizontalAlignment(0); jLabel1.setText("Chat Message"); jTextField1.setPreferredSize(new Dimension(520, 21)); jTextField1.setRequestFocusEnabled(false); jTextField1.addKeyListener(new ChatDialog_jTextField1_keyAdapter(this)); getContentPane().add(jPanel1, "Center"); jPanel1.add(jPanel2, "North"); jPanel2.add(jLabel1, null); jPanel1.add(jPanel3, "Center"); jPanel3.add(jTextField1, null); } public void setVisible(boolean b) { jTextField1.setText(""); super.setVisible(b); } public void showDialog(String msgText) { System.out.println("set ChatDialog: " + msgText); jLabel1.setText(msgText); jLabel1.repaint(); // I added this; it didn't help System.out.println("get ChatDialog: " + jLabel1.getText()); super.setVisible(true); } void this_keyPressed(KeyEvent e) { int id = e.getKeyCode(); switch(id) { case 10: // '\n' System.exit(88); break; } } BorderLayout borderLayout1; BorderLayout borderLayout2; JLabel jLabel1; JPanel jPanel1; JPanel jPanel2; JPanel jPanel3; JTextField jTextField1; String text; WarWindow warWindow; } </code></pre> http://stackoverflow.com/questions/1699029/where-can-i-find-rss-feeds-for-xcode-documentation 0 Where can I find RSS feeds for Xcode Documentation? Bryan Kyle 2009-11-09T04:01:31Z 2009-11-09T04:22:44Z <p>Occasionally I like to work completely disconnected from a network. In those cases it's really nice to have complete sets of documentation on my Mac. Xcode supports subscribing to feeds of documentation. I've subscribed to the sets that I'm interested in but there's a problem: It doesn't appear that the lists are up to date.</p> <p>I'd like to subscribe to the feed for 10.6 but I can't find out what the url is. I've googled and searched through the documentation on developer.apple.com but no luck so far. Does anyone know what the feed url is for 10.6, or if there's a link that contains a listing of all of the feeds?</p> http://stackoverflow.com/questions/257934/what-browser-screenwidth-should-i-design-for-to-support-mac-os 2 What browser screenwidth should I design for to support Mac OS ? Simon 2008-11-03T04:23:00Z 2009-11-09T03:49:13Z <p>Most statistics out there for browser stats show you the resolution of the screen.</p> <p>Thats fine for Windows where browsers typically open full screen and most people leave it as that. So if the browser stats say 1024x768 you just need to subtract a little width for the browser chrome.</p> <p>On a Mac however browsers typically dont open full screen.</p> <p>What kind of width is a mac browser likely to be when it opens as such.</p> <p>I'm thinking of a width of 960 as recommended by <a href="http://stackoverflow.com/questions/202557/what-is-the-best-absolute-width-for-a-webpage">what-is-the-best-absolute-width-for-a-webpage</a>. However I'm wondering if this is equally as good width for a mac?</p> <p>I'm not sure when Apple last made 1280x768 laptops or screens anyway so its probably a non issue. It just frustrates me a little that most places I find statistics on screen resolution dont show you the actual available width.</p> http://stackoverflow.com/questions/1698124/how-to-tell-if-a-given-path-is-mounted-removable-media-in-mac-os-x 0 How to tell if a given path is mounted removable media in Mac OS X? robottobor 2009-11-08T22:24:04Z 2009-11-08T23:11:48Z <p>Given a path, in Mac OS X, is there a way to tell that it is a mounted CD or DVD, as opposed to a regular directory, a regular file, or mounted DMG or other mountable file type? Specifically I would like to know if it is a CD or DVD when a user supplies a path directly, or via the NSOpenPanel, or drags the CD onto the app. I need to take special action in these cases.</p> http://stackoverflow.com/questions/897477/installing-git-on-os-x 2 Installing Git on OS X Chris Lutz 2009-05-22T11:52:01Z 2009-11-08T10:16:07Z <p>I am trying to install Git on Mac OS X Leopard. I'm trying to avoid the MacPorts/Fink route. I'm also trying to avoid the <a href="http://code.google.com/p/git-osx-installer/" rel="nofollow">installer</a> on Google because I've gotten very far on my own, but if I have to I'll go ahead and download the installer.</p> <p>Anyway, I have Git installed. <code>/usr/local/bin/git</code>. The problem is that none of the documentation installed, and the Makefile never bothered to tell me that. So now I have Git sitting around waiting to be used as I try to install the manpages for it.</p> <p>For some awful reason, the manpages are maintained as text files, which are to be processed by the AsciiDoc program, which I promptly installed. But AsciiDoc converts these text files to XML.</p> <p>Then Git uses another program called xmlto to convert the XML that AsciiDoc spits out to manpages (I think - I haven't gotten that far yet). The problem is that I get this error whenever it starts that step (first line is output from make, rest is error):</p> <pre><code> XMLTO git-apply.1 I/O error : Attempt to load network entity http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd /Users/chrislutz/prog/sources/git-1.6.3.1/Documentation/git-apply.xml:2: warning: failed to load external entity "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" D DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" </code></pre> <p>So basically it just goes through every file and gives me that error for all of them.</p> <p>I did try at one point to download the file <code>http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd</code>, put it in the directory, and then changed all the references in the XML files to the file in the directory, but this gave me more and stranger errors. If I got a regular solution to work, it might still give me those stranger errors, which means the whole thing is screwed and that I'll just use the Google installer.</p> <p>However, I've gotten (stumbled) this far on my own, and I feel like this is one last step before a sigh of relief and the chance to use Git. So I want to make a last-ditch effort to understand what's wrong. And "last-ditch effort" means "Ask Stack Overflow."</p> <p>So if anyone could give me any insight as to what that error means and why it's occuring (and what I might be able to do to fix it), that would be awesome. If not, I'll try the Google installer.</p> http://stackoverflow.com/questions/1652249/cant-start-mysql-on-mac-os-x-getting-mysql-sock-connection-error 0 can't start mysql on mac OS X getting mysql.sock connection error bandhunt 2009-10-30T20:49:38Z 2009-11-08T04:11:44Z <p>I'm trying to get mysql running on my mac. I used macports for the initial install but can't get past this mysql socket error. Note: macports appends the version number to commands if they look odd below.</p> <p><b>Error: </b></p> <blockquote> <p>Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)'</p> </blockquote> <p>I get this error when:</p> <blockquote> <p>mysqladmin5 -u root password<br /> and also<br /> mysql5 -u root -p</p> </blockquote> <p><b>My install and start process</b><br /> Installed mysql with macports:</p> <blockquote> <p>sudo port install mysql5 +server<br /> sudo /opt/local/lib/mysql5/bin/mysql_install_db --user=mysql</p> </blockquote> <p>Started like this:</p> <blockquote> <p>sudo /opt/local/bin/mysqld_safe5</p> </blockquote> <p>Also tried:</p> <blockquote> <p>sudo /opt/local/share/mysql5/mysql/mysql.server start</p> </blockquote> <p><b>How I've tried to solve this</b><br /> I tried adding to the my.cnf file</p> <blockquote> <p>[mysqld_safe] socket = /tmp/mysql.sock</p> </blockquote> <p>Only problem is there wasn't a my.cnf file to begin with so I'm not sure if I created it in the right place.</p> <p>I was also going to sim link the mysql.sock file to the /tmp dir but there's no mysql.sock file anywhere on the system.</p> <p>So I created a mysql.sock file</p> <blockquote> <p>touch /tmp/mysql.sock<br /> But this didn't work either.</p> </blockquote> <p>I'm thinking maybe I missed something in the install process since I can't find the my.cnf or mysql.sock file on the system.</p> <p>Here's the guide I used:<br /> <a href="http://2tbsp.com/content/install%5Fand%5Fconfigure%5Fmysql%5F5%5Fmacports" rel="nofollow">http://2tbsp.com/content/install%5Fand%5Fconfigure%5Fmysql%5F5%5Fmacports</a></p> http://stackoverflow.com/questions/840704/what-are-your-motivations-for-developing-software-for-mac-osx 2 What are your motivations for developing Software for Mac OSX? Thanks 2009-05-08T16:33:01Z 2009-11-08T02:00:01Z <p>I really like my Mac, and I am thinking about developing Software for it some time in the future. What are the reasons why you're making Mac Software? Because you think Mac is so cool? Or is the market so interesting? I think many of us would like to know, right?</p> <p>Well for me, as I said, it's the coolness of the Mac. I don't know anything about the market.</p> http://stackoverflow.com/questions/1694891/in-applescript-how-can-i-access-the-keyboard-shortcut-of-a-menu-item 0 In applescript, how can I access the keyboard shortcut of a menu item? Mike Laurence 2009-11-08T00:19:33Z 2009-11-08T01:45:15Z <p>I'm trying to figure out the keyboard shortcut (e.g., shift+cmd+S) of a given menu item in Applescript. The "Probe Menu Bar" script has helped me to access the menu items and even inspect their properties and such, but I've been unable to discover which of these will print out the keyboard shortcut.</p> <p>The probe script is like this:</p> <pre><code>tell process "Finder" get every menu bar tell menu bar 1 get every menu bar item get every menu of every menu bar item get every menu item of every menu of every menu bar item </code></pre> <p>So I just need a way to print out / collect the shortcut from said "menu item" during this loop.</p> <p>Thanks for your help!</p> http://stackoverflow.com/questions/1694988/create-a-mac-application-installer-and-passing-arguments-on-launch 1 Create a Mac Application Installer and Passing Arguments on Launch Allen 2009-11-08T01:06:03Z 2009-11-08T01:33:43Z <p>Couple questions on creating a mac installer.</p> <p>1) Should any frameworks from /Developer/SDKs/ be included/packaged into the application file?</p> <p>2) When we normally launch the executable we pass it an argument to point it at our servers, is there a way to encode this information into the Unix Executable File found in Contents/MacOS/?</p> <p>Thanks for any help.</p> http://stackoverflow.com/questions/1693677/debugging-php-on-mac 1 debugging php on mac? patrick 2009-11-07T16:54:27Z 2009-11-07T23:42:59Z <p>Hi All,</p> <p>was wondering what was the best way to debug PHP on my local machine. I use MAMP on mac os 10.5</p> <p>thanks, Patrick</p> http://stackoverflow.com/questions/1694703/mac-os-x-10-5-apache-and-subversion-upgrade-alternatives 1 Mac OS X 10.5 Apache and Subversion upgrade alternatives bsetterb 2009-11-07T22:47:10Z 2009-11-07T23:22:51Z <p>I've found myself down a rabbit hole and would like advice. It looks like Mac OS X 10.5.8 comes bundled with a pre-configured version of Apache 2.2.11 (located in /usr/sbin), PHP 5.2.10 (located in /usr/bin) and subversion 1.4.4 (located in /usr/bin). I have installed MAMP for MySQL 5.0.41 (located in /Applications/MAMP/...) which comes with Apache 2.0.59 and PHP 5.2.6. The current version of MySQL is 5.1 (mysql.com). I have also installed the latest Subversion binaries 1.6.5 (they get located in /opt/subversion/...). This is becoming a mess. Ideally I would like to have one copy each of Apache, PHP, MySQL, and Subversion and have them all be the latest release and have them work together properly. Are there configuration pitfalls specific to the Mac that I need to watch for if I install the newest binaries of Apache in /usr/sbin, PHP5 in /usr/bin, subversion in /usr/bin, and Mysql in /usr/bin (or /usr/local/bin)? Am I just asking for trouble?</p> http://stackoverflow.com/questions/1692048/charset-and-utf-8-in-a-downloaded-text-file-on-a-mac 0 Charset and UTF-8 in a downloaded text file on a Mac breuklyner 2009-11-07T04:57:20Z 2009-11-07T22:02:35Z <p>We have a PHP/MYSQL application that collects user input, including special characters like ø,ü,ñ, etc Database is capturing them, and they can be seen via PHPmyAdmin. Download on windows is fine. Display on a mac browser is fine.</p> <p>When users download the text file on a Mac OSX, the unicode characters come out as other characters. If I save the PHP file as with UTF-8 with BOM, (which apparently affects PHP output) they come out as little black diamonds.</p> <p>Here is the output header I am using</p> <p>mb_http_output("UTF-8"); header('Content-type: application/xml; charset="utf-8"'); header("Content-Disposition: attachment; filename=file.xml"); die($text);</p> <p>Any tips greatly appreciated!</p> http://stackoverflow.com/questions/602040/eclipse-on-the-mac-using-windows-keyboard-shortcuts 2 Eclipse on the Mac... using Windows keyboard shortcuts? jtgameover 2009-03-02T11:49:28Z 2009-11-07T21:40:50Z <p>I'm a power Eclipse user on Linux/Windows, and the keyboard shortcuts are practically muscle memory. Just recently started developing on a Mac (love it!), using Eclipse, but was really tripped up by the use of the <code>command</code> key... and not all the shortcuts map over consistently.</p> <p>I've already re-mapped all my common shortcuts to use <code>Ctrl</code>, but was wondering if anyone's found a more efficient and complete way to do this? Has some kind soul gone through all the shortcuts and posted a preferences file ready for import?</p> http://stackoverflow.com/questions/1693904/atomic-file-save-on-linux-without-losing-metadata 3 Atomic file save on Linux without losing metadata Brent Royal-Gordon 2009-11-07T18:06:26Z 2009-11-07T20:47:16Z <p>I'm working on a Perl-based file synchronization tool. It downloads files into a temporary directory (which is guaranteed to be on the same filesystem as the real file) and then moves the temporary files into place over the old ones, preserving metadata like permissions, ownership, and ACLs. I'm wondering how to achieve that last step on Linux.</p> <p>On Mac OS X, at least in C, I would use the <code>exchangedata</code> function. This takes two filenames as arguments and swaps their contents, leaving all metadata (besides mtime) intact. It guarantees that the operation is atomic—all readers will see either the old file or the new one, never something in between. Unfortunately, I don't think it's available on Linux.</p> <p>I know that <code>rename</code> moves atomically, but it doesn't preserve metadata. On the other hand, I could open the file and overwrite the data with the contents of the new one, which would preserve all metadata but would not be an atomic operation. Any suggestions on tackling this problem?</p> http://stackoverflow.com/questions/1693780/applescript-to-launch-itunes-with-a-specific-library 0 Applescript to launch iTunes with a specific library Kyle Hayes 2009-11-07T17:27:53Z 2009-11-07T18:33:40Z <p>I would like to write an AppleScript that would allow me to launch iTunes with a given Library instead of having to hold down the Option key and browsing for one. I'm already aware of Doug's Library manager, which is not quite what I want. The AppleScript would be for a specific library.</p> http://stackoverflow.com/questions/84324/how-to-protect-mac-os-x-software-from-cracking 1 How to protect Mac OS X software from cracking? Vladimir 2008-09-17T15:15:23Z 2009-11-07T15:42:47Z <p>We're releasing a Mac version of our Windows application. Under Windows, there are several tools for executable protection, for example Armadillo, ExeCryptor, AsProtect etc, however, none of these has a Mac version. So, my question is:</p> <p>Are there any executable protection / encryption tools for Mac OS X?</p> http://stackoverflow.com/questions/887404/whats-the-best-way-to-manage-code-snippets-on-xcode 2 Whats the best way to manage code snippets on Xcode? eviljack 2009-05-20T11:33:18Z 2009-11-07T15:27:44Z <p>I have fallen in love with visual studio's code snippets toolkit. Is there anything similar on Xcode?</p> http://stackoverflow.com/questions/1692726/how-to-set-a-folder-as-classpath-in-jarbundler 0 How to set a folder as classpath in jarbundler Sunil Kumar Sahoo 2009-11-07T11:14:40Z 2009-11-07T11:14:40Z <p>Hi using jar bundler of Mac 10.5.7. I can set any file as classpath. I have a folder which contains some database files. In my java program I am using this path. So how to set my folder in "class path and file section" in jarbundler.</p> <p><a href="http://developer.apple.com/Mac/library/documentation/Java/Conceptual/Jar%5FBundler/Packaging/Packaging.html" rel="nofollow">http://developer.apple.com/Mac/library/documentation/Java/Conceptual/Jar%5FBundler/Packaging/Packaging.html</a></p> <p>Thanks Sunil Kumar Sahoo</p> http://stackoverflow.com/questions/1692229/best-f-ide-for-a-mac 0 Best F# IDE for a Mac Chris Smith 2009-11-07T06:37:11Z 2009-11-07T06:42:52Z <p>I'm trying to convince a friend of mine to switch from OCaml to F#, however they are programming on a Mac. What is the best F# development experience on top of OS X?</p> <p>From looking at a <a href="http://stackoverflow.com/questions/1277430/best-equivalent-visualstudio-ide-for-mac-to-program-net-c">similar question on SO</a>, it appears that the <a href="http://artwild.blogspot.com/2008/08/f-addin-for-monodevelop.html" rel="nofollow">F# Addin for MonoDevelop</a> is my best bet. Are there any better alternatives?</p> http://stackoverflow.com/questions/1679657/cant-run-netbeans-after-changing-java-to-1-6-on-mac 0 Can't Run Netbeans after changing Java to 1.6 on mac black sensei 2009-11-05T10:31:23Z 2009-11-07T04:00:11Z <p>Hello guys i know i've posting a lot about mac lately and setting up my environment to develop on java 1.6. after trying to set my etc/launch.conf like so </p> <blockquote> <p>setenv JAVA_VERSION 1.6<br> setenv JAVA_HOME /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/<br> setenv CATALINA_BASE /Library/apache-tomcat6020<br> setenv CATALINA_HOME /Library/apache-tomcat6020<br> setenv CATALINA_TMPDIR /Library/apache-tomcat-6.0.20/temp </p> </blockquote> <p>and with sodu i can't run my java with 1.6 it was still 1.5 so i found online some workarounds</p> <pre><code>rm Current* ln -s 1.6.0/ Current ln -s 1.6.0/ CurrentJDK </code></pre> <p>i works untill i restart the machine and then i cannot run eclipse no netbeans any more.Netbeans start and stop few seconds after and eclipse spit out error code =-1. I just want to come back to 1.5 and see.Java parameter behave the same way as NetBeans. i did the same link stuf for 1.5 by removing the current and create the new link, and updating /etc/launchd.conf to 1.5 no success after restarting the machine. java -version give 1.6.0_15 both on normal user and sudo. What do you think i should do? Thanks for reading</p> http://stackoverflow.com/questions/1691889/creating-a-cocoa-app-using-c-or-perl-not-objective-c 4 Creating a Cocoa app using C or Perl (NOT Objective-C) aditya 2009-11-07T03:33:50Z 2009-11-07T03:36:49Z <p>I'm having a hard time understanding how to use Cocoa with either C or Perl.</p> <p>Background: I've seen it mentioned in quite a few places that Mac's Cocoa API can be used with C, Perl etc. but I haven't found any information on how to go about doing this. I've also found a couple of articles saying that Cocoa can be used with Objective-C only.</p> <p>I've seen CamelBones for Perl but it looks like I have to use XCode and a fair amount of Objective-C to use it.</p> <p>Are there any resources on building a Cocoa app using just a C compiler and a text editor?</p> http://stackoverflow.com/questions/1425760/browser-plug-ins-not-loading-in-webview-implementation 1 Browser Plug-ins Not Loading in WebView Implementation Zanneth 2009-09-15T07:53:18Z 2009-11-06T22:51:31Z <p>I have a Cocoa app that I'm trying to write which displays a webpage. This webpage has an embedded quartz composition in the background that plays and works when in Safari, but it does show in my Cocoa application (it just shows the missing plugin icon in the background instead).</p> <p>The weird thing is that it works on another computer that I was testing it on. Am I missing a framework or a plugin somewhere that might cause this?</p> <p>Another note: no plug-ins seem to work. For example, when the WebView displays youtube.com it is unable to play video because it says that Flash Plugin is not installed. Again, the same code works on another computer, but not this one.</p> <p>Thanks! Any help would be greatly appreciated!</p> http://stackoverflow.com/questions/1690641/gui-objects-not-showing-in-java-on-mac 0 GUI objects not showing in Java on Mac DiegoFuego 2009-11-06T21:39:32Z 2009-11-06T22:02:39Z <p>I've only just begun writing GUI programs, this being my second one. With both projects (both homework assignments) I have had the same issue. The GUI objects (such as JTextField) do not show when the application runs until after I resize the window or move keyboard focus to them. If I do not do one of those two things, then I'll just have an empty application window. </p> <p>Any ideas why this is happening and what I could do to solve it? I'm working on Mac OS 10.6.1.</p> <p>My code is below. Feel free to comment on my coding style, but please focus on the problem I'm having. </p> <pre><code>import javax.swing.*; import java.awt.*; public class ToDo extends JFrame { private int height = 30, width = 300; public ToDo() { this.setSize(400,400); this.setVisible(true); this.setLayout(null); this.setResizable(true); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); this.setTitle("To Do List"); JTextField todoItem[] = new JTextField [10]; Container contentpane = this.getContentPane(); contentpane.setLayout(null); for(int i=0; i&lt;10; i++) { todoItem[i] = new JTextField(); todoItem[i].setBounds(10,(height*(i)+10),width,height); contentpane.add(todoItem[i]); } } public static void main(String[] args) { new ToDo(); } } </code></pre> http://stackoverflow.com/questions/789087/one-click-install-for-ruby-rails-sqlite 3 One-Click install for Ruby/Rails/SQLite? Sam 2009-04-25T15:05:52Z 2009-11-06T17:20:16Z <p>I'm really excited to start programming in Ruby with the Rails framework; I've read great things about Ruby on Rails! I've gotten myself a couple of books, thumbed through a few tutorials, read some forum threads, but I'm already stuck on Step One: Installation.</p> <p>I guess I'm more used to the One-Click install local environments of <a href="http://www.mamp.info/en/index.html" rel="nofollow">MAMP</a>. Is there a Ruby equivalent... a download that you run and instantly get the most current versions of Ruby, Rails, SQLite running locally?</p> <p>I'm using a Mac, running Leopard, and am aware that all of the aforementioned technologies ship with Leopard (except maybe SQLite). The books that I have reference newer versions and the last thing I need is to try to retrofit a tutorial to work with my version!</p> <p>Oh... and one more less important question: What the heck are Gems and is that something that I need to make sure is fully updated too?</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/420456/open-terminal-here-in-mac-os-finder 10 Open terminal here in Mac OS finder Abdullah Jibaly 2009-01-07T14:21:21Z 2009-11-06T17:08:23Z <p>Is there something similar to the "Open Command Window Here" Windows Powertoy for Mac OS? I've found a couple plugins through a google search but wanted to see what works best for developers out there.</p> http://stackoverflow.com/questions/1652732/change-screen-resolution-in-snow-leopard 3 Change Screen Resolution in Snow Leopard Reed Olsen 2009-10-30T23:09:10Z 2009-11-06T16:34:25Z <p>I've been plugging away at this for a few hours now, and haven't found a good answer. In Leopard, I can programmatically change the screen resolution using Quartz Display Services with <strong>CGConfigureDisplayMode</strong>. Unfortunately, this has been deprecated in 10.6.</p> <p>This seems like a simple task: how can I change the screen resolution with non-deprecated methods in Snow Leopard?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1687357/updating-python-on-mac 1 Updating Python on Mac itsaboutcode 2009-11-06T12:45:57Z 2009-11-06T15:34:51Z <p>I wanted to update my python 2.6.1 to 3.x on mac but i was wondering if its possible to do it using terminal or i have to download the installer from python website? </p> <p>The reason why i am asking this question is because installer is not updating my terminal python version.</p> http://stackoverflow.com/questions/1683620/getting-started-with-cronjobs-on-a-mac 0 Getting started with cronjobs on a Mac. Adam 2009-11-05T21:07:19Z 2009-11-06T14:16:04Z <p>I'm trying to get familiar with cron jobs, and I think I get the basic idea (scheduling, syntax, etc), But, I can't seem to get it right on my mac with Terminal - where exactly do I find the Crontab? How should I reference the paths to scripts?</p> <p>What I'm trying to do is hit a php script on a remote machine (http://...) - Is that possible at all?</p> http://stackoverflow.com/questions/1687101/how-to-use-package-maker-of-mac-10-5-7 0 how to use package maker of Mac 10.5.7 Sunil Kumar Sahoo 2009-11-06T11:48:21Z 2009-11-06T14:03:52Z <p>Hi I am using Mac 10.5.7 .I have created a sample java application. Now I want to create package for distribution for my application. We can create this using Package Maker. </p> <p>So How to use package maker to make my software distributable</p> <p>Thanks Sunil Kumar Sahoo</p> http://stackoverflow.com/questions/1685522/how-to-know-a-devices-name-from-its-device-id-in-os-x 2 How to know a device's name from its device ID in OS X? yangumi 2009-11-06T05:06:30Z 2009-11-06T13:36:18Z <p>Hi all,</p> <p>I'm writing a program in OS X that receives click events from a mouse and a touchpad. When the user clicks at somewhere, the OS sends the device ID, which is just an int, and the position of the cursor to my callback function. I want to know if the click event comes from mouse or touchpad. So, how can I know the device's name from its device ID?</p> <p>Thank you!</p> <p>(I'm sorry for my poor English.)</p>