Skin counter not working

Hello
I am trying to modify one of the Adobe provided flv skins, but when I do the counter is disabled.  Even if I just copy the fla and export the swf skin, without making any modifications, the counter is disabled.  Do I need to add code to make it work?
Thanks
Dave

We need some more information in order to help you.
What version number of Aperture and of your operation system?
How are you "doing" skin smoothing?  What do you expect to happen?  How is this different from what does happen?  How are verifying that it is isn't working correctly?
Has it ever worked in the past?
Can you post a screen-shot illustration any of the above?
Do you have any other trouble with Aperture?  With any other programs?
Do other Aperture Quick Brushes work?
Have you tried any troouble-shooting?  Have you re-started Aperture?  Have your re-started your system?
Post back with this information and I'm sure some of the many helpful people here will provide some direction and tips.

Similar Messages

  • Read Only Display of Radio group and Text area with counter not working

    Hello,
    I am using Apex 3.2, with 10g for the database
    I have this form, with fields that will set to read only when status = 'closed'
    All of the fields display as read only except for 2. I cannot figure out why this is not working correctly.
    1st field is Issues that is a text area with character counter, with a sql query behind it, that is set to null unless the query is pulling in the data.
    2nd field is Status which is a radio group that will not display as read only when status = 'closed'
    I have other fields on the form with the same format and they change to read only when the status = 'closed', I have even copied the pl/sql expression from one field to these fields and it still doesn't work correctly. I have also tried javascript for an on load event, which works, but once I click on the save button, it disables all of the page items, which works correctly, but I purposely forget to enter information, to make sure the validations are firing correctly, which it does, but the script disables everything, not allowing me to correct the errors. The javascript is firing on the on page load event.
    Any help on this is greatly appreciated.
    Mary

    Dung,
    That API seems to have a bug, it returns true/false/null, so you could use 'return not nvl(htmldb_util.current_user_in_group(p_group_name => 'APP Admin'),false)' to get a false value.
    Unfortunately there's another problem: using the read-only attributes for checkbox or radiogroup item makes them hidden. My suggestion would be to create another item that has disabled="disabled" in the HTML Form Element attribute in the item definition and display that item or the non-disabled item alternately, using conditions based on the current_user_in_group logic.
    Scott

  • Badge count not working on reminder after IOS8 upgrade.

    Hello,
    after upgrade my iPhone 5s (64) to IOS8 last weekend, the badge count (only for the reminder!?) does not work.
    Deactivating / activating did not helps.
    Note: Reminder works with iCloud sync
    Thanks for any answer,
    Dirk

    same here: https://discussions.apple.com/message/15712300#15712300

  • Flash video with cuepoints and skin does not work

    Hi guys, i created a SWF file based on the template available
    here
    http://www.adobe.com/devnet/flash/articles/vidtemplate_mediapreso_04.html
    Basically the movie has navigation buttons on the left side
    of the video display to enable users to jump to predefined sections
    (topics) within the video. It also has the video controls under the
    video.
    I imported my video as well as the sample provided in the
    webpage above and the clip does not work in Presenter. I can see
    the skin but the buttons flash and we cannot see the video. I'm not
    a Flash or Presenter expert. Just wondering if anyone can help
    troubleshoot this. We would really like to embed a swf with
    navigation buttons into Presenter. is this possible? ideas
    appreciated.
    Thanks

    I'm sure someone will post a workaround for you (there are about 4 or 5 different workarounds people have posted at various times). But I wanted to thank you for your post. My experience as a very recent PC to Mac convert has been frustrating, mostly due to Keynote. When I first started using Keynote I was amazed at what it could do. I spent a lot of time working on a project (several days) only to spend another several days trying to figure out why it wouldn't Export. I finally logged onto the forums and see that people have been posting about this problem for MONTHS. It's been very frustrating to say the least and is a major flaw.
    Your note is the first indication I received that Apple is truly working on this issue. I feel for people who posted months ago waiting for an update every day. Like them, I sent a support email (not answered).Your note shows both hope and progress. Apple could really convert a lot of people if it got software like Keynote to work correctly. I'm still blown away by its power. But it's like owning a Ferrari with now wheels. It has a lot of power, but there's nothing you can do with it until you get wheels.
    Cheers!

  • Select count(*) not working in Apex

    Hello,
    The following sql works in both SQL*Plus and Toad but not in apex.  The variable seems always to be 0 no matter what data I have on the table.
    Basically I try to flip the status from "Inactive" to "Active" only when there is no "Inactive" status left on the table.  Say there are 2 inactive statuses.
    If I delete one inactive status, the overall status should still be "Inactive".  However, with this code, it flips to "Active" status regardless. 
    I tried manually assign the variable to 1 and the status was not flipped.  Therefore, it sounds to me that the count(*) is not working in APEX.
    Does anyone experience this before? 
    Thanks in advance,
    Ning
    ===================================
    DECLARE
    v_status_count NUMBER;
    BEGIN
    UPDATE LGR_APP_STATUSES
    SET DELETED = 'Y'
    WHERE LGR_APP_STATUS_ID = :P42_LGR_APP_STATUS_ID;
    commit;
    select count(LGR_STATUS_ID) into v_status_count from LGR_APP_STATUSES
    where DELETED = 'N'
    and LGR_APPLICATION_ID = :p42_application_id
    and LGR_STATUS_ID in (3,8);
    IF (v_status_count = 0) THEN
    update lgr_applications
      set lgr_application_status = 'ACTIVE'
      where LGR_APPLICATION_ID = :P42_LGR_APPLICATION_ID;
    commit;
    END IF;
    END;

    Hi,
    In query you have used p42_application_id.
    Other statements use P42_LGR_APP_STATUS_ID
    Do you have that item? What is session state for that?
    Regards,
    Jari

  • Select and Count not working.....HELP PLEASE!!

    I have the following scenerio:
    SELECT #PART,#PDESC,COUNT(#PART) AS PCOUNT FROM MYLIB WHERE #PART LIKE 'AN101011%' AND #RECDT BETWEEN 19970826 AND 20020826 GROUP BY #PART,#PDESC
    //brings back count of 1 which is right...only one part within the date range
    PCOUNT: 1
    SELECT #PART,#PDESC,COUNT(#PART) AS PCOUNT FROM MYLIB WHERE #PART LIKE 'AC043208%' OR #PART LIKE 'AN101011%' AND #RECDT BETWEEN 19970826 AND 20020826 GROUP BY #PART,#PDESC
    //looped through result set and these two counts are right
    PCOUNT: 1
    PCOUNT: 1
    SELECT #PART,#PDESC,COUNT(#PART) AS PCOUNT FROM MYLIB WHERE #PART LIKE 'AN101011%' OR #PART LIKE 'AC043208%' AND #RECDT BETWEEN 19970826 AND 20020826 GROUP BY #PART,#PDESC
    //now brings back a pcount of 2 for the first part which is shouldn't, there are two parts with the same number but only one which falls within the date range.
    PCOUNT: 2
    PCOUNT: 1
    could anyone help me with this.....thanks in advance

    Found the solution....its in the order of processing of the select statement...for others future reference....
    SELECT #PART,#PDESC,COUNT(#PART) AS PCOUNT FROM MYLIB WHERE #PART LIKE 'AN101011%' AND #RECDT BETWEEN 19970826 AND 20020826 GROUP BY #PART,#PDESC
    //brings back count of 1 which is right...only one part within the date range
    PCOUNT: 1
    SELECT #PART,#PDESC,COUNT(#PART) AS PCOUNT FROM MYLIB WHERE #PART LIKE 'AC043208%' OR #PART LIKE 'AN101011%' AND #RECDT BETWEEN 19970826 AND 20020826 GROUP BY #PART,#PDESC
    //looped through result set and these two counts are right
    PCOUNT: 1
    PCOUNT: 1
    //*****this works because in actual fact it is reading the date range and it associates it with the last part number so it reads it like this (note the brackets):
    SELECT #PART,#PDESC,COUNT(#PART) AS PCOUNT FROM MYLIB WHERE #PART LIKE 'AC043208%' OR (#PART LIKE 'AN101011%' AND #RECDT BETWEEN 19970826 AND 20020826) GROUP BY #PART,#PDESC
    SELECT #PART,#PDESC,COUNT(#PART) AS PCOUNT FROM MYLIB WHERE #PART LIKE 'AN101011%' OR #PART LIKE 'AC043208%' AND #RECDT BETWEEN 19970826 AND 20020826 GROUP BY #PART,#PDESC
    //now brings back a pcount of 2 for the first part which is shouldn't, there are two parts with the same number but only one which falls within the date range.
    PCOUNT: 2
    PCOUNT: 1
    //***this did not work because the date range only applied to the last part number not the first..so it read it like (note the brackets):
    SELECT #PART,#PDESC,COUNT(#PART) AS PCOUNT FROM MYLIB WHERE #PART LIKE 'AN101011%' OR (#PART LIKE 'AC043208%' AND #RECDT BETWEEN 19970826 AND 20020826) GROUP BY #PART,#PDESC
    //**Therefore, I changed it to (including the brackets) and it ran fine:
    SELECT #PART,#PDESC,COUNT(#PART) AS PCOUNT FROM MYLIB WHERE (#PART LIKE 'AN101011%' OR #PART LIKE 'AC043208%') AND #RECDT BETWEEN 19970826 AND 20020826 GROUP BY #PART,#PDESC

  • Spry textarea character count not working in IE9

    Hi.
    I'm using DW CS5 for a ColdFusion form with a textarea field. The spry character count works in every browser but IE9. Anyone know how to fix this?
    Thanks!

    This feature will not work in IE9 and IE10.
    The problem is two-fold
    a) The Copyright notice shows 2006 as the last Spry update. This was around the time of IE7
    b) Microsoft tends to go off on a tangent where every release of IE behaves differently
    As always, we are in the hands of the Adobes and Microsofts.

  • Counter not working in Muse slideshow

    I created a slideshow and added 6 images. When I adjusted design and added additional images counter stopped working in slideshow.

    Hi I am having a very similar problem but in this case relating to captions.
    I have encountered the same error as above, but after a while of re-jigging things around it seemed to unfreeze and recognise the placing in the sequence. A problem which I have encountered at the same time, and hasnt fixed, even when using different version of the lightbox / slideshow widget is how to add different captions to each image. This is easy on the design tab, but when previewing only one of the captions (generally the current one) shows. I have togled edit together, and tried building the widget placing all content in and then unchecking 'edit together' to deal with the captions seperately at the end, but to no success.
    Is there a solution or has anyone encountered the same issue!!?

  • Skin Menu not working

    I'm using Captivate 3 and daisy-chaining programs together.
    Menu Builder is not an option at the moment so I've created a Menu
    using the Project|Skin options. I browsed to find the .cp program
    but when the programs are published, the menu doesn't work even
    though the daisy-chaining does work. I've read that Captivate is
    smart enough to find the published program, even though I'm
    pointing to the source program. I'm publishing both the SWF and the
    EXE formats. I've searched the forums and can't find any solution
    to getting the Skin menu links to function--with a daisy-chained
    program. NOTE: The reason I'm daisy-chaining is because I tried to
    create the program all in one file and I'm having huge issues
    getting the program to load (about 2 minutes to start from a
    CD)--so this is what I'm trying for a solution. Help!

    I'm noticing that when the menu link is clicked (on the EXE
    program) it's looking for an .htm file--which is not created when
    publishing an EXE file or at least I'm not seeing that option.
    Hopefully that doesn't mean you can only create links for SWF
    publishes...

  • Skin Customization not working in OBIEE 11.1.1.5.0

    Hi,
    I followed the Oracle white paper (http://www.oracle.com/technetwork/middleware/bi/customizing-oracle-biee-11g-176387.pdf) & defined the custom skin and stylesheet in analyticsRes folder. I also defined the CustomerResourcePhysicalPath,DefaultSkin and DefaultStyle tag in instanceconfig.xml.
    When I restart the services, it works fine and I am able to see the custom skin. When I do a "view page source", I can see that it's referring to analyticsRes folder. But after couple of hours it again reverts back to original skin (sk_blafp). When I restart the services then it works fine. But it again reverts back to original after couple of hours.
    I am not sure if I am missing something.
    Thanks,
    Satya
    Edited by: Satya on Mar 22, 2012 8:46 AM

    Are you in a single environment or a clustered one. If you are on a clustered environment, the folder needs to be setup on both servers.

  • Skin Setting not working with XML file

    I am trying to use the Adobe Flash Playback with a flashvars skin setting.  I am pointing this setting to an xml file where I am trying to overide the playButtonOverlay image.  Below is my code.  I am using MVC, so you will see a couple Html Helpers.  The helpers are working just fine.  It is only the skin setting I can't seem to get to work.  Any help would be appreciated.  Thanks, Michael.
    Html File
    <object width="384" height="288" >
         <param name="movie" value="http://fpdownload.adobe.com/strobe/FlashMediaPlayback.swf" />
         <param name="flashvars" value="src=<%: Model.VideoFilePath %>&poster=<%: Model.PosterFilePath %>&skin=/Skin/FlashPlayerSkin.xml" />
         <param name="allowFullScreen" value="false" />
         <param name="allowscriptaccess" value="always" />
         <param name="quality" value="high" />
         <param name="wmode" value="transparent" />
         <embed src="http://fpdownload.adobe.com/strobe/FlashMediaPlayback.swf" type="application/x-shockwave-flash"
              allowscriptaccess="always" allowfullscreen="false" width="384" height="288"
              flashvars="src=<%: Model.VideoFilePath %>&poster=<%: Model.PosterFilePath %>&skin=/Skin/FlashPlayerSkin.xml"
              quality="high" wmode="transparent" />
    </object>
    XML File
    <?xml version="1.0" encoding="utf-8" ?>
    <skin>
      <elements basePath="/Content/MFBImages/FlashPlayer/">
        <element id="playButtonOverlayNormal" src="playButtonOverlay.png"/>
        <element id="playButtonOverlayDown" src="playButtonOverlay_down.png"/>
        <element id="playButtonOverlayOver" src="playButtonOverlay_over.png"/>
      </elements>
    </skin>

    Thank you both for replying so quickly.  I still don't seem be having too much luck.  The first thing I did was watched fiddler, and it did show an error with crossdomain.xml.  So I added the below elements to a crossdomain.xml file in my root folder.  I also changed all my paths to be absolute for both the skin flashvar and xml, but still no luck.
    crossdomain.xml
    <?xml version="1.0" encoding="utf-8" ?>
    <!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
      <allow-http-request-headers-from domain="*" headers="SOAPAction,Content-Type"/>
    </cross-domain-policy>
    Since I am having trouble with the xml, I decided to try and just put the skin element into the html page where the flash player is located.  I then removed the flashvar skin element out of the player.  Below is my code for the skin element and flashplayer with absolute paths.  The player still seems to use the default overlay play button.  Any other suggestions would help out greatly.
    <skin>
    <elements basePath="http://localhost:1852/Content/MFBImages/FlashPlayer/">
      <element id="playButtonOverlayNormal" src="playButtonOverlay.png"/>
      <element id="playButtonOverlayDown" src="playButtonOverlay_down.png"/>
      <element id="playButtonOverlayOver" src="playButtonOverlay_over.png"/>
    </elements>
    </skin>
    <object width="384" height="288" >
    <param name="movie" value="http://fpdownload.adobe.com/strobe/FlashMediaPlayback.swf" />
    <param name="flashvars" value="src=http://localhost:1852/VideoLibrary/Agents/test video.flv&poster=http://localhost:1852/Content/MFBImages/AgentImage/Poster.jpg" />
    <param name="allowFullScreen" value="false" />
    <param name="allowscriptaccess" value="always" />
    <param name="quality" value="high" />
    <param name="wmode" value="transparent" />
    <embed src="http://fpdownload.adobe.com/strobe/FlashMediaPlayback.swf" type="application/x-shockwave-flash"
        allowscriptaccess="always" allowfullscreen="false" width="384" height="288"
        flashvars="src=http://localhost:1852/VideoLibrary/Agents/test video.flv&poster=http://localhost:1852/Content/MFBImages/AgentImage/Poster.jpg"
        quality="high" wmode="transparent" />
    </object>

  • Skin smoothing not working

    I can't get the skin smoothing application to work.
    Any help would be appreciated.

    We need some more information in order to help you.
    What version number of Aperture and of your operation system?
    How are you "doing" skin smoothing?  What do you expect to happen?  How is this different from what does happen?  How are verifying that it is isn't working correctly?
    Has it ever worked in the past?
    Can you post a screen-shot illustration any of the above?
    Do you have any other trouble with Aperture?  With any other programs?
    Do other Aperture Quick Brushes work?
    Have you tried any troouble-shooting?  Have you re-started Aperture?  Have your re-started your system?
    Post back with this information and I'm sure some of the many helpful people here will provide some direction and tips.

  • Yakuake skin transparency not working properly

    Hi.
    I have a problem with yakuake skins. The tabs' part isn't transparent (the rest - console background and lower part of skin - are).
    I used to use Kubuntu and this wasn't an issue there.
    Any ideas?
    Check bellow how the menu entries are hidden behind the upper part of the skin while they are visible behind the lower part:
    PS. I have the latest KDE, Qt and Nvidia binary drivers.

    Sorry for getting back so late.
    No skin works and the test mentioned above didn't work either.
    I also tried resetting the yakuake config (removed ~/.kde4/share/config/yakuakerc and ~/.kde4/share/apps/yakuake) but the problem persisted even with the default configuration.
    Anyone else with an nvidia card + binary drivers to say whether it works for them?

  • Soften Skin/Dodge not working anymore

    Hi all
    have been using LR4 for past month with no probs, however, today the preset brushes i use a lot arent working properly.
    Dodge and soften skin are my main ones i use but they are making NO impact at all on the photos i use them on, im doing nothing different! please help!
    Andy

    Make certain your Flow and Density are set to a reasonable level. Too low and the effects aren't apparent.

  • Hit Counter Not Working :(

    I want to add the "hit counter" on my welcome page, but when I go to publish it...it does not appear. It doesn't even appear on iWeb. What am I doing wrong??

    SPV:
    Welcome to the Apple Discussions.
    Is it still linked to the old site?
    If you published you site to your second .Mac account then you'll have tow versions of it out there. One on the first account and the one on the new account. They will have different URLs as the default URL will be:
    http://homepage.mac.com/.Mac account name/
    So unless you deleted it from the first account each account will have that site. If you don't want the site on the first account go to the iDisk/Web/Sites/iWeb folder for that account and look for the folder with the sites name and delete it. There will be an index.html file there also you can delete.
    Do you Twango?

Maybe you are looking for