Not fading

Hi,
I'm building a site using Flex 3 which uses a ViewStack
component on the main page for which I have configured Hide/Show
Effects bound in MXML to 2 Fade components.
All fonts used throughout the site have been embedded and
everything fades in/out correctly except for the 'product page'.
This Product ViewStack component has a List component which
uses an external ItemRenderer to display each product and their
details. Within this List ItemRenderer is another HorizontalList
which has another external ItemRenderer based on the Box component
- the OpaqueBackground property of which is set by the
dataProvider. This simply draws a square box for each colour
available for that product (no text or other components).
This colour box list does not fade with the rest of the
'products' component page.
I've tried setting hide/show effects directly on this
component as well as the containing ProductItemRenderer as well as
the containing Product component. But still the colour box list
does not fade.
Is this a bug or is there something I'm missing?
(edit: I forgot to include that I tried setting the
backgroundColor property which didn't work - but
opaqueBackgroundColor does)
cheers,
kevin

When you add a text object to a project, how long it "plays" goes until the end of the project. If you move the text in time so that it starts later, it still would play for the same length of time and it is possible to move the "end" of the object past the end of the project play length.
When you add a behavior like Fade In/Fade Out, the beginning and end of the behavior exactly match the beginning and end of the object it is applied to.
If you have moved your text object so that the end goes past the end of the project, then you will not see the fade out behavior because it is happening "after" the project.
If this is the case of your problem, you can easily solve this by selecting the object in the Layers List and move the playhead to the point you want the Fade Out to end and type the o key to set an Out Point for the object (the Fade In/Fade Out behavior should be trimmed the same automatically.)
[Hope I explained this well enough...]

Similar Messages

  • ALV GRID - export only columns not faded out

    Hello,
    I hope that this is possible but till now I have no idea.
    The request is to provide a download/export function (moving the export file directly to a specific location the user is not allowed to modify-> so standard function not allowed based on specification) which will only export the columns from the ALV GRID which are not faded out.
    With the standard files download from the menu bar this is possible. 
    But how to do this starting with a self defined button?
    best regards
    Dirk

    hi,
    if u need a custmozied button with all standard ALV fucntions,
    1. goto <b>SE80</b>, under thre <b>function group SALV</b>, there will be <b>GUI_STATUS named as ST</b>ANDARD.
    2. copy that into ur program, and add ur own button in that , then write the code for that by chekcing SY-UCOMM.
    With Rgds,
    S.Barani

  • UIImageView not fading out as it should in the simulator?

    i am using an animation block to fade out a view. fading in works perfectly, however fading it out does not. it waits for the animationduration, then just disappears. I hope that it is because of the simulator being too slow, but i might have just made a stupid mistake; as i will probably have to wait a while before i can test it on my device, i'd like you guys to see if something's wrong
    i set up 4 different views. depending on a value, either all of them, none of them or just 2 of them have to be shown. If a view that's needed now wasn't visible it fades in, same thing other way around for views that aren't needed anymore.
    if (wc==1) {
    [UIView animateWithDuration:1 animations:^{
    viewOne.alpha=100;
    viewTwo.alpha=0;
    viewThree.alpha=0;
    viewFour.alpha=100;
    else if (wc==2) {
    [UIView animateWithDuration:1 animations:^{
    viewOne.alpha=0;
    viewTwo.alpha=0;
    viewThree.alpha=0;
    viewFour.alpha=0;
    else {
    [UIView animateWithDuration:1 animations:^{
    viewOne.alpha=100;
    viewTwo.alpha=100;
    viewThree.alpha=100;
    viewFour.alpha=100;
    like i said, it works fine for fading in, but it does not for fading out... this function is being called after i swipe the view, and the value WC has been changed. thanks a lot for reading this text already

    alpha values should be between 0 and 1

  • Java script slideshow not fading in google chrome or firefox.

    Hi
    I have built a page in DW CS4 and added a Jave Script fading photo slideshow.
    Thanks to some previous help from this forum is working great.
    One problem is that the images don't fade between in Firefox or Google Chrome???
    please advise
    Regards
    Mark

    Hi
    Thank you for your reply.
    I have tried as suggested.
    But the problem seems to be browser specific. With the changes you suggested it works fine in IE and fades between images.
    The issue remains that it does not fade when viewed in Google Chrome or Firefox, it just changes from one picture to the next.
    any idea's?
    many thanks
    Mark

  • Content not fading with containing element

    I am using the update content feature of spry in conjunction
    with a spry fade in/out effect which works very well aside from in
    a couple of instances. Firstly, I have a div that has its content
    replaced, before it is replaced it fades out, but the .swf file
    inside the content does not fade out with the rest of the content.
    Secondly I have the same issue with the spry tabbed panels.
    The rest of the content fades in or out fine but the tabs
    themselves do not.
    In both cases either the tabs or the .swf file stay at 100%
    opacity until the rest of the content has been replaced.
    Any help would be be greatly appreciated.

    quote:
    Originally posted by:
    kinblas
    The flash problem is due to the fact that the flash plugin
    uses a native window by default ... this window is on top of the
    browser's canvas where your page is drawn. To get it to fade with
    the rest of the content, you're going to have to tell Flash to draw
    into the same window that contains the browser canvas. Follow the
    instructions here:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15523
    I'd have to see your code that is fading your tabbed panels
    as well as your tabbed panel markup ... got url? ... are you fading
    the top-level element of the entire tabbed panel widget? Or are you
    fading just the panel content?
    --== Kin ==--
    No URL at present Im afraid as its currently on an internal
    only server. However its pretty easy to understand. There is a
    single div containing the tabbed panel set, it is this outer div
    that I am calling new content in to and fading out the old, so yes,
    its fading the outer most div that contains the tabbed panel set.
    This is the link that is clicked for example:
    <a href="#" class="menu"
    onclick="fade_content('content','../../v_content/v_products/lan.htm');
    return false;">Wireless LAN</a>
    This is the script that is used:
    function fade_content(ele,url){
    Spry.Effect.DoFade('content',{ duration: 500, from: 100, to:
    0, finish: function() {
    Spry.Utils.updateContent(ele, url, function() {
    Spry.Effect.DoFade('content',{ duration: 500, from: 0, to:
    100 });
    This is the Div that is being replaced/faded:
    <div id="content">
    <script type="text/javascript">
    <!--
    Spry.Utils.updateContent('content','../../v_content/v_company/about_qolcom.htm');
    //-->
    </script>
    </div>
    and finally an example of the content that is being called in
    to the content div would be something like this:
    <table width="100%" border="0" cellspacing="0"
    cellpadding="0" class="table_no_format" height="332">
    <tr>
    <td valign="top" align="left">
    <h2>Contact QoLcom</h2>
    <div id="TabbedPanels1" class="TabbedPanels">
    <ul class="TabbedPanelsTabGroup">
    <li class="TabbedPanelsTab" tabindex="0">Head
    Office</li>
    <li class="TabbedPanelsTab" tabindex="0">Stirling
    Office</li>
    <li class="TabbedPanelsTab" tabindex="0">Support
    Team</li>
    <li class="TabbedPanelsTab" tabindex="0">Invoice
    &amp; Payments</li>
    <li class="TabbedPanelsTab" tabindex="0">Registered
    Office</li>
    </ul>
    <div class="TabbedPanelsContentGroup">
    <div class="TabbedPanelsContent">
    <h2>Head Office</h2>
    QoLcom Limited
    <br />
    Unit 3 King John House
    <br />
    Kingsclere Park
    <br />
    Kingsclere
    <br />
    Newbury
    <br />
    Berkshire
    <br />
    RG20 4SW
    <br />
    United Kingdom
    <br />
    <br />
    T: +44 (0)870 2503000
    <br />
    <br />
    F: +44 (0)870 2503001
    <br />
    <br />
    E: <a
    href="mailto:[email protected]">[email protected]</a>
    <br />
        <a
    href="mailto:[email protected]">[email protected]</a>
    <br />
        <a
    href="mailto:[email protected]">[email protected]</a>
    <br />
        <a
    href="mailto:[email protected]">[email protected]</a>
    </div>
    <div class="TabbedPanelsContent">
    <h2>Stirling Office</h2>
    QoLcom Limited
    <br />
    Springfield House
    <br />
    Laurelhill Business Park
    <br />
    Stirling
    <br />
    FK7 9JQ
    <br />
    Scotland
    <br />
    <br />
    T: +44 (0)870 2503000
    <br />
    <br />
    F: +44 (0)1786 406351
    </div>
    <div class="TabbedPanelsContent">
    <h2>Support Team</h2>
    If you need to contact our Support Team please submit a
    support request to <a
    href="mailto:[email protected]">[email protected]</a>
    <br />
    <br />
    Alternatively, you can telephone the support team on
    +44(0)870 2503000 between 9.00am and 5.30pm Monday to Friday.
    </div>
    <div class="TabbedPanelsContent">
    <h2>Invoice &amp; Payments</h2>
    QoLcom Limited
    <br />
    Unit 3 King John House
    <br />
    Kingsclere Park
    <br />
    Kingsclere
    <br />
    Newbury
    <br />
    Berkshire
    <br />
    RG20 4SW
    <br />
    United Kingdom
    <br />
    <br />
    T: +44 (0)870 2503000
    <br />
    <br />
    F: +44 (0)870 2503001
    <br />
    <br />
    E: <a
    href="mailto:[email protected]">[email protected]</a>
    </div>
    <div class="TabbedPanelsContent">
    <h2>Registered Office</h2>
    QoLcom Limited
    <br />
    c/o Dove, Marsh &amp; Jones
    <br />
    1 Andromeda House
    <br />
    Calleva Park
    <br />
    Aldermaston
    <br />
    Reading
    <br />
    Berkshire
    <br />
    RG7 8AP
    <br />
    United Kingdom
    <br />
    <br />
    <strong>Note:</strong> These are our
    accountant’s offices. Only use this address for the purposes
    of sending legal notices.
    <br />
    <br />
    Our operational company address can be found on the Head
    Office tab of this page.
    </div>
    </div>
    </div>
    </td>
    </tr>
    </table>
    <script type="text/javascript">
    <!--
    var TabbedPanels1 = new
    Spry.Widget.TabbedPanels("TabbedPanels1");
    //-->
    </script>
    CSS is pretty much untouched and the js file hasnt been
    changed.
    TIA

  • Gallery image not fading out

    Hi
    I have two galleries. One using spry 1.4 code and one 1.6.1. The 1.4 gallery fades out an image before fading the new one in. This is what I want.
    But the 1.6.1 gallery the image does not fade out. It just goes to white (or opacity 0) No fading occurs. The it fades in the nex image.
    Can some one explain what is wrong with the code in the 1.6.1 gallery?
    1.4 gallery http://www.olle.se.st/album/
    1.6.1 gallery http://www.dracke.se/albums/pictures.php
    Regards
    Olle

    Hi.
    Never mind. I found a post about the bug in gallery.js
    gBehaviorsArray["mainImage"] = new Spry.Effect.Opacity(img, Spry.Effect.getOpacity(img), 0, { duration: 400,
        finish: function()
    should be ...
    gBehaviorsArray["mainImage"] = new Spry.Effect.Opacity(img, parseFloat(Spry.Effect.getOpacity(img)), 0, { duration: 400,
    finish: function()
    regards
    olle

  • Illuminated Apple Logo Not Fading Off

    I currently own a Mid-2011 MacBook Air 13".  When I originally purchased this beautiful machine, the illuminated Apple Logo on the back used to fade off when it was put to sleep.  However, lately it has been abruptly shutting off without fading out even though it is going to sleep the exact same way.  Even though this is not a life threatening problem, it is a little detail that has been bothering me as of lately.  If anybody happens to have any answers for me, I would genuinely appreciate it.

    The same is happening to mine, and I do not know since when.
    I noticed that the first time I close the screen, the light just turns off, but on the open, it fades in, and if I close it again in a short period, it just fades out normally.
    After a long time work, it returns to turn off the firts time.
    Seems like something is clearing some buffer or something.

  • SoundStudio audio faded file not fading in exported QT file.

    Since Keynote has no ability to manipulate audio very well, I went into Sound Studio and created the audio clip I needed with a 5 second end fade out. Saved the file and dropped it onto the audio holder area in Inspector. The file fades perfectly in SS, but when when exported to QT, the file just cuts abruptly with no fade.
    I also noticed that when dragging a sound file off the audio holder box to the trash, then dragging a new file onto it, when exporting to QT I will frequently get two sound files, one over the other. Keynote doesn't seem to "trash" the file when it is dragged off the Inspector properly.
    Any ideas? TIA.
    G5 Dual    

    Jody, are the files being exported from Sound Studio regular MP3 or AIFF files? And do they fade properly in other applications (for example, if you use the preview pane in the Finder to play them, or drag them into iTunes)?
    This issue seems to me more likely to be a Sound Studio problem than one involving Keynote. You might try using an application like the free Audacity to fade a test file, and see if that works in Keynote.
    Although I don't know the application, my guess is that Sound Studio is somehow overlaying volume information on top of the raw sound files, information that is not getting exported to the final MP3/AIFF file.
    PowerMac G5   Mac OS X (10.4.4)  

  • Title not Fading Out

    I'm new to Motion 5 (making the transition from FCP 7 to X) and trying to create a simple five second long title that fades in in one second (30 frames) and fades out in the last one second (30 frames).
    I created the title and added the basic motion Fade In/Fade Out, set both the Fade In and fade Out times to 30 frames. The Fade In is working fine but the Fade Out is not. Start and End Offsets are both set to 0. Can anyone point out what I might be doing wrong?
    Thank You
    Mark

    When you add a text object to a project, how long it "plays" goes until the end of the project. If you move the text in time so that it starts later, it still would play for the same length of time and it is possible to move the "end" of the object past the end of the project play length.
    When you add a behavior like Fade In/Fade Out, the beginning and end of the behavior exactly match the beginning and end of the object it is applied to.
    If you have moved your text object so that the end goes past the end of the project, then you will not see the fade out behavior because it is happening "after" the project.
    If this is the case of your problem, you can easily solve this by selecting the object in the Layers List and move the playhead to the point you want the Fade Out to end and type the o key to set an Out Point for the object (the Fade In/Fade Out behavior should be trimmed the same automatically.)
    [Hope I explained this well enough...]

  • Text not fading up properly

    When I put test in a movie clip and fade it from 0 to 100 the
    text fades up to 75% then pops to 100%.
    anyone know why this happens and how to get around it - of
    course my client noticed and wants the fade up to be smooth.
    details: this is static text and I am using "import
    mx.transitions.Tween;" to fade up the mc that contains the text. I
    am using CS3 AS2
    HELP,
    -M

    You don't have direct control of the leading of a multiline text field. A common approach is to control the background color of the field with JavaScript since the lines are not really needed when the field is used in Reader/Acrobat. They may be useful when using the form by hand. For more information, see the posts by Max in this topic: http://acrobatusers.com/forum/forms-acrobat/how-do-i-use-multi-lined-text-fields-over-prin ted-line-area-existing-form

  • Gradient tool not fading transparency/opacity... help?

    Hello fantastic photoshop experts,
    I'm having a bizarre problem in Photoshop CS2 (sorry, no money for a newer version) with my gradient tool not rendering transparency. I've been using CS2 for a while on my mac (Powerbook G4, OSX 10.4 if that matters) and this is the first issue I've ever had with it.
    Basically, I try to choose the "Foreground to Transparent" gradient, and although the settings are all set to default and all the sliders appear to be correct, the applied gradient doesn't have any transparency. Instead, it just goes Foreground to Foreground! I've tried to manually enter in opacity values, moved the sliders around, changed to different colors or different gradients that contain transparency in the hopes something would mysteriously kickstart Photoshop into correcting itself. I've restarted everything, clicked reset the presets, restore defaults, anything I can think of, and nothing works. All gradients that have some sort of transparency fail to render the transparency. Any 100% solid color renders fine.
    I've searched and searched and can't seem to find the answer to this frustrating problem. If this explanation doesn't make sense, I hope the attached screenshot makes things clearer. I would really appreciate some insight into this! Thank you in advance.

    Well, shucks, Buko, you make it so easy!
    Yes, that finally fixed it. I thought I had trashed my prefs, but it turns out I trashed the wrong one. Thank you very much!

  • Bedside mode not fading

    Hi,
    BlackBerry OS 10.0.10.85
    While charging
    The back light won't fade completely on bedside mode
    1st: is it normal?
    2nd: if so, can I get the back light to fade completely?
    Thanks for answering this post.

    Yes that is normal. If the phone is plugged in, the screen will only dim, however if it is unplugged, the screen will eventually turn off to preserve battery.
    Rad Systems apps on BlackBerry World
    Follow on Twitter, Facebook or BBM Channel: C0006BB16
    Tips to improve your BlackBerry 10 battery life (and avoid overheating)

  • Spry-UI-1.7 Fading panels not working in IE 8?

    Hi
    I have this page
    http://www.riviera.cd/wedo_n.php
    Two syced fading panels that runs autoplay. Works ok in all browsers but IE.
    In IE the top panel does not work while the bottom one does.
    Does anyone have a clue why?
    I have read about the IE bug in documetation for Ui 1.7 but it does not help to alter the doc declaration.
    So is there anythong to do about this? Any tips are welcome.
    Regards
    Olle

    Where?
    Did you not see the link? http://www.riviera.cd/wedo_n.php
    I have two fading panels in there. It works in all browsers but IE8 (Ie7 somewhat ...)
    First panel a the top with big image.
    <div class="StackedPanels"> <div id="fp3-1" class="SlideShowFadingPanel"><div id="text_slide" class="underrubrik">VFX for commercials and feature film</div><img src="images/skiss/bild1.jpg" width="720" height="420" /></div> <div id="fp3-2" class="SlideShowFadingPanel"><div id="text_slide" class="underrubrik">Sound-design</div><img src="images/skiss/online.jpg" width="720" height="420"  /></div>
    and so on ... the panel script ...
    var fp3 = new Spry.Widget.FadingPanels(".SlideShowFadingPanel", { autoPlay: true, displayDuration: 300 });
    Next is the grey text below. Fading to white ...
    <div id="text_mellan"><div id="fp1-1" class="FadingPanel">VFX for commercials and feature film</div>     <div id="fp1-2" class="FadingPanel">Sound-design </div>    <div id="fp1-3" class="FadingPanel"> Dolby certified re-recording mix</div>
    var fp1 = new Spry.Widget.FadingPanels(".FadingPanel", { autoPlay: true, displayDuration: 300, minOpacity: 0.5, maxOpacity: 1 });
    Problem in IE8 is that all the nested divs (div id="text_slide") in the <div class="StackedPanels"> is all on top of eachother and is not fading.
    Regards
    Olle

  • Images appear faded when exporting to pdf

    Hello, I have .png images in my document; and regardless of the blend space I choose, or pdf export settings, the images appear faded when I export to pdf. I noticed that when I print the file as a pdf, the colors don't change, it only happens when I export, so I'm assuming it's related to pdf export settings? any help would be appreciated. another thing that might be relevant; in the document, when it's just a single image on the page, it doesn't appear faded in the exported pdf. but when there are several images together, overlapping on the page, fading occurs. also, if I select compatibility as acrobat 4, images are not faded in the pdf, although they do appear lower quality. but i can't set compatibility at 4 because i have several movie files and hyperlinks embedded, which 4 doesn't allow. hope i've made sense, i'm new to indesign, using CS3.

    Hi Peter, I changed the colorspace in acrobat to the same as indesign, sRGB... + US web coated v2.. then I exported again, but still have faded text in text boxes as well as faded images (.png files). I notice when i zoom in and out quickly, the images flicker a bit and look how they should but when I stop they stay faded. I'm just curious if anyone were to place a .png image in their indesign + export to pdf, whether they'd get the same result.
    as far as the monitor goes, to be honest, im not sure if it's calibrated. and i feel bad asking what that means

  • Left Speaker NOt Working.

    Hi Team ,
    HP Pavilion g6-1312TU NB Left Side Not Working .

    Read over this document and it will walk you through the steps to test the speakers: No Sound from the Speakers (Windows 7) This will show you how to test the left and right speaker to make sure it is not faded. If it is not faded you will need to contact HP Support. 
    You can contact technical support at 800-474-6836. If you live outside the US/Canada Region please click the link below to get the support number for your region.
    http://www.hp.com/cgi-bin/hpsupport/index.pl
    Best of luck!
    Sean
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

Maybe you are looking for

  • Is Photoshop Touch compatible with d2 Android tablet?

    I have Android version 4.1.1 but when I go to the app store it says photoshop touch is not compatible with my tablet.  My tablet is a d2 9'' tablet.  I can't find out why it is not compatible.

  • Authentication Fault: Invalid User Session Token

    Hi, I am trying to protect a call to third party webservices using OWSM and OAM. I followed the steps mentioned in Oracle Web Services Manager Deployment Guide to integrate OAM in OWSM, but not able to make any break through. I am getting following e

  • Color of menu

    Hi! How can I change the color of my formsmenu? Pls advise!

  • Coldfusion service doesn't start after update 12

    Hi, I am running CF10 on Windows 2008 R2 server. Today, I applied update hotfix 12 to my Coldfusion10 server installation and now Coldfusion 10 Application Server does not start anymore. After install I ran Web server configuration as recommended. No

  • Agentctl dbconsole windows xp

    Currently in my services console I only have a siddbconsole service running. Should I have another agent running? When I run agentctl it says no init file ... V$HS_PARAMETER is empty and no initsid.ora file exists ... Also Enterprise Manager says Age