Problems with Fade Out / Reload in State

I'm having the hardest time trying to figure this one...  I have followed some good advice from these forums for this project in its current state, but cannot get it to work properly.

I use a "wheel" which is a custom/generic component (such as a popup) composed of all the buttons.  Each click on the button it does two things:

1. it transitions to a new state that causes the just clicked the button to rotate to the top of the wheel

2. it fades into a new custom/generic component

This works really well.

The problem comes when I try to hide a newly added custom/generic component (via secquence action attached to a button in the new custom/generic component).  For some reason any the area formerly covered by the custom/generic component is more clickable.

The other problem I foresee is if I can get the underlying custom/generic component buttons to work, I want to be sure that the "popups" (newly added in each new State custom/generic components) to reappear each time that the State is responsible.

I don't know there are a few really simple fix for what is beyond me.  I have attached two screenshots of the 'wheel' and the 'wheel' covered by the 'popup '.  I also published the project in its current state to one. SWF file if anyone is so inclined to give a try.  If test you it, please note, I only worked on the first 4 buttons moving clockwise around the wheel.

Would appreciate any feedback!

Thank you.


Drew

Hi Drew,

I think I understand your problem and have something for you to try.

When you use a Fade out in a sequence of actions, the catalyst is animating the alpha (opacity) of the object from 100% to 0%. However, objects with 0% alpha still captures mouse clicks. The object must be invisible (which is different from 0% alpha!) to not capture the mouse clicks.

Unfortunately, there is no way to set an object to be invisible in a sequence of actions. What you can do is to encapsulate the popup itself in a custom component. Instead of using a sequence of actions to animate it, create two States: hidden and visible. Set the popup to be invisible (disable the eyeball in the layers panel) in the hidden state. Then set up your fade transitions. Now, just to make each button click "play transition to State" the popup component, ranging from the visible to the hidden state or vice versa.

-Adam

Tags: Flash Catalyst

Similar Questions

  • Problem with the change of a 'State' the substitution of one break of the chronology of the objects

    Here is my setup: I have a single slide for learning select 9 melodies 'text buttons' to view 9 different definitions.  To do this, I set myself to each buttons to change the "State" of the original image for the introduction of a 'legend of text' containing the definition of that label of buttons.  I also three navigation buttons (output, back and next; button_19 _20 & _21) with breaks built into the end of the timeline. coinciding with the end of the audio narration for this slide.

    Here's my problem: the calendar runs and stops as it should until the learner chooses one of the 'text' buttons after that the timeline is suspended; how it seems to send a command to "continue" and substitutes at the break, and brings the learner to the next slide.

    This has something to do with the function "States"?  I used to do exactly the same thing in Cap 7 with stocks advanced without any problem.

    Thanks in advance for the help.

    v/r

    Jay

    stateTimeline.JPG

    If it's 9 Captivate, locate the box continue a project of play in the Actions section and deselect buttons for each.

  • Problem with the checkbox and 'if' statement 'else if '.

    Hi, I had something like this:

    if (this.rawValue=="0" ){
      app.alert("0");
      this.resolveNode("Circle1").presence = "hidden";
      this.resolveNode("cross").presence = "visible";
     }  
    
    
    else if (this.rawValue=="1"){
      app.alert("1");
      this.resolveNode("Circle1").presence = "visible";
      this.resolveNode("cross").presence = "hidden";
      }
    
    else{
      app.alert("2");
       this.resolveNode("Circle1").presence = "hidden";
      this.resolveNode("cross").presence = "hidden";
     }
    

    I put a default position on the neutral State. The values are default: on = 1, off = 0, neutral = 2.

    When I'm clicking my button to check it works only 'market' (1) and (2) State "neutral." 'off' State does not work and I do not know why.

    Please help me with this.

    Hello

    Here is the form to the you: https://acrobat.com/#d=qiBnkcpRnPWxA5hokFXvQw.

    I shook the script, but it wasn't the main problem. The issue was that the box is on the Master Page and had a default value of the neutral. Some objects on the Master Page, as with the values by defect and buttons, checkboxes can behave badly when the form is reparqué (layout: ready event).

    If you take a look at the form, you will see the objects on the design Page behave as expected. However, similar objects on the Master Page by default returns every time that the layout event: loan fires. It has already been noted with Adobe.

    I recommend that you move the objects in a design Page or perhaps use a drop-down list instead of the check box.

    Niall

  • Satellite P300D 10V - problem with TV OUT

    Hello!

    I have a card ATI HD3650 in my Toshiba Satellite P300D 10V model and I can't use my TV out!
    It does not work! How to start!

    I use a newer driver of origin! With the previous driver output TV not too worked!

    Kind regards!

    Hello

    The laptop seems to support a 4pijn s-video port and HDMI port.
    Which port you use to connect to the TV?

    You can use both and it only depends on the available on television port.
    Choose the right channel on the TV and then use the FN + F5 key combination to switch to the TV out.

  • Problem with series Printer B110a printer - State constantly displays Idle

    Hi - I am unable to print a document from my Mac OS X 10.6.8 Version.  The printer is a HP Photosmart B110 all in one printer and has no problem in the wireless network test report.  The print job appears in the print queue, but the State remains on inactive.  I can scan successfully of the printer but cannot print any document.  Print test page printed OK but has been very slow.  I tried all the troubleshooting steps recommended by HP Support FAQ such as the abolition of the printer and reinstalling the driver.  Nothing works.  Any suggestions?

    Hello, welcome to the Forums! I hope you enjoy your experience

    I noticed your post on your Photosmart B110 model does not print. I want to offer my suggestions you that can help.

    This is a direct link to download the printer driver: HP Photosmart full feature software and drivers - Mac OS X v10.4, v10.5, and v10.6

    I hope that my post was information!

    Have a great day!

  • Problem with ANSI OUTER JOIN

    Hi all

    I have issues with the help of ANSI LEFT JOIN compared to Oracle (+). Below test I did the same thing.
          create table emp (emp_id number(10), emp_name varchar2(50));
          create table courses (course_id number(10), emp_id number(10), course_name varchar2(50));
          
          INSERT INTO EMP values(1,'A');
          INSERT INTO EMP values(2,'B');
          INSERT INTO EMP values(3,'C');
    
          INSERT INTO COURSES values(1,1,'ORACLE');
          INSERT INTO COURSES values(2,1,'JAVA');
          INSERT INTO COURSES values(3,3,'C#');
    
          --*Query 1
          SELECT a.*, b.*
          FROM EMP a  LEFT JOIN COURSES b 
          ON a.emp_id = b.emp_id
          AND a.emp_name = 'A'
    
          --*Query 2      
          SELECT a.*, b.* 
          FROM EMP a, COURSES b 
          where a.emp_id = b.emp_id(+)
          and a.emp_name = 'A'
    Here Query1 return all records of 4 same records regardless of emp_name = 'A' where as Query2 returns 2 records of ep_name = 'A' which is correct.

    Is this correct? I'm confused if you use the standard ANSI OUTER JOINS or not.

    I am using Oracle 11g

    Thank you.

    Change your AND WHERE, in the style of ANSI, select:

    SELECT a.*, b.*
    FROM EMP a  LEFT JOIN COURSES b
    ON a.emp_id = b.emp_id
    WHERE a.emp_name = 'A'
    

    Filters in the clause are those who use the (+) in the Oracle syntax.
    Filters WITHOUT (+) in the Oracle syntax should be in the WHERE clause using the ANSI syntax.

    Published by: Kim Berg Hansen on September 23, 2011 08:03

  • Problems with the Out-of-Band updates

    I am running Dell v2.0 OME.  Everything works great including the updates via OMSA. However, the updates made via the iDRAC connections fail every time.

    I could say I tried everything, but I thought someone might help me with troubleshooting whole again in case I missed something or did something wrong.

    The connections of the DRAC live on a different subnet, but there is no firewall between these two networks.  Only a router that routes traffic between the two.  As I type this I came with some other ideas, but if you have something to offer that would be great.

    Here is the error I get trying to deploy the updates.

    Results:
    Download the packages.
    The call of method InstallFromUri to download packages to the iDRAC
    Download package: BIOS_V7P04_WN64_2.2.3.EXE on iDRAC
    Download the package has started successfully and the Job ID is JID_121890750543
    The URI given to iDRAC to download it from: http://[serverip]:1278/install_packages/Packages/BIOS_V7P04_WN64_2.2.3.EXE

    Checking the status on the following tasks: JID_121890750543
    The JOBID JID_121890750543 failed with the following message is displayed:
    A package of updated network file transfer has failed.
    MessageID: RED051

    Download error occurred.
    Package BIOS_V7P04_WN64_2.2.3.EXE didn't upload on the target device. Update failed.
    The task of software update failed.

    Thank you

    Well the call with Dell has not helped, but eventually I was able to understand it.  I learned that during an attempted search on a (executable) package for download, IIS returns a 404 error.

    An example URL is http://[nameofserver]:1278/install_packages/Packages/SAS-RAID_Firmware_C3X7D_WN32_12.10.6-0001_a12.exe

    I had to open the Web.config for the bulk of the site and adds the following snippey inside the section.


            

    The site's web.config file is located in C:\Program Files\Dell\SysMgt\Essentials\wwwroot\Essentials\.

    Once the module was in place, I was able to navigate to any package and it would prompt me to download it. From there, I tested the updates again on the ESXi hosts and all is well again. I hope that this little information helps someone else!

    Thanks again for everyone's help.

  • Problem with LEFT OUTER JOIN

    Hello

    I am in charge of the migration of a SQL Server 2000 database to Oracle 11 g, under what I also migrate some predefined queries, that my client has. However I can't seem to get the syntax right and it keeps failing. Could you please help me? Thank you.

    Query:
    SELECT *,(select r.recsolins from gx.repara r where r.percod=c.percod and r.concod=c.concod and r.rectpo='I' and r.recsts='F' and r.grppercod=10 and r.recnro=(select max(t.recnro) from gx.repara t where t.percod=c.percod and t.concod=c.concod and t.rectpo='I' andt.recsts='F' ) ) as NROID
    FROM gx.CONABO c, gx.abonad a  
    LEFT OUTER JOIN gx.CALLES y ON  y.dptocod=10 and y.ciucod=524 and y.CALCOD=A.AboCalEsq1, 
    LEFT OUTER JOIN gx.CALLES Z ON  z.dptocod=10 and z.ciucod=524 and z.CALCOD=A.AboCalEsq2 
    ,gx.calles x WHERE c.PERCOD in (10,60) and CONSTSHAB in ('C','D','P')
    and a.percod=c.percod and a.abocod=c.abocod and
    x.dptocod=10 and x.ciucod=524
    and x.calcod=abocal
    order by c.percod,c.concod;
    The fields are correct, but I get not found when expected in FROM clause.

    Published by: n on June 5, 2012 13:47
  • Problem with menu in the rollover State on a single page

    On this website the overthrow of menu on this page only items not work "punishment". The reversal of menu links will work if pushed to the right. The reversal of the home menu will work when pushed to the left. Other menus do not work, even if I had a "flicker" to the menu Gallery 1. All bearings menu on all other pages work fine. I use Safari 6.0.1. It's pretty weird to me... What is happenng here?

    I thought about it. Widget slideshow frame was layered on top of menu items, invisibly covering all except the left and right - that's why the left menu very article - homepage, and one very good - links, sort of worked, because a few of them were not covered by the framework of slide show. I moved it down about 8 pixels to be just below the menu items. Now, they work very well! I could probably have arranged the chassis backwards to avoid move, but it works for me.

  • Potential problems with copy_table_stats.

    Guys,

    I have a table with the DDL below containing a huge number of records.

    CREATE TABLE APPEAL. CALL_DTL

    (

    DATE TIME STAMP,

    MSN VARCHAR2 (32 BYTE) NOT NULL,

    EVENT DATE NOT NULL,

    )

    PARTITION BY RANGE (EVENT)

    (

    CALL_P_01122015 PARTITION VALUES LESS THAN (TO_DATE (' 2015-12-01 00:00:00 ',' SYYYY-MM-DD HH24:MI:SS ',' NLS_CALENDAR = GREGORIAN ')),

    CALL_P_02122015 PARTITION VALUES LESS THAN (TO_DATE (' 2015-12-02 00:00:00 ',' SYYYY-MM-DD HH24:MI:SS ',' NLS_CALENDAR = GREGORIAN '))

    CALL_P_03122015 PARTITION VALUES LESS THAN (TO_DATE (' 2015-12-03 00:00:00 ',' SYYYY-MM-DD HH24:MI:SS ',' NLS_CALENDAR = GREGORIAN '))

    );

    We collect statistics for the 1st of the score of the month.

    BEGIN

    DBMS_STATS.gather_table_stats)

    ownname = > 'CALL. "

    tabname = > 'CALL_DTL ',.

    partName = > "CALL_P_01122015"

    estimate_percent = > 1,

    GRANULARITY = > 'APPROX_GLOBAL AND PARTITION,

    Cascade = > TRUE,

    degree = > 15);

    END;

    /

    And the stats will be copied in the rest of the partitions of the month.

    Start

    DBMS_STATS.copy_table_stats (ownname = > 'CALL')

    tabname = > 'PMS_CALL_DETAIL ',.

    srcpartname = > 'CALL_P_01122015 ',.

    dstpartname = > 'CALL_P_02122015');

    end;

    /

    Start

    DBMS_STATS.copy_table_stats (ownname = > 'CALL')

    tabname = > 'PMS_CALL_DETAIL ',.

    srcpartname = > 'CALL_P_01122015 ',.

    dstpartname = > 'CALL_P_03122015');

    end;

    /

    Start

    DBMS_STATS.copy_table_stats (ownname = > 'CALL')

    tabname = > 'PMS_CALL_DETAIL ',.

    srcpartname = > 'CALL_P_01122015 ',.

    dstpartname = > 'CALL_P_04122015');

    end;

    /

    ...

    ...

    Could someone advise if there could be potential problems with the copy of his stats?

    What I see, HIGH_VALUE and LOW_VALUE are the same for every single partition for the SQL below:

    Select nom_partition, HIGH_VALUE, LOW_VALUE from dba_part_col_statistics where table_name = column_name 'CALL' IN ("MSN");


    Will this result in CBO plan fetching suboptimal on SQL running on the table with predicate such as MSN and EVENT?

    Please suggest me resolution approaches.


    Thank you!!


    -Bibi





    It will depend on (among other things), how use you it as a predicate and unique how the column is.

    If you try to filter using predicates of beach in function with a range outside the stats then the CBO will be predicate weak cardinalities and therefore will promote the access of the index and nested loops which leads to this.

    If you are filtering on equality predicates and the key is unique there should be no problem really.

    It will depend also on whether the request knows which partition will be scanned, otherwise it will use global statistics, which will be probably the same as a partition, but they could easily change if you were to collect stats on any other partition.

    You have an environment you can use a test and see approach?

  • I have a problem with icloud sharing photos that the photos are NOT sorted by the State but by the date of the transfer (which is very illogical for a trip Album,..)

    Dear all!

    I hope you can help me out here - I have a problem with a picture of icloud sorting in shared albums

    We took pictures to a trip with iphone5s and iphone6 + a Nikon J5 date and time everything is OK

    Loadin was don ewhilst travelling and at home, but the sorting is mixed seems to be loading date

    (even only took pictures of the iphone as a reference)   (all on iOS 9.3.2)

    you know a way the album gets re-sync or software where I could sort the photos in

    and then re - download to get the sorting so that by the time and date of the...

    Thank you very much in advance - it would be a big help (gibbest album with this problem is the honeymoon ;-))

    Shared albums are essentially photo streams. They will always show the photos in the order that add you them to the album.  If you want your photos to appear in a specific order, you must add them to the album individually, one by one, exactly in the order of your choice.  You cannot add all photos in an album at once - which will give unpredictable results.

    For example, to create a new album with your photos.  Then ctrl-click on the album and select "Keep arranged by Date, oldest first" to sort the album.  Now add each photo from the album shared individually.  There will be a lot of work.

  • I'm having a lot of problems with firefox and cannot figure out how to get help. It all started when I updated to 13. I get all kinds of advertising popups, I can't play a

    I'm having a lot of problems with firefox and cannot figure out how to get help. It all started when I updated to 13. I get all kinds of advertising popups, I can't play a game on FaceBook called Farm Town at all, and I get a popup of AVG on the cookies that I can't get rid of. These issues are causing me to use Chrome quite often, although I like Fox better. I've searched and searched how to get help and find nothing. How can I get personalized technical help? These problems will not occur in Chrome at all. Thank you.

    Do a check with some malware malware, analysis of programs on the Windows computer.

    You need to scan with all programs, because each program detects a different malicious program.

    Make sure that you update each program to get the latest version of their databases before scanning.

    Alternatively, you can write a check for an infection rootkit TDSSKiller.

    See also:

  • There was a problem with this web page, so it has been reloaded. Started happening right after the last security update.

    Since the last update security update some says there are. "There are several sites that I get the error" there was a problem with this web page, so it has been reloaded "and it does not load the site ultimately. It is in Safari. Sites will open in Chrome very well. I tried to delete the cookies and cache. Restart the browser.

    Version OS X 10.9.5

    It can happen if you have third party advertising blockers installed as extension Safari or third party plug-ins.

    How to troubleshooting instructions here.

  • seems I'm not the only one having problems with safari after update 9.3 cannot follow the links. Safari blocks. hope it gets fixed quickly. jaa shooting allows to follow the link, but the Web page is not out of good old days. any oher ideas?

    seems I'm not the only one having problems with safari after update 9.3 cannot follow the links. Safari blocks. hope it gets fixed quickly. jaa shooting allows to follow the link, but the Web page is not out of good old days. any oher ideas?

    The 'list' of relevant articles that I know, they are now

    -You can read about the problems in the present statutes and possibly find workaround solutions, particularly in the last

    If you are unable to activate your iPhone, iPad or iPod touch after installing an update - Apple Support

    Apple iOS suspension 9.3 updates for older devices, work on activation fix | IVous

    Apple launches new version of iOS for iPad users 9.3 2 affected by bricking bug | 9to5Mac

    GSM of unfixed addresses Apple iPad 2 Bug with revised Activation iOS 9.3, but the larger question remains - Mac rumors

    If you are unable to activate your iPad 2 (GSM model) update to iOS 9.3 - Apple Support

    9.3 iOS update issues

    Leave a post by: ChitlinsCC

  • message keeps coming up ' is a problem with this Web page then it has been reloaded.

    My woman keeps getting the message on his ipad when she tries to use the internet "is a problem with this Web page then it has been reloaded. What happens whenever she tries to go to a Web page. It all started last night when she tried to open a file attached to an email zip. Could not be linked. What should she do?

    Do a restart forced his iPad: press and hold the home button and sleep, wait for the Apple logo, release the buttons. While waiting for the reboot also restart the WiFi router by pulling on the power of him, wait a minute, then plug it in again.

Maybe you are looking for