Bundle icons not correct

Just testing some apps and have found that my bundle icons aren't showing as what they should be
I uploaded the ico file from my own copy of firefox on my windows machine as the icon for my mac bundle - is this the correct way or should I be doing this from the mac?
As my firefox bundle on my test mac vm only shows up as the standard blue icon?
otherwise working quite well so far

On 20/04/2012 06:36, gleach1 wrote:
> Just testing some apps and have found that my bundle icons aren't
> showing as what they should be
>
> I uploaded the ico file from my own copy of firefox on my windows
> machine as the icon for my mac bundle - is this the correct way or
> should I be doing this from the mac?
>
> As my firefox bundle on my test mac vm only shows up as the standard
> blue icon?
Unfortunately ZCC doesn't understand Mac icons - AFAICT it's still the
old Windows/Linux code.
> otherwise working quite well so far
Glad to hear it!
HTH.
Simon
Novell/SUSE/NetIQ Knowledge Partner
Do you work with Novell technologies at a university, college or school?
If so, your campus could benefit from joining the Novell Technology
Transfer Partner (TTP) program. See novell.com/ttp for more details.

Similar Messages

  • Files icon not correct

    All files created by different applications, Word, Excel or Adobe, will not reflect the icon of that application in colour but just a B&W file, how to adjust this ?
    Thanks

    The situation with .doc files is a bit complex, it all depends on where they came from, and which version of Word created them, and when. Indeed, whether they were created with MS Word or something else. Thus, I have Word documents going back to Word '97, I also have .doc files that were created with TextEdit, Abiword and NeoOffice. Additionally, since I hate having Word launch (I now use Word 2004 when I positively have to open something with Word), because it takes so long and uses so dang much screen real estate, I have assigned files with the .doc to open with TextEdit. The result is that my .doc files can show any one of about 3 or 4 different document icons. Something that was created with MS Office Word 2004, and has Word assigned to open it, will show a small page with a blue border along the top with a "W" at the edge and a light blue "a" filling the rest of the icon. Older Word documents have a grey page icon with the old Word logo on top of it. More generic Word .docs that are set to open with TextEdit have a plain white page with the upper corner turned down.
    The situation is similar with PDFs, which might be created by Adobe Acrobat or by the Mac OS and can be assigned to either Acrobat or Preview. Which icon the file displays will depend on whether the creator information is stored in the resource fork of the file and which application is assigned to open the file. Since I don't have Acrobat, all my PDFs display the Preview icon in the center with "PDF" at the bottom.
    If you have changed what file is opened by which application, or the Mac doesn't remember which application is supposed to be used, then doing what macjack suggests and restarting might change the icon situation. But I wouldn't count on it, and you'll start getting the warning about "you are opening the application for the first time" when you double-click some file to launch its application, until you have finally run every application you have at least once.
    Finally, the default icon for files created by an application are determined by the application itself. For some applications it is possible to change this fairly easily, if you have some knowledge of icns files. Word 2004 is NOT one of those applications.
    Francine
    Francine
    Schwieder

  • My IPad screen is frozen with a message stating that the IPad has not been backed up to the ICloud for 7 weeks, this is not correct.I cannot get the messageto clear and cannot access any of the other icons; is there an emergency reboot process?

    My IPad screen is frozen with a message stating that the IPad has not been backed up to the ICloud for 7 weeks, this is not correct. I cannot get the messageto clear and cannot access any of the other icons; is there an emergency reboot process?

    Have you tried resetting your iPad?
    Reset: Press the Home and On/Off buttons at the same time and hold them until the Apple logo appears (about 10-15 seconds).
    No data will be lost.

  • Ipad icon not charging but plugged correctly

    My new ipad2 shows the  battery icon Not Charging but is correctly plugged, even tried different cables and into the wall and computer. Any hint ?

    The quickest way to charge your iPad is with the included 10W USB Power Adapter. iPad will also charge, although more slowly, when attached to a computer with a high-power USB port (many recent Mac computers) or with an iPhone Power Adapter. When attached to a computer via a standard USB port (most PCs or older Mac computers) iPad will charge very slowly (but iPad indicates not charging). Make sure your computer is on while charging iPad via USB. If iPad is connected to a computer that’s turned off or is in sleep or standby mode, the iPad battery will continue to drain.
    Apple recommends that once a month you let the iPad fully discharge & then recharge to 100%.
    At this link http://www.tomshardware.com/reviews/galaxy-tab-android-tablet,3014-11.html , tests show that the iPad 2 battery will charge to 90% in 3 hours 1 minute. It will charge to 100% in 4 hours 2 minutes.
    There have been a few reports of defective wall chargers. Take it to the Apple Store for evaluation.
     Cheers, Tom

  • Packaging icon not showing up

    All I have this in our ANT file
    <fx:info id="inforef" title="${application.title}" vendor="${application.vendor.name}" >
    <fx:icon href="${src.dir}/main/resources/icon_files/application.ico" />
    <fx:splash href="http://www.celer-tech.com/images/logo_with_shadow.png"/>
    </fx:info>
    but when the installer is created the default java icon is show on the executable. And the installer screens all have the Java icon. How do I fix this?
    And will you be able to put information in the installer screens like text?

    I got a custom icon to display in a bundled app :-)
    Not sure of the exact set of magic incantations I performed to make it happen, but it was something like this:
    1. the <fx:icon href="location"/> seemed to be unused with respect to bundling (maybe it is used in webstart packaging or something - or maybe it is planned to be used in bundling in the future and is just not implemented - or maybe I couldn't work out the right way to specify the location).
    2. the app seems to look for an icon in the location Gerhard points out => package/windows/XXX.ico
    3. the build.xml file for Ensemble (2.2b17 example) has a note in it: note that for native package customizations to work: jfx-impl.xml have to include "." on classpath when it loads javafx ant tasks (search for taskdef). NOTE: if NB converted project file to the newer format then you may need to correct taskdef in the nbproject/jfx-impl.xml - simply add ".:" in front of classpath value
    4. I was using a NetBeans 7.2 preview and it did convert the file so I added the .: to the path in jfx-impl.xml as the note in Ensemble said.
    5. Ensemble sample had a file in package/windows/ensemble2.ico
    6. However, when I ran the build fx:deploy task with an verbose="true" attributed, it reported that it was looking for package/windows/ensemble.ico
    7. No idea how the build knew that the name of the icon should be ensemble.ico.
    8. So I renamed package/windows/ensemble2.ico to package/windows/ensemble.ico
    9. Then I reran the ant task and it packaged the ensemble app with a little toaster icon for the install exe rather than the default icon.
    10. It wasn't perfect as there is another icon displayed on the installer window which was still a default app icon, but perhaps you also need to set the [setup dialog icon] (add package/windows/XXX-setup-icon.bmp to the class path to customize) Gerhard also pointed out (didn't try that).
    11. I'm going to guess that the last file which Gerhard points out (the .iss one) is an InnoSetup script as documented in the Inno Setup Help http://www.jrsoftware.org/ishelp/ and is the thing which allows you to change dialog wordings, text and languages - customizing the setup installer as you see fit (but that is just a guess at this stage - haven't done enough investigation to confirm).

  • Loadable Bundle Icon

    I have a loadable bundle (NOTE: not an application).  I have put the icon file in the Resource folder and correctly set the Info.plist value of the CFBundleIconFile to the name of the icon file (e.g. test.icns).  The icon was created by Icon Composer application. I have rebuilt the cache and rebooted.
    The icon does not appear.  I get the generic bundle icon (lego brick). 
    I created a similar icon and loaded it into a test application. That icon appeared. Is it possible that the Finder only uses icons in Application Bundles and not Loadable Bundles?
    I can change the icon via copy/paste into the Get Info icon field.  This correctly works and creates the hidden file "Icon?" (really "Icon\r") in the package. Is there a way to do this via a command line or AppleScript script?

    The solution lies in the -iconForFile method of the NSWorkspace Class. I built a Command Line Tool the takes the image I need and uses the above method to set the icon.
        [[NSWorkspace sharedWorkspace] setIcon:content forFile:targetFile options: NSExclude10_4ElementsIconCreationOption ];
    where content is the NSImage content of the icon and targetFile is the path to the target bundle.

  • Getting error while creating a new web app saying "The password supplied with the username domainname\username was not correct. Verify that it was entered correctly and try again"

    Hi ,
    I am trying to create a new web app using Central Administration in Sharepoint 2010 and getting an error "The password supplied with the username  was not correct. Verify that it was entered correctly and try again".
    I tried running this command also "stsadm -o updatefarmcredentials -userlogin <domain\username> -password <newpassword>" but when it got executed it showed me "Access Denied".
    What should i do ??
    Thanks in advance.
    Regards, Anurag

    HI,
    right click on command icon and click run as administrator then use above stsadm commend to update credential. If still you face same issue then try with powershell as mention in below link: (make sure that you open sharepoint powershell as run as administrator)
    http://smartrider.wordpress.com/2010/07/15/powershell-script-to-create-web-application-and-site-collection-in-sharepoint-2010/
    let us know your result
    Hemendra: "Yesterday is just a memory,Tomorrow we may never see"
    Whenever you see a reply and if you think is helpful, click "Vote As Helpful"! And whenever
    you see a reply being an answer to the question of the thread, click "Mark As Answer

  • Calendar Tile on Windows 8.1 displaying incorrect date for icloud calendar but date icon displays correct date on iPhone 5 and iPad Air

    Calendar Tile on Windows 8.1 displaying incorrect date for icloud calendar but date icon displays correct date on iPhone 5 and iPad Air.  Date on Windows 8.1 is correct.  Thank you.

    Try doing  a reset on your phone. Sounds like your carrier's time set is not getting through to your device. If the reset doesn't do it, then go to Settings>General>Reset>Reset Network Settings. That should do it.

  • File icons not displaying in dock folders

    I'm having trouble seeing File icons in the folders added to the dock in Lion. For example I am used to seeing a file icon that isa preview of the file e.g. for a pdf the icon would show the content of that pdf. For many files (but not all) I just see a black box with a white dashed line around it (see image).Eventually these icons may refresh and display properly and if I open the folder in finder the icon is correct but not in stacks. It's not a file type specific issue because in the attached image some jpegs are displaying other are not. Any advice?

    Solved.
    Reset the p-ram.

  • Time and Date not correct

    Hi to all.
    Does anybody know how to save your cmos settings to a floppy or CD?
    Is there a program that can assist with saving the cmos settings to floppy or CD?
    Is there anyway to perform saving the cmos settings within the BIOS to floppy or CD?
    I really don't want to go into the BIOS and write down all that info.
    I have an HP Pavilion 553w that is 7 1/2 years old, running windows xp home edition version 2002 sp3, 2 gbs of ram, AMD athlon(tm)XP 2100+ 1.73 GHZ, bios version/date Phoenix Techologies, LTD AM35308, 10/07/2002 (Phoenix-AwardBIOS CMOS Setup Utility) SMBIOS 2.3, BIOS Core Version V6.0, BIOS Revision 3.08 10/7/2002.
    I know my computer is ancient and I probably should have updated my BIOS, as it is out of date.
    Also, after starting up my computer I noticed my time and date is not correct and as of lately have to adjust the time and date to the correct time and date.
    I did some research and came across some possible reasons:
    1. RTC battery (CMOS battery) may need reseating on motherboard.
    2. The battery has become corrupt.
    3. BIOS version may be out of date.
    My computer is really taking longer than usual to startup and images of icons take longer to display, which may be a sign of the symptoms I listed above.
    My computer doesn't have any malware whatsoever, clean as can be.
    Any help or advise will be truly appreciated.
    Jboman
    This question was solved.
    View Solution.

    Jboman,
    There is not need to save CMOS settings unless you changed the default BIOS settings.  A bad CMOS battery will not preserve the settings.
    HP DV9700, t9300, Nvidia 8600, 4GB, Crucial C300 128GB SSD
    HP Photosmart Premium C309G, HP Photosmart 6520
    HP Touchpad, HP Chromebook 11
    Custom i7-4770k,Z-87, 8GB, Vertex 3 SSD, Samsung EVO SSD, Corsair HX650,GTX 760
    Custom i7-4790k,Z-97, 16GB, Vertex 3 SSD, Plextor M.2 SSD, Samsung EVO SSD, Corsair HX650, GTX 660TI
    Windows 7/8 UEFI/Legacy mode, MBR/GPT

  • Hello.  I upgraded my MIFI 2200 (had no contract on it) to a Jetpack (with a contract) when customer service told me this 4G device would use less data because it was faster.  This was not correct.  Anyway, I got the device, had problems, did tech support

    I upgraded my MIFI 2200 (had no contract on it) to a Jetpack (with a contract) when customer service told me this 4G device would use less data because it was faster.  This was not correct.  Anyway, I got the device, had problems, did tech support, re-activated my MIFI.  1.  Decided to return the device. Spent hours with Customer Service, then finally up to Management, they agreed to take it back and void the contact, I sent it back immediately – and instead of voiding the contact they transferred it to my MIFI! Please cancel the contract on the MIFI. 2.  During the short time I had the Jetpack I continually received overage alerts, took it all the way up to 30 GB, each time I backdated the new data plan except twice when customer service did and failed to back date the increase, and once the computer locked customer service out and could not increase.  The end result is I have a $495 bill, many of these alerts were false since I ended up with only 14 MG for the month, etc.  I am asking that my bill be reduced significantly to reflect no overage and to compensate for these problems. Please open up a ticket for this.

    I had Verizon JetPak and you will find it will eat data like crazy. I opted to sign on to ATT Uverse and configured my phones and other devices to the WiFi on the Uverse system. It took about 5 minutes to completed the configuration.  I was using 10 to 12 GB monthly to support 5 devices. Even if you use Verizon DSL, you are still subjected to same GB allotment.  In my area, Verizon DSL is not available. With Uverse, I have 250 GB monthly to use, and I have not even come close to using anything of that magnitude. I reduced my GB package with Verizon to 2 GB per month and since having ATT Uverse, I never use more than 1GB a month with Verizon.
    I have no problem with Verizon cell phone service as we get a much stronger signal where we live than you can with ATT or any others.  It is just my opinion, but if you are running multiple devices off Verizon Jetpak, you will eventually spend a fortune to keep pace.  I pay $60 a month for 18 Mbps speed, although ATT have packages that cost much less. But, it saves me a bundle each month. The cost of Uverse alone is worth not having to run everything through a Jetpak.  
    If you have the  option to use another DSL service provider in your area, I recommend dumping the Jetpak and sign on with another carrier.

  • Finder Strange behaviour: folder and file icons not showing, then they disa

    Yesterday I was trying to install the postgresql package from (http://web.mac.com/dru_satori/iWeb/PostgreSQLforMac/Welcome.html). Actually I had an older version of their package, i uninstalled it, tried installing the new package, but kept receiving errors that the installation was not correct.
    Now the point of this question, as I was doing the above, i started to notice that some files (either on my desktop or in a folder window) are not showing the icon. Only the label is showing! when I click on such a file, the file disappear (i mean even the label is gone).
    I have completed permission repairs, disk repairs. I also noticed that this is only happening in my account, but not that of other accounts on this computer, which indicates that this is a problem in my home directory. I have also re-lunched the finder using the force quit window. I have also trashed the com.apple.finder.plist and logged out and then logged in again. I have just noticed that (pages) is asking for the serial number! I have this program installed months ago! It seems that some other files are also getting damaged!
    Is there something that I am missing? Is this a bug? is there any solution, because this is very annoying and it might indicate a bigger problem that I am not aware of.
    thank you for your help
    PowerMac G5 Dual   Mac OS X (10.4.4)   4.5 GB RAM

    I also noticed that this is only happening in my account, but not that of other accounts on this computer, which indicates that this is a problem in my home directory.
    Good first troubleshooting step!
    Now log back into your normal user account: (In your case I would try preferences first)
    1. Navigate to ~(yourhome/library/fonts - drag this folder to the desktop.
    • Restart and test your applications.
    • If they work start adding the fonts back few at a time.
    ( Likely suspects are Times RO & Helvetica Fractions, also if you do not use Classic you can trash the classic fonts.)
    2. Check Preferences Thoroughly;
    • Navigate to ~(yourhome/library/preferences drag this folder to the desktop.
    • Restart and test your applications.
    • If this works, save the old preferences folder somewhere else or on disk, name it "old prefs" .
    ** Note: A very important file is the "com.apple.Mail.plist" preference file located in the Preferences folder which contains all email account settings and general mail preferences (hold this one and replace if your problem is not with Mail).
    You'll have to go through some of your System Preferences and apps to set the preferences back to how you like them. (Or if you have the time and inclination, "cherry pick" through until you find the problem one or two.)
    3. Check Permissions Inside Home Folder
       • Navigate to yourhome/library.
       • Get Info (Command - i) on folders for apps you are having problems with.
       • Open the "Ownership & permissions" disclosure triangle.
       • Make sure you are the owner, with "read and write" access.
    • Click on "apply to all"
       • If this is correct, open the "Applications Support" folder and do the same procedure (Command+I) for the folders with the names of the applications you are having trouble with.
    Note:
    The reason to check this is because repairing permissions with Disk Utility doesn't touch permissions inside your home folder.
    If the issue persists navigate to yourhome/library/caches and drag this folder to the trash, then log out and back or restart. There is no need to replace this folder.
    -mj
    [email protected]

  • I have a problem with a few emails i wrote which were in the outbox. The outbox disappeared all of a sudden with my mails... However they were not sent since the email address was not correct (just 3 initials). Is there a way to get it back somewhere?

    Hello,
    I have a problem with a few emails i wrote which were in the outbox. The outbox disappeared all of a sudden with my mails... However they were not sent since the email address was not correct (just 3 initials). I was waiting to find out the correct email address of that person, put in in and then sen it...Is there a way to get it back somewhere on the ipad or in some cached folder?
    Many thanks for an answe to this.
    Swisslady2

    There is no cache where the emails would be stored on the iPad, but you could try quitting the mail app and then launch it again and see if the emails return.
    Go to the home screen first by tapping the home button. Quit/close open apps by double tapping the home button and the task bar will appear with all of you recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner to close the apps. Tap the home button. Then try mail again.

  • Attach photos as icons, not already opened?

    When I attach a photo to an email, the opened photo fills the text area. I'd rather the photos show up as icons, not as already opened photos. How do I do this?

    Hello Roger.
    The Mail application displays all image/photo and single page PDF attachments inline or viewed in place within the body of the message by default which cannot be turned off. This applies to received and sent messages with such attachments.
    You can control-click on such an attachment and select View as Icon but regardless, depending on the recipient's email client and available preference settings, such attachments may appear inline or viewed in place within the body of the message when the message is opened by the recipient (as with the Mail application when receiving/opening a message with such attachments) or as attached files only which must be opened separately to be viewed for which the sender has no control over.
    The reverse is true. Windows Outlook and OE display such attachments as attached files only (icons) but when sent to a Mail.app user, the attachments appear inline or viewed in place within the body of the message when the message is opened.
    When I switched from using Entourage to the Mail.app when Jaguar was introduced, this took a little getting used to but I prefer it since it provides confirmation that I have selected the correct photo file before the message is sent and has no determination on how such an attachment is received by the recipient.
    I haven't used it but you can purchase a 3rd party plugin for the Mail.app called Mail Attachments Iconizer.
    http://lokisw.com/index.php?item=MailAttachmentsIconizer

  • Book icon not opening when clicked

    I have an odd problem here.
    In my Contents tab on the left side, I have eight Book icons
    that, when clicked, open to reveal the Help topics inside them-
    just like any normal RoboHelp project would work. However, the very
    last Book icon in the list does not open when clicked. I checked
    the original file and all of the help topics are under the Book
    like they should be. When I compile the file and do a View Primary
    Layout, this last Book icon opens correctly. The problem only
    occurs once the project is built into the software I'm doing the
    Help for. When I move the Book icon up in the list (so it's not the
    last one anymore) it works correctly. But then the Book icon that
    becomes the last icon doesn't open when clicked. So whichever Book
    icon is last in the list doesn't open when clicked. Anyone have any
    clue what would cause this? Thanks alot.

    Hi Scott45 and welcome to the RH community.
    Have you tried deleting the book and adding it again? Also
    you can open the project's .HHC file in Notepad (or something
    similar) and check that the relevant TOC entry is displayed
    correctly there.

Maybe you are looking for

  • APP-PAY-06882: Assertion failure detected at location py3vntsetup:1d. R12

    Hello, Can someone please answer me what is the cause of the below error. APP-PAY-06882: Assertion failure detected at location py3vntsetup:1d. This error I am getting when I am trying to run a Monthly Payroll in Vision R12 Instance(Window Environmen

  • Cluster stop and start

    Hi Experts , Is it possbile to stop and start the Sun cluster as like VCS (hastop and hastart). Regards, R.Rajesh Kannan.

  • Hey everyone I am haveing problems with Flash Button

    Hello everyone I am new here so I am haveing problems with Flash Button because of the html address it wont go to the address that i put into it it keep going to http://www.faithdesigner.net/www.faithdesigner.net/pricing.html/www.faithdesigner.net wh

  • I am unable to open some email messages

    I had been able to open emails from a person until about 3 weeks ago, now I am not able to open emails on my cell ph from this person. I can open in my dash top computer. All other emails from everyone else will open. ???

  • 2 Iphones..1 desktop

    I recently purchased a Iphone, and so far throughly satisfied. Now my son would like one. Can 2 units share the same desktop without conflicts? Can I have 2 Itunes accounts on the same desktop? If so how does that work? Does he boot up my Itunes acco