Toolbar Height Not Resizing in RH8

I've poured through Rick's "Skinny on Skins" and found lots of great things to use.  I'm having trouble with the "Alter WebHelp Toolbar height" Topic though.
I followed the instructions and made the following change in my .skn file: <frameset rows="555,*" >.  (I know it's a lot bigger than is needed but I'm not seeing any change.)
After re-generating WebHelp however, this is what is appearing:
I am wanting the toolbar to look like this:
You advice is appreciated.
Thank you.

Hi there
I'm not sure what the issue really is. Moments ago I used RoboHelp 8 and edited the Default skin using the info provided in the Skinny file and it resized exactly as I wanted.
Have you tried this with the Default skin? I'm not suggesting that you switch to the Default skin moving forward, only as a troubleshooting means to ensure that things are working as they should.
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

  • Group not resizing correctly when contents are moved programmatically

    Hi there,
    My apologies in advance if this is a known issue. I searched the forums but I was unable to find a discussion about this topic. The issue we are running into is when we programmatically move the contents of a Group which is in turn enclosed within a Scroller beyond the Scroller's limits the position of the Group within the stage is incorrectly calculated. This will cause mouseEvents in the area beyond the Group's limits to be "ignored" among other problems.
    I have created an application to illustrate the problem, we are in 4.1:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application
        minWidth="955" minHeight="600"
        xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:s="library://ns.adobe.com/flex/spark"
        xmlns:mx="library://ns.adobe.com/flex/mx">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <fx:Script>
            <![CDATA[
                import mx.controls.Alert;
                private function onGroupClick(event:MouseEvent):void
                    Alert.show("It works");
                private function onButtonClick(event:MouseEvent):void
                    rect.x += 500;
                    rect.y += 500;
            ]]>
        </fx:Script>
        <s:Scroller
            width="100%" height="100%">
            <s:Group id="myGroup"
                width="100%" height="100%"
                click="onGroupClick(event)">
                <s:Rect id="rect"
                    x="0" y="0" width="10" height="10"/>
            </s:Group>
        </s:Scroller>
        <s:Button
            label="Move Rectangle"
            click="onButtonClick(event)"/>
    </s:Application>
    Steps to reproduce:
    Click anywhere in the screen - notice that an alert that reads "It works" shows up.
    Click on the "Move Rectangle" button enough times for the coordinates of the Rectangle to exceed the limits of the Scroller, hence producing scroll bars.
    Scroll all the way to the right and to the bottom.
    Click right next to the right bottom corner - notice that no alert is displayed. The reason is the Group has not resized correctly hence we are actually clicking outside the Group. Resizing your browser window for example will cause the Group to resize and events will again "work". FlexSpy will make things pretty apparent as well.
    Any pointers regarding where this bug lives in the source code or suggestions on how to fix this would be greatly appreciated, this issue is causing us a lot of pain.
    Thanks in advance!!
    ~ TheMadPenguin

    Thanks for logging this in the bugbase: https://bugs.adobe.com/jira/browse/SDK-29112. The latest comments there say:
    Reproduced in 4.0.0, 4.1.0
    Confirmed fixed in 4.5.0.19764
    A workaround for the 4.0.0 and 4.1.0 release would be to put the click handler on the Scroller instead of the viewport.
    Note: This bug seems to be fixed, but the fact that the width/height of  the Group doesn't change is still consistent (and correct).  Group has a  concept of size and content size, scrolling is enabled when the content  size is larger than the size (with Group.clipAndEnableScrolling set to  true which Scroller sets automatically).
    See this spec for more details: http://opensource.adobe.com/wiki/display/flexsdk/Spark+Viewport
    Hans has a good article here: http://hansmuller-flex.blogspot.com/
    Here's a simple example that demonstrates width does not change:
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark"> 
         <s:Scroller width="100" height="100"> 
             <s:Group id="viewport"> 
                 <s:Rect width="100%" height="100%">
                     <s:fill><s:SolidColor color="red" /></s:fill>
                 </s:Rect>
                 <s:Button id="btn" label="out of view" y="150" click="btn.y += 50" />
             </s:Group> 
         </s:Scroller>
    </s:Application> 
    You might expect that this example should have a red background behind  the Button, but it does not.  That is because width/height of 100% on  the Rect is 100% of the width/height of the viewport, not the  contentWidth/contentHeight.
    One way of getting the behavior where the Rect expands across the whole content size would be to bind to contentHeight:
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark"> 
         <s:Scroller width="100" height="100"> 
             <s:Group id="viewport"> 
                 <s:Rect width="100%" height="{viewport.contentHeight}">
                     <s:fill><s:SolidColor color="red" /></s:fill>
                 </s:Rect>
                 <s:Button id="btn" label="out of view" y="150" click="btn.y += 50" />
             </s:Group> 
         </s:Scroller>
    </s:Application> 
    Note: You shouldn't specify or change the size of the viewport Group  inside of a Scroller.  The Scroller component manages the size of the  Group in a specific way and if the Group has a size that conflicts with  that then you can get into a bad situation that might cause infinite  loops.  Notice in my example the viewport Group has no size set on it.
    Thanks to SDK QE for the info!
    -Heidi

  • Label not resizing

    When I do setText on a Label which I created empty it does not resize correctly so the whole text is not visible. What more should I do to make it resize? myLabel.invalidate() dos nothing to it.
    The Label is added to a Pane which is in its turn added to another Pane which is added to an applet. Thanks for any help!

    I think you should invalidate or validate the Container containing the Label.I do that:
              Container lParent = pComponent.getParent();
              lParent.invalidate();
              lParent.validate();
    It also depends on which LayoutManager you are using and how big that Container is.Take a look at the result here: http://apollo.nu/~ben/sunlabel.jpg
    1. The blue is a panel with borderlayout.
    2. The red and green are two panels with GridLayout(10, 1)
    which are added to the blue panel using:
    add(BorderLayout.WEST, mLabelPanel);
    add(BorderLayout.CENTER, mControlPanel);
    3. The smaller panels with labels are using FlowLayout(FlowLayout.LEFT)
    and added to the red and green panel using:
    add(lPanel)
    In any case it is the LayoutManager of the parent Container that >decides how much space the Label gets, however most LayoutManager will >ask the getPreferredSize() of the Label, which is the space needed to >show it's entire text in it's current font. java.awt.DimensionCould there be a bug in getPreferredSize() for Label in 1.1.8?
    I tried the same with an empty Button for which I set the text later and for that it DOES work using getPreferredSize(), it gets the correct size with either that or my calculation.
    I get the following result for getPreferredSize():
    java.awt.Dimension[width=14,height=23]
    using my own calculation:
    FontMetrics lFontMetrics = getFontMetrics(pComponent.getFont());
    Dimension lStringSize = new Dimension(lFontMetrics.stringWidth(pText), lFontMetrics.getHeight());
    I get this result:
    java.awt.Dimension[width=21,height=15]
    See the marks in the image for 14 and 21. getPreferredSize() obviously gives too little space. The label should say "fr�n" and not "fr�".
    Thanks for your time!

  • Datagrid within Datagrid - Rows not resizing to fit content

    Hi,
    I have a datagrid with a custom item renderer that renders another data grid... so one column will render datagrids within the outer datagrid.  The problem is that the row does not size to fit the inner datagrid.  I can't set the rowHeight on the outer datagrid because the inner datagrids have dynamic data and i don't know how many rows they will have.  Also, after the datagrid is rendered, more rows may be added to any number of inner datagrids at a later time... and I need the rows holding them to resize accordingly.   Setting variableRowHeight=true on the outer grid doesn't seem to help either.
    Any ideas on how to do this? 
    Thanks!

    Hi, Alex, thanks for the info. It turns out, I was wrong.  The way it looked made me think it was a row-resizing problem, but it turns out that the rows were resizing fine... it was the outer datagrid itself that was not resizing properly.  Apparently it has to do with the combination of variableRowHeight and rowCount.  The jira issue may look familiar to you.
    http://bugs.adobe.com/jira/browse/SDK-13507
    Anyway, I got this from the jira comments and works pretty good...
    height="{theGrid.measureHeightOfItems(-1, theGrid.dataProvider.length + 1)}"
    I also have to call similar code when the data provider of the inner grids add/remove items.
    Thanks!

  • Help, script not resizing effectively.

    Here is my script.
    I thought I this was working then on the next image it plays up.
    having big issues with something I thought was so simple.
    I have some sample files here.
    If you download them and call the folder Brand_WK99_PSD
    property type_list : {"8BPS"}
    property extension_list : {"psd"}
    script o
              property theseNames : {}
    end script
    --empty log file
    do shell script "echo  'Files not processed in Photoshop :'  > ~/Desktop/LogPhotoshopError.txt"
    set noError to true
    set posixCS6Path to "/Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app"
    tell application posixCS6Path to activate
    --at the beginning of the script, ask whether to replace or skip existing files? to apply to all?
    --use the result for the if file exists?
    display dialog "Should I replace or skip exisiting files?" buttons {"Replace", "Skip (Faster)"} default button 2 with icon 1
    set skipFiles to (button returned of the result) is "Skip (Faster)"
    --Setup list of folders and process details of folders
    set AFolder to (choose folder with prompt "Select Mikey Folder")
    tell application "Finder"
              set folderName to name of folder AFolder as text --<:  is the folder name, no need to use text item delimiters -->":"
    end tell
    log folderName
    set {oldTID, my text item delimiters} to {my text item delimiters, "_WK"}
    set FolderEndName to last text item of folderName
    set brandName to first text item of folderName
    set my text item delimiters to "_PSD"
    set weekNumber to first text item of FolderEndName
    set my text item delimiters to oldTID
    set theFolder to AFolder as string
    --set up names to destination folders and create locally based on brand name and week number
    set this_local_folder to "Images:"
    set localWeekFolder to my getFolderPath("WK" & weekNumber, this_local_folder)
    set localBrandFolder to my getFolderPath(brandName, localWeekFolder)
    set localBrandFolder_PSD to my getFolderPath(brandName & "_WK" & weekNumber & "_PSD", localBrandFolder)
    --set up names to destination folders and create over Netwrok for FTP collection (based on a mounted drive)
    -- its not boots it Mikey but uses boots
    -- Mikey Folders --
    set this_ftp_folder to "boots:"
    set ftpWeekFolder to my getFolderPath("Week" & weekNumber, this_ftp_folder)
    set ftpBrandFolder to my getFolderPath(brandName, ftpWeekFolder)
    set ftpBrandFolder_PNGs to my getFolderPath("PNG", ftpBrandFolder)
    set ftpBrandFolder_JPGs to my getFolderPath("JPG", ftpBrandFolder)
    set ftpBrandFolder_1500_PNG to my getFolderPath("HF_1500px", ftpBrandFolder_PNGs)
    set ftpBrandFolder_960_PNG to my getFolderPath("960px", ftpBrandFolder_PNGs)
    set ftpBrandFolder_480_PNG to my getFolderPath("480px", ftpBrandFolder_PNGs)
    set ftpBrandFolder_215_PNG to my getFolderPath("215px", ftpBrandFolder_PNGs)
    set ftpBrandFolder_110_PNG to my getFolderPath("110px", ftpBrandFolder_PNGs)
    set ftpBrandFolder_1500_JPG to my getFolderPath("HF_1500px", ftpBrandFolder_JPGs)
    set ftpBrandFolder_960_JPG to my getFolderPath("960px", ftpBrandFolder_JPGs)
    set ftpBrandFolder_480_JPG to my getFolderPath("480px", ftpBrandFolder_JPGs)
    set ftpBrandFolder_215_JPG to my getFolderPath("215px", ftpBrandFolder_JPGs)
    set ftpBrandFolder_110_JPG to my getFolderPath("110px", ftpBrandFolder_JPGs)
    try
              tell application "Finder" to set o's theseNames to (name of files of alias theFolder whose file type is in the type_list or name extension is in the extension_list)
    on error
              set o's theseNames to {} -- no psd files or "8BPS"
    end try
    set numOfNames to (count o's theseNames)
    repeat with j from 1 to numOfNames
              set thefile to theFolder & (item j of o's theseNames)
      --    Mikey     Folder Photoshop Process W I T H  P N G
              set thisName to (item j of o's theseNames)
              tell application "Finder"
                        set t_ext to name extension of file thefile
                        if t_ext is not "" then set thisName to text 1 thru -((count t_ext) + 2) of thisName
                        set b to exists file (localBrandFolder_PSD & thisName & ".psd")
              end tell
              if not b or (b and not skipFiles) then -- not exists file or file exists and "replace" (continue the rest of the script).
                        tell application "Adobe Photoshop CS6"
      -- I remove the command activate, Photoshop stay in background
                                  set ruler units of settings to pixel units
                                  try
      open (alias thefile) showing dialogs never
                                            set origName to name of current document
                                            set myOptions to {class:JPEG save options, quality:12}
                                            set myPNGOptions to {class:PNG save options, interlaced:false}
                                            set myPSDOptions to {class:Photoshop save options, embed color profile:true, save layers:true}
                                            tell current document
                                                      if (quick mask mode) then delete channel ¬
                                                                "Quick Mask"
                                                      if (exists layer "Original Layer") then ¬
                                                                tell layer "Original Layer" to set name to "Original Image"
      save in (localBrandFolder_PSD & origName) as Photoshop format with options myPSDOptions without copying
                                                      (delete layer "Original Image")
                                                      delete layer "BACKGROUND" of layer set "Dodge and Burn"
                                                      tell current layer to set name to "Main Image"
      merge visible layers 
      resize image width 1500 resample method bicubic sharper
      resize image resolution 300 resample method none
      filter current layer using unsharp mask with options {amount:34, radius:1.0, threshold:0}
      save in (ftpBrandFolder_1500_PNG & name) as PNG with options myPNGOptions without copying
      flatten
      save in (ftpBrandFolder_1500_JPG & name) as JPEG with options myOptions without copying
                                                      set current history state to history state 6
                                                      trim
                                            end tell
                                            set cWidth to width of current document
                                            set cHeight to height of current document
                                            set HeightIncrease to 1.1
                                            set LargeLandH to 700
                                            set LargeLandW to 960
                                            set MediumLandH to 350
                                            set MediumLandW to 480
                                            set SmallLandH to 155
                                            set SmallLandW to 215
      (*set BI to (round ((dHeight / sHeight) * 10))
                                            if BI is equal to  "4" then
                                                      set HeightIncrease to 10
                                            else if BI is equal to
                                            set
                                            log HeightIncrease*)
                                            tell current document
                                                      tell application "Adobe Photoshop CS6"
                                                                set ruler units of settings to point units
                                                      end tell
      resize image height LargeLandH
      resize canvas height (LargeLandH * HeightIncrease) anchor position middle center
      resize image height LargeLandH
      resize canvas width (LargeLandW) anchor position middle center
                                                      tell application "Adobe Photoshop CS6"
                                                                set ruler units of settings to pixel units
                                                      end tell
      resize image height LargeLandH resample method bicubic sharper
      resize image resolution 300 resample method none
      filter current layer using unsharp mask with options {amount:34, radius:1.0, threshold:0}
      --add save to lowResFolder with same options
      save in (ftpBrandFolder_960_PNG & name) as PNG with options myPNGOptions without copying
      flatten
      save in (ftpBrandFolder_960_JPG & name) as JPEG with options myOptions without copying
                                                      set current history state to history state 6
                                                      trim
                                                      tell application "Adobe Photoshop CS6"
                                                                set ruler units of settings to point units
                                                      end tell
      resize image height MediumLandH
      resize canvas height (MediumLandH * HeightIncrease) anchor position middle center
      resize image height MediumLandH
      resize canvas width (MediumLandW) anchor position middle center
                                                      tell application "Adobe Photoshop CS6"
                                                                set ruler units of settings to pixel units
                                                      end tell
      resize image height MediumLandH resample method bicubic sharper
      resize image resolution 300 resample method none
      filter current layer using unsharp mask with options {amount:34, radius:1.0, threshold:0}
      save in (ftpBrandFolder_480_PNG & name) as PNG with options myPNGOptions without copying
      flatten
      save in (ftpBrandFolder_480_JPG & name) as JPEG with options myOptions without copying
                                                      set current history state to history state 6
                                                      trim
                                                      tell application "Adobe Photoshop CS6"
                                                                set ruler units of settings to point units
                                                      end tell
      resize image height SmallLandH
      resize canvas height (SmallLandH * HeightIncrease) anchor position middle center
      resize image height SmallLandH
      resize canvas width (SmallLandW) anchor position middle center
                                                      tell application "Adobe Photoshop CS6"
                                                                set ruler units of settings to pixel units
                                                      end tell
      resize image height SmallLandH resample method bicubic sharper
      resize image resolution 300 resample method none
      filter current layer using unsharp mask with options {amount:34, radius:1.0, threshold:0}
      --add save to lowResFolder with same options
      save in (ftpBrandFolder_215_PNG & name) as PNG with options myPNGOptions without copying
      flatten
      save in (ftpBrandFolder_215_JPG & name) as JPEG with options myOptions without copying
                                                      set current history state to history state 6
                                                      trim
                                                      if cWidth > cHeight then
      resize image width 110
      resize canvas height 110
                                                      else
      resize image height 110
      resize canvas width 110
                                                      end if
      resize image resolution 300 resample method none
      filter

    Ok from what I can work out is that it fails to pick up this line correctly.
    I have been modify the script and the reason the image goes blurly is I forgot to add the resample method as none. Now I add thati get an error
    resize image height LargeLandH resample method none
    in context
      tell current document
                                                      tell application "Adobe Photoshop CS6"
                                                                set ruler units of settings to point units
                                                      end tell
      resize image height LargeLandH resample method none
    the result is this
    set ruler units of settings to point units
      resize image current document height 700 resample method none
      --> error "You may use pixels to specify 'height' and 'width' only when resampling" number 8109
    end tell
    yet it something I can manually do in photoshop?

  • Bug: View does not resize after soft keyboard dismissal

    On Android when resizeForSoftKeyboard=true, the view does not resize after dismissing the soft keyboard. This simple app demonstrates the bug.
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   applicationDPI="160"
                   resizeForSoftKeyboard="true"
                   applicationComplete="applicationComplete()">
        <fx:Script>
            <![CDATA[
                private function applicationComplete():void {
                    keywordTextInput.setFocus();
                private function keywordTextInputEnter():void {
                    stage.focus = null;
            ]]>
        </fx:Script>
        <s:Rect id="rect1" width="100%" height="100%">
            <s:stroke>
                <s:SolidColorStroke color="#FF0000" weight="4"/>
            </s:stroke>
        </s:Rect>
        <s:TextInput id="keywordTextInput" enter="keywordTextInputEnter()" returnKeyLabel="go"/>
    </s:Application>
    1) Start app.
    2) Click on the "go" button on the soft keyboard
    I observe that the red rectangle remains the same size (about half the screen). I expect the red rectangle to resize to fill the entire screen as it does on iOS.
    My environment:
    Flash Builder 4.7 beta
    Flex 4.6.0
    AIR 3.4
    ASUS Transformer (Android 4.0.3)

    Submitted bug:
    https://bugbase.adobe.com/index.cfm?event=bug&id=3657721

  • URL iV iew is not resized

    Hello all,
    I defined an URL iView with Height Type = "AUTOMATIC", Fetch Mode = "Server-Side" and Adjust to structural changes in site = "Yes". When I click on the corresponding navigation menu item, the iView height is rendered correctly. But when I click on one of the links of the  application integrated into the iView, the iView is not resized, but a scrollbar is displayed instead.
    Why does this problem occur and how can I solve it?
    Thanks in advance four your help.
    Elmar

    Hi Rüdiger, hi Kyle,
    the PageBuilder controls the height of the iFrame
    This is only partially correct. The hight of the iFrame cannot be determined on server side, but can be resized on client side after the iFrame has initially loaded it's content. But that stays as Kyle stated: Initially. It does not react to changes within the iFrame.
    Hope it helps
    Detlev
    PS: Please consider rewarding points for helpful answers on SDN. Thanks in advance!

  • Not resizing my file flash.swf

    Hi,
    I would like to know how I can do
    to not resizing my file flash.swf as you can see on the link below
    (I don t want the audi car to become smaller and smaller
    when you make the window smaller it is why I would like
    my file flash.swf always at the same size (same height and same width)
    and the audi car always at the center of the flash file)
    http://s371298467.onlinehome.fr/jc/
    Thanks in advance

    thanks ned
    but if I use fixed size (width:920px and height:350px)
    we can see that the grey ground under the car is no longer going on each both side of the screen.
    http://s371298467.onlinehome.fr/jc/
    I am trying to be more clear lol:
    I would like to have my flash.swf  with a height of 350 px but I would
    like to have my flash.swf always occupying all the space in the width
    between the left side and the right side of the window whatever is the
    size of the window and in the same time I would like to have
    my car always at the width-center of my flash.swf so at the width-center of the window and always at the same size(my car).
    thanks in advance

  • I would like to display my bookmarks permanently. Clicking on Firefox, Options and then checking the Bookmarks Toolbar does not do this. How can I display the bookmarks along the left margin like they used to display?

    I would like to display my bookmarks. Clicking on Firefox, then Options and then checking off the Bookmarks Toolbar does not do this.
    What do I have to do to permanently display my bookmarks?

    I asked how I could display my bookmarks permanently.
    This answer does not address that issue. Instead, it tells me how I can display my bookmarks temporarily.
    While this is nice to know, I wanted to find out how to display my bookmarks permanently - not temporarily.

  • Firefox is trying to update my 8.0 version to 9.0.1. I'm not ready to do so because the Norton Toolbar is not yet compatable with the new Firefox release. How do I get firefox to stop trying to update every time I open the application?

    Question
    Firefox is trying to update my 8.0 version to 9.0.1. I'm not ready to do so because the Norton Toolbar is not yet compatable with the new Firefox release. How do I get firefox to stop trying to update every time I open the application?

    Swarnava wrote: '''''Firefox 9 is Compatible with Norton 2011, 2012, 360 v5'''''.
    This reads backwards, It is the other way as "Norton update is compatible with Firefox 9".

  • Adobe Acrobat Pro 9.4.6 Sticky Note Icons are huge and can not resize

    My coworker is having a problem with the size of the Sticky Note (comments) Icon.  It is huge and we can not resize.
    When you open the icon, it takes up the whole page.  We can change the Font size, but the actual icon will not resize.
    The same document opened up from someone else, the icon views normal. We all have Adobe Acrobat Pro V9.4.6.  Any suggestions on a fix?
    Thank You.

    JimJSC,
    Your reply also helped fix a problem I had with not being able to resize sticky notes. My original display resolution meant that the resize symbols in the lower corners of the sticky note weren't accessible. In Acrobat X, the setting is under Acrobat, Preferences, Page Display, Resolution.

  • We have version 10.5.8 photoshop CS3 for Mac. How do we fix a problem with photoshop not resizing dpi? For example we resized a 72 dpi image to 200 dpi, when we do a pdf analysis it read as 344 dpi.

    We have version 10.5.8 photoshop CS3 for Mac. How do we fix a problem with photoshop not resizing dpi? For example we resized a 72 dpi image to 200 dpi, when we do a pdf analysis it read as 344 dpi.

    Sounds like it's a problem with the Acrobat settings. Did you set them to the same resolution?

  • Components will not resize correctly in Catalyst

    Download PSD: http://dl.dropbox.com/u/814249/campusariel.psd
    Download FXP: http://dl.dropbox.com/u/814249/campusariel.fxp
    I am completely new to Flash Catalyst (any and all versions). I am currently using Photoshop CS5.5 to design and Catalyst 5.5 to import and translate into a flash project. I recently picked up a job creating an interactive application for a college campus. I have attached my two project files for anyone who can help to view to see what is wrong. I have also attached inline screenies for those who cannot/will not download.
    Here is my problem: I created the attached PSD in Photoshop with what I thought were the correct layers and groups/folders. I am hoping to achieve the following effect: when a user rolls over the purple buttons, multiple similar copies of that button that are initially hidden beneath the visible one popup in sequence above the rolled over purple button.
    Ex. State 1:
    Animation/Action Sequence to the following:
    The purple popup objects will have their own text content and will be buttons themselves that a user clicks to change to a different state with more specific information.
    Not only am I unsure of how to create such animation/action sequence, my purple components (whether I actually convert them to components in Catalyst or not) will not resize correctly. NOTE: I did click the resizable option when importing the PSD into Catalyst. The following effect occurs both ways. I add constraints to all objects by selecting all, right clicking, and choosing add constraints to all; the following occurs when stretched inwards using the resize test handle:
    and this when stretched out:
    When viewed using CTRL+Enter, the application is nowhere near resized in the browser window. I must be missing something, especially being new to Catalyst. I tried flattening the image in Photoshop, which obviously allowed the image to be easily resizable in Catalyst and the test browser window. However, I cannot use my separate elements when flattened; flattening defeats the purpose of Catalyst if I'm not mistaken.
    Any guidance?
    Message was edited by: joshlev

    Hi Martin - Those are really good questions! I did check and the image is uploaded. I assume I can see the image in my one browser because of the cache  since I could not see it on several computers that I had never pulled the site up on before.
    And actually I have it working now. Nancy had a good idea to check to see if I saved it as CMYK instead of RGB. When I went to go open the file on my computer Photoshop and Fireworks had an error in opening it. They had a problem opening the one I downloaded from the ftp too. It just looks like somehow the file became corrupted! Not sure how, but that seems like what the problem was since I have a new image up there now and it's working fine again.
    Thanks for all your help!
    Liz

  • Calendar app is not viewable. The window will not resize. Can only see header of the app. Have restarted app and computer.

    This is all I can see. it will not resize the window, full screen mode shows only this as well.

    It really seems like a group policy issue, something like network security, and have you tried to re-map the drives, test the restult again.
    you should post you question in this forum
    http://social.technet.microsoft.com/Forums/en-US/home?forum=winservergen they're good at these kinds of issues.

  • I am unable to work on docs in adobe as the toolbar does not appear when I tap on the doc.

    how do I get my adobe to work? I open the doc in adobe but cant work on the doc. the toolbar does not appear when I tap in the middle. All contact us help leads to nowhere. the e mails from support cant be replied to. is there another app that one couls use to download doc and actually be able to work on them?

    What is your operating system?
    What is your Reader version?
    Are these local or online documents?  If online, in what browser?

Maybe you are looking for

  • Web Application Deployment Problem...

    I'm having an issue where with an exploded directory web application deployment on a UNIX server. It doesn't seem that weblogic is finding the JSP. I'm getting Error 404. - porting from wls 5.1 to wls 6.1 - got it ported on Windows 2000 - iPlanet as

  • ORA-39186: No tablespaces in the specified list exist.

    HI All I have problem with dbms_datapump I have 11.2.0.2 in AIX when I use PLSQL declare lv_ts_list VARCHAR2(200) ; lv_data_ts VARCHAR2(100) :='TD1M20120501'; lv_idx_ts VARCHAR2(100) := 'TI1M20120501'; lv_filename VARCHAR2(200) := 'TTS.PBEB_AS1.20120

  • Ides infocubes missing in BI Content

    I only have these cubes in my IDES BI content. How do I get the other cubes. 0BWTCFC1     BW Technical Content FC1      0BWTCFC2     BW Technical Content 2      0RSTT_C01              BI Trace Tool - Detailed Data from Test Logs 0RSTT_C02     BI Trac

  • Navigation based on screen orientation (landscape or portrait) in Flash CS6

    I'm creating an app that will have a different menu if the phone is held landscape, or portrait. I figure I have to tell flash to move to a new frame when the phone moves from landscape to portrait or vice versa, but I'm not sure the exact code to af

  • Can't connect to Windows Wireless Network

    I have a new Macbook Pro, but when i endter the WEP password (which is correct I tried it on my XBOX, and old Laptop) Mac says it not a valid password, i don't know if something is wrong on the Windows side, I need help Macbook Pro   Mac OS X (10.4.1