Sidebar in Aggregator not going full height

I'm working with Adobe Captivate 4 and I recently applied the aggregator.dll patch to resolve issues with Adobe Flash 10.X. 
When I aggregate a series of captivate products, the navigation bar on the right hand side is not going the full "height" of the presentation.   It's cutting short at the  bottom.
The height of the presentation is only 400, so I can't imagine that the presentation is too tall.
When I publish individual captivate projects, the sidebar is just fine.
Anyone else experience this or have a solution?
Scott

Please see following changes:
<mx:ViewStack id="menuOptions" width="100%" paddingBottom="5" height="100%">
      <mx:Panel width="100%" height="100%" layout="absolute" id="panel1" label="Panel 1" title="Panel 1" titleIcon="@Embed(source='resources/panel_icon.png')">
            <mx:DataGrid id="grid1" width="100%" height="100%"/>
      </mx:Panel>
      <mx:Panel width="100%" height="100%" layout="absolute" id="panel2" label="Panel 2" title="Panel 2" titleIcon="@Embed(source='resources/panel_icon.png')">
            <mx:DataGrid id="grid2" width="100%" height="100%" />
      </mx:Panel>
      <mx:Panel width="100%" height="100%" layout="absolute" id="panel3" label="Panel 3" title="Panel 3" titleIcon="@Embed(source='resources/panel_icon.png')">
            <mx:DataGrid id="grid3" width="100%" height="100%"/>
      </mx:Panel>
</mx:ViewStack>

Similar Messages

  • External monitor not going full resolution on extended desktop

    Hello,
    I have a Gateway widescreen 1680x1050 resolution monitor plugged into my 13" Macbook Aluminum computer. When I have both my external and built in display turned on extended mode, my external monitor only goes up to 1600x1000 resolution, which is obviously lower than full-res. When I close the lid of my Macbook (and run the external display only), the external display goes up to full 1680x1050 resolution. Could someone please help me solve the problem of my Gateway external display going to less than full res on extended display mode.
    Thanks a lot!
    Adrian

    There is a clue here in what might be going on. Note that the MacBook's 1280x800 display is a 16:10 aspect ratio (exactly). Now, the external resolution that is reported by shmootz is 1600x1000 which is also a 16:10 ratio. It looks to me that the system is running as if it is in the mirrored mode. The video driver will force the displays to the same aspect ratio when running as mirrored displays.
    I'd try a few things to see if you can reset the display options. First, try toggling the "Mirror Displays" option in System Preferences -> Displays -> Arrangement. Second, you may want to try a reset of your PRAM and the SMC.
    Here is a link to Apple's support article on resetting the PRAM:
    http://support.apple.com/kb/HT1379
    Here is a link to Apple's support article on resetting the SMC:
    http://support.apple.com/kb/HT1411

  • Remote desktop full screen mode not going full screen

    Hi,
    Running Windows 7 RTM x64 on both my PC at home and my workstation at work.
    My PC at home has a square monitor and my work PC has a widescreen monitor.
    I used webapps (citrix) from home to get into work environment then remoted to my workstation.
    Since doing that, when I am physically at the workstation (at work), I can no longer remote desktop to servers in full screen mode.  Instead, it does a smaller window with "full screen settings".  Basically the full screen remote desktop is about 3/4 size of the monitor, not 100%.
    Any help appreciated.
    -thanks

    I  have this problem too ... On Windows 7. 
    Dell XPS14 laptop ... No Pause Key ... No Break Key... (ctrl +alt + fn + F12) doesn't work.
    The thing that bugs me most is ..... What's
    changed and WHY?
    I've been using remote desktop for years and maximizing always used to send it to full screen.
    Now suddenly I can't go to full screen without exiting and resetting the screen size with the slide bar in the options!
    WHY
    Seems this has been broken in Windows 7. It still works fine as it used to on my old M65 running Vista.
    Why has
    this been broken in Windows 7? How come no one at MS noticed?
    The marked answer is not acceptable. Sure it works when you initially open the connection but if
    you minimize or restore the window the problem comes back as before.
    Hi, I'm on a Dell Inspiron N5010 and for me, the winning combination was Ctrl-Alt-Fn-F6. Toggles full screen and windowed screen.

  • Am going on a trip for 1 month and am not going to use my iphone during this period so should i charge it full and turn it off or keep it on till the bettery dies or what ,,,pls help???

    Am going on a trip for 1 month and am not going to use my iphone during this period so should i charge it full and turn it off or keep it on till the bettery dies or what ,,,pls help???

    Discharge it to around 50-60% then completely shut it off. Store at around room temperature. When you return connect the charger and let the battery fully charge.

  • Gradient background is not extending the full height of the page

    Hi, I'm an extreme novice with dreamweaver - still figuring it all out. I'm needing to edit a website that was set up by someone else and I can't figure out why the gradient won't extend the full height of the page. It originally was fine but when we added lengthier text this problem popped up. I've fiddled with the css but nothing I'm doing is working - I hope it's something basic as I'd like to get this done asap.
    The H1 titles are also centred in their columns despite the css saying 'left align' so this also confuses me - can we get them to be left aligned?
    The URL is: www.petrohamman.co.za
    Thanks!
    Ash

    Did this other person leave to take up another career, because the set up is shocking?
    Amend your body css to as below:
    body {
    margin:0;  
    padding:0;
    font-family: Helvetica,arial,sans-serif;   
    color:#E6A9CC;
    You don't need height 125% on your #background css selector so either delete it or comment it out using /*   */ as shown below PLUS add overflow: hidden; as also shown below, that will take care of the gradient issue.
    #background
        width:100%;
        /* height:125%;*/
        background: -webkit-linear-gradient(#FFFFFF, #F4DCEB); /* For Safari */
        background: -o-linear-gradient(#FFFFFF, #F4DCEB); /* For Opera 11.1 to 12.0 */
        background: -moz-linear-gradient(#FFFFFF, #F4DCEB); /* For Firefox 3.6 to 15 */
        background: linear-gradient(#FFFFFF, #F4DCEB); /* Standard syntax (must be last) */
        overflow: hidden;
    Amend text-align: center; which is currently declared in the h1 css selector to text-align: left; OR just delete it completely as the default alignment is already set to left.
    h1
        margin:0;
        padding:0;
        color:#E6A9CC;
        text-align: left;
        font-size:30pt;
    Importantly delete height: 500px; from the #content css selector or comment it out as shown below using /*   */. This is important as any information in the 'content' container will not scroll if the height is deeper than 500px, which it will be. The general rule is you should never set heights on any container, only in special circumstances where you know what the height will be or you want to show a restricted area such as a scrolling frame.
    #content
        width:100%;
        /* height:500px; */

  • HT4060 I'm having some problems with my ipad and charging it. I am having to leave it in charge for a lot longer, but when I take it out and want to use it the battery is still not completely full and goes down a lot faster than usual

    I'm having some problems with my ipad and charging it. I am having to leave it in charge for a lot longer, but when I take it out and want to use it the battery is still not completely full and goes down a lot faster than usual. The other day, I had charged  my iPad overnight so that I could take it to university with me for the day, and when I had switched it on the next day the battery was on 5% and I had not used it since charge.

    Your battery may be dying. THey are only good for so many charges/discharges. If you have an apple store near by make an appointment and have them check itout

  • Open PDF-Output in browser window with full height

    Hi,
    I must open some BIP-Reports as PDF in a browser window via URL. The problem ist, that the height of the PDF-Output is fixed, as the PDF is shown in an iframe with fixed height.
    The height can be set in the BIP preferences, but only to a fixed value (not to something like "100%"). If the height is smaller than the users browser window, then there is unused space below the pdf output. If the height is greater than the users browser window, there are two scrollbars to the right: One for the html-Page and one for the PDF.
    I tried the following options:
    1. http://<bip-server:port>/xmlpserver/public/<report-name>.xdo?_xmode=4&_xf=pdf
    -> Output is PDF, only the PDF is shown (_xmode=4), opens in same browser window but height is limited.
    2. http://<bip-server:port>/xmlpserver/public/<report-name>.xdo?_xmode=4&_xf=pdf&_xpt=1
    -> PDF is not opend in browser window, but can be downloaded or opened in a separate PDF-Viewers window.
    I would like to just open the PDF in the browser window in full height. How can I achive this?

    Hello Yesh,
    you can open PDFs as a guest user (without authentification):
    1. Allow Guest Access (Admin -> Security Configuration -> Check "Allow Guest Access" and select a folder name).
    2. Copy your Report into this guest folder
    3. You can open the Report as PDF with a link like this:
    http://(bip-server-name):9704/xmlpserver/(guest-folder-name)/(report-name)/(report-name).xdo?_xpt=0&_xf=pdf&_xmode=4(&report-parameters)
    Just replace the strings in brackets. You find a great description of the URL parameters in Tim Dexters Blog
    http://blogs.oracle.com/xmlpublisher/2006/07/accessing_xmlp_enterprise_repo.html
    I didn't find an option to set the height of the PDF-Output for the guest user in the BIP-UI. Maybe I missed something. But you can manually edit the configuration file. It is located on your BIP server direcory in the subdirectory xmlp/XMLP/Users. Select the guest users subdirectory and edit the configuration file "user~.profile".
    In this XML config file there is an entry "viewerHeight". In the Value-Tag you can enter the PDF output windows height in pixel (but unfortunaly not in % - this was the question of my original posting).
    Hope that helps...
    Sascha
    Edited by: sascha@tesat on Oct 26, 2009 9:02 AM

  • Sent mails staying in sending and not going to sent mails

    Hi everybody,
    I have the following problem: Sent mails are staying in sending with 100% sent (showing activity, command+0) and not going to sent mails when they are actually sent and arrived to the recipient.
    What can I do? Maybe reinstall it? Is there any other solution that might work?
    Thanks, enjoy your day,
    Cédric

    Hello again,
    In the screenshot you emailed me, there are files leftover from when this mailbox was used in Jaguar (10.2) or earlier, and also files leftover from when it was used in Panther (10.3.x) and Mail 1.3.x. Specifically all files except the folder Messages (and its contents) are no longer used by Mail -- you can check by using Get Info in them and you will see the dates last modified to all be prior to your upgrade to Tiger. How long ago did you upgrade? Did you find that all mailboxes appeared to have the messages in them that you knew were previously there (at the time of upgrade)? If so, quit Mail and in the Finder remove all files in the Sent Messages.mbox folder except the Messages folder. Then relaunch Mail and immediately use Rebuild.
    However, if your Inbox and other mailbox have similar leftover files there might be some impact from that. Check the other mailboxes and let us know. See:
    http://docs.info.apple.com/article.html?artnum=301315
    If other xxxx.mbox folders have the Info.plist file, then leave it, and do not delete. If you upgraded recently, and you think messages that you saw immediately after upgrade were not all-inclusive, then post back. However, with this Sent Messages.mbox folder the Messages folder size exceeds the size of the mbox file (where message content was once stored) so it gives the appearance of a good, full, conversion.
    If you remove the Leftover files from other mailboxes, I would suggest using Rebuild on each of them, although if they seem fine, otherwise it may not be needed. There is another procedure to force reindexing of all mailboxes (Rebuild freshens the Envelope Index with respect to only the one mailbox) if needed.
    Ernie

  • Everytime i try to update my iphone 3gs it downloads but then cancels halfway but not the full file

    Everytime i try to update my iphone 3gs it downloads but then cancels halfway but not the full file. When i download 6.1.3 from various sites i receive an error (3194). I've been trying to troubleshoot it now for weeks. Also i can't copy songs music photo's or anything on it as well. Help would be highly appreciated please and thank you.

    http://support.apple.com/kb/TS4451
    This article should be able to explain what is going on and how to resolve it.
    Good luck!

  • Full height pcie slot

    Is anyone using the full height PCIe slot in the x120e?
    Nothing I put in there is recognized in Windows 7.
    If I move the current 1/2 height wireless to the full slot, it still does not work so I know it's not the card I'm using (which works in the 1/2 height slot).
    I've tried a new wireless card and an HD decoder card and nothing works in the full slot.

    I *think* it is designed solely for a WAN type card, so no dice for me.
    I've tried a wireless card (Intel 5300) and a Broadcom HD decoder with no luck.
    I've even moved the 1/2 height card that came with the device into the full height slot and it simply isn't recognized.
    No BIOS errors, but the device (no matter what I put there) ever shows up in Windows.
    The parts list lists it as a "WAN" slot, so I guess that's all that will work which is a horrible horrible disapointment.

  • Screen flashes... or an application goes full screen then disappears??!

    A weird and definitely not-normal phenomenon has been happening lately. Somewhat rarely (every 5-6 hours) it seems like my screen flashes. Very briefly.. less than a second. It almost looks as if theres some application that goes full screen, then disappears, or maybe the screen just flashes. Something is definitely not right.
    I don't see anything abnormal in my console though... nor in activity monitor. I've checked for loose connections, etc, and ran hardware tests. Cleared SMC and Pram. I consider myself quite computer savvy, and I install almost no applications, and keep everything nicely optimized.
    I'm using a Dell 3007WFP-HC display, FWIW.

    Some people started having trouble with 8800GT after 10.5.7. Some even went back to 10.5.6 (good reason to always keep a backup boot system with last OS version).
    Or start worrying it is the 8800GT going. Easy to test for IF you have an alternate graphics card handy.
    Heat. Summer. 8800's don't do enough to kick in and properly cool the card on its own - single slot cards are not good at cooling and venting.

  • Project not showing full frame in a compound clip

    Hi Folk;
    I am finishing my first project in FCPX (10.0.9) . Overall everything went very well.
    I had another editor start the project on another computer.
    I copied the event to my iMac and continued the edit. No problems until I exported the project for the client review.
    I have a compound clip with mixed footage and a storyline and connected clips that I have used in a project with several compound clips.
    I can play this particular compound clip fine and all the video displays fine. (see picture #2)
    I lay the this Compound clip into the project and I get less than full frame out in my "storyline" elements - especially after the orange render bar disappears -
    I sent the client a version with the "drop out" video (see first pix below where image does not reveal full frame ) and have spent a few hours looking for a cause for my issue. I am wondering if I am the only one dealing with this.
    I have created a work around - exported the compound clip and reimport it as a full clip and layed it into the timeline.
    The setting for the compound clip are XDCAM sony and the footage that is at issue is AVCHD from a panasonic.
    I have several events providing footage for the compound clip
    The project has seveal compound clips from different events
    The event folder I created seems to be where the issue lives. or maybe the render -
    I am using orginal footage not proxies.
    I want to avoid this in the future so any insight is helpful.
    I feel I have made a mess of my first project and want to clean up any bad habit that may be causing my problem.
    Thanks for the opportunity to diagnos this.
    I am sure this is as clear as mud.
    Cheers!

    when you first create a new project, FCPX *can* be set to accept "Automatic Settings" -- basically, it will take the properties of the first clip dropped in the storyline. This can be very convenient if you know the media will be all the same, or you know how to manipulate the "first drop". 
    If you know the format you want your project to be, it's better to set that up manually when you start a new project (Advanced Options). When you apply your media to the storyline, FCPX will conform the media to the project settings. It doesn't always work perfectly (due to custom or proprietary differences in file formats for the containers holding the media.) For instance, one of my older (SD) camcorders produces "Samsung AVC" (from Get Info on the file) and FCPX simply will not recognize the anamorphic footage.
    Anyway, so, yes, I would suspect the 1440x1020 footage might be problematic. (Are you sure it's 1020?? or did you mistype? If it's actually 1080, it still might be giving you problems. All of my 1440 footage requires manually adjusting the width by 133.33%).
    You can force a change for your project by clicking going out into the Project Library and with your project selected, you should see a wrench icon at the bottom right of the inspector. Click that and adjust your project settings (you cannot change the frame rate once a project is started, but you can change just about everything else.) Once you get the format set up (and you go back into your project), then you'll know which clips will need to be adjusted. If you have footage that won't fit the frame, you will probably need to go into the video tab > Transform, turn down the Scale disclosure triangle and adjust the X scale (usually) and Y scale (only if necessary.) If the footage you need to conform is SD, there is an Anamorphic Override option available in Info > Settings.
    About compound clips... FCPX tries to guess a format based on "common" properties. If you're creating compound clips with mixed media - Use  Custom Settings and set the properties to be the same as the project format.
    HTH

  • Order not going to alternate resource after optimization

    Hi all,
    My requirement is order need to be scheduled on all alternate resource... and also it will adhere product sequence...
    I have given cost as follows in optimization profile..
    Make span=100
    Setup cost=60
    Mode cost=25
    Cost and time i have maintained in setup matrix.
    In the cost tab of optimization profile i have given A=10,B=100 as variable and 100,200 in fixed column..
    Product sequence is some how adhering..but order is not going to alternate resource....
    Thanks
    pardeepta

    Hi Pradeepta,
    I Believe, that might be u r observation.
    To achieve the required scenario which you have given, plz follow the below steps
    1. Plz check whether u have defined mode priority in PDS or not. If not plz define.
    2. After maintaining do new explosion of transaction data
    3. Plz maintain the weights in basic settings of optimization profile as "make span = 0", Total setup time = 50, Total mode cost = 70,
    4. In Cost tab maintain fixed mode cost as A = 10, B = 12, C = 14 etc (In multiples of 2)
    When you try this example ensure that u have 1 and half day load & give scheduling horizon as 1 day while optimization for the resources A, B & C.
    System will schedule on Primary resource A first then it willl schedule on alternate resource B. If resource B is also full then only it schedule on resource C.
    Note: If you define make span, then system will thing that you want to produce ASAP and results will be accordingly. make span has no relation with mode priority.
    Regards
    Sravan Maturu

  • 100 % full-height Animated Menu

    Hello All,
    Thank you for reading my post. I needed help creating an animated menu.
    I got part of it to work (where you click the menu and it animates), but I can't for the life of me, figure out how to make a rectangular, full-height menu come out from the right upon click, with text options linking to anchors/links within my adobe muse file.
    To download my Edge Animate file, please go to: https://www.dropbox.com/s/2kiqn42nlalkxfs/Menu.zip?dl=0
    Your help would be greatly appreciated!

    Hi, there is a good tutorial Prototype animation without writing a line of code | Web design | Creative Bloq and when you put .oam file into Muse you must pin it to the corner and height of your menu must be more than 1440px (I mean rectangle in Edge Animate) to fit any screen. You can't make 100% hight in Muse even if you did 100% in Edge Animate, Muse will calculate the height in pixels. I hope I'm clearly written, English is not my native language If you can't do it, send me Edge Animate file I will help.
    Regards.
    Misha

  • Facebook app not staying full screen after IOS 7.1 upgrade

    Just started this morning... did the 7.1 upgrade last night. Not sure if I accessed FB last night after the upgrade.
    What I'm seeing this morning is pretty weird... best way to describe it is: the FB app is not fully crashing... if I start it, it throws the FB screen for a milli-second, then it disappears. BUT... it still shows up as a running app, with recent posts shown in the preview window of the running apps section (FB window above FB icon). If I try to maximize it, it goes full screen for a milli-second then disappears but is still shown as a running app.
    I checked the FB account info in the iPad's Settings and it was missing my FB acct info. I added the info back in but the problem continues.
    I haven't checked every app on my iPad but the Chrome, Gmail, and ebay apps are all working fine. Just tried Maps, iTunes Store, and Garageband and they all start up as expected.

    I've had no problems with the Facebook App. Have you tried restarting or resetting your iPad?
    Restart: Press On/Off button until the Slide to Power Off slider appears, select Slide to Power Off and, after It shuts down, press the On/Off button until the Apple logo appears.
    Reset: Press the Home and On/Off buttons at the same time and hold them until the Apple logo appears (about 10 seconds).
    No data will be lost.

Maybe you are looking for

  • JSF Actions and ActionListeners with Tiles and forms

    I�m having a problem trying to use the Tiles functionality in Struts 1.1 with JSF and was wondering if anyone could help me. I have defined a very simple header, menu, content Tile that doesn�t involve nesting of tiles (ExampleTile_content1Level.jsp)

  • Best way to use BOTH iPhoto and Aperture?

    I have been using iPhoto for 2 years and Aperture for one day! I'd like to continue using iPhoto for snapshots (where i can do minimal editing, tagging etc) but use Aperture when I need more robust management (editing hundreds of vacation photos and

  • Trying to view pics on a cd, message given "blank dvd"

    trying to view pics on a cd, insert cd and I am given a message of "blank dvd"  The pics were downloaded by a professional photographer

  • Alpha channel movie issues?

    I am starting this thread to see if there's a pattern here. I sell QT timers on my web site and someone e-mailed me today to say that the timer doesn't work in Keynote 4...the timers have a transparent background and for some reason, because of that,

  • Urgent!!help me! how to create UIInput component in code?

    hello all how to create UIInput component in code? my code as followed:                     UIComponent nComponent = application.getComponent("Input");                     if (!(nComponent instanceof UIOutput)) { throw new ClassCastException("error m