Playing several clips video one after the other on the main timeline

Excuse the probably simple question but I'm just starting with Flash.

I imported a few trailers directly in flash and saved as video clips.

I want to be able to insert these clips on the main timeline and play one after the other, by repeating once they all played.

In the main timeline, I put one layer for each clip and a keyframe where the clip is inserted for each layer.

When I go to play the flash file, is to show the first frame of each movie file and before the first frame of the next movie file.

What should I do to make the entire movie file flash game in this specific context before moving on to the next section where is the following file in the sequence, then to play all this film?

Sorry for what is probably a simple thing to ask.

Thank you

Create a new layer actions on the timeline stop() and the main square. commands on this layer in each frame where resides a movieclip.

In each clip, at the end (last image) you mean the main timeline to play(); While it moves to the next section (where it stops because of the stop() commands you add).

If at the end of each movieclip you put either:

AS2: _parent.nextFrame ();

for AS3: MovieClip (parent) .nextFrame ();

For the last movieclip in programming, you will replace nextFrame() by gotoAndStop (1);

Tags: Adobe Animate

Similar Questions

  • Control the main timeline and chronology of built-in movie clip

    Good afternoon folks,

    I am trying to solve this problem.  I have a main scenario with an animation. (animation is not a clip).  I also have a clip film embedded in the main timeline. I want to control the actions of the main timeline AND the embedded animation at the same time.

    For example, when a user clicks on a button "pause", I want to stop the animation of the main timeline as well as the integrated clip. I figured out how to stop the main timeline using the stop(); command.  I also understood how to stop the film incorporated using the command _root.embeddedclipinstancename.stop ();  Problem is that I don't know the commands to stop the two things at the same time.

    I tried to find that an instance name for the main timeline, but there is no (I think). I know I could do the animation in the timeline in a clip, but I don't want to go that route.  Any ideas on how to control two things?
    Also, if possible, I would prefer not to use the _root command since I know that this can cause a conflict in Captivate.

    Thank you.

    Include the two commands that worked in your pause button code.  If your [ause button is on the main timeline, you don't need to use a reference of _root.  It is only really useful if you target some of child level object distance back to the main timeline.  You can _parent (and string them if necessary) instead of using _root.  As you will get in trouble unless you're on the _root timeline when using it.

  • Play videos local one after the other

    Hi - I'm going to put in place 10 videos locally in Dreamweaver to play one after the other.  By local authorities, I say everything is on one computer and you just open the page HTML in Chrome and it works.  When the HTML opens in Chrome, I got the first video auto play and loops too.  But after the end of the #1 video, I have need for 2nd video to start, then third, and so on until the 10th is complete, then it goes back to #1 again.

    Is the code that I have on the local HTML page and it works for a video is:

    < video width = "720" height = "406" AutoPlay controls loop >

    < src = "source 1E.mp4" type = "video/mp4" > "

    < object data = "1E.mp4" width = "720" height = "406" > "

    < / object >

    < / video >

    .. .but I just can't figure out how to get the other 9 videos in there, so they play behind #1 loop and then back to #1 again.

    Does anyone have an idea how to do this?  Thank you.

    Video HTML5 can only play a single video.  It does not fit your goals.  That's why I suggested using your laptop Media Player by default since this will be the software that plays files.  If you do not have Windows Media Player to work, try something else like Media Player Classic (it's free, I use it all the time).

    Media Player Classic - Home Cinema Tutorial #3 - How to manage your playlists

    Nancy O.

  • Why is my media player of securities randomly suddenly played on every album & not as shown, one after the other?

    All of a sudden my Windows Media Player (11) started playing the songs on each album random & not one after the other in chronological order, any ideas anyone please?

    Hello

    To better understand the issue, please let me know if you have made recent changes made on the computer before this problem?

    This problem may occur if the Windows Media Player settings are incorrect.

    Method 1:
    Let's first run the fixit and check if it helps.

    Solve the problems of Windows Media Player video and other media or library
    http://support.Microsoft.com/mats/windows_media_player_diagnostic

    Method 2:
    If the problem persists, I suggest you organize your digital media collection
    and check if it helps.

    Organize and search your digital media collection
    http://Windows.Microsoft.com/en-us/Windows-XP/help/Windows-Media-Player/11/library

    Check out the link for more information.

    Create and use your own customized reading lists
    http://Windows.Microsoft.com/en-us/Windows-XP/help/Windows-Media-Player/11/playlists

    Hope this information helps. Answer the post with an up-to-date issue report to help you further.

  • How to play audio files, one after the other?

    Hi, I try to create an application that tries to read audio files a few one after the other. I've created a loop for playing audio files. But only the first track is played and the second song is playing only about 5 seconds while the rest do not get played at all and the two files that have played, pieces overlap, which is not supposed to be. Can you guys help me? I need urgent assistance that I need to finish it tonight.

    Here are my codes I created for the application:

    package mypackage;
    
    import javax.microedition.media.Manager;
    import javax.microedition.media.MediaException;
    import javax.microedition.media.Player;
    import java.lang.Class;
    import javax.microedition.rms.RecordStore;
    import java.io.InputStream;
    import java.io.ByteArrayInputStream;
    import net.rim.device.api.media.protocol.ByteArrayInputStreamDataSource;
    import net.rim.device.api.system.*;
    import net.rim.device.api.ui.*;
    import net.rim.device.api.ui.component.*;
    import net.rim.device.api.ui.container.MainScreen;
    import net.rim.device.api.ui.extension.container.*;
    import net.rim.device.api.ui.UiApplication;
    import java.io.IOException;
    
    public class PlayMedia extends UiApplication{
        /**
         * Entry point for application
         * @param args Command line arguments (not used)
         */
        public static void main(String[] args){
    
            PlayMedia theApp = new PlayMedia();
            theApp.enterEventDispatcher();
        }
    
        public PlayMedia()
        {
    
            pushScreen(new PlayMediaScreen());
    
        }
        /**
         * A class extending the MainScreen class, which provides default standard
         * behavior for BlackBerry GUI applications.
         */
        final class PlayMediaScreen extends MainScreen
        {
            /**
             * Creates a new PlayMediaScreen object
             */
            public Player p = null;
            PlayMediaScreen()
            {
                String test3 = "Test(2seconds).mp3";
                String test5 = "Test(2seconds)2.mp3";
                //String test6 = "Test(2seconds)3.mp3";
                String test4 = "Test(2seconds)4.mp3";
                String test1 = "blind_willie.mp3";
                String test2 = "blind_willie.mp3";
                String mp3 = null;
    
                for(int i=0;i<5;i++){
                    if(i == 0){
                        mp3 = test1;
                    }
                    else if(i == 1){
                        mp3 = test2;
                    }
                    else if(i == 2){
                        mp3 = test3;
                    }
                    else if(i == 3){
                        mp3 = test4;
                    }
                    else if(i == 4){
                        mp3 = test5;
                    }
                    //testing
                    System.out.println("Song is "+ mp3 + "???????????????????????????????????????");
    
                    play(mp3);
    
                    System.out.println("Song is "+ mp3 + "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
                }
            }
    
            private void play(String mp3){
    
            InputStream stream = (InputStream)this.getClass().getResourceAsStream("/" + mp3);
    
                try {
                    //p = Manager.createPlayer(source);
                    p = Manager.createPlayer(stream, "audio/mpeg");
                    p.realize();
                    p.prefetch();
    
                    //testing
                    System.out.println("Creating Players!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
                    System.out.println("The mp3 is " + mp3 + "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
    
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
    
                    //testing
                    System.out.println("IO Exeception!!!!!!!!!!!!!!!!1 " + e);
    
                    //testing
                    System.out.println(p);
    
                } catch (MediaException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
    
                //testing
                System.out.println("Media Exeception!!!!!!!!!!!!!!!!1" + e);
    
                //testing
                System.out.println(p);
                }
                /*
                 * Best practice is to invoke realize(), then prefetch(), then start().
                 * Following this sequence reduces delays in starting media playback.
                 *
                 * Invoking start() as shown below will cause start() to invoke  prefetch(0),
                 * which invokes realize() before media playback is started.
                 */
                try {
                    p.start();
                } catch (MediaException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
    
                    //testing
                    System.out.println("Media Exeception for starting!!!!!!!!!!!!!!!!1" + e);
    
                    //testing
                    System.out.println(p);
                }
                /*
                try {
                    p.stop();
                } catch (MediaException e) {
                // TODO Auto-generated catch block
                    e.printStackTrace();
                }
                p.deallocate();
                p.close();
                */
    
            }
        }
    }
    

    Please help me! Thanks in advance!

    What you will do, is add the PlayerListener and / if you have in your loop code would go in the treatment of the END_OF_MEDIA event. Once that noise has stopped you will start the next sound and add the listener of player.

    //Declarations
    PlayerListener pListen;
    String mp3 = "";
    
    ..........
    ..........
    
    pListen = new PlayerListener(){
       public void playerUpdate(Player player, String event, Object eventData) {
          if (event.equals(PlayerListener.END_OF_MEDIA)) {
             if( mp3.equals(test1) ) mp3 = test;
             else if( mp3.equals(test2) ) mp3 = test3;
             else if( mp3.equals(test3) ) mp3 = test4;
             .........
    
             InputStream stream = (InputStream)this.getClass().getResourceAsStream("/" + mp3);
             p = Manager.createPlayer(stream, "audio/mpeg");
             p.realize();
             p.prefetch();
             p.addPlayerListener(pListen);
             p.start();
          }
       }
    }
    
    InputStream stream = (InputStream)this.getClass().getResourceAsStream("/" + mp3);
    p = Manager.createPlayer(stream, "audio/mpeg");
    p.realize();
    p.prefetch();
    p.addPlayerListener(pListen);
    p.start();
    

    So, add the try-catch blocks.

  • Can the Sandisk Sansa Fuze 4 GB MP3 read podcasts one after the other

    For health reasons, I need to take a long walk after each meal.  For many years during my walks that I listened to podcasts on my wonderful old Sandisk sansa, who plays a podcast after the other without action from me until I have stop.  It's perfect here in the North when I walk in 30 below zero weather. I mean that I don't want to open my parka and out the player to move to the next podcast.  If I had to do, they would find me lying in the snow, Frost, like all the rest of those poor Devils who bought the wrong MP3 player.  Anyway, after years of using the plug-in on my old Sansa fuze is pretty much exhausted and the player must be replaced.  I buy a sansa clip, but had to return when I discovered that he has not played podcasts one after the other, automatically. (And it's also too small for my needs).  Before you buy a new 4 GB sansa fuse, so I need to know if this greatest player will play my podcasts consecutively and one after the other.  Your advice would be much appreciated.

    MrHat wrote:

    I currently use the Sansa e250 2 GB MP3 Fuze player Walkman.

    There is an e250 (2 GB) and a rocket. They are 2 totally different players. The "rocket" (original) replaced the e200 series model.

    But if your podcasts are placed in the Podcast folder (or even record Audio books) and then ranked in the same "Album" folder, they must play consecutively without stopping, regardless of the model of reader.

  • In the library panel, pictures of miniatures become black one after the other

    Hello

    Last month, in the library panel, pictures of miniatures become black one after the other, and then they all black!

    I don't know how to recover the thumbnails.

    And in the develop module, the photo is very dark, until I click on your car.

    Thanks for helping me Olivier.

    Version of Lightroom: 6.2.1 [1046594]

    License: Permanent

    Operating system: Windows 10

    Version: 10.0

    Application architecture: x 64

    The system architecture: x 64

    Number of logical CPUs: 4

    Processor speed: 2.9 Ghz

    Built-in memory: 6143,1 MB

    Memory real available pour Lightroom: 6143,1 MB

    Real memory used by Lightroom: 900,6 MB (14.6%)

    Virtual memory used by Lightroom: 1032,1 MB

    Size of the memory cache: 399.2 MB

    Maximum number of links used by Camera Raw: 4

    SIMD optimization of Camera Raw: SSE2

    The system DPI setting: 96 DPI

    Composition on the Desktop enabled: Yes

    Views: 1) 1920 x 1080, 2) 1280 x 1024

    Input types: multipoint touch: no, touch integrated: no, built-in pen: no, touch external: no, External plume: no, keyboard: no

    Parents to the graphic processor information:

    AMD Radeon HD 5800 series

    Check the supported OpenGL: past

    Vendor: ATI Technologies Inc.

    Version: 3.3.13399 context 15.201.1151.0 the base profile

    Renderer: AMD Radeon HD 5800 series

    LanguageVersion: 4.40

    The application folder: C:\Program Files\Adobe\Adobe Lightroom

    Access to the library path: D:\Photos\_LightRoom\Lightroom\Lightroom Catalog.lrcat

    Settings file: C:\Users\Olivier\AppData\Roaming\Adobe\Lightroom

    Installed modules:

    (1) Facebook

    (2) Flickr

    (3) external module connected mode Canon shooting

    (4) external module connected mode Leica shooting

    (5) external module of shooting in connected mode Nikon

    Markers Config.lua: no

    Adapter n ° 1: supplier: 1002

    Device: 689e

    Subsystem: e177174b

    Revision: 0

    Video memory: 1012

    Adapter n ° 2: provider: 1414

    Device: 8 c

    Subsystem: 0

    Revision: 0

    Video memory: 0

    AudioDeviceIOBlockSize: 1024

    AudioDeviceName: Speakers (High Definition Audio device)

    AudioDeviceNumberOfChannels: 2

    AudioDeviceSampleRate: 44100

    Build: LR5x102

    Direct2DEnabled: false

    GPUDevice: not available

    OGLEnabled: true

    HiLolivGr1

    Please refer to this thread images regarding the black squares

    Concerning

    Assani

  • can perform us two actions with a single button in two clicks, one after the other?

    Mr President.

    can perform us two actions with a single button in two clicks, one after the other?

    I want that when I click on the button Add once it add data to the database and when I click again on this button it clears the form data to the empty fields.

    Concerning

    Tanvir

    In the code, it should be easy.

    The following code adds that a button called butman with text 'ADD '.
    It then registers a listener that will be called if the user clicks the button.

    This listener then calls the runAddData method if you clicked butman while it contained the text of "ADD" and it calls the runClearData method otherwise.
    That's why he will swap the functionality of the button between ADD and CLEAR on each click.

    final Button butman = new Button("ADD");
    butman.setOnAction(new EventHandler() {
              @Override
              public void handle(ActionEvent t) {
                        if (butman.getText().equals("ADD")) {
                                  butman.setText("CLEAR");
                                  runAddData();
                        } else {
                                  butman.setText("ADD");
                                  runClearData();
                        } // END IF-THEN
              }});
    

    I hope that's what you wanted.

    Further reflection.
    You might want to run the ADD and CLEAR methods in their own son so that it can run in the background without slowing down your user interface.

    I also reuse rather a single button for several features instead of to apply with hundreds of nodes used only rarely with masses of code to show and hide as needed.

  • IDCS6 MACOSX JS: data merge multiple txt files one after the other

    Hello everyone.

    I have a situation where I have to data merge multiple text files to a single file indesign real "base". Databases formats are the same, the point of difference is a code in the second field of the database that refers to a postal box (not a zip/postal code, a code of 'distribution center' that has possibilities of 56 or greater). I would prefer data merge a file and then somehow split the PDF via Acrobat, but the length of postal areas resulting is incompatible and something that cannot be done if the document "split" feature in acrobat.

    The database starts as one massive file but using a one line code, can be divided into postal areas in separate text files.

    My last question: is it possible data merge several files at the same time (for example one after the other) and to give them their names based on the names of the input text file?

    OLE Kvern had a script to merge the data to a file without the user interface. I changed the last line slightly so that it generates a PDF file based on [high quality]:

    if(app.documents.length != 0){
            var myDocument = app.activeDocument;
            app.dataMergeOptions.removeBlankLines = true;
            //Select a source file.
            var myDataFile = File.openDialog("Select a data file")
            var exported = "file location(redacted for the sake of this post)"
            if(myDataFile != ""){
                    myDocument.dataMergeProperties.selectDataSource(myDataFile,);
                    myDocument.dataMergeProperties.exportFile(exported,"[High Quality Print]",);
            }
    
    }
    

    I guess that the answer has to do with the variable "myDataFile" and rather than just being open a dialog box, it could be somehow by selecting a table of text files, but it is where I am out of my depth.

    Ideas or thoughts which may not involve trying to do both the many mergers, but can somehow revolve around a great fusion of PDF?

    Thank you very much

    Colin

    Since writing my last response, I realized there was a better answer. It is a scenario of Peter Kahrel and a modified version of a script by Olav Kvern. Details can be found here: batch of merge data | Adobe Community

    I have since made other mods to the script is easier to understand:

    if(app.documents.length != 0){
    // make sure to use the document that is open
            var myDoc = app.activeDocument;
    // get the name of the document that is open for future naming purposes
            var myName = myDoc.name
    // get the location of the folder that contains both the indesign files and the text files
            var myLocation = "FULL PATH LOCATION OF FOLDER CONTAINING TEXT FILE AND DESTINATION FOR FINAL PDFS"
    // define the names of the data files to use based upon the names of the indesign files
            var myImport = myLocation + myName + ".txt"
    // define the names of the data merged PDFs to be created
            var myExport = myLocation + myName + ".pdf"
    // the actual engine for the merge, including DM instructions such as remove blank lines, object fitting etc.
            var myDataFile = myImport
            app.dataMergeOptions.removeBlankLines = true;
            if(myDataFile != ""){
                    myDoc.dataMergeProperties.selectDataSource(myDataFile,);
                    myDoc.dataMergeProperties.exportFile(myExport, "[PDF/X-1a:2001]", );
            }
    
    }
    

    If this script will automatically merge a file which is open as LONG as the data file is the same name as the indesign file with .txt at the end for example

    Woodward.indd (indesign file)

    Woodward.indd.txt (used for merging text file)

    This script does still not the original memory and who was using an indesign document, to browse for many text files and merging of PDF based on text files.

    HOWEVER, I am sure that the answer to that is based only on the use of the script above (no need to Peter batch convert script) and changing the line 9 to be a loop for... but again, this is where I come to a grinding halt. Any help would be appreciated.

    Colin

  • for each page, I'm going to (including this one) something keeps vomit "Secure connection failed" notice, like 50, one after the other - how to make them stop?

    When I open a web page, and sometimes between the two, something launches a 'warning' that the "secure connection failed". I've added nothing to Firefox, but I stopped most of the security plug-ins or extension nothing helps. It wouldn't be too bad if it happened a page once or twice but I'm talking 10,15,20 one after the other.

    Try this solution:

    https://support.Mozilla.com/en-us/KB/troubleshooting%20extensions%20and%20themes

  • Help, please... I need to know how to crop my video segments?  I also need to know how to make several clips to run at the same time by dividing the screens?  How to fade a clip?

    Help, please... I need to know how to crop my video segments?  I also need to know how to make several clips to run at the same time by dividing the screens?  How to fade a clip?

    I watched the video tutorials.  I need to know also how to add additional video tracks to my screen.  Any help please?

  • one after the other

    Hello
    SQL> with my_table as
      2             (
      3            select 'M082012' pera, to_number(10584338) snr, to_number(10) pnr, 'Beule' name, 'Anna' f_name from dual union all
      4            select 'M092012' pera, to_number(15965177) snr, to_number(15) pnr, 'Tester' name, 'Toni' f_name from dual union all
      5            select 'M082012' pera, to_number(14254501) snr, to_number(20) pnr, 'Wallen' name, 'Monika' f_name from dual union all
      6            select 'M012013' pera, to_number(14254505) snr, to_number(15) pnr, 'Wallen' name, 'Monika' f_name from dual union all 
      7            select 'M012013' pera, to_number(14254506) snr, to_number(15) pnr, 'Wallen' name, 'Monika' f_name from dual union all 
      8            select 'M082012' pera, to_number(10584339) snr, to_number(10) pnr, 'Beule' name, 'Anna' f_name from dual union all
      9            select 'M092012' pera, to_number(15965178) snr, to_number(10) pnr, 'Beule' name, 'Anna' f_name from dual union all
     10            select 'M012013' pera, to_number(10674833) snr, to_number(15) pnr, 'Tester' name, 'Toni' f_name from dual union all
     11            select 'M012013' pera, to_number(10674834) snr, to_number(15) pnr, 'Tester' name, 'Toni' f_name from dual union all
     12            select 'M082012' pera, to_number(10674835) snr, to_number(15) pnr, 'Tester' name, 'Toni' f_name from dual union all
     13           select 'M012013' pera, to_number(10539210) snr, to_number(30) pnr, 'Klose' name, 'Werner' f_name from dual union all
     14           select 'M012013' pera, to_number(12345678) snr, to_number(50) pnr, 'Meier' name, 'Otto' f_name from dual union all
     15           select 'M012013' pera, to_number(22345789) snr, to_number(50) pnr, 'Meier' name, 'Otto' f_name from dual union all
     16           select 'M082012' pera, to_number(10584346) snr, to_number(77) pnr, 'Carl' name, 'Frank' f_name from dual union all
     17           select 'M062012' pera, to_number(10550971) snr, to_number(77) pnr, 'Carl' name, 'Frank' f_name from dual union all
     18           select 'M092012' pera, to_number(15965185) snr, to_number(77) pnr, 'Carl' name, 'Frank' f_name from dual union all
     19           select 'M082012' pera, to_number(10584352) snr, to_number(50) pnr, 'Meier' name, 'Otto' f_name from dual union all
     20           select 'M092012' pera, to_number(15965191) snr, to_number(80) pnr, 'Duster' name, 'Hucke' f_name from dual)
     21       select case when pera = 'M012013' and rn3 = 1 then '*' end mark,
     22              pera,
     23              snr,
     24              pnr,
     25              name,
     26              f_name,
     27              case when pera = 'M012013' and rn3 = 1 then snr end mark_snr
     28         from (select pera, snr, pnr, name, f_name,
     29                      row_number() over (partition by pera, pnr, snr, name, f_name order by pnr, name) rn,
     30                      row_number() over (partition by pera, name, f_name order by pnr) rn3
     31                 from (select pera, snr, pnr, name, f_name,
     32                              max(case when pera = 'M012013' then 'Y' end)
     33                              over(partition by upper(name||f_name)) m_flag,
     34                              count(*) over(partition by upper(name||f_name)) cnt
     35                         from my_table)
     36                        where m_flag = 'Y'
     37                          and cnt > 1
     38                order by 4,5,6, to_number(substr(pera,4,4)||substr(pera,2,2)) desc)
     39       order by 4,5,6, to_number(substr(pera,4,4)||substr(pera,2,2)) desc,3
     40  /
    
    M PERA           SNR        PNR NAME   F_NAME   MARK_SNR
    - ------- ---------- ---------- ------ ------ ----------
    * M012013   10674833         15 Tester Toni     10674833
      M012013   10674834         15 Tester Toni
      M092012   15965177         15 Tester Toni
      M082012   10674835         15 Tester Toni
    * M012013   14254505         15 Wallen Monika   14254505
      M012013   14254506         15 Wallen Monika
      M082012   14254501         20 Wallen Monika
    * M012013   12345678         50 Meier  Otto     12345678
      M012013   22345789         50 Meier  Otto
      M082012   10584352         50 Meier  Otto
    
    10 Zeilen ausgewählt.
    
    SQL> 
    SQL> 
    I would get the SNR column values one after the other in the MARK_SNR column.

    It is possible to get the following with a SQL result?
    M PERA           SNR        PNR NAME   F_NAME   MARK_SNR
    - ------- ---------- ---------- ------ ------ ----------
    * M012013   10674833         15 Tester Toni     10674833, 10674834, 15965177, 10674835
    * M012013   14254505         15 Wallen Monika   14254505, 14254506, 14254501
    * M012013   12345678         50 Meier  Otto     12345678, 22345789, 10584352

    A very small thing noted Jeenesh :), no doubt your code works, but just to make sure we show you the good state of MARK_SNR:
    Just mirror your code with a subtle change.

        SELECT MIN (pera) KEEP (DENSE_RANK FIRST ORDER BY pnr) pera,
               MIN (snr) KEEP (DENSE_RANK FIRST ORDER BY pnr) snr,
               MIN (pnr) pnr,
               name,
               f_name,
               LTRIM (MAX (SYS_CONNECT_BY_PATH (snr, ',')), ',') mark_snr
          FROM (SELECT PERA,
                       SNR,
                       PNR,
                       NAME,
                       F_NAME,
                       ROW_NUMBER ()
                          OVER (PARTITION BY name, f_name ORDER BY pnr, snr)  --- added snr as well in order by
                          rn
                  FROM my_table)
    START WITH rn = 1
    CONNECT BY PRIOR name = name AND PRIOR f_name = f_name AND PRIOR rn = rn - 1
      GROUP BY name, f_name
        HAVING COUNT (*) > 1
               AND MAX (CASE WHEN pera = 'M012013' THEN 'Y' END) = 'Y'
      ORDER BY 1, 3;
    

    OUTPUT:

    PERA     SNR     PNR     NAME     F_NAME     MARK_SNR
    -----------------------------------------------------------------------------------------------------------
    M012013     10674833     15     Tester     Toni     10674833,10674834,10674835,15965177
    M012013     14254505     15     Wallen     Monika     14254505,14254506,14254501
    M012013     10584352     50     Meier     Otto     10584352,12345678,22345789
    

    See you soon,.
    Manik.

  • 2: Sequentially all an elements of array, display one after the other

    Hello!

    This is a new start for another thread (http://forums.adobe.com/message/4897959#4897959).

    (ActionScript 2 ONLY)

    My site is a SWF that loads on the user requests data from a database of MySQL via PHP.

    I have no problem to control the whole communication process.

    On the homepage, as well as new which are already presented in the main part of the right side of the page, I want to display on the left side a few reminders of the essential services and also registered users of mandatory measures must do when visiting the site.

    DB returns: an array with one. separator and the total of the items in the array.

    In Flash, I use the following function to get the picture:

    remindersFct = function () {}

    var myReminders = new LoadVars();

    myReminders.identity = "reminders";

    myReminders.onLoad = {function (ok)}

    If {(ok)

    _root.reminderFld.html = true;

    var myArray:Array = new Array (myReminders.mydata.split("|"));

    myArray.length = myReminders.totalItems;

    }

    else {}

    Stop();

    }

    };

    myReminders.sendAndLoad ("misc.php", myReminders, 'POST');

    };

    remindersFct (); start the process

    I want to know different things...:

    1 - How can I 'explode' this table in its different elements (all are text strings)

    2. so, how can I know the SWF to view them, one after the other, in the field appropriate htmlText

    3. How can I adjust the length of each of these items, based on the length of the text they contain

    Thank you very much in advance for your help!

    Just another thing.  Given that you call the setTimeout for both halves of the conditional, it means that you don't need in the conditional and can move around outside, and you don't need in the first half of the conditional either...

    counter ++;

    Sto var = setTimeout (displaytext, delay);

    If (counter == theText.length) {}

    counter = 0;

    }

  • Invisible &amp; quot; Clips video &amp; quot; to the Director

    I've been hitting my head against the wall trying to figure out how I would do the equivalent to the Director:
    In Flash, I have a movie with 2 clips of film. 1 clamp is a book of questions and depending on how you answer an animation runs in the other clip. For the end user, it looks like a single screen on the same background.

    The Director how to create a separate calendar (clickable / q) who perform an another chronology (animations of answer)? If I use MIAW, they have a boarder of the window. I would really like it if these 2 friezes were running on a basic scenario where other things doing their thing when the quiz is over. It would be the background with all the other buttons/links.


    Possible, impossible, stick to Flash? Help!

    If you have q then password answer one after the other, then you
    could easily use sequential images. You can still use single sprite
    channels for each item.

    If you want to do the loop thing, then you can just put a simple if...
    then... condition in the last picture:

    on exitFrame me
    If T1 = true then
    Repeat with n = 1 to 15
    Sprite (n) .visible = false
    end repeat
    Repeat with n = 16 to 31
    Sprite (n) .visible = true
    end repeat
    end if
    end

    You will also need to start the first image in this article by
    turning and on the correct sprite channels. Don't forget that when you
    Clear the visible property of a sprite channel, it remains off, be it
    There is something in this channel or not.

    --
    Rob
    _______
    Rob Dillon
    Adobe Community Expert
    http://www.DDG-designs.com
    412-243-9119.

    http://www.Macromedia.com/software/trial/

  • How can I delete several clips at once from the timeline

    How can I delete several clips at once from the timeline?

    Thanks, Dan

    Shift-click or command-click to select if they are contiguous. Then press the delete key.

    Or select them and use the keyboard shortcut command + X.

    Or select them in the Index of the Timeline and use the key DELETE or command + X.

    Russ

Maybe you are looking for

  • Presario cq50: won't find updates

    I just installed windows 7 32 bit with service pack 1 on my presario cq50.  I was running windows update for 2 hours and it will not always find updates.  Y at - it an update that I need to download to fix this or what. Thanks for the help I get.

  • Series 2000 dv4: thinking that there is a video card problem

    the laptop I have is a series of 2000 dv4 VM301UA I noticed that when I'm on facebook, or something in which the video card must be used, my laptop start to overheat! in which it will overheat until the fans are strong running and finally cut! is the

  • BlackBerry 10 password keeper

    I was wondering if the BB 10 had a password keeper. I have used every day on my "BOLD", but now I can not find on the 10. Any help would be appreciated.

  • Lightroom for mobile sync shows do not all files

    Hi all:I use mobile sync between my iPad and iMac. When I open Lightroom on laptop brand new and connect to my Adobe account, I do not see a synchronized catalog. There is just an empty catalog. My iMac and my iPad see content synchronized and seem t

  • Elements14 Prime Minister

    can I put this product on my desktop and laptop?