TOC highlight issue

Hi,
I am using RH8.0.2.
When i click on the hyperlink text it navigate to the correct page,but in the TOC content the topic which is displayed is not highlighted.Insteed it remain  the  page from where it is clicked remain highlighted.
For example: As in Fig1,if i click on the "TMD PDU" it navigate to the right page as in Fig 2,but in TOC "E-UTRA RLC Messages Overview"remains selected.Ideally in TOC "TMD PDU" page should be highlighted.
How to solve this issue?
Fig1
Thanks and Regards,
Rahul

Hi Rahul
There are a couple of things you need to check here. I'm going to assume from the images, that you are creating CHM files.
First, open the Project Set Up pod and expand the Windows folder. Then edit the properties of your CHM window and ensure the option to synchronize the TOC has been enabled.
Once you have done this, edit the Single Source Layout properties and click the Edit... button. This should open another dialog where you would click the TOC Styles tab. Ensure you enable the Always Show Selection option.
Cheers... Rick
Helpful and Handy Links
RoboHelp Wish Form/Bug Reporting Form
Begin learning RoboHelp HTML 7 or 8 moments from now - $24.95!
Adobe Certified RoboHelp HTML Training
SorcererStone Blog
RoboHelp eBooks

Similar Messages

  • TOC highlighting not synched

    Can anyone offer a solution for my problem?
    When I hit <F1> to open the help from my application,
    the TOC highlights to the correct Context ID Tag. If I close the
    help and then <F1> from a different application form, the
    Help opens correctly, with the correct TOC entry highlighted.
    Yet if you move around an application and hit <F1>
    while the Help is open, the appropriate information is displayed in
    the 'content' pane of the help, but the TOC highlighting doesn't
    update--it stays on the original entry that was invoked via
    <F1>.
    I've checked around on the boards and have seen some issues
    like this, so rest assured that my 'Auto Synch TOC' option is
    checked.
    Any ideas would be appreciated!

    Hmmm.
    Bugs in Pages 5? Surely not!
    Peter

  • TOC caching issue on IE

    Hello all
    RH10 to webhelp
    I just received a call from an ongoing client. He's reporting that they are experiencing TOC caching issues in IE only. A topic and a book in the TOC that we removed in the latest updates are still appearing in the TOC, but obviously are dead links to topics that no longer exist. He said they cleared the folder and replaced it entirely with the new output files. They clear the cache but they keep showing up. He says they don't have this issue in Chrome.
    Any ideas?
    Thanks,
    Laurie

    He would ideally be looking for a way to not cache or to automatically clear the cache so his clients don't have to manually do it each time (they likely wouldn't know that they even would need to, and would just be confused by orphan links in the TOC).
    I found info re using meta tags to disable the cache (Disable Browser Caching with Meta HTML Tags [Cristian Sulea]). I inserted the tags into the master page header according to the instructions, but curiously they are not included in the output topics. I manually inserted it into the index.htm, and have sent the output to the client to test. I can't test it because I'm not experiencing the issue.

  • Text Highlighting issue with TextSnapshot object

    Hi,
    I am working with a digital book application. I make use of swf loader to load swf pages created from pdf. I use TextSnapsot to draw inline text highlight on the pages. The highlight is thoroughly retained on the respective pages throughout the session and later it can be updated/deleted without any problem. Everything was working great till I made the following changes in the swf loading approach to enable page caching:
    I am now loading swf loader object into application memory and while doing jumping from one page to other page I am just copying the content of the next page to the current swf loader which is on the display to the user. There are two sets of swf loaders - one for displaying the page and other to cache the next/previous page(s). On the caching side, I load the swf into application memory and after getting it loaded I pick all the contents of the loaded swf page (the children of it's movie clip) into an array collection. While changing the page I copy the cached content into the swf loader's movie clip which is displaying the page.
    Now when I highlight on the page on display and navigate back/forth from the page and comeback again to the page where I did the highlighting: It shows the highlight I did. But as soon as I try to draw another highlight on that page, the previous highlight is instantly disappears from the page.
    I suspect that the Textsnapshot object which draws highlight while navigating (to the target display page) is different from the one which redraws/update the highlight on the same page next time. Although the Textsnapshot object id for both the objects is same.
    Here are some code snippet:
    For copying the content from the swf loader object cached in application memory:
            private function copyPageContent():void
                var contentCollection:ArrayCollection = new ArrayCollection();
                _pageContentVO = new PageContentVO();
                _pageContentVO.contentHeight = MovieClip(_swfPageLoader.content).height;
                _pageContentVO.contentWidth = MovieClip(_swfPageLoader.content).width;
                var count:int = MovieClip(_swfPageLoader.content).numChildren;               
                for(var i:int=0;i<count;i++)
                    var dispObject:DisplayObject = MovieClip(_swfPageLoader.content).removeChildAt(0);               
                    contentCollection.addItem(dispObject);
                _pageContentVO.pageContentCollection = contentCollection;
                _swfPageLoader = null;
    For copying the content to the swf loader which is displaying the page:
            private function copyContent(pageContentVo:PageContentVO):void
                for(var i:int = 0;i<pageContentVo.pageContentCollection.length;i++)
                    var dispObject:DisplayObject = pageContentVo.pageContentCollection.getItemAt(i) as DisplayObject;
                    MovieClip(this.content).addChild(dispObject);
                this.content.height = this.height;
                this.content.width = this.width;
    after this I dispatch swf loader's complete manually and in the handler of that event I take the text snap shot object.(highlightManager.as)
    Code I use to draw highlight manually(using mouse drag on the page).
           public function setHighlight():void
                removeAll();
                if(_textSnapShot!=null && _textSnapShot.getText(0,_textSnapShot.charCount)!="")
                    if(_isCoveredTextSelectedAtAnyInstance)
                        _textSnapShot.setSelected(_beginIndex,_endIndex+1,false); //this is the global variable to the class
                    else
                        _textSnapShot.setSelectColor(0xfff100);
                        _textSnapShot.setSelected(_beginIndex,_endIndex+1,true);
                    if(saveHighlight)
                        countHighlightedSegments();
    Code I use to redraw previously drawn highlight when I return to the page:
           public function showHighlights(textSnapShot:TextSnapshot,currentPageNum:int):void
                if(currentPageNum >= 0)
                    textSnapShot.setSelected(0,textSnapShot.charCount,false);
                    var pageVO:PageVO = _model.eBookVO.eBookPagesVO.getItemAt(currentPageNum) as PageVO;
                    var objColl:ArrayCollection = new ArrayCollection();
                    objColl.source = pageVO.highLightSelection;
                    for(var i:int=0;i<objColl.length;i++)
                        var highlightVO:HighlightVO = new HighlightVO();
                        highlightVO.beginIndex = objColl.getItemAt(i).beginIndex;
                        highlightVO.endIndex = objColl.getItemAt(i).endIndex;
                        setHighlightedSegment(textSnapShot,highlightVO.beginIndex,highlightVO.endIndex);
            private function setHighlightedSegment(textSnapShot:TextSnapshot,beginIndex:int,endIndex:int):void
                textSnapShot.setSelectColor(0xfff100);
                textSnapShot.setSelected(beginIndex,endIndex,true);
    Looking forward to your support to resolve this issue.
    Regards,
    JS

    Hi, I've resolved this issue.
    It was a textSnapShot GC issue.
    I just added the textsnapshot object into an array to avoid GC and that resolved my issue.

  • Text field highlighting Issue in oracle forms 11g after migrating from 10g

    We have migrated the oracle forms from 10g to 11g.
    On 10g oracle form when I click on the text item then text item value gets hilighted in blue color but after converting same form(without making any code changes) into 11g version form when I click on then text item then value is NOT hilighted.
    Could please help me why it's behaving different? Are there any configuration changes required at the application server side?
    Thanks

    christian,
    We have forms 11.1.1.2.0.
    In oracle forms “text item value is highlighted When user clicks on text item” is controlled by form level property “KEEP CURSOR POSITION”.
    This property is not working with JAVA SUN plug-in in forms version 11.1.1.2.0.
    This issue has been fixed under Patch Set 2 (11.1.1.3.0). Please see below meta link.
    https://support.oracle.com:443/CSP/ui/flash.html#tab=KBHome(page=KBHome&id=()),(page=KBNavigator&id=(bmDocDsrc=KB&bmDocType=BULLETIN&bmDocID=1099499.1&from=BOOKMARK&bmDocTitle=Fixed%20Bugs%20List%20-%20Patch%20Set%202%20(11.1.1.3.0)%20for%20Oracle%20Fusion%20Middleware%2011g&viewingMode=1143))
    Thanks,
    Satish N

  • FM 9 TOC numbering issue

    The numbers in my TOC are off ("behind") by 1, relative to the actual document. Example: The TOC link says an item is on page 10, but it is actually on page 11 in the actual document.
    I have tried updating the book, even generating a new TOC and still have this issue.
    Any ideas how to fix this? Thanks.

    asking,
    Each paragraph should be associated with a paragraph style, also called a paragraph tag. For example, the title of each module might be tagged with a paragraph style named Module Title. When you create a standard TOC, you specify which paragraphs you want listed in the TOC. You do this by selecting the appropriate paragraph tags from a list. See the FrameMaker User Manual for the details.
    When you create the TOC the first time, FrameMaker creates a paragraph on the TOC reference page for each paragraph style (tag) you specify for the TOC. FrameMaker also creates another paragraph tag with the same name as the paragraph style but with TOC appended to the end of the name. If you want, you can then edit each line on the TOC reference page to get the format you want for the corresponding entries on the TOC. Again, see the user manual for details.
    The above is the way I and probably most other writers create TOCs.
    I have heard there is another way, which might be the way the original writer used in your case. I have never used this method, so I may be guessing a little on how it is done. But it might be a clue to your problem.
    FrameMaker also allows you to create a list of markers, and you can choose which markers to list, even your custom markers. Like an index marker, a custom marker has text in it, but the text is visible only in the marker dialog/pod, again like an index marker. So, when you create a list of markers (and you can chose which markers to list), the list gets its entries NOT from the content in a paragraph but from the content in the markers.
    So, I am guessing the original writer created a custom marker, say called toc. The writer then placed a toc marker either at the beginning of the paragraph with the module title or possibly in a blank paragraph just before the title paragraph. The writer then copied the title and placed it in the marker text. (Aside, instead one can set the marker text to the building block <$paratext>, and the list will display the text of the paragraph containing the marker; BUT the marker has to be in the paragraph with the module title.) Then when the list of toc markers is generated, the list displays the content that is stored in the toc markers, not the content in the module title paragraphs.
    So, if the original writer used this method, the toc marker for the module might be on the previous page and not with the module title itself.
    To check this, turn on text symbols (select View > Text Symbols). Put your cursor at the beginning of the document. Open the Marker dialog/pod (select Special > Marker). In the find dialog, select Find > Any Marker. Then click Find. At each marker found, view the contents of the marker text in the Marker dialog/pod. You may find the situation I laid out above.
    I hope this information helps to find your problem,
    Van

  • [SOLVED] Strange highlighting issue in chrome menus after updates

    After the following pacman updates I have an odd issue on 4 separate machines when running the chrome browser:
    [2014-07-26 09:05] [PACMAN] starting full system upgrade
    [2014-07-26 09:05] [PACMAN] upgraded colord (1.2.0-1 -> 1.2.1-1)
    [2014-07-26 09:05] [PACMAN] upgraded coreutils (8.22-4 -> 8.23-1)
    [2014-07-26 09:05] [PACMAN] upgraded curl (7.37.0-1 -> 7.37.1-1)
    [2014-07-26 09:05] [PACMAN] upgraded gcc-libs (4.9.0-5 -> 4.9.1-1)
    [2014-07-26 09:05] [PACMAN] upgraded gnutls (3.3.5-1 -> 3.3.6-1)
    [2014-07-26 09:05] [PACMAN] upgraded ffmpeg (1:2.2.4-3 -> 1:2.2.5-1)
    [2014-07-26 09:05] [PACMAN] upgraded gcc (4.9.0-5 -> 4.9.1-1)
    [2014-07-26 09:05] [PACMAN] upgraded git (2.0.2-1 -> 2.0.3-1)
    [2014-07-26 09:05] [PACMAN] upgraded glib-perl (1.304-2 -> 1.305-1)
    [2014-07-26 09:05] [PACMAN] upgraded pango-perl (1.225-2 -> 1.226-1)
    [2014-07-26 09:05] [PACMAN] upgraded gtk2-perl (1.249-2 -> 1.2492-1)
    [2014-07-26 09:05] [ALPM] warning: /usr/share/config/kdm/kdmrc installed as /usr/share/config/kdm/kdmrc.pacnew
    [2014-07-26 09:05] [PACMAN] upgraded kdebase-workspace (4.11.10-2 -> 4.11.11-1)
    [2014-07-26 09:05] [PACMAN] upgraded libltdl (2.4.2-13 -> 2.4.2-14)
    [2014-07-26 09:05] [PACMAN] upgraded libtool (2.4.2-13 -> 2.4.2-14)
    [2014-07-26 09:05] [PACMAN] upgraded libxext (1.3.2-1 -> 1.3.3-1)
    [2014-07-26 09:05] [PACMAN] upgraded perl-net-http (6.06-2 -> 6.07-1)
    [2014-07-26 09:05] [PACMAN] upgraded php (5.5.14-1 -> 5.5.15-1)
    [2014-07-26 09:05] [PACMAN] upgraded php-apache (5.5.14-1 -> 5.5.15-1)
    [2014-07-26 09:05] [PACMAN] upgraded php-fpm (5.5.14-1 -> 5.5.15-1)
    [2014-07-26 09:05] [PACMAN] upgraded php-gd (5.5.14-1 -> 5.5.15-1)
    [2014-07-26 09:05] [PACMAN] upgraded postgresql-libs (9.3.4-2 -> 9.3.5-1)
    [2014-07-26 09:05] [PACMAN] upgraded qrencode (3.4.3-1 -> 3.4.4-1)
    [2014-07-26 09:05] [PACMAN] upgraded telepathy-qt (0.9.3-8 -> 0.9.4-1)
    [2014-07-26 09:05] [PACMAN] upgraded thunderbird (24.6.0-1 -> 31.0-1)
    [2014-07-26 09:05] [PACMAN] upgraded thunderbird-i18n-en-gb (24.6.0-1 -> 31.0-1)
    [2014-07-26 09:05] [PACMAN] upgraded youtube-dl (2014.07.21-1 -> 2014.07.24-1)
    The issue appears when clicking on a menu item from the top of chrome, and if there is a list then the blue highlighting of each item as the cursor moves down only highlights every second item instead of every item as normal.
    I have had this happen in the past but was unsure which package was the culprit.  I don't know from the above list which package update may have been responsible, but since the same effect has been seen on 4 different machines I presume it is likely kdebase-workspace?  This is with KDE as the desktop environment, and with all packages up to date.  Has anyone else seen this issue and if so is there a workaround or is it a known bug.  It is an odd one to google for but presumably I am not the only one who has seen this issue.  The version of chrome is chrome stable google-chrome 36.0.1985.125-1
    Thanks.
    Last edited by mcloaked (2014-08-21 16:46:50)

    I have no idea what the root cause is but if you turn off compositing (Alt+Shift+F12), it'll stop. You can use the Window Rules KCM to make a rule that'll automatically stop/start compositing when Chromium is started. Sadly, this is a poor workaround as you lose all the niceties that compositing brings You can also change KWin's render mode from OpenGL to Raster but that's too intrusive for me - I'd rather just disable compositing as a whole. I'm using a laptop with an HD4000 set to use the default SNA acceleration.
    Last edited by qwerty12 (2014-08-21 06:00:09)

  • Popup call changes ToC highlight.

    Using RH8 HTML under XP to generate CHM. No source control, no network drives.
    In a project I have the settings:
    SingleSourceLayouts>HTMLHelp>Properties>Advanced>TOCstyles>AlwaysShowSelection
    Project>Windows>Properties>AutoSynchronizeToC
    These settings mean that the user can always see his position highlighted in the ToC.
    The ToC contains several books, each containing several topics; some topics are included in several books. Various topics call other topics as popups. The popup topics are not in any ToC.
    When the user displays one of the popups, the ToC resynchronises (in my test project) to the _next_ ToC entry; thus from BookA Topic 1 to BookB Topic 1, from BookB to BookC. BookC behaves properly (but this would probably change if I created BookD). Regular links, browse sequences and the Back button are also `unstable' with respect to ToC synchronisation.
    I'm no guru but I could see nothing special in the HTM, HHP and HHC files.
    My test project is 810kB zipped and contains no sensitive information.
    Has anyone advice or tips?
    --- Derek

    I selected a Binary ToC
    and that helped considerably. The highlight now remains during a popup, but calling a topic via a regular hyperlink always highlights the _first_ entry in the ToC. Unfortunately I read somewhere that you can't use a Binary ToC with merged CHMs. S-I-G-H ! ! ! (or does somebody know a workaround?)
    --- Derek

  • Highlighter Issues.

    Hello All,
    Thus far I've had no issues with my adobe reader, however, as of late my highlighter tool has been giving me some problems.
    Up until now I could highlight one lline of text at a time and navigate up or down to highlight multiple lines, but now when I attempt to highlight a single line, the tool automaticlaly highlights the lines above and below it and has an oval shape on the ends. ----- Does anybody have any insight as to how I can return this to just being able to go one line at a time, and If more I can navigate accordingly?

    Try zooming in before highlighting. Sometimes the PPI/DPI settings cause this.

  • Highlight issue? Any idea?

    Hi Forum, I am using Captivate 1.01, 1418 and
    captured/edited software simulations. Obviously I used highlight
    boxes of 3 px border. In some user machine it is 'invisible' after
    publishing as SWF+HTML. Funny is these boxes are sitting nicely in
    timeline/animation with plenty of delay. These boxes are not
    aligned using snap to grid. Flash player is 7 or 8 and Captivate
    uses player6, so there should not be any mismatch.
    Can you help? Thank you.

    Hi Highlight boxes issu and welcome to our community
    Interesting forum name, BTW.
    Okay, I'll bite. For starters, please note I'm not chiding
    you or trying to imply you are silly. I will have questions about
    your comments.
    You said: Obviously, I used highlight boxes of 3 px border.
    What I'm failing to grasp here is the "Obviously" bit, or how it
    might factor into the mix. It's my experience that the Frame width
    is normally 1 on these until you change it. So perhaps the
    obviously part is related to your personal use? You didn't say what
    color these are. Is it possible that they are a color that is close
    to the surrounding color of the movie? Where there may not be much
    of a contrast?
    You later said that the boxes are sitting nicely in the
    timeline/animation with "plenty of delay". This statement is a
    cause for closer looking. When you say "plenty of delay", I'm not
    sure what you are really saying. One could construe "plenty of
    delay" to mean that the highlight box doesn't "show up" on the
    timeline until perhaps four seconds into a ten second slide. In
    this case, the user watches the slide for four seconds before the
    highlight box would appear. Now if you later added a click box or
    button that paused the slide perhaps TWO seconds in, you would have
    a real issue as the movie would pause before the highlight box had
    a chance to appear.
    The fact that you have snap to grid turned off or on is
    irrelevant. This is a totally behind the scenes thing that helps
    the Captivate author and should have absolutely no effect on things
    one way or the other. Same with the Flash player. At least as far
    as I know to this point. I use Flash player 8 and my highlight
    boxes have never failed to display. So are you saying the "errant
    machines" (as you say in only seems to happen on a few machines)
    always have Flash player 7 or 8? Or have you checked?
    If the file works fine on one PC but not on another, the
    issue is most definitely PC related and not Captivate related. So
    it's time to pick apart the differences between the PCs where the
    movie works fine and the PCs where it fails.
    I sincerely wish you the best of possible luck in resolving
    the issue... Rick

  • Mouse cursor problem (dock magnification, highlight issue)

    My logitech wired USB mouse has an issue with my iMac.  It worked for a couple weeks.  After then, whenever it is plugged in, it does not magnify the dock, nor highlight things correctly (cursor does not turn into hand over links, does not open nor highligh menus unless clicked, etc).
    After searching, this problem has dated back years and across OS X versions, usually having to do with a wireless or wired Logitech mouse (which mine is).  The first thing people suggest is restarting/killing dock, re-install OS, repair permissions, among other things.  This rarely fixes the issue.  The solution that seems to fix it for most people is to simply unplug the mouse and plug it back in.  Most people state this fixes it until it happens again a week later and either they do the unplug-plug again or just give up and switch to another mouse.
    I have tried re-plugging it back in but it doesn't solve the issue.  Other mice work just fine which I've have gone to, but I really want to use that mouse (plus, I hate giving up!)
    Can anyone help me?  I'd appreciate it!  Thank you!
    EDIT: Here are some more clues to the puzzle:
    - The mouse works fine on multiple other computers
    - Other people have described this problem as the iMac no longer knows where the mouse cursor is until a mouse-click is pressed.  That is why it doesn't open menus, magnify the dock, change into a hand when hovering over a link, etc.  To open and select a menu at the top of the screen, for example, the left mouse button must be clicked and held, then let go of when you want to choose something.
    Message was edited by: vsonline11
    Message was edited by: vsonline11

    zmbmartin wrote:I have a problem with webkit based browser and was wondering if someone else had the same problem and/or had some ideas on how to fix it. In webkit browsers my mouse/cursor does not respond to state changes. So when I hover over a link the mouse/cursor does not change to a hand or when I hover over a text box it doesn't change to the text cursor. It is really annoying. If I do click on a link after I click the cursor turns into a hand and then stays that way no matter what I hover over.
    Just a remark:
    I'm also facing a similar problem running chromium on 32-bit arch with KDE. When I move the mouse cursor over the edges/corners of the browser the mouse cursor changes state (so a s to show arrows used for changing windows size) but uses the default X11 theme instead of my KDE mouse cursor theme....
    Also I'm using gtk-kde4 for gtk apps in KDE.
    Last edited by bhadotia (2011-01-10 15:22:27)

  • Ibook page mark and highlight issues

    I had iPad for about 5 months. I had no problem until recently with the page mark and highlight in ibook. I can't seem to mark the pages(no respond) Sometimes it marks the previous page and when I highlight the sentence, it highlights it and also
    highlights couple of streaks all the way bottom of pages on different pages.
    Can anyone help resolve this problems? Thank you.

    Mrtimoteo wrote:
    Ya, only thing that is odd is that I haven't heard or seen anyone with a similiar issue.  I would think they would make it compitable to a new laptop especially a laptop which they express to have extreme mobility and power.
    Someone else here with a Retina MacBook might be able to report whether they are experiencing problems with IBA on their machine.
    But here is the other issue, no matter what setting I put it on the chapter pages are all broken up with white area in between.  Its really odd.  I have tried deleting and re-installing the application but nothing changes. 
    If you've re-installed IBA, you've probably done all you can. If there is an Apple Store in your area, you could take the MacBook to their Genius Bar and see whether they can help.
    So it seems like a screen size issue, but why wouldnt they fix that.
    Possibly, you are just the first one to notice?
    Michi.

  • "Scrolling / Highlighting" issue (hope this isn't an old issue I overlooked

    Ever since installing iTunes in summer of '07, I have noticed a "problem" when I go and attempt to "highlight" a group of songs (etc.), no matter if they're in the MUSIC, PODCASTS, or any other group in my Library. Let me try to explain this problem so that it may be easy to understand...
    As a theoretical example, I have 10 listings in my Podcast section of the Library. They would be shown as:
    Show 1
    Show 2
    Show 3
    Show 4
    Show 5
    Show 6
    Show 7
    Show 8
    Show 9
    Show 10
    Now, let's say I want to highlight Shows 4 thru 8... I place my mouse on Show 4 and hit Enter to highlight 4, and then using the down arrow key (while holding down the Shift key) to allow me to highlight those entries. If I accidently go one (or more) entry TOO FAR past Show 8 (thus also highlighting Show 9), If I try to use the Shift + Up Arrow key, rather than the highlighted group "unhighlighting" Show 9, the highlighted group will suddenly highlight Show 3, rather than unhighlighting Show 9. I have all of the current iTunes and iPod upgrades... my Win XP has all of the upgrades, along with any/all upgrades to any/all hardware/software/firmware to every component of my PC.
    I have iTunes installed on every one of the PC's mentioned, because many of the PC's may be in use when I am working on audio or audio-video projects, or when these networked PC's are used as a "grid computing" network when rendering large files which will eventually be made into DVD for myself or music clients.
    This problem occurs no only on the MAIN PC I use for my audio video editing studio, but it also happens on the other 9 PC's, as well as 6 other stand-alone PC's throughout my residence! Apple's phone Tech Support has stated they are "looking into this issue" back in October of 2007, but I have yet to hear back from them.
    If someone can give me a pointer as to what is going on, I would appreciate it. I have searched the Discussion Areas, but trying to go through thousands of results is pretty much pointless (and straining on the eyes!!!). I hope this is not an old question which is being "rehashed"; any assistance with this rather cumbersome problem would be appreciated.
    I hope I have given enough information as to what I am using for equipment, and the example of the problem is easy enough to follow along.
    Thanks in advance for any and all helpful hints / tips / solutions to this problem.
    Cheers...
    JPS
    Serafin Station Studio B

    This is a user to user forum, contact iTunes support as roaminggnome suggested. They may be able to remove the information for you.
    http://www.apple.com/support/itunes/contact/

  • Hyperlink highlights issue from upgrade to Acrobat 9

    Hello
    I have recently upgraded to Adobe Acrobat 9 Pro Extended.
    I have a pdf created from ArcGIS and Map2PDF which contains hyperlinks.
    The hyperlinks work fine but when selecting them they highlight a black rectangle area which contains the hyperlinked shape rather than the shape itself. This causes problems because if the shapes are curved lines and are close to each other then it is difficult to see which line you have selected from the highlight. If I open the pdf in Acrobat 7 or 8 then all is fine.
    This also happens with Adobe Reader 9.
    I'm assuming there is something in the preferences which I need to turn off but I can't see anything obvious.
    Cheers.

    Yes, but is an upgrade version 7 PRO, not the full version.
    I have already purchased the 9 pro upgrade,but I want to make sure before I open it.

  • TOC style issue

    I'm working toward converting my book to an ePub.
    So, I created a new TOC style to pick up both the chapter number and chapter title on level 1.
    But the new TOC style only appears as an option with my TOC doc open. The new style doesn't appear as an option in my book chapter files.
    Is there a way to make the new TOC style available when opening another doc in my book?

    I would appreciate some clarification.
    I've attached a few screenshots.
    My style source is 03_chapter. So, do you mean to simply select the TOC doc as shown below, and then synchronize? Also, how would I know if the other styles in the TOC file are defined correctly?
    Thanks.
    All except Master Pages are checked.

Maybe you are looking for

  • Warranty extension for Satellite U400

    Hello! I have a question about possibility to extend warranty for my laptop. On the official web-ste there is information about my device and it;s written over there: "Standard Warranty Coverage: International Days:365 Expiration Date: 2010-05-25 Ext

  • Service Module / HP Officejet 100 Mobile L411. The Resume and Power lights still flash.

    Replaced Service Module on HP Officejet 100 Mobile L411. The Resume and Power lights still flash. Printer still thinks the Service Module is still almost full. Need assistance.

  • Creating Exclusive Numbers

    I come again defeated to the NI Discussion board! Let's say I want to use LabVIEW to do 10 different calculations. These calculations are running together at the same time in their own little loops. The catch is the calculations must be performed wit

  • Some Flash Items Not Rendering

    OK, Safari is not showing me some items in what I assume is a Flash-based situation on my iMac. Specifically, the Gameday display of MLB baseball games. This is the first error I have found, there may be more that I have not found yet, and it actuall

  • How can set up exchange account in outlook 2011 manually?

    I can't set up exchange account in outlook 2011 automatically. who can help me out? and how can know whether the account has been added successfully?