Do you mean remove permanently or just for certain output targets? If you mean permanently, you can try right clicking on the dropdown block and choosing Unbind - however, Flare does have an unfriendly habit of deleting the contents of a tag when it unbinds in some cases, so be prepared to undo
EDIT: Ok, I think I misread the question. You just want this for print, right?
If so, what I would do is, instead of using a dropdown use a Toggler. Togglers work virtually identically to dropdowns, with the exception that the tags don't enclose the content. Instead, you name a tag (like the p tag that the image is included in) then tell the toggler to expand or collapse the named element. The advantage of this for your purposes is you can condition out the toggler line in print and it won't condition out the image. I use this all the time for screen shots in my documentation and it works beautifully.
Until next time....
Kevin Amery
Certified MAD for Flare
i just don't want the drop down hotspot text to not display i want the actual contents of the drop down to be displayed however.
my team is debating about using drop downs for the images in our help systems, but considering we use the same content for our printed docs we don't want, image/screen shot/what does this window look like?/etc to appear on the print output. obviously we could include the screen shot in the topic by itself w/o a drpdwn and condition it for print only and drop down for online only but i was hoping to bypass the "easy" fix and get a more complicated fix that involved less conditions and more code/options
Flare: I bought it ... so that means I can break it, right?
Exactly, that's what I do. I apply a Toggler that controls the appearance / absence of the image in the online output. For print output, I condition out the toggler text because it's irrelevant. The image appears in the print output without me having to explicitly do anything. So:
- Online: by default the image is hidden, if the user clicks on the toggler text it's shown
- Print: the toggler text is not present, the image is present
Until next time....
Kevin Amery
Certified MAD for Flare
KevinDAmery wrote:
If so, what I would do is, instead of using a dropdown use a Toggler. Togglers work virtually identically to dropdowns, with the exception that the tags don't enclose the content. Instead, you name a tag (like the p tag that the image is included in) then tell the toggler to expand or collapse the named element. The advantage of this for your purposes is you can condition out the toggler line in print and it won't condition out the image. I use this all the time for screen shots in my documentation and it works beautifully.
i will give it a shot thanks for the help with this...
Flare: I bought it ... so that means I can break it, right?
<body>
<h2>peace up a town down</h2>
<p> </p>
<MadCap:dropDown>
<MadCap:dropDownHead>
<MadCap:dropDownHotspot MadCap:conditions="Default.ScreenOnly">(This is the Drop-down Hotspot)</MadCap:dropDownHotspot>
</MadCap:dropDownHead>
<MadCap:dropDownBody>
<p>(This is the Drop-down text)</p>
<p> </p>
</MadCap:dropDownBody>
</MadCap:dropDown>
<p> </p>
<p MadCap:conditions="Default.ScreenOnly">
<MadCap:toggler targets="toggle-ex">toggle things</MadCap:toggler>.</p>
<p MadCap:targetName="toggle-ex">THIS IS SOME TEXT</p>
</body>
Flare: I bought it ... so that means I can break it, right?