Free container and then use it again.

Dear SAP friends!
I am working on Table Maintenance Program.
When the program starts - the user see a window with a toolbar on the top. The rest of the window is blank.
The toolbar on the top  has 2 buttons named "Maintain Table Z1" and "Maintain table Z2".
When User clicks button "Maintain Table Z1" - then the middle part of the window becomes an ALV grid populated with table Z1.
When User clicks button "Maintain Table Z2" - then the middle part of the window becomes an ALV grid populated with table Z2.
The bottom part of the window has another toolbar containing buttons "ok", "Edit", Save" and "cancel". The purpose of this buttons is to allow display or edit of the table.
In the program the top, middle and bottom areas are container objects "container_top", "container_middle", "container_bottom".
The containers are created using splitters.
So what I do in the program:
1. on click button "Maintain Table Z1" I create alv grid object "grid_z1" in  "container_middle".
  CREATE OBJECT grid_z1
    EXPORTING
      i_parent = container_middle.
2. on click "ok" button I free  "container_middle" so the middle part of the screen will be blank again:
CALL METHOD container_middle->free.
3. on click button "Maintain Table Z2" I create alv grid object "grid_z2" in  the same "container_middle" after the container was freed. I assume that when you free a container - then container becomes empty and you can place into this container another object.
4. on click "ok" button I free  "container_middle" again so the middle part of the screen will become blank again.
So the User ( me actually at this point) does 1, 2, 3, 4 - and the program dumps.
So the 1st free in step 2 is ok. But the 2nd free in step 4  - is not OK.
Method "Free" raise cntl_error:
METHOD FREE.
  DATA L_CHILD TYPE REF TO CL_GUI_CONTROL.
  LOOP AT CHILDREN INTO L_CHILD.
    CALL METHOD L_CHILD->FREE
         exceptions others = 1.
  ENDLOOP.
  CLEAR CHILDREN.
  CALL METHOD SUPER->FREE
       exceptions cntl_error        = 1
                  cntl_system_error = 2
                  others            = 3.
  case sy-subrc.
    when 0.
    when 1.
>>>>>      raise cntl_error.
    when others.
      raise cntl_system_error.
  endcase.
ENDMETHOD.
Please help me to understand what is going on...
Thank you,
Tatyana

Hi,
I tried to repaint ur scenario: I got one screen containing 2 buttons and 1 custom  container: the first one showing Sales data and Delivery data respectively in the Same container. Here is what i wrote..
*& Report  ZTEST_PRG1
REPORT  anirban.
TABLES: vbak, likp.
TYPES: BEGIN OF types_vbak ,
       vbeln TYPE vbeln,
       vkorg TYPE vkorg,
       netwr TYPE netwr,
       END OF types_vbak,
       BEGIN OF types_likp ,
       vbeln TYPE vbeln_vl,
       vstel TYPE vstel,
       vkorg TYPE vkorg,
       netwr TYPE netwr,
       END OF types_likp.
DATA: w_cntx_menu TYPE REF TO cl_rsdme_ui_context_menu_gen,
      t_vbak      TYPE STANDARD TABLE OF types_vbak,
      t_likp      TYPE STANDARD TABLE OF types_likp,
      w_sale      TYPE char01.
CONSTANTS: c_check TYPE c VALUE 'X'.
** ALV relavent Data
DATA: w_grid TYPE REF TO cl_gui_alv_grid,
      wl_ref_container TYPE REF TO cl_gui_custom_container,
      w_container      TYPE scrfname   VALUE 'C_CONTAINER',
      t_fcat TYPE lvc_t_fcat,
      t_sort TYPE lvc_t_sort.
SELECTION-SCREEN: BEGIN OF BLOCK b1 WITH FRAME TITLE text-011.
SELECT-OPTIONS: s_vbeln FOR vbak-vbeln,
                s_delvr FOR likp-vbeln.
SELECTION-SCREEN: END OF BLOCK b1.
START-OF-SELECTION.
  SELECT vbeln
         vkorg
         netwr
         FROM vbak INTO TABLE t_vbak
         WHERE vbeln IN s_vbeln.
  IF sy-subrc = 0.
    SORT t_vbak BY vbeln.
  ENDIF.
  SELECT vbeln
         vstel
         vkorg
         netwr
         FROM likp INTO TABLE t_likp
         WHERE vbeln IN s_delvr.
  IF sy-subrc = 0.
    SORT t_likp BY vbeln.
  ENDIF.
  CALL SCREEN '9001'.
*&      Module  STATUS_9001  OUTPUT
*       text
MODULE status_9001 OUTPUT.
  SET PF-STATUS ' '.
*  SET TITLEBAR 'xxx'.
ENDMODULE.                 " STATUS_9001  OUTPUT
*&      Module  USER_COMMAND_9001  INPUT
*       text
MODULE user_command_9001 INPUT.
  CASE sy-ucomm.
    WHEN 'BACK' OR
         'CANC' OR
         '%EX'.
      LEAVE TO SCREEN 0.
    WHEN 'SALE'.
      w_sale = c_check.
      PERFORM sub_fill_fcat_sale.
      PERFORM sub_display_grid.
    WHEN 'DELV'.
      PERFORM sub_fill_fcat_delv.
      PERFORM sub_display_grid.
  ENDCASE.
ENDMODULE.                 " USER_COMMAND_9001  INPUT
*&      Form  sub_display_grid_sale
*       text
*  -->  p1        text
*  <--  p2        text
FORM sub_display_grid .
  IF w_grid IS INITIAL.
    PERFORM sub_create_grid.
  ELSE.
    CALL METHOD wl_ref_container->free
      EXCEPTIONS
        cntl_error        = 1
        cntl_system_error = 2
        OTHERS            = 3.
    IF sy-subrc <> 0.
*     MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL METHOD w_grid->free
      EXCEPTIONS
        cntl_error        = 1
        cntl_system_error = 2
        OTHERS            = 3.
    IF sy-subrc <> 0.
*     MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    FREE: w_grid, wl_ref_container.
    PERFORM sub_create_grid.
  ENDIF.
ENDFORM.                    " sub_display_grid_sale
*&      Form  sub_fill_fcat
*       text
*  -->  p1        text
*  <--  p2        text
FORM sub_fill_fcat_sale .
  DATA: wa_fcat TYPE lvc_s_fcat.
  REFRESH t_fcat.
  CLEAR wa_fcat.
  wa_fcat-row_pos   = 1.
  wa_fcat-fieldname = wa_fcat-rollname = 'VBELN'.
  APPEND wa_fcat TO t_fcat.
  CLEAR wa_fcat.
  wa_fcat-row_pos   = 2.
  wa_fcat-fieldname = wa_fcat-rollname = 'VKORG'.
  APPEND wa_fcat TO t_fcat.
  CLEAR wa_fcat.
  wa_fcat-row_pos   = 3.
  wa_fcat-fieldname = wa_fcat-rollname = 'NETWR'.
  APPEND wa_fcat TO t_fcat.
ENDFORM.                    " sub_fill_fcat
*&      Form  sub_fill_fcat_delv
*       text
*  -->  p1        text
*  <--  p2        text
FORM sub_fill_fcat_delv .
  DATA: wa_fcat TYPE lvc_s_fcat.
  REFRESH t_fcat.
  CLEAR wa_fcat.
  wa_fcat-row_pos   = 1.
  wa_fcat-fieldname = 'VBELN'.
  wa_fcat-rollname  = 'VBELN_VL'.
  APPEND wa_fcat TO t_fcat.
  CLEAR wa_fcat.
  wa_fcat-row_pos   = 2.
  wa_fcat-fieldname = wa_fcat-rollname =  'VKORG'.
  APPEND wa_fcat TO t_fcat.
  CLEAR wa_fcat.
  wa_fcat-row_pos   = 3.
  wa_fcat-fieldname = wa_fcat-rollname =  'VSTEL'.
  APPEND wa_fcat TO t_fcat.
  CLEAR wa_fcat.
  wa_fcat-row_pos   = 4.
  wa_fcat-fieldname = wa_fcat-rollname =  'NETWR'.
  APPEND wa_fcat TO t_fcat.
ENDFORM.                    " sub_fill_fcat_delv
*&      Form  sub_create_grid
*       text
*  -->  p1        text
*  <--  p2        text
FORM sub_create_grid .
** Create the Container
  CREATE OBJECT wl_ref_container
        EXPORTING
          container_name    = w_container.
** Create the Grid object
  CREATE OBJECT w_grid
    EXPORTING
      i_parent          = wl_ref_container
    EXCEPTIONS
      error_cntl_create = 1
      error_cntl_init   = 2
      error_cntl_link   = 3
      error_dp_create   = 4
      OTHERS            = 5.
  CHECK sy-subrc = 0.
  IF w_sale = c_check.
    CALL METHOD w_grid->set_table_for_first_display
      CHANGING
        it_outtab                     = t_vbak
        it_fieldcatalog               = t_fcat
      EXCEPTIONS
        invalid_parameter_combination = 1
        program_error                 = 2
        too_many_lines                = 3
        OTHERS                        = 4.
    IF sy-subrc <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
  ELSE.
    CALL METHOD w_grid->set_table_for_first_display
      CHANGING
        it_outtab                     = t_likp
        it_fieldcatalog               = t_fcat
      EXCEPTIONS
        invalid_parameter_combination = 1
        program_error                 = 2
        too_many_lines                = 3
        OTHERS                        = 4.
    IF sy-subrc <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
  ENDIF.
  CLEAR w_sale.
ENDFORM.                    " sub_create_grid
Hope That Helps
Anirban M.

Similar Messages

  • Why can't I extend Container and then use Canvas/Panel in implementing classes?

    I have several components that I'm dynamically adding to a component by building it from a class name...
    var pmt:Prompt = UiHelper.instantiateUsingClassName([email protected]());
    myLayout.addChild(pmt as DisplayObject);
    I want all my components to extend "Prompt" in a generic way so that in each implementing class I can use Canvas, Panel, etc.
    I thought I could just make Prompt extend Container but they won't show up if I use Container, even if in my implementing Prompt components I use a Panel or Canvas.
    However, if i change the base Prompt class to extend Canvas, then things show up... but that seems annoying to 'have' to use a Canvas as my base class object? Is there another type of object I should be extending?

    If your condo is pre-wired for Ethernet, you may be better situated to configure your AirPorts for a roaming network that a wireless-extended one. The only issue, of course, would be the room that does NOT have an Ethernet jack.
    The issue, as you pointed out, is the combination of the building construction material and the additional nearby Wi-Fis that are providing a "deadly" RF noise mix/obstructions to any of your AirPorts' signal.
    With a roaming network, each AirPort would be connected to Ethernet back to a central router and each AirPort, in turn, would be reconfigured as basic Wireless Access Points to feed wireless at the location ... mostly only within the room the WAP is located in because of the wall material.

  • Can we delete network header and then use it again under a WBS?

    Hi All,
    I have an issue where user wrongly create network header and activity not under WBS/project. The situation :
    There is a project / WBS called ABCD. User require a network header ID called RSKA005100S1 under the WBS. However, user create the master network header RSKA005100S1 not under WBS. How can we assign network RSKA005100S1 to be assigned in the WBS ABCD, coz when i tried to create the same network, it says order already exist.
    CHeers,
    Nies

    Hil,
    i hope network header is not released and no cost posting done in your case !!
    Select Network Header RSKA005100S1 and goto assignments tab. assign the WBSE ABCD here, then system shifts the network header assignment to ABCD automatically. No need to delete existing one and creating new one under ABCD.
    Hope this helps you !
    Br
    Hari.

  • How can I import a non-BC site into BC, using Dreamweaver CC, and then use it as one of my free sites?

    I am trying to import one of my non-BC sites into BC, using Dreamweaver CC, and then use it as one of my free WebBasics sites.
    When I try to create a new BC site in Dreamweaver CC, it creates a BC template site, and I have unsuccessfully tried to update the files on BC - it won't let me connect.
    If I import the site from my portal, I don't get the option of a free site - when I try to upgrade, I get the credit card form asking for payment.
    I feel like I'm running around in circles with one foot nailed to the floor.
    Any tips?

    Thank you for your quick reply and for clearing up my confusion.  I'm exporting the first section now.  I choose the smallest size, 3x4 but I'd prefer to go higher as this DVD was originally a VHS home movie.  I'm wondering if after three conversions (VHS,->DVD->MPEG) the resolution will be so poor as to not support a larger size frame?  If it can, what size should I select when I export? 

  • Received adobe photoshop elements 12/adobe premiere elements 12 when I purchased a MacBook Pro.   The macBook Pro does not have a DVD player it is sold separately.     To install the program can I download a free trial version and then use the serial numb

    Received adobe photoshop elements 12/adobe premiere elements 12 when I purchased a MacBook Pro.   The macBook Pro does not have a DVD player it is sold separately.     To install the program can I download a free trial version and then use the serial numbers from the set I received?

    yes, that's exactly what you should do,
    Downloads available:
    Suites and Programs:  CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5 | 4 | 3
    Captivate:  7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • HT201272 i downloaded a free app and then deleted it  it is in the app store when i click on it it says open and tap again it goes to another screen tap on it it changes from free to install but doesnt do anything

    i installed a free app and then deleted the app. under apps the app is still listed and says open, but when i tap on that it goes to another screen and when i tap on open it changes to free when i tap free it changes to light green install and tap again goes to all green install and what do i do then do not see anything to click on to make it install. what am i doing wrong. this is for a iphone 5s

    The 'open' indicated that the App Store though that it was still installed on your phone.
    Have you tried closing the App Store app via the phone's multitasking bar and seeing if you can install it after the phone has restarted ? Double-click the home button to open the taskbar, and then swipe or drag the App Store app's screen from there up and off the top of the screen to close it, and click the home button to close the taskbar. You should be able to redownload the app by tapping on the cloud icon next to it in the Purchased tab in the App Store app
    If that doesn't fix it then you could try a soft-reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the equivalent of a reboot.

  • Acrobat on OSX does not use printer preset. Every single time I have to print I have to click printer and then print to load the preset and then click print again from the main dialog. I am printing to a Xerox that has the copier code in the preset so if

    Acrobat on OSX does not use printer preset. Every single time I have to print I have to click printer and then print to load the preset and then click print again from the main dialog. I am printing to a Xerox that has the copier code in the preset so if I don't do this it will not print. This has been broken for in every version I have tried. This extra clicks are taking years off my life. Did I remember to do the extra clicks? I don't know, I guess I will run down the hall and check. Please fix this.

    What operating system are you running? I assume they had you install the latest BIOS. True? If it were mine, I would suggest forcing it to use integrated graphics (in the BIOS) to rule out a problem with the NVidia driver.

  • If I get my iphone unlocked can I buy a sim card in Spain and then use it there and get free 3g access

    If I get my iphone unlocked can I buy a sim card in Spain and then use it there and get free 3g access

    No. You can't activate any iPhone without a sim card installed. The sim card itself need not be activated, but it must be valid & present. Since you updated the software, the phone requires re-activation, thus you need a sim card. You can borrow one from someone, but bottom line, you need a sim card.

  • My Satellite L350 keeps switching off and then start up again.

    Satellite L350 keeps switching off and then start up again.
    The fan is free from dust. I reinstalled Windows
    There is a new Battery for 1 year
    If the laptop is off, the battery can be charged. The laptop is operating normally on battery.
    From the moment that the AC adapter is connected, the computer turns off.
    When I use the computer without a battery but with the AC adapter, the computer shuts down. Test with another AC adapter, the computer turns off.
    Could it be that the cable between the motherboard and the DC jack is causing the problem whether this is unlikely ?
    Anyone have an idea to help me with this problem ?

    Dr. Lamp,
    Shut down is not always at the same point. In the beginning this happened from time to time and than more frequently. If i start up the computer now with the AC adapter connected than he doesn't start up completely. He shuts down and reboot or blocked.
    To answer your question, I am able to enter the BIOS settings.
    I bought the Yannec battery here:
    I summarize the tests that I did together:
    Loading battery when computer is off = yes
    Running applications only with battery = yes
    With AC adapter connected = computer shut down and reboot
    Without battery, only with AC adapter connected = shut down and reboot
    With other AC adapter = shut down and reboot
    If it is a problem of the motherboard is it not possible that it can be repaired rather than replaced by a new one?
    Many thanks for your patience
    +Message was edited: link has been removed - commercial+

  • Itunes wont open. Ive tried uninstalling, cleaned up my PC and then re installed again but still wont open! There are no error messages. It just wont open

    Itunes wont open. Ive tried uninstalling, cleaned up my PC and then re installed again but still wont open! There are no error messages. It just wont open! Im very frustrated and anything would help! I have Windows 7 or Vista. Idk which

    Hello Dr.Help,
    Thank you for providing so much information about the issue you are experiencing with iTunes.  It sounds like you have tried reinstalling it, but nothing happens when you launch it.  I recommend following the steps in this article to resolve launch issues with iTunes:
    iTunes for Windows Vista or Windows 7: Troubleshooting unexpected quits, freezes, or launch issues
    http://support.apple.com/kb/ts1717
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • When i try to open week cal it loads and then closes after a few seconds...I have checked for updates, turned the phone off then on, closed out of the app and then opened it again...nothing works!  Any suggestions?

    When i try to open week cal it loads and then closes after a few seconds...I have checked for updates, turned the phone off then on, closed out of the app and then opened it again...nothing works!  I have thought about deleting the app from my phone and then reloading it again but I worry that it will delete all my calendar info???  Any suggestions?

    To reset, press and hold the Home and power buttons until the silver apple appears.
    I would delete the app, reset the phone and then download the app again. Your calendar information should be stored on the phone as Week Cal uses the Calendar app information.
    Best of luck.

  • I cannot open iphoto- the message I am getting says Shut down and restart your computer, and then open iPhoto again. If the problem persists, try rebuilding your photo library. To do this, quit iPhoto, and then reopen it while keeping the Option and Comma

    i cannot open iphoto- the message I am getting says Shut down and restart your computer, and then open iPhoto again. If the problem persists, try rebuilding your photo library. To do this, quit iPhoto, and then reopen it while keeping the Option and Command-
    I tries and it doesnt work!!

    What version of iPhoto? Assuming 09 or later:
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  
    Regards
    TD

  • Can I put a SQL query into a bind variable and then use it to output report

    Hi,
    Can I put a SQL query into a bind variable and then use it to output report?
    I want to create a report and an item "text area" (say P1_TEXT) which can let user to input a SQL query(they are all technical users and knows SQL very well). Then, I use a bind variable (that text area) to store the SQL statement. Then, I add a submit button and I want to use the following to output the report:
    select * from (:P1_TEXT);
    Do you think it is possible to do that? Any known limitations for APEX in this area?
    Thanks a lot,
    Angela

    You can, but make sure it's what you really want to do. Make sure you are VERY familiar with SQL Injection. Most people who know what it is, go out of their way to prevent SQL Injection. You're going out of your way to allow it.
    You can try using &P1_TEXT. instead of bind variable syntax. Bind variables are one of the best ways to prevent SQL Injection, which is why it's not working for you.
    Once again, I strongly urge you to consider the implications of your app, but this suggestion should get it working.
    Tyler

  • What are the steps to make it seamless for a customer to use the install program and then use the installed program?

    I wrote an install program (.exe) that is downloaded from a website.  When run, it 1) leads a customer to browse to a directory, and 2) copies files (.exe, .dll, etc.) from a website to that directory.  When I run, the installed program works.
    What are the steps to make it seamless for a customer to use the install program and then use the installed program? 
    bhs67

    This site https://msdn.microsoft.com/en-us/library/vstudio/2kt85ked%28v=vs.110%29.aspx provides a basic description of the Visual Studio Windows Installer. 
    Near the bottom of the page is "You can unlock all the features of InstallShield by paying to upgrade to the full version of InstallShield."  Where do I find info that describes the differences between the "free" and the "full"
    versions?
    bhs67
    Hello,
    The default feature does support the task for your requirement, so there is no need to pay for the other features unless you want to use some feature which is not free.
    In addition, as this thread
    InstallShield LE not available with VS 2012 RTM? shared, even through there is a link to InstallShield LE in the New Project dialog under Deployment solutions, but it belongs to third-party that I would recommend you consider posting this issue
    at the following forum to get supports about InstallShield.
    http://community.flexerasoftware.com/forumdisplay.php?133-InstallShield
    Regards.
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Is it possible to reinstall Mac OS X Lion on MacBook and then use Time Machine to restore to the previous backup I made before reinstalling Mac OS X Lion?

    Is it possible to reinstall Mac OS X Lion on MacBook and then use Time Machine to restore to the previous backup I made before reinstalling Mac OS X Lion?

    My MacBook was not normally booting up. It would turn on, make the Apple startup noise, and the bottom loading bar would progress just a little bit, then my MacBook would shut down. I tried rebooting it many times and the same thing would happen, it would just shut down. Then, I read that I can reset the PRAM (by holding Option+Command+P+R after the Apple startup noise comes). That worked, but now I get a screen that asks me to choose one of the 4 options (see:  http://images.macworld.com/images/article/2012/07/lionrecoveryutilities-289404.j pg). I choose Restore From Time Machine Backup, but it progresses to 17.6% and gets stuck there forever. I tried doing it again, and it got stuck at 17.6% again. That is why I am asking if I should just reinstall Lion, then restore a previous backup on the fresh new Lion?

Maybe you are looking for

  • 10.5.5 Active directory problem for mobile users

    I an running 10.5.5 on a MBP 2.4. The computer is attached to Active Directory for authentication. The accounted is setup as a mobile user with automatic home sync. Below is the problem I'm experiencing after 10.5.5. Upgrade worked fine, everything w

  • Out put to PDF Format

    Hi, Can anyone help me to convert O/p To PDF Format. Regards Amit Gupta

  • Select-options.. Date range..URgent...

    Hi All, Can anyone let me know.. how to give last one month date range in select options. Regards, Parvez.

  • ITunes 11.1.2

    This certainly isn't my first experience with iTunes. Not my first experience with iTunes on this system. My system is up to date, loaded with RAM, hard drive space and not 3rd party applications trying to help or fiddle with iTunes. So I know how iT

  • Sequential Video Clips

    Can anyone advise me as to how to get this sequential movie clip functioning in Flash 8 I have followed the steps as advised in the online tutorial but no matter what i do i cannot get the sequential list selection of the video-clip window on screen.