Custom icon strip - how to reference it in the HHC?

I could not get the custom icon strip to work for me. I think that I understood the overall concept but I do not know how to reference the bmp file in the HHC.Ricks Tips and Tricks file only states "make the reference inside the HHC file". Where exactly do I place the <param name="..." value="C:..BMP"> reference?
Perhaps there is an example?

Rick,
thanks for your efforts despite my ignorance! My HHC file does not look like that, it has a different structure without an HTML list. After some fiddeling I got it to work now, even though I still did not find out why my TOC structure does not match yours (the binary TOC option is not active).
Instead of using the <param name="ImageList" value="C:tocimages.bmp"> line, I inserted the reference into the properties tag. My HHC looks like this now and it works:
<?xml version="1.0" encoding="utf-8"?>
<toc version="1.0">
<properties imagelist="C:tocimages.bmp">
</properties>
<item name=".." link="...html">
(here the TOC items follow)
</item>
</toc>

Similar Messages

  • I have OSX Maverick on an iMac using Outlook e-mail.  PDF attachments are included in the e-mail  as the whole document rather than just the PDF icon.  How can i have just the PDF icon as an attachment?

    In Outlook my PDF attachments appear as whole documents and not just the PDF icon.  How can I have attachments included as PDF icons and not the documents?

    For your own viewing, you can of course control-click on the attachment and select "View as Icon".
    For others' viewing, it depends upon their email reader.  To ensure that attachments are not displayed expicitly you can put them all in a zip file (via control click and "Compress") then attaching them, or you can use third party stuff like Attachment Tamer.
    charlie

  • When I capture from tape, express 4 now breaks my captured material into separate shots, an icon in the browser for each. Before it captured the whole clip till I hit escape, and created just one Icon. How to i get back the way it was.

    When I capture material from tape with final cut express 4, it used to create one icon for the whole clip. Now, when i capture, it breakes  the material down into many browser icons, shot by shot. I dont want that. How to I return to what I ahd before/

    What you describe is normal behavior for HDV capture using FCE.
    DV captures as one clip or may split the clip if there are timecode breaks on the tape.
    HDV always breaks clips at the shot changes using FCE.
    HDV cameras can downconvert to DV even if HDV was used to record the footage so it's important to know what the camera outputs during FCE capture.
    Maybe this is why you have had mixed results with the differing capture windows?
    Al

  • HT5624 think i accidently signed in to facetime which has changed all my icons/settings how to i get back the way it was

    think i accidently singed in to face time which has changed my icons/settings ect how to i return to original

    What you describe is normal behavior for HDV capture using FCE.
    DV captures as one clip or may split the clip if there are timecode breaks on the tape.
    HDV always breaks clips at the shot changes using FCE.
    HDV cameras can downconvert to DV even if HDV was used to record the footage so it's important to know what the camera outputs during FCE capture.
    Maybe this is why you have had mixed results with the differing capture windows?
    Al

  • Report template - How to reference COLNUM in the col template condition?

    Hi,
    I have a query with 4 columns. based on this query I would like to make a report with a row layout that looks something like this:
    | column1 value |
    | column2 value | column3 value | column4 value |
    I created a report template, four column templates: one for column 1, one for the following columns and one for the las column of the report.
    My problem is that when I reference *#COLNUM#* like mod(#COLNUM#,4) = 1 in the Column Template condition fields, then I get *'ORA-06550: line 1, column 34: PLS-00103: Encountered the symbol "#" when expecting one of the following: ( ) - +....'*
    Is referencing COLNUM not allowed in the Column Template Condition field?
    Tamas
    Edited by: Tamas Szecsy on Jul 16, 2011 11:33 PM

    Tamas Szecsy wrote:
    I have a query with 4 columns. based on this query I would like to make a report with a row layout that looks something like this:
    {noformat}| column1 value |{noformat}
    {noformat}----------------------------------------------------------------{noformat}
    {noformat}| column2 value | column3 value | column4 value |{noformat}
    I created a report template, four column templates: one for column 1, one for the following columns and one for the las column of the report.For this you need to create a Named Column (row template), not Generic Columns (column template).
    Before Rows
    <table class="foo">
    Row Template 1
    <tr>
      <td colspan="3">#1#</td>
    </tr>
    <tr>
      <td>#2#</td>
      <td>#3#</td>
      <td>#4#</td>
    </tr>
    After Rows
    </table>No conditions.
    What about table headers?
    My problem is that when I reference *#COLNUM#* like mod(#COLNUM#,4) = 1 in the Column Template condition fields, then I get *'ORA-06550: line 1, column 34: PLS-00103: Encountered the symbol "#" when expecting one of the following: ( ) - +....'*
    Is referencing COLNUM not allowed in the Column Template Condition field?I suspect not. Only <tt>#ROWNUM#</tt> is mentioned in the online help for Column/Row Template Expressions. <tt>#COLNUM#</tt> is only indicated in the Column/Row Templates themselves.
    (Always post sample layouts using \...\ and/or {noformat }...{noformat } tags to preserve formatting/stop Jive from turning it into something else.)

  • OWSM: How to reference Custom Step properties/parameters?

    Hi,
    When you define a Custom Step via a XML file. You can define properties/parameters. In the sample files that comes with OWSM (CustomAuthenticationStep.xml) Username and Password are defined. My problem is that I cannot figure out how to reference these in the Java Step source. In the sample file CustomAuthenticationStep.java there are no references. There are two class variables called expectedUsername and expectedUserPassword, but they are never set in the source? There are nothing in the Extensibility Guide about this. Anybody know how it works?
    Regards Peter

    I've made a couple of these now. It somehow walks through the xml file you upload and then the properties defined are matched with the appropriate get/set methods in the actual java code.
    One example I had to make was to add HTTP Basic Auth headers to a request. Here is the section of the xml file.
    <csw:PropertyDefinitionSet name="HTTP Basic Auth Params">
    <csw:PropertyDefinition name="httpBasicAuthUsername" type="string" isRequired="true">
    <csw:DisplayName>Username</csw:DisplayName>
    <csw:Description>Http Basic Auth Username</csw:Description>
    <csw:DefaultValue>
    <csw:Absolute>USERNAME</csw:Absolute>
    </csw:DefaultValue>
    </csw:PropertyDefinition>
    <csw:PropertyDefinition name="httpBasicAuthPassword" type="string" isRequired="true" displayType="password">
    <csw:DisplayName>Http Basic Auth Password</csw:DisplayName>
    <csw:Description>Password to access Private Key</csw:Description>
    <csw:DefaultValue>
    <csw:Absolute>PASSWORD</csw:Absolute>
    </csw:DefaultValue>
    </csw:PropertyDefinition>
    </csw:PropertyDefinitionSet>
    You then have these get/set methods at the bottom of the class I created.
    public String gethttpBasicAuthUsername() {
    return this._httpBasicAuthUsername;
    public void sethttpBasicAuthUsername(String username) {
    this._httpBasicAuthUsername = username;
    public String gethttpBasicAuthPassword() {
    return this._httpBasicAuthPassword;
    public void sethttpBasicAuthPassword(String password) {
    this._httpBasicAuthPassword = password;
    Then I had this and the properties were available for use.
    public class BasicAuthStep extends AbstractStep {
    private String _httpBasicAuthUsername = null;
    private String _httpBasicAuthPassword = null;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Custom Icon for Windows.exe from a Mac

    It doesn't seem possible to insert a custom icon for a Windows executable when working on Captivate on a Mac, is that right? The documentation (below) seems to gloss over this shortcoming.
    Custom Icon
    You can customize the icon that is displayed for the executable file. Click Browse (...) to add a custom icon for your file. Ensure that the icon file has a .ico extension (on Windows)/.icns (for Mac).

    I tried submitting this same problem as a feature request and/or bug report.
    Unfortunately, and somewhat disconcertingly, the Captivate Bug Report form also doesn't work. No matter how thoroughly I entered my request, I got these error messages:
    The following error(s) must be corrected before this form can be completed:
    Please enter your name
    Please enter your E-mail address
    Please select if it is feature request or the bug report.
    Please select a product
    Please enter the issue description

  • Disk First Aid - Problem: Custom icon missing

    Hi
    Wonder if anyone can help me - my mac kept quitting out of printing photos to my Epson R300 and then froze. I didn't let it self repair once restarted but left it to do it today manually. I set Disk First Aid going and it came up with about 30 "Custom icon missing" alerts and when I asked it to repair it couldn't repair them.
    Anyone know what's happened there and how to fix it?
    I've noticed that the mac has been quitting out of programmes a lot lately but without the 'this spllication has unexpectedly quit' alert. I haven't added any new software or hardware lately either.
    Many thanks!
    iMac Flat Screen   Mac OS 9.2.x   Mac OS 9/Mac OS X Panther Dual Boot

    Vicky,
    Welcome to Discussions.
    Fortunately, the Custom Icon issue will have no impact on the general reliability of your mac.
    As a bit of background, one of the special attributes that can be applied to a file or folder (like modification date, or label, or comments, or the FileType and Creator - so a document knows which app it is associated with when you double click it) is this "Custom Icon" setting.
    So you have 30 files / folders that have been marked as having a custom icon. But when it goes to get the custom icon to display the file / folder in the Finder, it can't find it. You usually just end up with a generic icon for the file / folder. It offers no extra functionality other than displaying a pretty icon in the Finder. Similarly, when it doesn't work, you lose no functionality, other than that.
    The applications quiting unexpectedly could be an issue, but issues with printing colour photos to a printer may be memory issues. Colour photos, perhaps .jpg, are compressed. As your printer doesn't have built-in decompression software, the pictures must be decompressed on the Mac before sending to the printer. And there is the issue, if this requires too much memory, your mac can do strange things.
    Is printing from OSX any better ? I would have thought a G4 iMac with Panther would be a dream to work on.

  • How to reference the selected row on a report by click a radiobox

    I created a report with a column displayed as a radiobox.The report source is like "select htmldb_item.radiogroup(1,.....),rec_id,....from .... where ....",after click one radiobox,i want to get other column's value in the selected row in the after submit process ,can anyone help me?????? how to reference "rec_id" of the selected row?

    Hello,
    First, please tell us your first name, and update your forum handle. It’s make it easier to track your threads, and help you.
    >> apex_application.g_f01(1)" only return the first record's rec_id,if i click radiobox in other rows,it returns the same result as click radiobox in the first row?
    The ‘G_F01’ is an array of values, so apex_application.g_f01(1) will always bring you the first element of this array. If you want to retrieve other values from this array, which will include the values of the radiogroup value of the other lines, you need to use a loop. Something like that should work:
    for i in 1.. apex_application.g_f01.count loop
    … apex_application.g_f01(i) …
    end loop;
    >> after click one radiobox,i want to get other column's value in the selected row in the after submit process
    That means that the value of your radiogroup item should include some indication to the line you are on. If, like in Andy’s example, you can retrieve your record from a table, based on a PK, your radiogroup can return this kind of information. However, if the data on the other columns of the select raw, were just entered/updated by the user (like in a tabular form), the radiogroup item should include information about the row you are in, in order for you to be able to access the corresponding array elements – other G-Fxx arrays – of the other columns in the row. In this case, I believe using checkboxes is preferable.
    Regards,
    Arie.

  • Custom icon for Boot Camp partition on Snow Leopard desktop?

    I have a Boot Camp partition (NTFS) with Windows XP. In Snow Leopard, the partition shows on the desktop with a generic hard drive icon. I'd like to change this to a custom icon, but when trying to paste over the generic icon in the Get Info window, Edit->Paste is grayed out.
    In Leopard, it was possible to have a custom icon for a Boot Camp partition by formatting a thumb drive as FAT32, pasting the custom icon onto it in the Get Info window, booting into Windows XP, and copying two invisible icon files from the thumb drive to the NTFS drive. This would display the custom icon for the Boot Camp partition icon on the Leopard desktop. This doesn't work in Snow Leopard.
    Is it possible to use a custom icon for a Boot Camp partition on the Snow Leopard desktop?

    I don't see this option in Properties for the Boot Camp volume. In any case, I believe the custom icon is set correctly for the C: drive in Windows. I followed he procedure in the second paragraph of my initial post, which I learned from a post over a year ago. I copied the two hidden files .VolumeIcons.icns and ._ File _ to the C: drive. When I boot into Leopard, the correct custom icon for the Boot Camp partition appears on the Leopard desktop. But when I boot into Snow Leopard, only a generic hard drive icon appears on the desktop for that partition.

  • Custom icon for Boot Camp partition?

    I have a Boot Camp partition (NTFS) with Windows XP. In Snow Leopard, the partition shows on the desktop with a generic hard drive icon. I'd like to change this to a custom icon, but when trying to paste over the generic icon in the Get Info window, Edit-->Paste is grayed out.
    In Leopard, it was possible to use a custom icon for a Boot Camp partition by formatting a thumb drive as FAT32, pasting the custom icon onto it in the Get Info window, booting into Windows XP, and copying two invisible icon files from the thumb drive to the NTFS drive. This would display the custom icon for the Boot Camp partition icon on the Leopard desktop. This doesn't appear to work in Snow Leopard.
    Is it possible to use a custom icon for a Boot Camp partition on the Snow Leopard desktop?

    No one knows of any fix for this in Snow Leopard? The custom icon shows up OK when I boot into Leopard, but not in Snow Leopard.

  • Custom Icon goes with usb peripheral from Mac to different Mac

    Okay, so I can change the icon on my usb flash drive to show a custom icon each time I plug it into the same Mac day after day, but what if I want to change to a different computer, say my Mac at home, the icon comes up as the default icon. Can I lock the icon so that it will appear the way I want on any Mac I plug it into?

    I took a look at the Adobe PS CS CD, and it did the same thing I do with some of my internal drives, namely, it has a custom icon on the CD ".VolumeIcon.icns" which displays when the CD mounts, just as my own ".VolumeIcon.icns" custom icons do for internal drives. However, when I added a custom .VolumeIcon.icns to my firewire drive the custom icon did NOT display. I tried quitting the Finder and relaunching it, no custom icon. Shutdown the computer and the firewire drive, next time I restarted the firewire drive and it mounted it was still displaying the regular firewire drive icon. Don't know if USB drives would behave like my firewire drive or like a CD, but I expect they will behave like the firewire drive.
    Francine
    Francine
    Schwieder

  • Custom icons on aliases

    On my desktop (and the Dock), I have an alias named Current Project that points to whatever folder my current project files live in. I gave it it's own icon using the Get Info method. Now I just finished up one project and so I changed the alias to point to a new folder. In doing so, the icon for that alias changed back to a regular folder. Can I change this behavior or do I just have to live with it?
    Intel iMac 17'   Mac OS X (10.4.8)  

    Well, I just tried it and two promptly reverted and two didn't. As near as I can tell if the original folder had a custom icon and you then switch the alias to point a different original it will keep the custom icon from the first one. But if the alias starts with a generic folder icon and you paste a custom icon then when you change where it points it loses the custom icon. That's probably not very clear, is it? Try this:
    1. Create a new folder, call it CurrentProject and give it the custom icon
    2. Make an alias of this folder--it will have the custom icon
    3. Now point it to the new project folder, it should keep the icon
    Anyway, that's as close as I could get to understanding what I saw.
    Francine
    Francine
    Schwieder

  • Unable to set custom icon for system drive

    Title says it all. Can't paste new custom icon onto drive icon in the Info panel-nothing happens. Any ideas?

    When a custom icon is applied to a folder (including the "boot drive" icon, which is really just the top level folder), an invisible "Icon\r" file is created inside that folder (or a ".VolumeIcon.icns" in case of a volume - I missed this in the last post, sorry) and the "Custom Icon" file attribute is set. In order to do these things, a user must have sufficient privileges to modify the folder.
    In Leopard, the default permissions are:<pre>
    $ lsbom -d /Library/Receipts/boms/com.apple.pkg.Essentials.bom |grep "^. "
    . 41775 0/80</pre>
    The owner is "root", group is "admin", both have "read & write" privileges, and everyone else has "read only" privileges.
    Similarly, in "Tiger":<pre>
    $ lsbom -d /Library/Tiger/BaseSystem.pkg/Contents/Archive.bom |grep "^. "
    . 41775 0/80</pre>
    Nothing has changed. But furthermore, since the "sticky" bit is set, this might even mean that a custom icon set by one "admin" would only be removable by the same "admin" (though this isn't something I have tested). But either way, at a minimum, "admin" privileges would normally be required.
    So if you had previously modified the permissions on the boot drive to allow non-admins to make changes, then certainly you woudn't have to have "admin" privileges to do this. But that is not the "normal" state.
    Beyond that, it's hard to say why you can't make the changes even as an "admin" without at least knowing what the current permissions are on "/" and "/.VolumeIcon.icns"...

  • How to reference or use a database procedure in a form

    I have a database procedure(any database object in the form) Pls tell me how to reference it in the form
    I will appreciate if I can get an example.

    Hi,
    if its in the same schema you are connected to, just call it by packagename.procedure from a Plsql program unit or trigger. Make sure you don't have a procedure with teh same name defined in Forms itslef.
    Frank

Maybe you are looking for

  • Why is Premiere 6 giving a "Error writing file (disk full?)" message?

    Hello helpful experts, I'm using Premiere 6 on a Windows 7 machine. I have a file imported in to the timeline and it is set to play in reverse via the speed setting being set to -100 and it plays back in the preview window correctly, in reverse, when

  • Inter-Company accounts tax relevance

    Hi This is more a Finance question related to SAP. I am aware that Inter/Co trnasactions are not normally tax relevant (E.g. Company A sells products to Co B). However, we have a scenario, where one company pays (with tax ) for certain outside supply

  • I need help in using PrintJob!

    I am a newcomer of java programming and I met a problem when I use PrintJob in the following code. 1. PrintJob pj = Toolkit.getDefaultToolkit().getPrintJob(this,"JNPJob",null); 2. Graphics g = pj.getGraphics(); The matter is I got a NullPointerExcept

  • Effects causing playback problems in Quicktime Player

    My sequence is AIC 720 24p and plays fine in the timeline with affects applied. These are simple effects, like Fading and Cross Dissolve. When i export the timline without Quicktime Conversion but as a self-contained .mov file and try to play it back

  • Cant locate my start up cd...how can i do wireless? 6500 officejet wireless

    How can I set up wireless without an installation CD? This question was solved. View Solution.