More than 20 State?

Hello

Is there a way around the limit of twenty State of catalyst.

I am trying to create buttons which, once clicked will be show a picture.

I have a lot more than 20 photos. So more than twenty buttons/States.

Is there some other that in such a way that I can do this without having to create an interaction to a new State for each photo?

Thanks in advance.

There are two solutions to this problem:

(1) rework your design so that you place up to 20 items in a custom component. Flash Catalyst 5.5 allows the communication between components, so the transition from a custom to another component is easier. There are a few forum posts on this subject that should help you

(2) create the drawing in Flash Catalyst, then extend it using Flash Builder to have photos to be manipulated programmatically.

Chris

Tags: Flash Catalyst

Similar Questions

  • Firefox displays no more than the State of Firefox Sync

    I am running FF 3.6.7 and FF Sync 1.4.1. Display the taskbar is now gone.

    Having a Visual representation of the status of the synchronization has its benefits

  • Add more than 2 lines for a select statement without inserting rows in the base table

    Hi all

    I have a below a simple select statement that is querying a table.

    Select * from STUDY_SCHED_INTERVAL_TEMP
    where STUDY_KEY = 1063;

    but here's the situation. As you can see its return 7 ranks. But I must add
    2 rows more... with everything else, default or what exist... except the adding more than 2 lines.
    I can't insert in the base table. I want my results to end incrementing by 2 days in
    measurement_date_Taken on 01-APR-09... so big measurement_date_taken expected to
    end at study_end_Date...



    IS IT STILL POSSIBLE WITHOUT INSERT ROWS IN THE TABLE AND PLAYIHY ALL AROUND WITH
    THE SELECT STATEMENT?

    Sorry if this is confusing... I'm on 10.2.0.3

    Published by: S2K on August 13, 2009 14:19

    Well, I don't know if this request is as beautiful as my lawn, but seems to work even when ;)
    I used the "simplified" version, but the principle should work for your table, S2K.
    As Frank has already pointed out (and I fell on it while clunging): simply select your already existing lines and union them with the 'missing documents', you calculate the number of days that you are "missing" based on the study_end_date:

    MHO%xe> alter session set nls_date_language='AMERICAN';
    
    Sessie is gewijzigd.
    
    Verstreken: 00:00:00.01
    MHO%xe> with t as ( -- generating your data here, simplified by me due to cat and lawn
      2  select 1063 study_key
      3  ,      to_date('01-MAR-09', 'dd-mon-rr') phase_start_date
      4  ,      to_date('02-MAR-09', 'dd-mon-rr') measurement_date_taken
      5  ,      to_date('01-APR-09', 'dd-mon-rr') study_end_date
      6  from dual union all
      7  select 1063, to_date('03-MAR-09', 'dd-mon-rr') , to_date('04-MAR-09', 'dd-mon-rr') , to_date('01-APR-09', 'dd-mon-rr') from dual union all
      8  select 1063, to_date('03-MAR-09', 'dd-mon-rr') , to_date('09-MAR-09', 'dd-mon-rr') , to_date('01-APR-09', 'dd-mon-rr') from dual union all
      9  select 1063, to_date('03-MAR-09', 'dd-mon-rr') , to_date('14-MAR-09', 'dd-mon-rr') , to_date('01-APR-09', 'dd-mon-rr') from dual union all
     10  select 1063, to_date('03-MAR-09', 'dd-mon-rr') , to_date('19-MAR-09', 'dd-mon-rr') , to_date('01-APR-09', 'dd-mon-rr') from dual union all
     11  select 1063, to_date('22-MAR-09', 'dd-mon-rr') , to_date('23-MAR-09', 'dd-mon-rr') , to_date('01-APR-09', 'dd-mon-rr') from dual union all
     12  select 1063, to_date('22-MAR-09', 'dd-mon-rr') , to_date('30-MAR-09', 'dd-mon-rr') , to_date('01-APR-09', 'dd-mon-rr') from dual
     13  ) -- actual query:
     14  select study_key
     15  ,      phase_start_date
     16  ,      measurement_date_taken
     17  ,      study_end_date
     18  from   t
     19  union all
     20  select study_key
     21  ,      phase_start_date
     22  ,      measurement_date_taken + level -- or rownum
     23  ,      study_end_date
     24  from ( select study_key
     25         ,      phase_start_date
     26         ,      measurement_date_taken
     27         ,      study_end_date
     28         ,      add_up
     29         from (
     30                select study_key
     31                ,      phase_start_date
     32                ,      measurement_date_taken
     33                ,      study_end_date
     34                ,      study_end_date - max(measurement_date_taken) over (partition by study_key
     35                                                                          order by measurement_date_taken ) add_up
     36                ,      lead(measurement_date_taken) over (partition by study_key
     37                                                          order by measurement_date_taken ) last_rec
     38                from   t
     39              )
     40         where last_rec is null
     41       )
     42  where rownum <= add_up
     43  connect by level <= add_up;
    
     STUDY_KEY PHASE_START_DATE    MEASUREMENT_DATE_TA STUDY_END_DATE
    ---------- ------------------- ------------------- -------------------
          1063 01-03-2009 00:00:00 02-03-2009 00:00:00 01-04-2009 00:00:00
          1063 03-03-2009 00:00:00 04-03-2009 00:00:00 01-04-2009 00:00:00
          1063 03-03-2009 00:00:00 09-03-2009 00:00:00 01-04-2009 00:00:00
          1063 03-03-2009 00:00:00 14-03-2009 00:00:00 01-04-2009 00:00:00
          1063 03-03-2009 00:00:00 19-03-2009 00:00:00 01-04-2009 00:00:00
          1063 22-03-2009 00:00:00 23-03-2009 00:00:00 01-04-2009 00:00:00
          1063 22-03-2009 00:00:00 30-03-2009 00:00:00 01-04-2009 00:00:00
          1063 22-03-2009 00:00:00 31-03-2009 00:00:00 01-04-2009 00:00:00
          1063 22-03-2009 00:00:00 01-04-2009 00:00:00 01-04-2009 00:00:00
    
    9 rijen zijn geselecteerd.
    

    Is there a simpler way (in SQL), I hope that others join, and share their ideas/example/thoughts.
    I feel that it is using more resources there.
    But I have to cut the daisies before now, they interfere my 'grass-green-ess";)

  • Insert the statement so that a line taking more than 6 minutes.

    When I tried to insert just one line in a table... it's take more than 6 minutes. No idea why its causing so much time for just insertion of a line.

    Please advice...


    Kind regards
    Yasser.

    YasserRACDBA wrote:
    Charles,

    Yes you are right. Optimizer is set to rule that it is the version of Oracle 8i.

    Problem has been solved... rinse us just sharing pool and insert the statement was finished within 1 second.

    Still confused that how its related to the hot flushes of shared pool... May be due to bad hit ratio.

    Flushing the shared pool causes the instructions shared/updates cached so far in the shared pool to get hard analysis/optimized again. Explanation so the most obvious would be that for some reason, the implementation plan have been changed to the statement you're talking about, although the plan should be quite deterministic, because you're on 8i (no bind variable peeking questions) and using the optimizer basic RULE.

    Kind regards
    Randolf

    Oracle related blog stuff:
    http://Oracle-Randolf.blogspot.com/

    SQLTools ++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676 /.
    http://sourceforge.NET/projects/SQLT-pp/

  • Wait state more than 96% of IO.

    I have a 6 node with DRS running cluster and 2 ESX hosts are experinceing more than 96% iowait. How to read a 'up' or "esxtop" to determine what use the process (s) to the top of all cycles CPU? Attcahed is the process running - any help would be appreciated

    You shouldn't be looking for a process that uses CPU cycles, you should search for a process or VM do heavy disk, network or memory writes.  Waiting for I/O is the percentage of cycles CPU spent on something else to happen - disc usually pending transactions.  The following process is a bit odd:

    11645 11266 0 2008 root?        00:00:00

    -What were you doing something on the service with vmkfstools console?  If so, looks like he may have hung up.  In addition, you have several copies of the script running, as well as several crond process defunct vmbackup.  I'm going to guess your backup routine/script does not work properly, and it's probably at least one of the things that contribute to the high expectations I/O.  Unfortunately, you probably have a process hung on i/o, which are very, very difficult to get rid of.  If you use a cluster, it's time to migrate your virtual machines on other machines ESX and reboot.  Then you'll want to spend time to understand why your backup script never leaves properly.

  • Equium L40 - internet does not work if I open more than one Web site

    I have an Equium L40-10 X, and while the system works well, he doesn't like the internet. If I open more than one Web site, a little box comes up saying that Internet Explorer has experienced a problem and must be restarted. It becomes excruciatingly embarrassing if I'm in the middle of something important and I lose the site I've been on!

    Especially with me, go to college soon too! Especially it will refuse to work if I have to download something, for example, I recently bought an Apple iPod Nano and I needed iTunes in order for me to put music on it, but once he starts the download, the "internet has stopped working" appears and I have to start everything again, but instead of her work - quite simply, there is no!

    This often becomes a case and it makes me incredibly stressed!
    Help, please.

    Hello

    Always use the OS from windows update?
    These errors occur if the registry is dirty and drunks was not updated!

    Update windows on Microsoft for the last State page!
    In addition, you must clean the registry using the freeware tool called CCleaner. It s nice!

    So finally a hint;
    You can access the internet with Microsoft Internet Explorer and with another internet browser like Firefox for example.

    I recommend you this possibility.

    concerning

  • Video is de-energized when on a call with more than one person

    Hello

    When I'm a Skype call to a video person works very well, but when there is more than one I can no longer see the other participants. There is also no button to end the call and the only way to get out of the call, it's be quiting Skype and it starts again.

    It used to work in the past and Skype was great if not sure whats going on. I'm on Win 10 64-bit with Skype version 7.25.0.106

    Someone at - it ideas?

    Your Skype is not always connected to the Cloud server.

    The correct State shall be:

    Status: NetStateConnected

    Check your hosts filein Windows, DNS/VPN/proxy settings.

    Try first to reset your Windows hosts file:

    https://support.Microsoft.com/en-us/KB/972034

  • WindowServer []: GPU Driver seems to be suspended (more than 5 continuous seconds of reluctance)

    Hello

    I have a huge problem with my iMac to year < 1 5K. It seams it is not capable of running tools. At least that is the statement that the Apple dealer gave me the excuse followed, I expect that Apple updated sound driver and hope that the problem will disappear.

    But one after the other. I bought this iMac I have a configuration with the best available (i7) CPU and 16 GB of RAM in April. When I asked if the least performing graphics card is sufficient to run application oll but games, they assured me that this is the case. Then all year there was seldom behavior with this mac, because after a while, he started to suspend for a period at the beginning a few seconds and after some time a little more until it becomes completely unusable because of the high frequency of gels. These gels has disappeared, especially when the focus of the application has been changed (cmd + tab), but come back more and more.

    The first thing I did, I even if this thing is broken and got a new logic board installed, but the ramains problem.

    After all, I discovered that the log is full of statements like:

    WindowServer []: GPU Driver seems to be suspended (more than 5 continuous seconds of reluctance)

    When the application is frozen. So I got the iMac to the dealer. Just today, they called me and told me that this problem is related to all THE tools of creation as Photoshop, but also of music like Ableton and same logic X programs! They told me I have to wait for Apple to arrive with a new driver of the logic board that hopefully solves the problem. I mean that literally, they confirmed that the iMac 5K is not able to run any creative Application at the present time for a longer while.

    My question is, what should people like me do, when the sole purpose of this computer was creative tools. Is there a program to switch to another machine like MacBook or Mac Pro or are the iMacs postum declared as not usable for creativity and buyers, and even less in the rain?

    Sorry, but my last post was so full of typos, I was really offset after the retail bank and need some time to get down. I'm sorry. This is a rewritten version, with most of the corrected errors:

    I have a huge problem with my iMac to year < 1 5K. It seams it is not capable of running tools. It's at least that the statement that the Apple dealer gave me the answer to my problem followed by the suggestion I should expect that Apple updated sound driver and hope the problem goes away.

    But one after the other. I bought this iMac with the following configuration: the best (i7) processor and 16 GB of RAM, Fusion drive and the simplest card in April.

    When I asked if the less powerful graphics card are sufficient to run all applications next to the actual 3D games, they assured me that this is the case.

    Then all year long this mac rarely showed a behavior. Initially, he started to suspend for a period of a few seconds and after some time a little more until it becomes completely unusable because of the high frequency of the freezes. These gels has disappeared, especially when the focus of the application has been changed (cmd + tab), but come back more and more.

    First I though that something is broken and brought it to repair apple, where I got a new board installed, but the problem remains.

    After all, I discovered that the log is full of statements like:

    WindowServer []: GPU Driver seems to be suspended (more than 5 continuous seconds of reluctance)

    When the application is frozen. So I got the iMac to the dealer. Just today, they called me and told me that this problem is related to all THE tools of creation as Photoshop and also music like Ableton and same logic X programs! They told me that I have to wait as Apple launches the new driver of logic board, which hopefully will solve the problem. I mean that literally, they confirmed that the iMac 5K is not able to run any creative Application right now for some unknown time - perhaps always.

    My question is, what should people like me do, when the sole purpose of buying this computer was creative tools. Is there a program to switch to another machine such as the MacBook Pro or Mac Pro or are the iMacs postum declared as not usable for creativity and buyers, and even less in the rain?

    I'm really curious since the sill site Web of Apple announced the iMac as a creative Monster.

  • Can I use more than one flash drive to ready boost on Satellite L650/0ed

    Hello

    I have a toshiba Satellite L650/0ed, it's good if I use more than one drive 8 GB flash for "ready boost" - what is the maximum number of using flash-drives can devote to the "ready-boost.

    In addition, if I use a 16 gb flash drive, will this affect more memory "ready boost".

    Why the 3.5 drive seagate expansion 1 TB is not compatible for ready-boost.

    Thank you
    -Brent907

    Hi mate

    Please check this Microsoft page that describes the ReadyBosst
    http://Windows.Microsoft.com/en-us/Windows7/products/features/ReadyBoost

    There, you can find this statement:
    + ReadyBoost works with storage devices more flash. In Windows 7, it can handle more memory and even multiple devices * eight *, for a maximum of 256 GB of additional memory. +

    I hope this can be useful!

  • How do you decommssion a domain controller that has not been on the network of more than 200 days?

    Hello

    in our society, we have an old domain controller has been disconnected for more than 200 days, probably in a State of thumbstone, it still appears in our network. We wanted to know what is the best way of disused this server, we connect to our network and do normal downgrade process.

    How do you decommssion a domain controller that has not been on the network of more than 200 days?

    Could you please write me back to my work email or call me on my work phone? Job information are below.

    Hello

    The business support, you can find forums on TechNet, see the following links:

    http://social.technet.Microsoft.com/forums/en/category/WindowsServer/

  • My computer says that it has more than 5000 errors and I have to pay to fix them.

    My computer shows that I have more than 5000 errors... I download 'Free'... but after showing how many mistakes I have... so I have to buy remove them... Anything FREE available to remove these errors with?

    original title: maintenance cleaning disc my computer reports that I have more than 5000 errors

    You may be victim of scare ware by malicious registry, cleaning of retail sites.

    In addition, it is unclear if when you run an analysis, the downloaded site ware hostage on your system.

    Try running a system restore point to restore the hive of the registry to a functional State before you run the malware analysis.

    Thereafter, be sure to run a full scan with your anti virus program.

    However update your antivirus with the lates virus definitions since the system restore may have restored an old list of virus definitions.

    If everything looks correct and normal now, then install and run inoculate, then "spybot" your system.

    It will update your windows with a list of bad sites to avoid.

    and don't forget to update and run spybot regularly.

  • Put into service takes more than 15 minutes. Stop is worse. It hangs at "closing Windows" regardless of the programs that I run is extremely slowly.

    Original title: start & close problem. Slow response

    My PC is running Window XP SP2. I did all the updates.

    Recently commissioning takes more than 15 minutes. Stop is worse. It hangs at the "closing Windows.
    Whatever programs that I run is extremely slow.
    I ran virus scan, microsoft fixed, but the problem persists.

    Well, I think you don't like it, but the first thing to do is to eliminate by using their special tools Norton Uninstall program:

    https://www-secure.Symantec.com/Norton-support/JSP/help-solutions.jsp?LG=English&CT=United+States&docid=20080710133834EN&product=home&version=1&PVID=f-home

    Now, you might think I be without protection and get some bad things on my computer, but you just want to see how things are going without it.  Just don't visit WWW stupid or silly sites, where you can pick up some virus or malware and you can always install a new copy, but I think it's a big headache for you now.

    It might be out of date, too many options of protection installed, etc.  More protection is not always better, and you will pay for it in the performance of the system with the more stuff you add.

    Then when Norton is gone, proceed as follows:

    No matter what you use for malware protection, follow these steps:

    Download, install, update and do a full scan with these free malware detection programs at:
    Malwarebytes (MMFA): http://malwarebytes.org/
    SUPERAntiSpyware: (SAS): http://www.superantispyware.com/
    They can be uninstalled later if you wish.
    Restart your computer and solve the outstanding issues.

    Consider instead of Microsoft Security Essentials or Norton - he did a good job.

    We must eliminate what can cause problems, so I'd start with Norton.  You can put it back later if you want, but you need to see how things are going without it.  Moving things to a good operating system that you are happy with first.

    Eliminate potential problems one at a time and test thing out... one thing at a time.

    Symantec/Norton is you biggest problem right now.

    Check your NVIDIA drivers:

    I use the NVIDIA site and let scan them online take a look at your video system and see what he suggests for drivers and consider their analysis if they offer a new driver.

    It is recommended to run the scan NVIDIA with Internet Explorer.

    Here is the address of the NVIDIA page:
    http://www.nvidia.com/download/Prescan.aspx?lang=en-us

    Read the instructions, and then click the DRIVERS GRAPHICS button to start scan and answered in the affirmative, if asked to install the plugin required to run the NVIDIA scan.

    Get rid of Norton.

  • Mounting my drive hard exFAT fails more than 70% of the time in Windows XP.

    Mounting my drive hard exFAT fails more than 70% of the time in Windows XP.  I downloaded the Microsoft exFAT driver (Windows XP-KB985704 - x 86 - ENU.exe) and installed XP Service Pack 3.  However, when I turned the computer off and restart it, the disc will install.  I'm having this problem with several readers.  Looks like the player trying to get (new Windows hardware sound chimes when you plug in the drive).  Then rapidly thereafter dismantle it quickly sounded. When I take the car and plug it into my Mac, it is still rising.  Is it possible that I have to do something more to install the Microsoft exFAT driver?  The drive is made by G-technology.  I also tried to remove the disc before you turn off the computer and turn off the computer with the mounted drive yet.  Whatever it is, the reader is not recognized when I restart the computer.  I ran an on the disks and sometimes Apple disk utility, I get the message that the reader has a cluster to run repair disk.  After that, the player either go up or not.  There is no virus on the Windows computer.  The operating system is a novelty.  I use the system only to run AVID.   No other software is on the computer other than what came with it.  The computer is a HP 8600 workstation.  I mount the drive through a port firewire 400 on the computer using firewire 400 to 800 cable G technology.

    Hi motionpicturedirector,

    It is possible that some third-party programs installed on the computer is causing the problem.

    I suggest that you configure the computer in a clean boot state and check if it helps.

    To help resolve the error and other messages, you can start Windows XP by using a minimal set of drivers and startup programs. This type of boot is known as a "clean boot". A clean boot helps eliminate software conflicts.

    See section to learn more about how to clean boot.

    How to configure Windows XP to start in a "clean boot" State

    http://support.Microsoft.com/kb/310353

    Reset the computer to start as usual

    When you are finished troubleshooting, follow these steps to reset the computer to start as usual:

    (a) click on Start , then run.

    (b) type msconfig , and then click OK.
    The System Configuration utility dialog box appears.

    (c) click on the general tab, click Normal Startup - load all device drivers and services , and then click OK.

    (d) when you are prompted, click restart to restart the computer.

  • Windows XP system using more than 50% of the CPU

    Hello

    Recently, my windows XP works very slowly, with system interruptions take up more than 50% of CPU, most of the time. I've updated all the drivers yesterday, the problem disappeared for a few hours then reappeared again.

    Thanks in advance for any suggestions.

    Start your machine in a "Clean boot" State and see if you still have your problem (I bet you won't):

    "How to configure Windows XP to start in a"clean boot"State
      <>http://support.Microsoft.com/kb/310353 >

    If the problem goes away in the clean boot state, then use MSConfig to find out which program or service is causing the problem:

    "How to solve configuration errors by using the System Configuration utility in Windows XP"
      <>http://support.Microsoft.com/kb/310560 >

    There is a lot of trial and error, but finally you have to narrow down the cause of your problem.

    HTH,
    JW

  • My laptop took more than 12 hours to install an update from windows and is still doing, and will not be closed.

    I use Vista and an HP Pavilion laptop. I noticed the closing down and install updates logo was so I used it and my laptop started to install 2 updates (June 18, 2011). Finished the first, it was install the 2nd for more than 12 hours. The screen tells me not power off or unplug the machine.  The drive light flashes occasionally, it can come entirely for a second or two. What can I do? Surely it's far from since long to be normal and something went wrong.  The laptop keys are unresponsive. The cursor has changed to the blue circle by day and cycles but will not move with the mouse or key.  In the past, some updates took 3-4 hours, they have been great with more than a dozen of components, but never anywhere as long as it. I opened and closed the DVD several times, that works and is empty, just to see if anything's happening. What should I do? Should I continue to wait? If so how long? Can I really just ignore the warnings and turn it off and restart it?

    1. you receive an error message?

    2 did you change on your computer before this problem?

    3. what anti-virus software is installed on your computer?

    I suggest to shut down your computer and try to install the updates manually.

    Method 1

    You can temporarily disable antivirus.

    Disable the antivirus software

    http://Windows.Microsoft.com/en-us/Windows-Vista/disable-antivirus-software

    Note: after troubleshooting activate the anti-virus software

    Method 2

    You can download and install the update manually failed in a clean boot state.

    Step 1

    Put your computer in a clean boot.

    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7

    http://support.Microsoft.com/kb/929135

     

    Note: After a troubleshooting follow step 7: reset the computer to start as usual

    Step 2

    Download and install the KB from the link below.

    Microsoft Download Center

    http://www.Microsoft.com/downloads/en/default.aspx

    See also:

    Problems with installing updates

    http://Windows.Microsoft.com/en-us/Windows-Vista/troubleshoot-problems-with-installing-updates

    Check whether the problem is resolved.

Maybe you are looking for

  • How can I show a question resolved?

    The error is cleared. Can I display the resolved tag?

  • Get "unexpected error" device cannot be verified

    I went to the devices tab and this computer is here - I checked the serial number. Download from the app store gives "error unexpected device cannot be verified.

  • Start, interrupted by the Crash screen

    I installed WindowBlinds 7, improvement and some other stuff on my computer. They caused a lot of mistakes, so I uninstalled them. After stopping, at startup, the computer crashes without any error code and restarts. Then he says: "Windows could not

  • Scan to network with OfficeJet 6700 Premium

    Hello I want to scan from my OfficeJet 6700 Premium on a network share on my NAS. So far I was only able to scan my computer where I needed to install a pice of software. But I want to scan directly to the network share without count it in the middle

  • Unable to capture video with the Canon Vixia HV40 HDV - why?

    I am unable to capture video HDV via Firewire to my Cannon Vixia HV40. I am running Windows 7 Professional 64 bit on a computer HP DV6T Quad Edition laptop, using the native Firewire interface. I can capture DV standard definition without problem (wh