BarChart won't show Slide Effect

I've defined a BarChart and a SeriesSlide Effect in the mxml.
I am programatically populating the BarChart using web services and
I set the dataprovider of the BarChart in the webservice handler.
The data gets refreshed and the chart updates instantaneously
without the sliding effect.
I've linked the slide effect in the BarSeries like so:
<mx:BarSeries .... showDataEffect="{slideIn}" ....
/>

Script side:
[Bindable]
public var m_barDataProvider:XMLList;
private function treeNodeItemHandler(event:ResultEvent):void
var result_xml:XML = CleanXML(event.result);
barchart0.height = result_xml.child("node").length() * 22;
m_barDataProvider = result_xml.children();
<mx:WebService
id="wsKX"
wsdl="
http://betterthinkfast/KX_WS/Service.asmx?wsdl"
useProxy="false" showBusyCursor="true"
>
<mx:operation name="GetOtherL2ForL2Docs"
result="treeNodeItemHandler(event)"/>
</mx:WebService>
<mx:SeriesSlide id="slideIn" duration="1000"
direction="right"/>
<mx:BarChart id="barchart0" showDataTips="true"
height="100%" width="100%"
dataProvider="{m_barDataProvider}"
itemClick="BarClickHandler(event)" >
<mx:verticalAxis>
<mx:CategoryAxis categoryField="@label"/>
</mx:verticalAxis>
<mx:series >
<mx:BarSeries yField="@label" xField="@count"
displayName="Documents" showDataEffect="{slideIn}"/>
</mx:series>
</mx:BarChart>
am I missing anything?
Thanks Masamune

Similar Messages

  • Scrubbing playhead does not show slide effects

    In the Timeline and Effects windows, scrubbing the playhead or pressing the play button or the space bar does move the playhead, but the slide above does not show the effects I designated to its elements. Can you please help me with this issue? I am using a Powerbook with OS 10.9.5. Thanks.

    Effects will only show when doing a real preview, not  Play slide which is not a real preview; and that is what you get when scrubbing as well. In the effects panel you can use Live Preview button to
    see effect.

  • Menu drop won't show hover effect in IE

    This was working. Not sure what I did.
    http://www.flair-productions.com/social.html
    All the pages under "portfolio" drop down have this issue. We
    embeded the swfoject to get the menu to drop over the flash file.
    Now in mac on the drop down it functions as it should; in IE on PC,
    the drop down won't allow you to roll over and select an item
    unless you hold down the left button and release it when you are at
    the item you want to select. The menus work fine on Design and
    Event Production pages. I've tried to compare the pages and
    templates and don't see what is different. Can anyone point me in
    the right direction please? I going blind and not getting any
    smarter.
    Flair
    Productions Social Portfolio

    You're probably using UK in the International>Formats preference
    Suppose UK doesn't normally use AM/PM. Anyway you can change that, say to US and then customize the other settings back to UK, or customize the Time (in Formats) to add the AM/PM to the various time formats. The one that seems to really matter is the Medium time format. To add the AM/PM, just drag the blue pill up to the example bar. You can also change the display of the numbers 12/24 hour, leading vs no-leading zero, etc by clicking on the small pulldown arrow that appears in the pill.

  • Help! My copy of CS5 won't show lighting effects, and changing it to 32 bit mode does nothing

    Hi guys,
    I have a copy of CS 5.1 and my system is a Macbook Pro on Mac OS 10.6.8
    I want to use lighting effects, so I changed it to 32 bit mode. So I go in to Photoshop and it's not there. I reset PS's settings, restart the computer as well. Still nothing.
    Wah. It worked before in the past, so why not now? Also I checked the plugin folder to make sure the lighting effect plugin was actually there and, yes it was. So what gives?
    Anyway, any help you guys could give me would be greatly appreciated, thankyou
    Jan

    Ok this is the render menu in 32 bit mode. Annndddd...
    I noticed there is still the 'x64' beneath CS' title... is that supposed to be there when you boot in 32 bit mode? Or could it be that my CS just isn't loading in 32 bit?
    Anyway thanks for replying!

  • My iPhone 3G won't turn off, Evertime I hold the Power Button all it does is Blink the screen white until I stop holding it (It won't show Slide to Power off) just Blinks white, Please help me its really fustruating! Regards-Jimmy

    Please Help!

    GabyBA wrote:
    I forgot to say I had already tried that as well. Just in case, I just tried it again and there was no change :S
    Are you running the Apple-supplied RAM? Have you run Apple Hardware Test? I don't know what else you've tried, but this may be time to do a fresh install of Lion if you have not done so since installing Lion.

  • Some image imports from Photoshop won't show in After Effects

    I NEED HELP ASAP
    I'm creating an app and I used Photoshop. Imported the psd file into After effects. But somehow all the images won't show, only text.
    I'm trying to animate it so it looks like a normal scroll up and down from an iPhone. But all the images which are off screen won't show up once I drag it into screen but at the same time the text are all fine. What is wrong? I definitely imported the psd file correctly, since I did it with another project a couple days ago.
    Please help. Due date is Monday.
    The only thing what's differnt is. The images are all in a clipping mask in Photoshop. All the circles are white shapes and I put the images as clipping mask to that.
    Once I scrolled it up I can't see the images.This is how it suppose to be

    Did you try to make your Photoshop canvas larger? I'm pretty sure that would solve it.

  • How to randomly show slides in Keynote

    In May Cuztheyrefast posted this question (now archived).
    "Is there a way to shuffle the order of the slides? I am using Keynote for flashcards but I'm afraid I'll start to memorize the answers by order rather than actually knowing the answer. "
    This can be done with Applescript. I won't write the full script because so much depends on how you want it to work exactly, but here are the core components.
    Refer to the slideshow:
    first slideshow
    or to always refer to a specific slideshow:
    slideshow “name”
    Find number of slides in a slideshow:
    set noofslides to number of slides of first slideshow
    Build a list of slideshow numbers:
    set noofslides to number of slides of first slideshow
    set nslides to {}
    Repeat with n from 1 to noofslides
    set nslides to nslides & n
    end repeat
    Play a slideshow starting from a random slide:
    start from slide (some item of nslides) of slideshow “name”
    Jump to a random slide without playing it:
    show slide (some item of nslides) of slideshow “name”
    As an example here is a script to jump to a random slide without playing it.
    tell application "Keynote"
    activate
    set noofslides to number of slides of first slideshow
    set nslides to {}
    -- build a list with this number of items
    repeat with n from 1 to noofslides
    set nslides to nslides & n
    end repeat
    -- jump to a slide
    show slide (some item of nslides) of first slideshow
    end tell
    This is pretty fast. However, if you play the slideshow you'd have to stop after each slide, hit the run button on the script and wait for the show to start. You might be able to put in a delay and have the script automatically display a new slide every few seconds. If you have Salling Clicker you might be able to have your cell phone trigger the script to advance. Other than that, I don't know how you would communicate with your script while Keynote was playing a slideshow.
    Unfortunately, the hyperlink function in Keynote doesn't allow linking to an Applescript. That would be really cool and powerful.

    You can't set a default font.
    Instead use a custom slide master with the font you want to use.

  • Slide Effect within a Table

    I'm trying to add a simple Spry slide effect to some text on
    one of my web sites, however the text dissapears in IE7. I've
    managed to cut it down to the most basic code where the problem
    occurs and it turns out to be a table cell. I took the slide
    example and cut it down until it doesn't work. I'm referencing the
    css and js that comes with the spry 1.6 prerelease build. This code
    works fine in Firefox. If you remove the table tags, it also works
    in IE7. However, with the table tags present, the text doesn't show
    up at all in IE7 (although the background color does slide up and
    down). I'd like to be able to keep the table tags in my actual site
    because it helps to keep the shape of the page. I can't believe
    know one else has run into this issue, but I haven't found anything
    online. If you have any tips, please let me know. Otherwise,
    consider this a bug report.
    Here's the code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional-dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>Spry Slide Effects Sample</title>
    <link href="../../css/samples.css" rel="stylesheet"
    type="text/css" />
    <script src="../../includes/SpryEffects.js"
    type="text/javascript"></script>
    <style type="text/css">
    .animationContainer{
    height: 220px;
    .demoDiv{
    background-color: #CCC;
    height: 200px;
    overflow: hidden;
    .hideInitially{
    visibility: hidden;
    </style>
    </head>
    <body>
    <table><tr><td>
    <form method="get" action="grow_sample.html">
    <input type="button" onclick="slide_hidden.start();"
    value="Slide Example" />
    </form>
    <div class="animationContainer">
    <div class="demoDiv hideInitially" id="example5">
    <p><strong>Example - Slide from 0% to 100% in 2
    seconds</strong>
    <br />
    Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed
    diam nonumy eirmod tempor invidunt ut labore et dolore magna
    aliquyam erat, sed diam voluptua. At vero eos et accusam et
    justo duo dolores et ea rebum. Stet clita kasd gubergren, no
    sea takimata sanctus est Lorem ipsum dolor sit
    amet.</p></div>
    </div>
    <script type="text/javascript">
    var slide_hidden = new Spry.Effect.Slide('example5',
    {duration: 500, from: '0%', to: '100%', toggle:true});
    </script>
    </td></tr></table>
    </body>
    </html>

    I am also having this problem. I've written a custom JSF
    component that could technically be used in all sorts of situations
    within an HTML page. During the initial component development, the
    case of adding the component within a table on IE was never tested.
    Only later when some other developer was reusing the component in
    another project did the Slide effect within a table in IE issue
    crop up. As it's a JSF component, there really isn't a very elegant
    way to move the javascript to another location within the HTML page
    and a previous poster pointed out. Help!

  • How to fix the download arrow. Won't show me recent downloads even though I would have downloaded a file. Help please.

    I recently downloaded a zip file and when I unzipped the file my arrow stopped showing me recent downloads. It will show the effect of me clicking but won't show any files that I may have recently downloaded. Please help as this is the fastest way for me to do my schooling and work when I am given documents.

    If the list attached to the arrow is cleared, does the link "Show All Downloads" appear and let you view the earlier downloads? The keyboard shortcut for that is Ctrl+j if you are a keyboard person.

  • My iPod Won't Show Anything But A Brighter Black Screen.

    My iPod Touch 5g had been working just fine for the last 8 months, and even this morning. But, as I was getting into my car, I turned it on and nothing but a brighter black screen showed up. After a few tries of just pressing the on/off button it finally turned on. It worked for a while then, it just wouldn't turn on at all. When I got home, I plugged it in to the charger and it did the same brighter black screen. It's like it turns on in the background but doesn't let the actual screen show. I've plugged it into my computer and the wall, I've held the home and on/off button together but neither are working. It will also play music from my speakers if I press play on the speakers but it won't show me anything but a brighter black screen. Any tips?

    Brighter black?  Black is black.  It has no shades.
    Please tell me that it has NEVER been jailbroke.  If that's the case, here are some standard repair procedures:
    First, try a system reset.  It cures many ills and it's quick, easy and harmless...
    Hold down the on/off switch and the Home button simultaneously until you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  It could take well over an hour!  Connect via cable to the computer that you use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow the on-screen directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    At the end of the basic Restore, you will be asked if you wish to sync the iPad/iPod.  As before, say "yes."  Note that that sync selection will disappear and the Restore will end if you do not respond within a reasonable time.  If that happens, only the apps that are part of the IOS will appear on your device.  Corrective action is simple -  choose manual "Sync" from the bottom right of iTunes.
    If you're unable to do the Restore (or it doesn't help), go into Recovery Mode per the instructions here.  You WILL lose all of your data (game scores, etc,) but, for the most part, you can redownload apps and music without being charged again.  Also, if you have IOS-7, read this.

  • Transparency set as overlay won't show in .pdf

    First of all, I'm not completely sure that this question isn't really for Adobe Acrobat.  Also, I am using CS5 with Windows 7.
    I have drawn grey lines to cross out text in my book.  The 100% lines were too dense for the characters to show through, so I went to Object\Effects\Transparency, set the transparency at 75% on Overlay.  None of this came through on the .pdf I am now checking before I make a final .pdf that will go to press.  The .pdf was generated via Ctrl-E as a high-quality print doc.
    The grayscale is at 35%, and when I bumped it up to 50%, none of the lines showed up this way, either.  My grayscales are really a form of black, too, as I did a Separations preview.
    My book has two layers, and both are active.  And in the Print dialog box has a check mark at "Print non-printing objects."
    I am really sad that these somewhat transparent lines won't show!  Any ideas as to what I can do to make them happen?  I do have a Plan B without them, but I'd really like them in there if it's possible.
    Sigh....and I wanted to submit the book files today......  Well, I'll keep going on my final review and hope to hear from someone soon.
    Thanks.

    ceilr wrote:
    Although I created a new file and dropped all those text boxes and lines in, the original file did in fact start out in ID3.
    I thought that might be the case. This is very typical of the kind of problem people are reporting when directly converting legacy .indd files in CS5 and later, and often the problems don't show up until output, like this. Sometimes they're fatal, too.
    I've never had an issue with one of my own files, so I don't know waht riggers this, but I no longer even consider opeing legacy files in new versions. Instead I export to .inx (CS4 or earlier) or .idml and convert that. You might be able to rescue this file by exporting to .idml, opening it in CS4 if you can find a copy, exporting to .inx, open that in CS3, re-export to .inx and open that in CS6. I didn't try that, so I don't know if it will work. If I get a chance, though, I will. There will probably be text re-flow issues, though after the conversions.

  • Media Browser won't show some textures that are right there by the rest?

    Hello, ever since the upgrade to Studio the Media browser will not see 4 and a half categories of Textures. Noise thru Urban won't show in Media browser menu? Tried moving the files and used LiveType preferences but that didn't work either. They are on my Primary drive so that isn't the problem. All the rest of them work fine. They are in the exact same place as the working files. Anybody have an answer? Thank you. Daniel

    See the reply under Where are the Effects? I copied the files from my laptop and installed them on my G5. Now it all works! How simple is that? They should have installed from the discs however, but they don't. Hope this helps.

  • Slide effect for content

    Is it possible to have something like this: http://pr0digy.com/sandbox/mootools/slide-effect/ on a iweb page?? How do I do it?? I'm lost with coding so give me the "for dummies" approach :P

    This:
    <script type="text/javascript">
    //<![CDATA[
    var Site = {
    start: function(){
    if($('vertical')) Site.vertical();
    if($('horizontal')) Site.horizontal();
    if($('accordion')) Site.accordion();
    vertical: function(){
    var list = $$('#vertical li div.collapse');
    var headings = $$('#vertical li h3');
    var collapsibles = new Array();
    headings.each( function(heading, i) {
    var collapsible = new Fx.Slide(list, {
    duration: 500,
    transition: Fx.Transitions.linear,
    onComplete: function(request){
    var open = request.getStyle('margin-top').toInt();
    if(open >= 0) new Fx.Scroll(window).toElement(headings);
    collapsibles = collapsible;
    heading.onclick = function(){
    var span = $E('span', heading);
    if(span){
    var newHTML = span.innerHTML == '+' ? '-' : '+';
    span.setHTML(newHTML);
    collapsible.toggle();
    return false;
    collapsible.hide();
    $('collapse-all').onclick = function(){
    headings.each( function(heading, i) {
    collapsibles.hide();
    var span = $E('span', heading);
    if(span) span.setHTML('+');
    return false;
    $('expand-all').onclick = function(){
    headings.each( function(heading, i) {
    collapsibles.show();
    var span = $E('span', heading);
    if(span) span.setHTML('-');
    return false;
    horizontal: function(){
    var list = $$('#horizontal li div.collapse');
    var headings = $$('#horizontal li h3');
    var collapsibles = new Array();
    headings.each( function(heading, i) {
    var collapsible = new Fx.Slide(list, {
    duration: 500,
    transition: Fx.Transitions.linear
    collapsibles = collapsible;
    heading.onclick = function(){
    var span = $E('span', heading);
    if(span){
    var newHTML = span.innerHTML == '+' ? '-' : '+';
    span.setHTML(newHTML);
    collapsible.toggle('horizontal');
    return false;
    $('slideout-all').onclick = function(){
    headings.each( function(heading, i) {
    collapsibles.hide('horizontal');
    var span = $E('span', heading);
    if(span) span.setHTML('+');
    return false;
    $('slidein-all').onclick = function(){
    headings.each( function(heading, i) {
    collapsibles.show('horizontal');
    var span = $E('span', heading);
    if(span) span.setHTML('-');
    return false;
    accordion: function(){
    var list = $$('#accordion li div.collapse');
    var headings = $$('#accordion li h3');
    var collapsibles = new Array();
    var spans = new Array();
    headings.each( function(heading, i) {
    var collapsible = new Fx.Slide(list, {
    duration: 500,
    transition: Fx.Transitions.quadIn
    collapsibles = collapsible;
    spans = $E('span', heading);
    heading.onclick = function(){
    var span = $E('span', heading);
    if(span){
    var newHTML = span.innerHTML == '+' ? '-' : '+';
    span.setHTML(newHTML);
    for(var j = 0; j < collapsibles.length; j++){
    if(j!=i) {
    collapsibles[j].slideOut();
    if(spans[j]) spans[j].setHTML('+');
    collapsible.toggle();
    return false;
    collapsible.hide();
    window.addEvent('domready', Site.start);
    />]>
    </script>
    Plus this:
    http://pr0digy.com/sandbox/mootools/slide-effect/js/mootools.v1.11.js
    None of it is for "dummies". It would require "hand editing" of the iWeb Published pages.

  • DESPERATE HELP! I broke my spry slide effect

    i can't add the effect anymore. everytime i tried, it kept
    telling me that I need to have the target element inside a div...
    which it is. every other effect works, such as fading or what not.
    but the slide effect just gone dead.
    also, i did have the effect workED in one of my other
    webpage. if i go back to behavior panel and try to modify the
    effect (such as changing duration), it won't let me save, but just
    kept popping up the same error message as above(that i need to have
    target element in a div)
    i have no idea what happened. it just stopped working one day
    all of a sudden, and becoming very frustrating. PLEASE SOME HELP!!!
    (also, where can i get immediate like customer to customer
    real time conversation help? i pay LOTS of money for this stuff,
    should I expect to get some sort of customer service from them?
    some number i can call, some chatroom i can go to?)
    p.s. as with all my other silly questions that got answered,
    i am sure I did something very beginner (since i am) to break
    it.

    "Bih Wang" <[email protected]> wrote in
    message
    news:[email protected]...
    >i can't add the effect anymore. everytime i tried, it
    kept telling
    >me that I
    > need to have the target element inside a div... which it
    is. every
    > other
    > effect works, such as fading or what not. but the slide
    effect just
    > gone dead.
    The Slide effect is the most difficult of the Spry effects to
    use. You
    cannot apply the Slide effect directly to the element you
    want to
    slide in and out. The target element must be a div wrapped
    around it.
    What makes it difficult is that the child element of the div
    MUST be
    one of the following: blockquote, center, dd, form, img, or
    another
    div. So, for example, this will work:
    <div id="slidecontainer">
    <img src="slideme.jpg" alt="Sliding image" />
    </div>
    However, this won't work:
    <div id="slidecontainer">
    <p><img src="slideme.jpg" alt="Sliding image"
    /></p>
    </div>
    If you want the paragraph, you need to wrap it in another div
    like
    this:
    <div id="slidecontainer">
    <div>
    <p><img src="slideme.jpg" alt="Sliding image"
    /></p>
    </div>
    </div>
    > (also, where can i get immediate like customer to
    customer real time
    > conversation help? i pay LOTS of money for this stuff,
    should I
    > expect to get
    > some sort of customer service from them? some number i
    can call,
    > some chatroom
    > i can go to?)
    This is where you get free user-to-user help. By the way,
    please don't
    post the same question in multiple forums.
    The money you paid for the software entitles you to free
    support with
    installation problems. You also get two free technical
    support tickets
    for an individual program. If you bought a suite, you get
    four
    tickets, and six tickets for the Master Collection. The
    technical
    support tickets expire 90 days after using the first one.
    To get real-time help from Adobe support, you need to
    purchase a
    support plan, or pay for individual support incidents. In the
    USA,
    prices per incident range from US$29 to US$249.
    David Powers
    Adobe Community Expert, Dreamweaver
    http://foundationphp.com

  • Spry slide effect problem

    Hi
    i have a div with the slide effect, it works but it start as
    showing and i want it to be "shrinked" when the page is loading.
    what should i do?
    ron

    High Rich,
    You were on the right track with EPM. Here's how it works:
    http://www.projectseven.com/testing/customers/pow32/
    All you do is insert a single panel EPM inside TopMenuWrapper
    set to have
    all panels close and with gradual stop animation and using
    the basic style
    theme.
    Then you set the trigger DIV to display: none !important; and
    to remove all
    borders.
    .p7EPM05 .p7epm_trigs {
    overflow: hidden;
    margin-bottom: 12px;
    display: none !important;
    Then "un-style" the EPM content DIV so it picks up your
    colors and
    attributes:
    .p7EPM05 .p7epm_content {
    padding: 12px 24px;
    line-height: 1.5em;
    border: 0;
    Then select your "Menu of Products" link and use the built-in
    EPM control
    behaviors (available GUI in behaviors panel) to assign an EPM
    Trigger
    Control to the link, which will then look like this:
    <a href="#"
    onclick="P7_EPMctl('p7EPMtrg1_1','trigger')">Menu of
    Products</a>
    That's it.
    Al Sparber - PVII
    http://www.projectseven.com
    The Finest Dreamweaver Menus | Galleries | Widgets
    http://www.projectseven.com/go/pop
    The Ultimate DW Menu System
    "RICH POW" <[email protected]> wrote in
    message
    news:gms1c0$rpj$[email protected]..
    >I am using the Spry Slide Effect as a way of initially
    hiding a drop down
    >menu:
    >
    > Click on menu of products:
    >
    http://www.adelantedesign.co.uk/clients/showpiece/menu.asp
    >
    > I use:
    > .hideInitially{
    > display: none;
    > }
    > as recommended here though there is no working example
    using display:
    > none;
    > only visibility: hidden
    >
    >
    http://labs.adobe.com/technologies/spry/samples/effects/slide_sample.html
    >
    > Using initial state of dispay: none it displays NOTHING!
    Is this a bug in
    > IE
    > 7?
    > Anyone come across this problem.
    >
    > Anyone got a fix?
    >
    > Thanks
    > Rich
    >

Maybe you are looking for