Problem with Mac OS X Bundle

Hi everybody!
I've developed a GUI app that is almost complete and has been tested many times running perfectly. Now the friend I'm doing this with wants to use the Jar Bundler to make it run natively on Mac OS X.
My problem is the following. My app which is packaged as a JAR file reads different icons it uses from a serialized file which currently is set to be in the same directory as the JAR file. It has worked perfectly up until now, before we packaged the app into a Mac bundle. Inside the bundle (more specifically inside the Contents/Resources/Java folder) the two files ARE in the same folder. Still, when running the bundle, it cannot find the graphics file.
I have searched through what seems to be the entire Internet looking for a solution or someone who has had the similar problem, without finding anything. This leads me to believe that the solution to the problem is simple, since there's nothing to find.
Can anyone help me?
Thank you.
MS

Ok well I fixed this myself...
It turns out that one can set a property called WorkingDirectory for the bundle to create. In the bundle that we created, there was no such variable defined, so the working directory defaulted to the folder in which the bundle itself (not the JAR file inside the bundle) was located.
When we set it to the path inside the package (for those interested, the code added was
<key>WorkingDirectory</key>
<string>$APP_PACKAGE/Contents/Resources/Java</string>
the program started looking for the graphics file inside the bundle, in the same location as the JAR file. This also meant that all files that were serialized appeared in the same spot.
Just thought I would post this in case anyone else has the same problem. Btw the solution was found at http://www.borderlandconsulting.com/bc/articles/swt_app_bundle.php
MS

Similar Messages

  • AD account Login problem with MAC 10.6.8

    Hi All,
    We have around 50 odd MAC that are connected to windows server 2008 R2. the user were logining in to these MACs using their AD account. Recently few of the random MAC did not allow the user to login using their AD account.When analyzed though the MAC shows that it has connected to the Domain and the server is active with green button it has unbind itself from the server.I had to login in as local user bind the MAC back to get this resolved.
    Now the same has started happeneing for most of the MAC that we have and every morning I have login as local Admin and unbind / bind the MAC with the server. this gets reset once the user reboots or shutsdown.
    Have tried with few of the below solution but nothing helped:
    Solution 1:
    <key>mdns_timeout</key>
    <integer>2</integer>
    The integer value is in seconds; changing it to at least 5 should allow the Mac OS X client to reconnect to the Active Directory domain after a network interruption. In some configurations, a larger timeout value may be required.
    You can change this value by using the sudo command and a text editor to edit the preference file directly. Or you can use the Terminal command below, making sure to enter it all on a single line:
    sudo /usr/libexec/PlistBuddy -c 'Set :mdns_timeout 5' /System/Library/SystemConfiguration/IPMonitor.bundle/Contents/Info.plist
    Solution 2:
    I have seen all of the probable solutions and tried everything and still I am getting issues with 10.6.6 and after rebooting the Mac gets unbind. Or the Mac gets Network Accounts Available even when not accessing the list of users from AD. But the thing that I have done that has solved all my issues with AD on the Macs is to uncheck the box to search on all domains. For some reason I am seeing that when the Macs have this option checked, it searches through out the forest on the same domain controller more than once, so AD stops the handshaking of the authentication.
    I hope this helps like it did on our Network, since then I have not seen the Macs lose the binding or slow SMB.
    If you've tried this please let us know.
    TIP: Uncheck Allow Authentication from any domain for Mac AD problems
    Wednesday, April 20, 2011
    Steven Wells sent a fix and an explanation of problems with Macs losing their binding to Active Diretory:
    Unchecking "Allow authentication from any domain in the forest" is working at our college. We have been beating our heads on this for about 2 terms, with no understanding of why it works in some places and not in others. When we found this working, our IT guy said that the Security SID is being duplicated, when it looks in other domain forest, and that is what is causing the problem. This is the first time I have found an explanation for the problem.
    If you've tried this approach please let us know.
    Solution 3:
    Solved it. Create a file in Textedit with the name 'auto_master' (no file extension) with the following contents:
    # Automounter master map
    +auto_master # Use directory service
    /net -hosts -nobrowse,hidefromfinder,nosuid
    /home auto_home -nobrowse,hidefromfinder
    #/Network/Servers -fstab
    /- -static
    Place this in /etc/ folder
    Hope this helps
    solution 4:
    TIP: a Kerberos fix for OS X 10.5 and 10.6 binding to Active directory
    Friday, November 11, 2011
    Mehdi Mafi forwarded a fix he found for problems with Leopard and Snow Leopard binding to Active Directory:
    This was taken from Dane Riley's imaging building for DeployStudio.
    With Mac OS X Leopard every Mac is now running a KDC (Kerberos Distribution Center). Basically each imaged machine is using the same security certificate and hash. Deploying a single image will deploy the same KDC to every system. This [Apple] article covers how to reset the local KDC so that each system is unique. Basically, do the following:
    Launch Keychain Access
    Search for com.apple.kerberos.kdc and delete all 3 items
    Using Terminal type sudo rm -fr /var/db/krb5kdc
    After deployment, perhaps using Apple Remote Desktop to all systems, re- establish the KDC by typing sudo /usr/libexec/configureLocalKDC
    If you've tried this approach with Mac OS X 10.5, 10.6, or even Lion, please let us know. .
    TIP: More on a kerberos fix for AD binding problems
    Monday, November 14, 2011
    Mehdi Mafi updated his Friday report about Mac OS X 10.6 problems binding to Active Directory:
    You may want to add this. If the Mac keeps unbinding from AD (people can't log in to a Mac), here is how to fix it:
    Unbind it from Domain
    Launch Keychain Access
    Search for com.apple.kerberos.kdc and delete all 3 items
    Using Terminal type sudo rm -fr /var/db/krb5kdc
    Re-establish the KDC by typing sudo /usr/libexec/configureLocalKDC
    Bind it to domain again ( When you bind, uncheck allow authentication from any domain in the forest in: Directory Utilitiy-> Advanced Options\Administrative ) this fix the issue that sometimes it can' find AD under search space.
    If you tried this please let us know.
    Solution 5:
    For Snow Leopard AD login issues, use upper case domain
    Solution 6: for .local
    To create this StartupItem, create the following directory as root:
    /Library/StartupItems/FixADAuth
    Then chown it to root:wheel and chmod it to 755. These must also be the owner/permissions on the two files it will contain, below:
    Contents of our /Library/StartupItems/FixADAuth/FixADAuth:
    #!/bin/bash
    . /etc/rc.common
    date > /var/log/FixADAuth.log
    n=0
    AuthSuccess=0
    while [ $AuthSuccess != 1 ]
    do
    id Administrator && AuthSuccess=1 || networksetup -setsearchdomains Ethernet "Empty"; networksetup -setsearchdomains Ethernet middlewich.local; n=$(($n+1))
    done
    echo Authentication successful: $AuthSuccess >> /var/log/FixADAuth.log echo Operation count: $n >> /var/log/FixADAuth.log
    date >> /var/log/FixADAuth.log
    Contents of our /Library/StartupItems/FixADAuth/StartupParameters.plist:
    Description = "Fixes Active Directory authentication issue";
    Uses = ("Disks");
    Obviously you'll need to change "middlewich.local" to your own domain name (and the network interface name if your connection is wireless). The script checks to see if it can see the user "Administrator" on the domain, as he's a fairly common bloke, but if you've renamed yours for security reasons then pick another one. I've also included some logging functionality for debug purposes, so you can verify how well the script is working if you need to and time it in your environment before telling the users how long to wait. The /var/log/FixADAuth.log file will contain the date/time the process started, the success variable set to 1 (just to verify), how many DNS operations were required to fix the problem, and the date/time it ended. For us the time difference is normally about +30-40 seconds with around 120-180 operations taking place. Once you're happy with the script, you can strip it down to its bare functionality if you like, like so for us:
    #!/bin/bash
    . /etc/rc.common
    AuthSuccess=0
    while [ $AuthSuccess != 1 ]
    do
    id Administrator && AuthSuccess=1 || networksetup -setsearchdomains Ethernet "Empty"; networksetup -setsearchdomains Ethernet middlewich.local
    done
    I hope this helps someone!
    Regards

    You are welcome.
    But the question is 10.6 mac  just like 10.6.8  , as long  as its the same and works.
    Yes. You can save some updates by using the combo update.
    10.6.8 Combo Updater

  • Problems with Mac OSX 10.5.2 and installing my pro tools le 7.1.1

    Problems with Mac OSX 10.5.2 and installing my pro tools le 7.1.1.
    My garage band & reason software don´t open anymore giving me a error messasge regarding the midi drivers in the operating system.
    Please help!!!
    Thanks,
    Paolo

    Somewhere at either Macworld or here I learned that DVDSP 2, DVDSP 3 and now DVDSP 4 "internally" are major re-writes.
    Support for HD among a few other items along with QT 7 which comes with Tiger means sincerely that one set of applications/OS is not going to be stable.
    Personally I think of all the issues possible its DVDSP vs QT.
    Unless you move to DVDSP v4 the alternative is to wipe the disk and go back to Jaguar (10.2) or perhaps Panther but avoid upgrading QT beyond 6. I advocate wiping the disk because I'n not sure an archive and install to down shift to an earlier version of the OS is possible. If it is I'd still worry about mis-matched files in all sorts of locations.

  • Hello  I have a problem with Mac Pro, iPhoto does not want to stay open and close as I can figure this out?  thanks

    Hello  I have a problem with Mac Pro, iPhoto does not want to stay open and close as I can figure this out?  thanks

    Refer below link once
    App doesn’t open | Progress wheel spins continually

  • After I updated lion to 10.7.4, app store does not recognize my ID APPLE and it unable to connect me to app store in order to update/download apps? What have I to do? I have the same problem with mac mini e mac book air. Please help me!

    After I updated lion to 10.7.4, app store does not recognize my ID APPLE and it unable to connect me to app store in order to update/download apps? What have I to do? I have the same problem with mac mini e mac book air. Please help me!

    Your advice did not help me. I also installed 10.7.4 combo but the situation is the same.
    my internet connection is ok, mail is ok, but app store after 3 resets does not recognize my ID and it says "connection is not possible". Why? I have the same problem in both my mac mini late 2009 and mac book air 2010? Is it a problem of 10.7.4 update? I have to solve this problem and how can i return to 10.7.3 if my last backup was not with 10.7.3???thank you for your kind collaboration...

  • Email Problem with Mac

    Hi, I am new to FIOS so I hope this is the proper board to post in.  I set up 2 subaccounts for verizon.net email and configured them for my Mac Mail program. Everything worked well for about 2 days, and all of a sudden the Mail program keeps asking for my password (even though it was saved in my Mail settings) and says the the incoming mail server is offline.  I've Googled this issue and see that others have posted about the same authentication error. Has anyone else here experienced - and solved - this problem? Thanks. 

    I am having the same problems with Mac eMail.  I have two Macs, one that is running Lion and the other is running Snow Leopard.  I have spent days on the phone with Apple and Verizon and they are blaming each other and neither have a solution.  Have you been able to get a response?  It looks like this is something that happens from time to time but never really gets fixed.
    Please let me know if there has been a fix since the Mac Mail update in July?  With the Union Issues Verizon doesn't have enough people to address the issues both in person ( I had a tech come to the house and he didn't know anything about software ) or on the phone.  They keep kicking it back to Apple.  I also have a couple iPhones and both are working fine. So this seems to be OS X specific.  I've had Macs and iPhones for 3 years or more. 
    Just makes me think something was done to the mail servers they didn't get correct.

  • Problem with Mac Office Password Protection

    I'm running Mac OS X 10.7.5 with MS Word for Mac 12.3.5 and MS Excel for Mac 12.3.5. 
    I created a Word (.docx) and an Excel (.xlsx) document on my Mac at home, both with password protection.  I uploaded the documents onto Google Drive.  I was able to open the documents a few times with the password on my Mac at home, and on my PC at work.  However, now upon opening the docs, Word and Excel say the password is incorrect (both home MAC and work PC). 
    I know I'm entering the correct password. I'm 100% positive. I was able to open the docs a few times previously just a day before.  Now they're completely inaccessible. My questions are:
    (1) Is this a common problem with Mac for Word/Excel docs?  
    (2) Are there ways to recover the password (a dictionary based brute force solution is unlikely to work, as I use non-word passwords with numbers)?
    (3) If this is a common problem, are there other alternatives to password protecting or encrypting Mac for Word and Excel docs that don't cause problems?
    Any feedback is greatly appreciated.  Thanks. 

    Could just be thats the way it runs on Rosetta. I called in apple to ask if I could return office '04 because I didn't want to take the chance, they were more than eager to return it for me because of the fact it would be slow/maybe have problems running in Rosetta.
    I just got iWorks instead till the universal version of office comes out (which if you buy office '04 you'll have to buy the new universal version as well, or so the rep told me).

  • Problems with "Mac Help"

    My help files, especially "Mac Help", no longer work properly since upgrading to Tiger. If I open "Mac Help", for example, the help window will pop up, but the links will not work (nothing happens when I click on them) and the search feature in help will not work either (the little gray "clock" just spins next to the help bar and nothing else ever happens). Any suggestions on this one? As I'm a relatively recent Mac convert, the help feature was something that I came to rely on. Thanks!

    Hi CP,
    This is a common problem with Mac Help. When it happens, try first (quit Help) deleting this folder:
    Home/Library/Caches/com.apple.helpui
    If Help still doesn't work, try then deleting those files:
    Home/Library/Preferences/com.apple.helpviewer.plist
    Home/Library/Preferences/com.apple.help.plist
    (and this one if you find it):
    Home/Library/Preferences/com.apple.helpui.plist
    See also this KB article for more info
    - Mac OS X 10.2, 10.3: Mac Help Viewer unexpectedly quits
    and this excellent X Lab FAQ
    - Troubleshooting Help Viewer
    It seems (not sure about that), that Help caches get easily corrupted when interrupting searches instead of patiently waiting for its internet accessings etc?
    Good luck!
    Axl

  • Thawte Personal Email Cert - Problem with Mac Mail

    Hi, I have requested a free cert from Thawte and there seems to be a problem with Mac Mail (using 2.0.7).
    I am using Entourage to send a signed message from [email protected] to [email protected]
    If I check mail for [email protected]
    Mac Mail reports "There was a problem reading the digital signature for this message"
    If I check the same account with Thunderbird, everything works fine.
    Anyone else having or had problems?
    -chris

    Hi,
    Thanks for the responses. I requested another cert and that did not help. Here is the process I used after requesting another cert.
    1. Logged into www.thawte.com and requested a new cert.
    2. Using Firefox, retrieved the cert.
    3. In Firefox, backed up the cert to a pkcs12 file.
    4. Opened Keychain and deleted the first cert.
    5. Imported the pkcs12 backup file. Imported fine.
    6. Open Entourage, under tools, accounts, exchange profile, security, selected the cert Thawte Freemail Member.
    7. Checked all 3 options (sign, include cert, clear test signed.
    8. Created a test message from Entourage to .mac account address.
    9. Checked mail with Mac Mail and signature fails.
    10. Check with 1.02 Thunderbird and it comes back with valid digital signature.
    Next, I sent a test email to my Exchange account from Entourage and that message verifies fine. It just seems to not work when I check my email with Mac Mail.
    Thanks!
    -chris

  • A serious problem with Mac OS X

    Dear Mac Community
    Since I bought my first iPod (a 3G), I have been a fan of Apple. For years, I had wanted to make a switch to the Mac. About a month ago, I finally decided it was time to leave the M$ world, and bought a Mini.
    My overall experience has been nearly flawless, with no crashes, truly amazing apps that are mac only (like QS, adium, spotlight and the whole iLife bundle, to name a few) and a very good looking interface.
    You may've noticed the word "nearly" on the previous paragragh, and it's there for a reason. There is one serious problem I can't solve. I am Brazilian, and therefore, I speak and write mostly in Portuguese. But OS X has no support for the Brazilian layout keyboard. I have been after a solution since day 1 with my Mac, but all I have managed to find out is that there are tons of pages in the web about Portuguese speakers complaining that their keyboards don't work properly. Apparently, this has been an issue since Mac OS 10.0, and until Tiger there isn't a solution for it.
    There are many different hacks to try to solve this, and I've tried every one, but they are either buggy, or don't work properly with non-universal apps (including word), or aren't 100% accurate on the keys placement.
    The fact is, I write a lot for school, and I need a Brazilian layout keyboard. And my parents, who were also seriously considering switching, work a lot with translations, so it is even more important for them to have the right layout.
    I am going to send a complaint for apple regarding this, but I'm skeptical that I'll get a solution, since this has been a known issue for a long time.
    Sincerely
    Daniel

    There is another major problem with the layout I'm currently using which I forgot to say:
    - I can type accented letters with almost no problem (á, à, ó, é, etc), except for "è" (e + `), which shows up simply as "e".
    "That seems very strange to me. It could be something related to layout id's, which can easily be changed. Let me know if mine works with Word (I assume you are talking about Word2004 rather than the old WordX?)."
    I've checked that more carefully, and here's what I've come up with: Word doesn't change the layout to US, it simply stops recognizing the 12th key (the extra one) which is responsible for "/" and "?" (and therefore is fairly important)
    btw, I'm using Word 2004
    "Thanks. Feel free to email me details and screenshots if you like. Since no one outside Brazil is likely to have the special keyboard with 12 keys on the bottom row, it's somewhat difficult to build and test layouts like this. (tom at bluesky dot org).
    Try the one called winbrazabnt73.keylayout, which tries to put in the extra key. "
    There is one problem with your layout, which is the fact that no app recognizes the 12th key responsible for "/" and "?" (including Pages, which doesn't have this problem with the other layout I'm using).
    On the other hand, your layout manages to type the "è", whereas my other layout doesn't.
    In the site you provided above in this thread (
    http://m10lmac.blogspot.com/2007/02/fixing-brazilian-keyboard-layout.html), there is an image of different kb layouts available in Windows and OS X. If you could make the Windows Brazilian ABNT and it worked with Word, all my issues would be solved, since that's exactly the layout I'm looking for.
    BTW, thanks for all the support
    Best regards
    Mac Mini 1.83 GHz Core Duo 1 GB Ram 80 GB HDD Mac OS X (10.4.8)

  • Wifi problem with Mac after upgrade to Mavericks

    I just upgraded to Mavericks but something wrong with my wifi.
    i can get internet through LAN link from Airport but not through wifi even i can receive an IP address
    i tried connect to hotspot with my iphone5s and it works.
    Other devices can use wifi just fine through Airport, just not my Mac using Mavericks
    In conclusion,
    Airport should be fine because my other devices works.
    Mac wifi should be fine too because i can connect using hotspot.
    so why it's not working when i connect Mac to Airport?

    I was having problems connecting to Wifi with my Macbook Pro (!2010), after upgrading to Mavericks. I was on the phone repeateadly with AT&T because I have Uverse. Testing everything (channels, signal strength) and had techs come out to check the line, ports, switches, etc. When I hardwired the Mac into the Uverse router, it worked fine. This rulled out any problems with the line in.
    I considered getting a repeater but then I read that repeaters are not really good and it is better to reconfigure a router to act as an access point on the network. Plunked down about $80 for a Belkin AC750 router at Best Buy. In the setup it has an option to set it up as an access point only. Clicked that, connected it to my Motorola NVG510 Uverse modem and then connected to the Belkin router from my Mac. Voila!  It's been a solid 11+ Mbs ever since (my plan maxes at 12Mbs). Connection is still solid and life if good even though it ***** to plunk down another $80 for a second router. But it was worth it just to get rid of the headaches.
    I think the wifi capabilities of the Motorola NVG510 modem are the cause of a lot of problems with AT&T Uverse issues, particularly for Mac owners. I think it was also causing my Airport Expresses to drop occasionally.... Few minutes of music then drop... music drop.... All gone now.
    I don't know if you are on Uverse but if so, I highly recommend configuring a second router as an acces point (it can be any old router you still might have - the setup is just a bit trickier because you have to do it manually).
    Good luck.

  • Linksys Connect CD/Downloadable Software compatibility problem with Mac OSX 10.4.11

    I purchased a Linksys E1200 and I am running Mac OSX 10.4.11. As I have a G4 eMac, I cannot run a higher operating software. The CD that came with the E1200 will not launch the Linksys Connect software, as it is not compatible with Mac OSX 10.4.11. When I download Linksys Connect software from the support section of the Linksys site (version 1 or 2), same problem. I have read that I can use the E1200 with Mac OSX 10.4.11, but how? Getting very frustrated and would appreciate any practical advice/help. Thanks!
    Solved!
    Go to Solution.

    Hi bassist71,
    You may actually do the setup manually. It's done by accessing the setup page of the route through 192.168.1.1 and configuring the settings according to your Internet connection type. If you have a Cable connection, you may check this link, http://kb.linksys.com/Linksys/ukp.aspx?vw=1&docid=0ff4c94586a345d082828ec2161aaecf_3686.xml&pid=80&r... If you have a DSL connection, check this out,  http://kb.linksys.com/Linksys/ukp.aspx?vw=1&docid=9017a6f6bece444dbb4a0746eb87682a_2210.xml&pid=80&r...

  • Wireless printing - problem with MAC integration

    Hi everybody.
    Just bought a Macbook pro and cannot get it to recognize my printer.
    Devices within network:
    - Belkin WLAN Router
    - HP Laserjet CM1312 multifunctional printer - with HP 2101nw wireless G (printing and even scanning works fine wireless!)
    - Acer Notebook with XP Home (used to set up the 2101 wireless)
    - Acer Netbook with XP Home (added later to network, no problem with printing, setup took 5 min)
    Antivirus software: Avira Premium Security Suite on both XP's
    WPA-PSK encryption, no mac filtering.
    The Macbook can access internet, but nothing happens when I try to print. I wanted to stop the hassle that Windows is causing occasionally. Frustrating experience with the Mac so far.
    Can anybody help?
    This question was solved.
    View Solution.

    I have removed the printer, and added again - a couple of times. I was not sure what protocol to chose (LPD, IPP, Socket). 
    I took your advice and tried, but with the right click (ctrl pressed), nothing happens. The normal window for the print queue opens, and I cannot select anything like "Reset Printing System".
    This does not work either, no Printer with "Bonjour" is offered for selection: 
    "Select the plus sign to re-add it. Look for the printer with Bonjour next to it, select it and wait until the "Add" button becomes available. Click it."
    When I select the plus sign, I can only make settings in the "IP" area. Standard, Fax and Windows have nothing to select or to put in. "IP" offers Protocol to select and Address to fill in. I put in 192.168.2.6 and tried the different protocols. "Print with" offers generic PostScript printer, Generic PCL Laser printer, "other" and printer software - thats where I selected the driver for the cm1312
    Can you tell what I did wrong? Thanks for trying

  • Problems with mac book pro (os x 10.5.8)

    g'day
    recently i have, for me serious, problems with my mac book pro (os x 10.5.8).
    discovered that it runs slower and somewhat unstable, i attempted housekeeping and burned large files on cd. furthermore i deleted some files i do not use to trash from 'application'
    now once i turn on straight i get a garbled screen with tool bar on top.
    if i start with installation disk 1, i get to the complete start-up and is operational.
    upon opening the 'dock' to open safari for example - comuter freezes for a few minutes with spinning rainbow wheel.
    what might be the problem?
    did run
    - safe start-up - no change
    - disk utility - all ok
    - hardware test - all ok
    - extended hadrware test - did not work
    - activity monitor - cpu - user 16%, sstem 4%, indle 87%
                              - system memory (2 gb) - free 850 mb, wired 172 mb, active 970 mb, inactive 51 mb
                              - disk usage (185 gb) - 135 gb used - 50 gb free
    what else can i do? anone encountered similar?
    would truly appreciate our kind assistance
    thanks a lot
    ursfsta

    "did try to repair disk but it allowed me only to 'verify'"
    You did not follow my post.
    Insert your OS installer disk and reboot while holding down the c key. Select Utilities>Disk Utilities. Then run Repair Disk on your ard drive.

  • Printing/creating PDF problems with Mac OS 10.6.4 and word v.X

    In my job at university I use Word 2003 (version 10) in my new iMac. Since I updated to MacOS 10.6.4 I have problems with the printing menu. That means that I can not print or convert to PDF or even generate a preview. When trying to print or obtain a preview, word freezes and I have to force quit. When trying to generate a pdf file it does, but the generated file is unreadable (it says is damaged) and word freezes again. I have played with the preferences, change user and it didn't help. I checked the Font Book and indeed they were many duplicated fonts. I sorted them out, but the problem persists. With very short files it works, but with longer ones word invariably crashes when trying to print or make a pdf. I took one long .doc file and I copied into my laptop (MacBook pro, 2008) that was running 10.6.3. I printed it and converted to pdf; no problems at all. Then, for the sake of knowledge, I updated the system to 10.4.6 and then I couldn't print or create a pdf with the very same file, so it seems that certainly the update is reponsible. So now I know cause but I can not print from any of my computers. To me convert to pdf is an important functionality so I would appreciate any help. I have some ideas: reinstall Office 2003? reinstall 10.6 from the disk (and not update)? use Time Machine to restore the system as it was before the update?
    I didn't detect problems in Office 2004, or any other programs in my macs. Unfortunately, I need Office 2003 for compatibility with some other software. Thanks in advance!

    I updated my MBP to 10.6.4 last night and today I was printing fine from Word 2008 (v12.2.5). I haven't used Office vX since Tiger so I cannot comment on its stability with the latest update. But I suggest that if you haven't done so already, try opening Disk Utility and running Repair Disk Permissions on the 10.6.4 partition. Once this has completed I also suggest that you reset the printing system, restart your Mac and then add your printer queues again.
    *How to Reset the Printing System*
    1. Open System Preferences > Print & Fax
    2. Move your mouse over the Printers list
    3. Hold down the Control button and click the mouse (or right click if supported).
    4. Click "Reset printing system ..."
    5. Restart your Mac

Maybe you are looking for

  • HT1338 how do i load windows 7 on a mac air using the super drive?

    How do I load windows 7 on a Mac Air using the super drive?

  • How do I add a pop up box?

    I've created a form that customers can click on from our website to apply for an account. We're having a few people struggle with the concept that they have to save the form and email it back to us (it seems like a simple concept, but apparently not.

  • Uzbl, help a newbie!

    Thanks for coming in~! Prepare for newbie questions! I want to make the switch from Chromium to Uzbl for a majority of my browsing. I have used Uzbl on a live Ubuntu environment and the loading is incredibly fast. Even the initial page and all follow

  • Activity types cost Elements not reflecting in Cost Centre Report.

    Hello SAP Gurus,, 1. Here we are facing one issue in Zreport. total is not matching, compare with KSB1. Values are more in Zreport, in other words activity type cost elements are not reflecting in Zreport, but it reflecting in KSB1. example: flow fro

  • Epub file for ibooks

    Is it possible to upload the epub file which was made by other software program. For example, I had samsung computer, then i made epub file with eBook stylist 1.0 Beta. and tranfer it to Mac Book Pro and upload it using iTunes producer?? Is there any