Once completed the presentation of self, the same should start...

I use the following script code automatically drop one to a slide action. Once the show is finished, should be repeated automatically. It should be on all day.

Stop();

import com.greensock;

com.greensock.easing import. *;

TweenLite.to (home, 2, {x: 0, y: 700, delay: 5, ease:Circ.easeOut});})

TweenLite.to (Slide1, 2, {x: 0, y: 0, delay: 6, ease:Circ.easeOut});})

TweenLite.to (Slide1, 2, {x: 0, y: 700, ease:Circ.easeOut, deadline: 10});


TweenLite.to (cliche2, 2, {x: 0, y: 0, delay: 11, ease:Circ.easeOut});})

TweenLite.to (Slide2, 2, {x: 0, y:700, delay: 15, ease:Circ.easeOut}); })

TweenLite.to (Slide3, 2, {x: 0, y: 0, time: 16, ease:Circ.easeOut});})

TweenLite.to (Slide4, 2, {x: 0, y:700, delay: 20, ease:Circ.easeOut});})


Here ends my slide show. Now, I want to repeat the same thing.

I tried the following code, but there are no onstage, he descends immediately, in fact, it should stay for 4 seconds then go down.

How to change it...?

TweenMax.to (home,.5, {x: 0, y: 700, delay: 21, ease:Circ.easeIn, repeat:-1, repeatDelay:25});})

use:

Stop();

import com.greensock;

com.greensock.easing import. *;

var t:Timer = new Timer (4000,1);  Use the duration of your last slide

t.addEventListener (TimerEvent.TIMER, startSlidesF);

startSlidesF();

function startSlidesF(e:TimerEvent=null):void {}

TweenLite.to (home, 2, {x: 0, y: 700, delay: 5, ease:Circ.easeOut});})

TweenLite.to (Slide1, 2, {x: 0, y: 0, delay: 6, ease:Circ.easeOut});})

TweenLite.to (Slide1, 2, {x: 0, y: 700, ease:Circ.easeOut, deadline: 10});

TweenLite.to (cliche2, 2, {x: 0, y: 0, delay: 11, ease:Circ.easeOut});})

TweenLite.to (cliche2, 2, {x: 0, y: 700, delay: 15, ease:Circ.easeOut});})

TweenLite.to (Slide3, 2, {x: 0, y: 0, time: 16, ease:Circ.easeOut});})

TweenLite.to (Slide4, 2, {x: 0, y: 700, delay: 20, onComplete:completeF,ease:Circ.easeOut});})

}

function completeF (): void {}

t.Reset ();

t.Start ();

}

Tags: Adobe Animate

Similar Questions

  • What type of eloqua email send should I use to send an email more than once to the same beneficiary?

    What type of eloqua email send should I use to send an email more than once to the same beneficiary?

    In the canvas on the box email, there is a parameter that must be checked in order to send the same e-mail several times for the same contact. Enable 'Allow emails to be retransmitted to previous winners' and you're ready.

  • Is it possible to find the two sentences into one pdf file? For example, I know the words 'Here' and 'the answer' occur more than once in my document, but only once on the same page. I'm looking for this page.

    Is it possible to find the two sentences into one pdf file? For example, I know the words 'Here' and 'the answer' occur more than once in my document, but only once on the same page. I'm looking for this page.

    I tried to do this by using the search but it will find only them, if they occur as a long chain, that is to say "Here's the answer" rather than how they occur in the document it is to say "Here 's" a bunch of information that leads you to 'the answer'. The search feature so standard did not help.

    Then I tried to do this by using the tool to delete (obviously not the application of writing!) because it allows me to search for multiple words or phrases, however it is not highlight what page both are found. I tried to turn on the preference to enable deletions of comments and even if it meant that I could then go through all the comments, it's still not faster than my document is more than 1,000 pages, which meant there were too many total comments for me to be able to easily identify which page had both.

    Any ideas?

    There is no built-in way to search for two strings and limited to show only the results that appear on the same page.

    It can be done by using a custom script, however.

  • Try to install the items 13 and it requires a serial number. The instructions show the number should start with 1057, but there is no code on the discs, the box or envelopes, only the discs came from 1057. I can't activate the software without this c

    Try to install the items 13 and it requires a serial number. The instructions show the number should start with 1057, but there is no code on the discs, the box or envelopes, only the discs came from 1057. I can't activate the software without this code, and it's a Christmas gift for my wife. Help!

    Thanks a lot... the box inside was stuck and I didn't think it came out. Awesome!

  • Is there a way to customize all folders at once with the same details?

    I have several folders with several subfolders.  The default details that show for items in the files must be changed, but to make each file individually is taxation.

    Is there a way to customize all folders at the same time with the same details?  Thank you.

    Original title: "customize the details of the record.

    H,

    Thanks for the sharing of information, happy in the knowledge that you have addressed the issue. Your efforts to solve this problem is appreciated. Please do not hesitate to answer, in the case where you are facing in the future other problems with Windows.

  • setTextFormat() more than once on the same channel?

    I try in vain to attribute a textFormat to two different parts of the same chain, but the second time, it does not record and remains the default text format. the two styles (regular and "BOLD") of the police are incorporated.

    //Create Text Field
    private function createAboutWindowTextField():TextField
        {
        var aboutWindowFont:Font = new AboutWindowFont();
    
        var regularFormat:TextFormat = new TextFormat();
        var boldFormat:TextFormat = new TextFormat();
    
        regularFormat.size = boldFormat.size = 12;
        regularFormat.font = boldFormat.font = aboutWindowFont.fontName;
        regularFormat.align = boldFormat.align = TextFormatAlign.CENTER;
        boldFormat.bold = true;
    
        var result:TextField = new TextField();
        result.antiAliasType = AntiAliasType.ADVANCED;
        result.autoSize = TextFieldAutoSize.LEFT;
        result.defaultTextFormat = regularFormat;
        result.embedFonts = true;
        result.multiline = true;
        result.selectable = false;
        result.type = TextFieldType.DYNAMIC;
    
        result.text =   "First Header\n" +
                        "Version 1.0\n" +
                        "Copyright © 2011\n\n" +
    
                        "Second Header:\n" +
                        "Other info";                                                       
    
        result.setTextFormat(boldFormat, result.text.indexOf("First Header"), ("First Header").length);
        result.setTextFormat(boldFormat, result.text.indexOf("Second Header:"), ("Second Header:").length);
    
        return result;
        }
    

    the code above should result in the two "first header" and "second header:" become "BOLD", but only "first header" will be put in bold while "second header:" seems to be simply ignored. What is the problem?

    I was told that it would be easier to use the style sheet / HTMLText, but I don't and I don't know if they said it is not possible to apply multiple instances of the same textFormat to a textField without using the HTMLText and style sheet, I'd find ridiculous if true.

    somoene in another thread has answered this question.  the 3rd parameter in my setTextFormat is incorrect.  I was specifying a length not an endIndex.  I'm officially retarded.

  • Listed twice in the Solution Explorer, files exists once in the same folder.

    Running Win 7 with updates April 2010, I found, at any time in recent weeks, that sometimes when I copy and paste files, two lists of object appear identical to one another, when there must be a.  They have the same name, sometimes they are adjacent, other times there is a space between the two, as shown below.  Here, I just saved and renamed one or two items in the list (or combined items have been messed with since I have already saved/renamed them) and they would have been auto-triés, but it's weird that precisely two articles have been doubled, but not more.

    For now, I don't know how reproducible it is, but it took place after that it recharges.

    Hello

    Use a good anti-virus software and scan your computer for Trojans.

    Download the software from this link to remove all the duplicate computer files

    http://www.Moleskinsoft.com/

  • is there a way to code with several people at once on the same page?

    In my class today, we were tasked to build a web page and it works a lot better if we could all work together both on the same pages.

    Your best option is to use a svn like github to create a repository and have contributors to fork your repository (and the code on the same page at the same time). While contributors send shooting you pray that you can use to merge code contributed in your master repo.

  • Possible to insert more than once in the same table using multi table insert?

    I used multi-table insert before insert a source separate from the tables without problem.

    However, when I want to insert into the same table two or more distinct lines, I encountered a problem because when I call nextval on the sequence since this is the same sequence # will try to use the same number for two inserts, which will raise a violation of PK constraint on the 2nd insert.

    A way around this problem?

    Another option is to create the sequence with increases of 2 or however many tables, you are targeting.
    When you then specify the. NEXTVAL, you must subtract the relative number of it, apart from the first table that you insert in to.

    Something like that;

    drop table t1;
    
    create table t1 (a number, b number);
    
    drop table t2;
    
    create table t2 (a number, b number);
    
    drop sequence test_seq
    /
    
    create sequence test_seq increment by 2 minvalue 0
    /
    
    insert all
    when 1 = 1 then
      into t1 (a, b) values (test_seq.nextval, 1)
    when 1 = 1 then
      into t2 (a, b) values (test_seq.nextval  - 1, 1)
    select 1, 1 from dual
    /
    
  • The output of a PXI6602 signal is adjustable to continue once completed the vi?

    I have a PXI6602 that I use to simulate a quadrature encoder signal, but the signal must be present for any longer that the vi is open.

    The signal is possible to continue after the end of the vi while I can interogate the unit of the signal goes in and then stop the signal with an another vi once I finished?

    David.

    Thank you, James.

    to solve the problem, I created a sub vi for the questioning of the unit and put it inside the vi creating the signal so that once the signal is present the unit data are recovered then the DAQmx responsible are arrested and cleared.

    Kind regards

    David.

  • Can afford you an Eloqua contact enter the same campaign more than once at the same time?

    I have a use case where a campaign on the Web has two different webinars to choose. If contact resumes the periods it only will allow them to follow a path. Y at - it a way to allow a contact of the two options, or it will have to be broken out into two individual campaigns in order t work properly? Thanks for any help you can provide.

    Unfortunately there is no work around that would touch even in one campaign several times. Both campaigns is the only option for this case.

  • How to remove data in three tables at once with the same key.

    I am new to Oracle ADF, I have a requirement like these, I have three tables such as employee salaries, teams of all these have a common EmpNo as common attribute, I have the search form these returns all employees related to this search query, when I click on the button Delete the particular employee data should delete all tables of the three based on the EmpNo.



    Any help is appreciated...

    (1) the easiest way is to mark the constraints of foreign key to WAGES employees and TEAMS of EMPLOYEES like ON DELETE CASCADE. The DB server then removes the necessary lines each time you remove a line from the employee.

    (2) another way is to implement a Before delete e-DB trigger on the EMPLOYEES table, where you can remove the related rows in other tables (have in mind that if you have foreign keys you can get an Exception Table mutation, so this approach is perhaps not very good).

    (3) an ADF is to implement a custom EntityImpl class for the Employee entity and substitute the remove() method where you can find the related entities of TeamMember and salary (via EntityAssoc accessors) and call remove() methods too.

    (4) another way of the ADF is to implement a custom EntityImpl class for the Employee entity and override the doDML() method where you can remove the lines needed in SALARIES and TEAMS through JDBC calls tables whenever a DELETE operation is performed on the Employee of the underlying entity.

    Dimitar

  • at the same time start the VI

    Hello

    I created two different VI to my experience, one is for the control of power supply (Kepco.vi) and the other is for taking the measure of it (Kepco.measurement.vi). Due to problems concerning the supply buffer, I need to do so that when I run the Kepco.vi, the Kepcomeasurement.vi would also begin all law 5-10ms after that. If someone could help I would be very happy.

    Thank you

    Max

    I have all the workers. Thank you very much everyone for all aid.

    Max

  • D7260: two problems at the same time - started paper jams and ink intermittent problems

    First of all, let me say that the printer is out of warranty.

    Paper jams – there is nothing inside the printer. Looking at the back of the printer there is a point inches long finger inside the printer (far left) plastic just above the document that grabs the paper and photo paper.  Each paper and photo paper that goes through the printer grabs on this extension and ends with a truncated top left corner after printing.

    Intermittent problem of ink - sometimes magenta will not print, sometimes black doesn't print, sometimes, they all will be printed.

    I am ready to throw this printer out, but before I I want to take it apart.  I want to take the cover off, but there seems to be no easy way to do it.  Can someone tell me how to remove the cover?  There seems to be two screws at the back of the printer that needs a tool small, hexagonal, but there also seem to be some pins plastic all around the bottom which can have simultaneous "pressing" need to release the tabs.

    Any ideas? Don't forget, I am ready to throw this clipboard outside, but I don't want to take a "sledgehammer" to take it apart.

    It did not work.  Paper/transport jams now.  Magenta ink still does not print. This printer is worthless.  I get an Epson printer for photos. This printer D7260's official "junk" now and will be thrown...

  • HP dv5 1002nr: mobile caps and the number key at the same time blink once

    I was doing some updates on the computer when the power of the battery is dead and when the power cord I had a black screen and the caps and digital key will appear to blink once at the same time. I upgraded the operating system about 1 months ago for Windows 7 and it works fine until the updates have started to update.

    Hey there @Masen2016!

    Thanks for the reply as on caps and numlock lights blink once each time.

    This indicates that it could be a problem with the processor,

    And you cannot pass a processor on a laptop as the system in the BIOS configuration is written in.

    If you upgrade a laptop part would be a malfunction.

    So, you can contact HP and get the machine.

    Link to contact HP: http://hp.care/2bkTGBQ

    Have a great day!

Maybe you are looking for

  • Using Xp SP3 update does not connect to the server

    Update using Xp SP3.  Normally connect every month and update.  For the first time, try to connect to a failed update patch - the returned message is failure - the server page that is in the page does not.  Try again immediately and on several days g

  • Cannot install the driver for Pavilion-dv6-Wireless-Network-Adapter-Drivers

    So I just install a new copy of Win7 Ultimate 64-bit version and I'm having the hardest time for an installation driver for the wireless network card. I was download the map and try to install at least 5/6 times but it will not yet appear in my devic

  • Internet connection WRT610N problem

    Hello I just installed my new router WRT610N followed the installation step by step very basic (without Lela). My PC and my Wii see the router, but I can't access the internet. I power cycle the router and redo the configuration but nothing happened

  • toolbar is missing after dell fixed my computer

    Windows Vista OS, Dell 1737 laptop.  When I got this laptop, he had a multimedia tools/live/drive bar of WIndows in the upper part of the screen.  The laptop has to go to Dell for repair of equipment and now no toolbar.  Anyone know how I can restore

  • Win 7 Home 32 to 64

    Win 7 Home 32 installed.  Is not serious if I try to install Win 7, 8 or 10 64 (own or other) I get "" your version is not compatible with the version.. "."  My machine tells me it's 64 capable, but. .?