Two actions to one button - delaying the second action

Hi all

I have a menu on my site - this menu does two things when you click each button - they charge two separate sovereign wealth funds in video clips already on the scene.

I want to do is delay one of the actions of a few seconds so that the file always starts loading before the other (one is a background, it is a foreground)

any suggestions?

my site: www.ponch.biz/portfolio (still much to do in detail but comments on what is happening here are welcome)

Thank you very much

Ponch

David,

Thank you very much, who did it!

see you soon

Ponch

Tags: Adobe Animate

Similar Questions

  • Two columns must be UNIQUE if the second is not NULL.

    Two columns must be UNIQUE if the second is not NULL. If the second is NULL, the first has no need to be UNIQUE.

    CREATE TABLE Moo
    (
    Prima        INT PRIMARY KEY,
    Secunda    INT NOT NULL,
    Tertia        VARCHAR2(1)
    );
    
    CREATE UNIQUE INDEX Cow ON Moo(Secunda, NVL(Tertia, TO_CHAR(Prima)));
    
    INSERT INTO Moo(Prima, Secunda, Tertia)
    SELECT 1, 1, NULL FROM Dual UNION ALL
    SELECT 2, 1, NULL FROM Dual;
    
    DROP TABLE Moo;
    
    

    Is there another way to do it?

    Added 'SINGLE '.

    I had a little trouble at matches your description to your example, but if you want to apply the uniqueness on (secunda, tertia) only for lines where tertia is not null, then the following should work:

    create an index unique xxx on moo)

    cases when is not null, then end of secunda, tertia

    Tertia

    );

    Concerning

    Jonathan Lewis

    P.S. When do a quick test of the best way to define this index, I found what seems to be a bug in 11.2.0.4 (and maybe other versions) with the expression:

    Tertia case if no then cast (null as an int) to another end secunda

    Update: now blog at: Easy & #8211; Oops. | Notebook of the Oracle

  • Win 7 pro license on 2 devices if one desktop and the second a mobile?

    Hello

    I have read, it is possible to install a win 7 pro license on 2 devices if one is a desktop computer and the second mobile (Tablet, netbook or laptop).
    Is this true?
    If yes how to do it please?
    I bought a laptop with win 7 pro on this subject and we must now install it on a new desktop computer that I am editing.
    THX

    This is not true.

    No, the key that can be used with 32-bit or 64-bit Windows 7 is exclusively for use with the disc 1. You cannot use install both. 1 license, 1 installation, so choose wisely. If you want to install Windows 7 32 or 64 bit on another partition or another computer, you must purchase an additional license.

    http://www.Microsoft.com/Windows/buy/default.aspx

    http://Windows.Microsoft.com/en-us/Windows7/get-a-new-Windows-product-key

    INSTALLATION AND USE RIGHTS.

    a. one copy per computer. You can install one copy of the software on a single computer. This computer is "licensed computer.

    b. a computer license. You can use the software on up to two processors of the computer under license at some point. Except as provided in these license terms, you cannot use the software on any other computer.

    c. number of users. Except as provided in these license terms, only one user may use the software at a time.

    d. other Versions. The software may include several versions, such as 32-bit and 64-bit. You may install and use only one version at a time.

  • If you have two hard drives, can you wipe the second and just use it as a storage device?

    If you have two HARD drives in a PC Windows 7, can you remove everything (including the System 32, Windows users, literally everything) in the second and still use his computer? All my programs on the first HDD would remain on my PC, but all the files of the second being scratched? I'm running out of space on my first HARD drive and need to know if I can keep the second as storage just pure.

    Thank you.

    Hey Elliot,

    Thanks for posting your query in the Microsoft Community Forums.

    According to the description, it seems that you want to delete all the data on the secondary hard drive without affecting the first hard drive operating system files.

    I'll be happy to help you with this.

    If the operating system (Windows 7) is installed on the first hard drive, it has nothing to do with the second hard disk. You can go ahead and delete all data without hesitation.

    Note: Make sure that you remove the data from the hard drive where Windows 7 is installed.

    If you want to reduce the number of unnecessary files on your hard disk to free up disk space and help your computer run faster, use disk cleanup.

    For more information, see the link.

    Delete files using disk cleanup

    If you have any other questions, feel free to let us know. We will be happy to help you.

  • FETCH ONE RECORD IN THE SECOND TABLE OF CORRELATED SUB QUERY

    Hi all

    I have provided the script below, I want to single fecth record in the second table in the join query,

    based on the example below, I want to go get one record of the table emp2 what matches with the emp_id of table emp1, please note emp2 may contain more record for the emp_id emp1 which respects

    all records can be selected in the table emp2.

    DROP TABLE emp1.

    CREATE TABLE emp1 (emp_id NUMBER);

    INSERT INTO emp1 VALUES (1);

    INSERT INTO emp1 VALUES (2);

    COMMIT;

    DROP TABLE emp2.

    CREATE TABLE emp2 (emp_id NUMBER, emp_name VARCHAR2 (100));

    INSERT INTO emp2 VALUES (1, 'Name1');

    INSERT INTO emp2 VALUES (2, 'Name2');

    INSERT INTO emp2 VALUES (1, 'Name3');

    INSERT INTO emp2 VALUES (2, 'Conjoint4');

    COMMIT;

    SELECT * from emp1.

    SELECT * from emp2.

    SELECT T1. EMP_ID, MIN (T2. EMP_NAME)

    FROM EMP1, EMP2 T2 T1

    WHERE T1. EMP_ID = T2. EMP_ID

    GROUP T1. EMP_ID;

    My output should be the same as the result set of query above, but I don't want this logic, please provide the solution by using a different logic, thanks in advance.

    2811876 wrote:

    Thanks for your comments :-)

    My business logic will change to 'Fetch N second timeline table', that's the reason why I asked for a different approach, if I use max, min to achieve this does not allow me to evolve dynamically.

    Although logic has not been expressed at all in your original question, so good job I asked.

    You could do something like:

    SQL > ed
    A written file afiedt.buf

    1 with emp1 (select 1 as the emp_id of union double all the)
    2. Select 2 double
    3               )
    4, emp2 (select 1 as emp_id, 'name 1' as emp_name double union all
    5. Select "name 2' Union double every 2
    6 select 1, 'name' 3' from dual union all
    7. Select 2, 'name 4' double union all.
    8 select 1, 'name 5' from dual union all '.
    9 select 2, 'name 6' from dual '.
    10               )
    11-
    12. end of test data
    13-
    14 select emp_id, emp_name
    15 of)
    16 select t1.emp_id, t2.emp_name
    17, row_number() over (partition by order of t2.emp_name t1.emp_id) rn
    emp1 t1 18
    19 join t2 emp2 (t1.emp_id = t2.emp_id)
    20       )
    21 * where rn<=>
    SQL > /.

    Enter the value for rows_required: 1
    21 Alumni: where rn<=>
    21 news: where rn<=>

    EMP_ID EMP_NA
    ---------- ------
    1 name 1
    2 name 2

    SQL > /.
    Enter the value for rows_required: 2
    21 Alumni: where rn<=>
    21 news: where rn<=>

    EMP_ID EMP_NA
    ---------- ------
    1 name 1
    1 name 3
    2 name 2
    2 name 4

  • Pavilion all-in-one 23: Add the second monitor to HP Pavilion CTO all-in-One-23-p110z

    As it is configured, the factory is the "HP Pavilion all-in-one-23-p110z CTO" capable of supporting a second monitor?  I see NO obvious "video inputs" ports.

    Thank you!

    Hi @beckinista,

    Thank you for being an active member of the HP's Support Forums.   I understand that you would like to know if you can connect a second computer monitor 23-p110z all-in-One CTO Pavilion.

    The specifications of the motherboard of your computer show that there not a secondary display port. I have included HP Pavilion 23 - p110z all-in-one CTO Office product specifications and configurable Options and HP and Compaq Desktop PCs - specifications of the motherboard, Boa for your reference.

    I hope the above helps.

  • My printer is connected to two computers. I find that the second computer does not print unless the first computer is also on. Can I get every computer to print without the two be on?

    the printer has been first on windows 7 and second on windows xp, because that's the way I was told iy had to be done. But I thought that each computer can print separeately withou t windows 7 being on.

    Hello

    1. How is the printer connected? This printer is on a network?
    2. this configuration was already working before?

    You must configure a print server. If your printer is a network printer, you can connect it to a router, and all computers connected to this router can use the printer individually. If the printer is not a network printer, you can buy the equipment to turn it into one.

    See the articles below for more information:
    http://support.Microsoft.com/kb/308028
    http://TechNet.Microsoft.com/en-us/library/bb457001.aspx

    I hope this helps.

  • Play two MCs with one button

    Hello

    I'm doing the main timeline go to section 2, and another MC go to section 2 by clicking on a button.

    Here's what I'm trying...

    on (release) {}

    _root.gotoAndPlay (2);

    Snap1.gotoAndPlay (2);

    }

    When the button is clicked, the main timeline goes to frame 2, but the instantane1 (instance name) to MC, do not play. I use AS2.

    ???????

    If this code is attached to a movieclip (as opposed to a simple button) button, use:

    on (release) {}

    _root.gotoAndPlay (2);

    _root. Snap1.GoTohasndPlay (2);

    }

  • Delay the second boring 3

    I posted this before. Always kills me. Thing more annyoying on the bridge after the path bar always disappears.

    I have a folder of images. They have cached, in fact. Yet when I click on the thumb, I have a second 3 wait for the upcoming Preview in the home.

    kevin4545 wrote:

    Rich,

    Thanks, it's bridge not PS, but I guess you know who.

    Would you say you are 95% sure that would solve this problem of microphone?

    It is not an important factor as you point out it's not much.

    But I wonder if these imacs are upgraded? Not like the old G5 with slot machines you can insert maps...

    Yes, it's the bridge not PS but bridge must put in cache ALL your previews. If she is forced to save these previews (and cache) on the disc, which is highly probable with only 2 GB of RAM on your computer, it will be slower than molasses. Most of the RAM will be used by the OS, PS, bridge and nothing else running in time. (You can use the activity monitor to see what slice of the pie bridge RAM gets.  ( http://macperformanceguide.com/Mac-Monitoring-memory.html)  And Yes, iMacs are easily extensible.

    You have a great computer that is hampered by a serious lack of RAM.  In the immediate future, you must make sure that NOTHING else is running while you work in Bridge / PS.

    iMac RAM is easily extensible and RAM is on DIMM.  It is not very different from the time G5. There are videos that explain all the steps involved.

    http://eShop.MacSales.com/shop/Apple/memory/iMac

    The following comparison is with MacPro and PS, no bridge, but the results would be comparable:

    http://macperformanceguide.com/Mac-Upgrade-CaseStudy-MacPro-memory.html

    -Rich

  • Two questions in one - location of the file and change to a MAC

    Hi all

    I just moved all my photos to a NAS that has changed not only drive location, but the location of the folder as well:

    e:\Pictures to y:\

    There are hundreds of records, I know I can click on 'find missing' but is there a way to update at the same time?

    Lightroom is V4.4

    BUT...

    In a few months I'm going to switch to a MAC, is it useful to do something with the above? can I import/export to the MAC?

    Thanks in advance

    John

    Migration from Windows to Mac should be very simple, given that the photos will be stored on the NAS, which is probably related to Windows and Mac machines.   See this article for more information on how to make the trip: How can I move a computer to a new Lightroom?

  • Using JOIN to two tables to find records in the second table...

    I always seem to get these types of queries wrong and need a bit of help:

    I have a MARKETER_ACCOUNT relationship table and another table of pending relationships called ACCOUNT_ENROLLMENT.

    I have accounts that can register with a MARKETING agent. They enter the table ACCOUNT_ENROLLMENT pending and a certain Effective Date the active go and then move to the MARKETER_ACCOUNT table. If a relationship ends, it can end in any event if registering with another buyer or if no registration pending they are supposed to be going back to the parent company.

    So I want to find all the records that came back to the parent company (that is, they may not have a case pending in the ACCOUNT_ENROLLMENT of the table, but have an end date in the MARKETER_ACCOUNT table):

    Select * MARKETER_ACCOUNT m
    where M.account_no NOT IN (select E.account_no from ACCOUNT_ENROLLMENT E
    where E.effective_date between 8 December 2009 "-January 7, 2010")
    and M.expiration_date between 8 December 2009 "-January 7, 2010;

    This request is still in progress, and I don't know where I am going wrong. I mean GIVE me all the accounts in the table MARKETER_ACCOUNT that have a date of expiry from December 7, 2009 "-January 7, 2010 ' and where these accounts are NOT pending in the ACCOUNT_ENROLLMENT table, where the entry into force is for the same period."

    Any help would be greatly appreciated.

    Sean

    Perhaps you could try the version NOT EXISTS in the query:

    SELECT  *
    FROM    MARKETER_ACCOUNT M
    WHERE   NOT EXISTS
            (
                    SELECT  NULL
                    FROM    ACCOUNT_ENROLLMENT E
                    WHERE   M.ACCOUNT_NO = E.ACCOUNT_NO
                    AND     E.EFFECTIVE_DATE BETWEEN TO_DATE('08-DEC-2009','DD-MON-YYYY') AND TO_DATE('07-JAN-2010','DD-MON-YYYY')
            )
    AND     M.EXPIRATION_DATE BETWEEN TO_DATE('08-DEC-2009','DD-MON-YYYY') AND TO_DATE('07-JAN-2010','DD-MON-YYYY');
    

    If not, check out these discussions:

    {message: id = 1812597}

    {: identifier of the thread = 863295}

  • I have a column with two values, separated by a space, in each line. How to create 2 new columns with the first value in a column, and the second value in another column?

    I have a column with two values, separated by a space, in each line. How do I create 2 new columns with the first value in one column and the second value in another column?

    Add two new columns after than the original with space separated values column.

    Select cell B1 and type (or copy and paste it here) the formula:

    = IF (Len (a1) > 0, LEFT (A1, FIND ("", A1) −1), ' ')

    shortcut for this is:

    B1 = if (Len (a1) > 0, LEFT (A1, FIND ("", A1) −1), ' ')

    C1 = if (Len (a1) > 0, Member SUBSTITUTE (A1, B1 & "", ""), "")

    or

    the formula of the C1 could also be:

    = IF (Len (a1) > 0, RIGHT (A1, LEN (A1) −FIND ("", A1)), "")

    Select cells B1 and C1, copy

    Select cells B1 at the end of the C column, paste

  • Several actions to one button

    Hello. I have a simple page with a button and 3 objects textfield (TEXT1 and TEXT2 Text3). When the page is loaded only the button is displayed. What I do is when I click on the button for the first time, the first textfield (Text1) element should be displayed. When I click on the button for the second time, the second item (TEXT2) text field should be displayed. , When I click on the button for the third time, the third item (TEXT3) text field should be displayed.

    What I've done so far, during the loading of the page I've hidden the elements of three text field. When I click on the button for the first time I've posted the first single text field (Text1). I'm stuck here. When I click on the button for the second time that I want to display the second item (TEXT2) text field with the element of text field 1 which is already displayed. Please guide me the right way. Thank you

    Hello

    There may be more elegant way how (ofc it is - a JS function would handle this), but if you want to stay 'declarative', create appropriate for each of these 3 buttons and DAs.

    1 button click - Hide the other 2 buttons, hide the appropriate text boxes, display button 2, see the 2 text box and so on.

    Kind regards

    Pavel

  • Feature request: option to not have an action button in the dialog box

    As is, the dialog box requires you to have an "OK" button and a "Cancel" button (the name can be changed...) - which will remove the dialog box. Buttons more than that and you must define an incidental view or place in points of view buttons - what is very good, except when a dialog box serves more as a framework, in which case it would be better if only one button dismissed the dialog box (for example "made").

    Rob

    Here's a way without papers to create a dialogue with just one 'fact' button.  Not sure you want to rely on this good:.

    local LrDialogs = import "LrDialogs".
    local LrFunctionContext = import "LrFunctionContext".
    local LrTasks = import "LrTasks".
    local LrView = import "LrView".

    function search local button (x, label, visited)
    If visited == nil then went = {} end

    If type (x) ~ = 'table' or visited [x] then return nil end
    visited [x] = true
       
    If x._WinClassName == 'AgViewWinPushButton' and

    x.title == tag can
    Return x;
    end
           
    for k, v in pairs (x) is
    local result = button Search (v, label, visited)
    If the result then end result
    end
       
    Return to zero
    end
       
    local f = LrView.osFactory)

    local command = {f: column}
    f: static_text {title = "Look Ma! Not OK or cancel. »},
    f: edit_field {value = "fields"},
    {f: push_button {title = "Do It"}}

    LrTasks.startAsyncTask (function)
    While true
    local okButton = button Search (controls, 'OK')
    If okButton then
    okButton.enabled = false
    okButton.visible = false
    return
    end
    LrTasks.sleep (0.1)
    end
    end)

    {LrDialogs.presentModalDialog}
    {title = 'Test', content = speed control, cancelVerb = "Done"}

  • How can I get rid of the second bar blue at the top of my browser window after I open a new window?

    When I open a new window or click a link that opens a new window, the new window has two blue bars along the top of the screen. The top bar is the one that I expect to see with the firefox logo, the name of the Web looking at page and the reduce, enlarge, close buttons. The second bar, below, has a tab orange on the left side who says "Firefox" with an arrow pointing downwards and then on the right side has him minimize, maximize and close buttons. These buttons are the same buttons on the blue bar to the top do. Below the second blue bar is the normal toolbar, but the upstream and downstream buttons do not work. How can I get rid of the second blue bar. He began to appear after the last update I did last week.

    This always happens if you launch Firefox with extensions disabled?

    This page is a report of another user with the same problem, which says that the problem has disappeared after disable the extensions.

Maybe you are looking for