Quickaccess and Formatting bar both missing in 7.2

I was wondering if anyone had encountered this before:
I just recently re-installed FrameMaker 7.2 on a XP SP2 machine and I am unable to get both the Quickaccess and Formatting bar to display. Both are set to "on" in the .ini files and when I try to access them under View nothing happens at all. Any ideas?

Thanks, Sheila,
I actually thought about that last night after I posted this. I'll give it a try and let you know. I am expecting that might not be the case, however, because the check mark never shows up for the bars in question under view and I seem to recall that happening before when they were active?
To answer your question about the 2 maker.ini files, yes I checked the one in documents and settings and the one in program files.
Thanks for your help so far.

Similar Messages

  • My back button, print, and address bar are missing how do I get them back?

    ''duplicate - locking - https://support.mozilla.com/en-US/questions/865223''
    tool bar went missing for unknown reason, no back button, no print button no address bar or bookmarks.

    ''My back button, print, and address bar are missing''
    Use "Alt" to make sure the menu bar is visible, then View > Toolbars > ... -- make sure that the Navigation bar is checkmarked, if tabs on top is confusing uncheck that, if you want to see menus and title bar make sure menu bar is check-marked.
    If things don't stay put on the toolbars then
    see http://kb.mozillazine.org/Corrupt_localstore.rdf
    You can make '''Firefox 6.0''' look like Firefox 3.6.*, see numbered '''items 1-10''' in the following topic [http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface Fix Firefox 4.0 toolbar user interface, problems (Make Firefox 4.0 thru 6.0, look like 3.6)]. ''Whether or not you make changes, you should be aware of what has changed and what you have to do to use changed or missing features.''
    * http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface
    There is a lot more beyond those first 10 steps listed, if you want to make Firefox more functional.
    <br><small>Please mark "Solved" one answer that will best help others with a similar problem -- hope this was it.</small>

  • Play and pause button and control bar are missing below xfinity player

    when I want to watch a video noticed play and pause button and control bar are missing below xfinity player.

    For the two soundchannel sounds you have, you will need to keep track if and which one is playing so that you can use some logic to stop the sound right after you mark where the sound was (position)  so that you can resume playing it again when the play button is selected.
    So if the stroke sound is started, you could assign a boolean variable named something like 'strokeplaying' to be true (setting the other sounds similar boolean false).  Then, in your pause function you would test to see if strokeplaying is true and if it is, store the position property and stop the channel playing. 
    When play is selected, similarly, you test if that sound is true and if so you restart it using the position value you stored as the starting point.  You do the same for the other sound... remembering that it is possible neither is playing when pause it clicked.

  • My address bar and menu bar are missing, unable to back up history or bookmarks..

    I unchecked menu bar then unchecked address bar. Now I can't right click and check them back to make them appear. Now I can't back up my history or my bookmarks. I have no help> or menu.

    <u>'''Can't see the Menu Bar'''</u> (File, Edit, View, History...Help)? Hold down the key ( key in OSX) and press the following letters in this exact order: V T M
    The Menu Bar should now be displayed permanently, unless you turn it off again (View > Toolbars). Turning the Menu Bar on and off is a new feature in version 3.6.
    See: http://support.mozilla.com/en-US/kb/Menu+bar+is+missing
    <u>'''See other Toolbars'''</u> under View > Toolbars. Clicking on one of them will place a check mark (display) or remove the check mark (not displayed).
    <u>'''To display the Status Bar'''</u>, View, then click Status bar to place a check mark (display) or remove the check mark (not displayed).
    <u>'''Full Screen mode'''</u>
    http://kb.mozillazine.org/Netbooks#Full_screen
    Also see:
    ''' [[Back and forward or other toolbar buttons are missing]]'''
    '''[[Navigation Toolbar items]]'''

  • Play and plause button and control bar are missing belw xfinity player

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [/questions/840891]</blockquote>
    when watching video, can not see play and pause button and control bar, it is missing below xfinity player.

    Ok BE...I took you advice and used a prebuilt skin, but tweeked it to get it looking how I wanted. However, now when I switch between the different videos, the playhead stays at the spot that it previously was. For example, if the playhead is currently 50% through video #1 and I click video #2, the playhead is still sitting at 50%. How would I reset the playhead to the beginning of the new video?
    import fl.video.*;
    var flvPlayer:FLVPlayback = new FLVPlayback();
    addChild(flvPlayer);
    flvPlayer.skin = "MySkin.swf";
    flvPlayer.skinAutoHide = true;
    flvPlayer.skinFadeTime = 300;
    flvPlayer.x=78;
    flvPlayer.y=89;
    flvPlayer.width=640;
    flvPlayer.height=360;
    flvPlayer.source = "flv/Video1.f4v";
    vid1.addEventListener(MouseEvent.CLICK, fl_ClickToSetSource1);
    function fl_ClickToSetSource1(event:MouseEvent):void
    flvPlayer.source = "flv/Video1.f4v";
    vid2.addEventListener(MouseEvent.CLICK, fl_ClickToSetSource2);
    function fl_ClickToSetSource2(event:MouseEvent):void
    flvPlayer.source = "flv/Video2.f4v";
    I know I need to do something in the setSource function, but don't know how.
    Thanks.
    Mike

  • Volume and seek bar handles missing from video player...

    I am creating a custom flash video player for my friend's wife's surprise 40th birthday party. I was progressing through and everything was working fine, but now the seekbar and volume bar handles are completely gone. I was working on doing some buttons to load each video segment when I realized the missing handles. My actionscript is below:
    import fl.video.*;
    var flvPlayer:FLVPlayback = new FLVPlayback();
    addChild(flvPlayer);
    flvPlayer.playButton = playbtn; 
    flvPlayer.pauseButton = pausebtn;
    flvPlayer.seekBar = seekbar;
    flvPlayer.x=78;
    flvPlayer.y=39;
    flvPlayer.width=640;
    flvPlayer.height=360;
    flvPlayer.source = "flv/video1.f4v";
    vid1.addEventListener(MouseEvent.CLICK, fl_ClickToSetSource1);
    function fl_ClickToSetSource1(event:MouseEvent):void
    flvPlayer.source = "flv/video1.f4v";
    vid2.addEventListener(MouseEvent.CLICK, fl_ClickToSetSource2);
    function fl_ClickToSetSource2(event:MouseEvent):void
    flvPlayer.source = "flv/video2.f4v";
    The play/pause buttons work perfectly, so I'm at a loss what is going on...any ideas would be most appreciated.
    P.S. Take it easy on my code....I'm not the most proficient.

    Ok BE...I took you advice and used a prebuilt skin, but tweeked it to get it looking how I wanted. However, now when I switch between the different videos, the playhead stays at the spot that it previously was. For example, if the playhead is currently 50% through video #1 and I click video #2, the playhead is still sitting at 50%. How would I reset the playhead to the beginning of the new video?
    import fl.video.*;
    var flvPlayer:FLVPlayback = new FLVPlayback();
    addChild(flvPlayer);
    flvPlayer.skin = "MySkin.swf";
    flvPlayer.skinAutoHide = true;
    flvPlayer.skinFadeTime = 300;
    flvPlayer.x=78;
    flvPlayer.y=89;
    flvPlayer.width=640;
    flvPlayer.height=360;
    flvPlayer.source = "flv/Video1.f4v";
    vid1.addEventListener(MouseEvent.CLICK, fl_ClickToSetSource1);
    function fl_ClickToSetSource1(event:MouseEvent):void
    flvPlayer.source = "flv/Video1.f4v";
    vid2.addEventListener(MouseEvent.CLICK, fl_ClickToSetSource2);
    function fl_ClickToSetSource2(event:MouseEvent):void
    flvPlayer.source = "flv/Video2.f4v";
    I know I need to do something in the setSource function, but don't know how.
    Thanks.
    Mike

  • The menu bar and task bar are missing. I tried opening in safe mode like instructed but there is no firefox button and I tried opening with shift key down but it doesn't open in safe mode.

    all that is showing is bookmark tabs. I can't search or open my home page. I don't have a fire fox button at the top to click on to open in safe mode.

    # Maybe you are in ''Full screen'' mode. Use the '''F11''' key to enter or exit this mode.
    # Press the '''Alt''' key and while keeping it pressed, press these keys: '''V T M'''. Do you see the menu bar now?

  • Minimise,maximise close icons and task .bar are missing.pls help.

    my home page is google.but when i open firefox i dont see it.i cannot see maximise minimise andclose icons too. pls help.

    thanks a lot . hitting f11 solved my problem. now may i know how should i make my google home page?pls help.
    veena

  • Format bar missing Wrap

    My format bar is missing icons.  Anyway to reset it or put wrap back onto the format bar?

    The format bar is context sensitive.
    If there is an object able to force wrap somewhere in the document, the Wrap icon is available :
    If there is no such object, the app don't display the useless icon.
    Just matter of best use of the space available.
    Yvan KOENIG (VALLAURIS, France) jeudi 4 août 2011 10:16:35
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • Firefox blocks email features when using dotEasy email. The formatting bar is not available when trying to write a text. If I open dotEasy in Chrome it works fine. Why?

    I'm using Windows XP. When opening dotEasy.com with Mozilla Firefox and password into my account, the email account opens but the formatting bar is missing. When I open dotEasy with Chrome, it works. Why?

    You can try to modify the user agent to Firefox/9.0.2 in case it fails on browser detection.
    *https://support.mozilla.org/kb/latest-firefox-issues
    *User Agent Switcher: https://addons.mozilla.org/firefox/addon/user-agent-switcher/
    If that works then you can contact the website to inform them that they need to revise their browser detection code.
    *http://hacks.mozilla.org/2012/01/firefox-goes-2-digit-time-to-check-your-ua-sniffing-scripts/

  • Formula and Tools bar sizing

    Just starting in Numbers and the tool bar and format bars are too small to read. How do I make them bigger?

    As you didn't wrote which Numbers version you are running, I will assume that you run Numbers '09 even if my memory say that this one isn't compatible with OS X 10.4.7
    Tool Bar
    Numbers User Guide is often useful !
    When there is tool to reduce the size of icons, there is one to enlarge them.
    Format Bar
    Question often asked and answered : no way to change it.
    Go to "Provide Numbers Feedback" in the "Numbers" menu, describe what you wish.
    Then, cross your fingers, and wait at least for iWork'11 or 12 ;-)
    Yvan KOENIG (VALLAURIS, France) mercredi 10 août 2011 22:58:59
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • Missing Tool, Format and Formula Bars

    I am new to Numbers and cannot figure out how to bring up the Tool Bar, the Format bar and the Formula bar also the Sheets pane on a spreadsheet. Is it because I cannot find the "View" button?

    Hi Norm,
    Well, if you don't have the Toolbar showing, then you won't find the View button.
    Fortunately, that's not the only place to find "Show Toolbar."
    You can also toggle the display of the Toolbar using the keyboard shortcut shown in the menu—option-command-T.
    Regards,
    Barry

  • My safari menu bar is missing --the menu bar for desktop, HD, and apps appears, but when I click on Safari, it disappears, so I can no longer see my buttons for History, etc.  I think my husband (pc user) clicked it away.  Any ideas how to retrieve it?

    My safari menu bar is missing.  The menu bar for desktop, HD, and apps appears, but when I click on Safari, it disappears, so I can no longer see my buttons for History, etc.  I think my husband (pc user) clicked it away when borrowing my computer.  Any ideas how to retrieve it?  Thanks. 

    I too was having the same problem However, I could access both the menu bar and the dock by hovering my mouse over them so it wasn't a huge problem but I prefered having it there anyway. I was not in full screen mode and I could still go into full screen mode if I wanted to.  I found the easiest solution was to just quit safai and restart it, but it might not work for you considering you couldn't access you menu bar either way.
    I found this article that allows you to hide/show the menu bar and the dock through TextEdit (didn't work for me) http://www.mactricksandtips.com/2009/07/hide-the-menubar-or-dock-in-specific-app s.html It is pretty old so it might not work for lion and a bit risky if you don't know what you're doing so I wouldn't really recommend doing it this way.
    And KSheppard, I know it's not really any of my buisness, but the way to get answers to a question isn't by insulting others and being quick-tempered. Even if you feel like you were insulted first, don't try snapping at people who aren't obligated to help you. Honestly, it just makes everything easier if everybody is cooperative and polite.

  • I am in the process of expanding a database of chemistry journal articles.  These materials are ideally acquired in two formats when both are available-- PDF and HTML.  To oversimplify, PDFs are for the user to read, and derivatives of the HTML versions a

    I am in the process of expanding a database of chemistry journal articles.  These materials are ideally acquired in two formats when both are available-- PDF and HTML.  To oversimplify, PDFs are for the user to read, and derivatives of the HTML versions are for the computer to read.  Both formats are, of course, readily recognized and indexed by Spotlight.  Journal articles have two essential components with regards to a database:  the topical content of the article itself, and the cited references to other scientific literature.  While a PDF merely lists these references, the HTML version has, in addition, links to the cited items.  Each link URL contains the digital object identifier (doi) for the item it points to. A doi is a unique string that points to one and only one object, and can be quite useful if rendered in a manner that enables indexing by Spotlight.  Embedded URL's are, of course, ignored by Spotlight.  As a result, HTML-formatted articles must be processed so that URL's are openly displayed as readable text before Spotlight will recognize them.  Conversion to DOC format using MS Word, followed by conversion to RTF using Text Edit accomplishes this, but is quite labor intensive.
      In the last few months, I have added about 3,500 articles to this collection, which means that any procedure for rendering URL's must be automated and able to process large batches of documents with minimal user oversight.  This procedure needs to generate a separate file for each HTML document processed. Trials using Automator's "Get Specified Finder Items" and "Get Selected Finder Items", as well as "Ask For Finder Items"  (along with "Get URLs From Web Pages") give unsatisfactory results.  When provided with multiple input documents, these three commands generate output in which the URLs from multiple input items are merged into a single block, which yields a single file using "Create New Word Document" as the subsequent step.  A one-to-one, input file to output file result can be obtained by processing one file at a time, but this requires manual selection of each item and one-at-a-time processing. What I need is a command that accepts multiple input documents, but processes them one at a time, generating a separate output for each file processed.  Is there a way for Automator to do this?

    Hi,
    With the project all done, i'm preparing for the presentation. Managed to get my hands on a HD beamer for the night (Epason TW2000) and planning to do the presentation in HD.
    That of course managed to bring up some problems. I posted a thread which i'll repost here . Sorry for the repost, i normally do not intend to do this, but since this thread is actually about the same thing, i'd like to ask the same question to you. The end version is in AfterEffects, but that actually doesn't alter the question. It's about export:
    "I want to export my AE project of approx 30 min containing several HD files to a Blu Ray disc. The end goal is to project the video in HD quality using the Epson  EMP-TW2000 projector. This projector is HD compatible.
    To project the video I need to connect the beamer to a computer capable of playing a heavy HD file (1), OR burn the project to a BRD (2) and play it using a BRplayer.
    I prefer option 2, so my question is: which would be the preferred export preset?
    Project specs:
                        - 1920x1080 sq pix  (16:9)
                        - 25 fps
                        - my imported video files (Prem.Pro sequences) are also 25 fps and are Progressive (!)
    To export to a BRD compatible format, do i not encounter a big problem: my projectfiles are 25 fps and progressive, and I believe that the only Bluray preset dispaying 1920x1080 with 25 fps requests an INTERLACED video  (I viewed the presets found on this forum, this thread)... There is also a Progr. format, BUT then you need 30 fps (29,...).
    So, is there one dimension that can be changed without changing the content of the video, and if yes which one (either the interlacing or the fps).
    I'm not very familiar with the whole Blu-ray thing, I hope that someone can help me out."
    Please give it a look.
    Thanks,
    Jef

  • HT1495 My Wife and I have separate accounts on the same Macbook Pro.  I have moved the iTunes library to a shared area and we can both access it, however, my Wife (secondary user)can't import cd's. Is there something we are missing and is there a way to d

    My Wife and I have separate accounts on the same Macbook Pro.  I have moved the iTunes library to a shared area and we can both access it, however, my Wife (secondary user)can't import cd's. Is there something we are missing and is there a way to do this?

    You are more likely to get relavant and useful suggestions posting to the Mac forums instead of the iTunes for Windows forum where you've posted.

Maybe you are looking for

  • Seems simple but: want to trannfer purchased music from one Mac to another

    On the family iMacG5 have backed up my daughters small library of "purchased" music to a dvd using the "data cd" setting in preferences. 1)can i use this cd to transfer or import to her new MB? 2) is there any danger my ripping data back-ups could be

  • (need help) Replacing AVI files with MOV files in a edit.

    I'm working on a large edit that uses low res AVI files for editing, Though all the high res files are written as MOV's with exactly the same name (just being a different filetype) Is there a way to automaticly re-link all those avi movies with those

  • Sender Proxy - Multiple Message problem

    Hello, I have a problem in a proxy process. I have a Sender Proxy which reads a file and sends it to PI. The file is converted into IDocs and sent to SAP ERP. The problem is that my mapping is splitting the file and sending multiple IDocs. So in my m

  • Solaris 10 Samba - swat is in mainenance mode

    I am trying to enable swat but can only get it to maintenance mode. Samba and winbind both enable ok. What do I need to do to get swat to go online? I have: {color:#000000}*SunOS troy 5.10 Generic_138889-08 i86pc i386 i86pc*{color} I have added the f

  • Help on File Sizes?

    Hello again. So now I'm a proud new owner o a mini-dv camcorder, the oanasonic pv-gs35 and lovin' it. Never really learned how to use iMovie until now. Can anyone shoot out some numbers regarding file size? I'm thinking since I have an 80GB HD that's