Screen meshing into main screen

Hi All,
I have an issue in Swing Application Screen .I have main screen and pop up screen when user closes the pop up screen it merges into main screen . it occurs only to specific users at random time .
Technologies used Swing .
I need a solution if there is any other way to close the screen.
PF Source Code below :
package test;
public class CustomerBrowser extends UIDialog implements CustomerBrowserInf {  
private static final long serialVersionUID = 1L;
public CustomerBrowser(UIDialog pDialog) {  
super(pDialog, true);
ibtnOK = null;
ibtnCancel = null;
ipnlCustomerBrowser = null;
iscrRecords = null;
ilblSearchCustomer = null;
itxtSearchCustomer = null;
itblCustomerBrowser = null;
iFrame = null;
iCustomerQtbl = null;
iCustomerNo = null;
iSearchValue = "";
iRecordsPerPage = 0;
iRecordsOnPage = 0;
iPageNumber = 0;
public UIButton getbtnCancel() {  
if (ibtnCancel == null) {  
ibtnCancel = new UIButton();
ibtnCancel.setName("btnCancel");
ibtnCancel.setText("Cancel");
ibtnCancel.setBounds(570, 230, 80, 25);
ibtnCancel.addActionListener(new ActionListener() {  
public void actionPerformed(ActionEvent evt) {  
onCancel();
ibtnCancel.addKeyListener(new KeyAdapter() {  
public void keyPressed(KeyEvent pKeyEvent) {  
doEvents(pKeyEvent);
return ibtnCancel;
public UIButton getbtnOK() {  
if (ibtnOK == null) {  
ibtnOK = new UIButton();
ibtnOK.setName("btnOK");
ibtnOK.setText("Select");
ibtnOK.setBounds(570, 200, 80, 25);
ibtnOK.addActionListener(new ActionListener() {  
public void actionPerformed(ActionEvent evt) {  
onOK();
ibtnOK.addKeyListener(new KeyAdapter() {  
public void keyPressed(KeyEvent pKeyEvent) {  
doEvents(pKeyEvent);
return ibtnOK;
public UIButton getbtnNext() {  
if (ibtnNext == null) {  
ibtnNext = new UIButton();
ibtnNext.setName("btnNext");
ibtnNext.setText(">>");
ibtnNext.setBounds(480, 275, 80, 25);
ibtnNext.addActionListener(new ActionListener() {  
public void actionPerformed(ActionEvent evt) {  
if (iRecordsOnPage >= iRecordsPerPage)
iPageNumber++;
onNext();
ibtnNext.requestFocusInWindow();
ibtnNext.addKeyListener(new KeyAdapter() {  
public void keyPressed(KeyEvent pKeyEvent) {  
if (pKeyEvent.getKeyCode() == 9) {  
ibtnNext.requestFocusInWindow();
if (pKeyEvent.getKeyCode() == 37) {  
getbtnPrevious().requestFocus();
if (pKeyEvent.getKeyCode() == 39) {  
getbtnNext().requestFocus();
doEvents(pKeyEvent);
return ibtnNext;
public UIButton getbtnPrevious() {  
if (ibtnPrevious == null) {  
ibtnPrevious = new UIButton();
ibtnPrevious.setName("btnPrevious");
ibtnPrevious.setText("<<");
ibtnPrevious.setBounds(395, 275, 80, 25);
ibtnPrevious.addActionListener(new ActionListener() {  
public void actionPerformed(ActionEvent evt) {  
if (iPageNumber > 0)
iPageNumber--;
onNext();
ibtnPrevious.requestFocus();
ibtnPrevious.addKeyListener(new KeyAdapter() {  
public void keyPressed(KeyEvent pKeyEvent) {  
doEvents(pKeyEvent);
return ibtnPrevious;
public UIDialog getFrameOwner() {  
return iFrame;
public UILabel getlblCustomer() {  
if (ilblSearchCustomer == null) {  
ilblSearchCustomer = new UILabel();
ilblSearchCustomer.setName("lblSearchCustomer");
ilblSearchCustomer.setText("Customer Number" + ":");
ilblSearchCustomer.setBounds(490, 12, 160, 20);
return ilblSearchCustomer;
public UILabel getlblCustomerKey() {  
if (ilblCustomerKey == null) {  
ilblCustomerKey = new UILabel();
ilblCustomerKey.setName("lblCustomerSearchKey");
ilblCustomerKey.setText("Customer Search Key" + ":");
ilblCustomerKey.setBounds(10, 12, 160, 20);
return ilblCustomerKey;
public UILabel getlblCustomerName() {  
if (ilblCustomerName == null) {  
ilblCustomerName = new UILabel();
ilblCustomerName.setName("lblSearchCustomer");
ilblCustomerName.setText("Customer Name" + ":");
ilblCustomerName.setBounds(170, 12, 160, 20);
return ilblCustomerName;
public UILabel getlblTelephone() {  
if (ilblTelephone == null) {  
ilblTelephone = new UILabel();
ilblTelephone.setName("lblTelephone");
ilblTelephone.setText("Telephone" + ":");
ilblTelephone.setBounds(330, 12, 160, 20);
return ilblTelephone;
public UIPanel getpnlHeaderCustomerBrowser() {  
if (ipnlHeaderCustomerBrowser == null) {  
ipnlHeaderCustomerBrowser = new UIPanel();
ipnlHeaderCustomerBrowser.setName("pnlCustomerBrowser");
ipnlHeaderCustomerBrowser.setLayout(null);
ipnlHeaderCustomerBrowser.setVisible(true);
ipnlHeaderCustomerBrowser.setPreferredSize(new Dimension(
Integer.MAX_VALUE, 75));
getpnlHeaderCustomerBrowser().add(getlblCustomer(),
getlblCustomer().getName());
getpnlHeaderCustomerBrowser().add(gettxtCustomer(),
gettxtCustomer().getName());
getpnlHeaderCustomerBrowser().add(getlblCustomerName(),
getlblCustomerName().getName());
getpnlHeaderCustomerBrowser().add(gettxtCustomerName(),
gettxtCustomerName().getName());
getpnlHeaderCustomerBrowser().add(getlblCustomerKey(),
getlblCustomerKey().getName());
getpnlHeaderCustomerBrowser().add(gettxtCustomerKey(),
gettxtCustomerKey().getName());
getpnlHeaderCustomerBrowser().add(getlblTelephone(),
getlblTelephone().getName());
getpnlHeaderCustomerBrowser().add(gettxtTelephone(),
gettxtTelephone().getName());
return ipnlHeaderCustomerBrowser;
public UIPanel getpnlTableCustomerBrowser() {  
if (ipnlTableCustomerBrowser == null) {  
ipnlTableCustomerBrowser = new UIPanel();
ipnlTableCustomerBrowser.setName("pnlCustomerBrowser");
ipnlTableCustomerBrowser.setLayout(new BorderLayout());
ipnlTableCustomerBrowser.setVisible(true);
Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
ipnlTableCustomerBrowser.setPreferredSize(new Dimension(
new Dimension(Integer.MAX_VALUE, 189)));
//System.out.println(screenSize.width);
getpnlTableCustomerBrowser().add(getscrRecords(),
BorderLayout.CENTER);
getpnlTableCustomerBrowser().add(getpnlEastCustomerBrowser(),
BorderLayout.EAST);
getpnlTableCustomerBrowser().add(getpnlFooterCustomerBrowser(),
BorderLayout.SOUTH);
return ipnlTableCustomerBrowser;
public UIPanel getpnlFooterCustomerBrowser() {                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Kanna -
Check the table V_T588I, Screen headr, tr class A and headr modifier and accordingly
Check table T588J, assign you field for same header. Also check line and column, Most of the times Columns will be overlapped so before generating table T588J make it single test and see your field result.
For Example-
Table - V_T588I
Screen header, Tr Class, Headr Modifer
00,                             A,                14
Table - T588J
Headr Modifier,     Line,    Column,   IT,              Field Name,       Field Type
14 ,                          3,        57,          0001,         ABKRS,              DAT
Hope this helps and am sure will resolve it by moving column numbers.
- Ashish
Edited by: Ashish on Aug 21, 2011 5:07 PM
Edited by: Ashish on Aug 21, 2011 5:11 PM

Similar Messages

  • Calling the subscreen into main screen

    Hi Guru's,
          I am having a main screen, which holds 2 radio buttons.
          If I select one radio button it has to call one table control, if I select 2nd radio button it has to call different table control.
          For this I have created two subscreens, each one holds a table control.
    based on the selection of radio button I have to call these subscreens in to the main screen.
       Please help me how to call the subscreen into main screen.

    There is no help text for this dump                                         
    Either the text was inadvertently deleted or the release of                 
    the kernel differs from the release of the database                         
    Refer to the Note system for further information on            this dump.                                                                               
    000160           %_archive TYPE arc_params,                                     
    000170         END   OF COMMON PART.                                            
    000180   *                                                                      
    000190   FIELD-SYMBOLS: <%_1>   %_PREDEFINED.                                   
    000200                                                                          
    000210   DATA: %_repid     TYPE syst-repid   %_PREDEFINED,                      
    000220         %_viaselscr TYPE x VALUE '04' %_PREDEFINED.                      
    000230                                                                          
    000240   SYSTEM-EXIT.                                                           
    000250   PERFORM (sy-xform) IN PROGRAM (sy-xprog).                              
    000260                                                                          
    000270   * Nach Laden des Dynpros                                               
    000280   MODULE %_ctl_init OUTPUT.                                              
    000290     %_repid = sy-repid.                                                  
    000300     PERFORM %_ctl_init IN PROGRAM sapmssyd USING %_repid IF FOUND.       
         >   ENDMODULE.                                                             
    000320                                                                          
    000330   * Um DCO                                                               
    000340   MODULE %_ctl_output OUTPUT.                                            
    000350     %_repid = sy-repid.                                                  
    000360     PERFORM %_ctl_output IN PROGRAM sapmssyd USING %_repid IF FOUND.     
    000370   ENDMODULE.                                                             
    000380                                                                          
    000390   * Um DCI                                                               
    000400   MODULE %_ctl_input INPUT.                                              
    000410     %_repid = sy-repid.                                                  
    000420     PERFORM %_ctl_input IN PROGRAM sapmssyd USING %_repid IF FOUND.      
    000430   ENDMODULE.                                                             
    000440                                                                          
    000450   * Erstes Modul in PAI                                                  
    000460   MODULE %_ctl_pai INPUT.                                                
    000470     %_repid = sy-repid.                                                  
    000480     PERFORM %_ctl_pai IN PROGRAM sapmssyd USING %_repid IF FOUND.        
    000490   ENDMODULE.

  • How do I remove disk partition and merge the 2 partitions into main hard disk C drive. Win7

    How do I remove a disk  partition  and merge the 2 partitions into main hard disk C drive. If I delete Drive  D I am left with 250G of unallocated space in drive D Hard drive. And I want the unallocated portion 250G to be allocated
    to the C drive.jc

    I know it is a little bit late to reply. But, I still want to share my experiences with everyone here.
    Actually, I have ever also has the same issue and needed to resize my C drive partition for much more partition space. But, the resizing process just unexpectedly fails at last in Disk Management. The “extend” function is unable to work.
    So, I have no choice but to take chances with some third party partition resizing tools:
    GParted
    http://gparted.sourceforge.net/
    IM-Magic Partition Resizer Free
    http://www.resize-c.com/
    Both of them seem efficient. So, I just have tried them one by one and finally added wanted free space to my C drive successfully.
    I even have found a video tutorial that teaches me how to resize my drive with this freeware in details:
    https://www.youtube.com/watch?v=6jCeT7CbsKk

  • How to copy complete internal table into main dababase table

    please tell me how to copy complete internal table into main dababase table by overwriting all the entries of the main DBtable.

    HI,
    you can use<b> Insert Or  Modify statement ..</b>
    <b>Modify updates the existing record, insert creates a new one. ...</b>
    insert ZDBTAB from table itab.
    Modify ZDBTAB from table Itab.
    The structure of itab should be exactly the same as the z table.
    You should not update standard tables directly though.
    rewards if usefuyl
    regards,
    nazeer

  • Is leaving my MBP plugged into mains a bad thing?

    Is there an FAQ on this kind of stuff anywhere? I bet my questions are very common.
    1 - Is leaving my MBP plugged into mains power a bad thing? Someone told me today that it's bad for the battery. I've had the thing about 6 weeks now, yet I've only gone through 5 cycles.
    2 - I've not yet run the battery completely down at all. Is that good/bad/doesn't matter?
    3- Is allowing the machine to completely drain itself of power (till it conks out) at all likely to damage it?
    4 - What's all this about battery calibrating?
    As I say, if there's a FAQ...
    Cheers!

    By and large, laptop batteries today are maintenance free. Just charge them when needed and don't spend a lot of time worrying about it. Some people seem absolutely **** bent on finding something they can fret over with their laptops instead of just enjoying using them. Learn from their example, and don't allow yourself to fall into that same trap.

  • Photosmart D7560 will not print envelopes - load paper into main tray

    My photosmart d7560 will not print envelopes, after moving the envelope into position for printing, the message "load paper into main tray" is displayed.  It does print the envelope data correctly on a piece of 8.5x11 paper.  Setup is for a #10 envelope.  Envelopes are self sealing.  I have tried creasing the edge better but that didn't help.  I tried a non-self seal (which had a letterhead on it so I couldn't use it for this mailing) and it DID work.  Is there any way to make self seal envelopes work in this printer?
    This question was solved.
    View Solution.

    Do you have the flap folded inside the envelope, so that it does not stick out?
    007OHMSS
    I was a support engineer for HP.
    If the advice resolved the situation, please mark it as a solution. Thank you.

  • Pulling data from crosstab into main report

    Hello
    I want to pull some data from crosstab into main report and show it in same row.
    Activity date will always be today date. Loadnum is a uniq id number, carriercode also has uniq id.
    In one row i have load,activity date, carrier code etc . I need to add a field which will show count all loads before today made by carrier code. Right now i added a crosstab which is counting loads made by carrier code. Is there a chance to pull/get the data/field from crosstab into the main report?
    Thanks for any suggestions

    HI Mateusz,
    Where is the crosstab located?
    You can do this without trying to get the count from the crosstab.
    1) Group on the CarrierCode field
    2) Go to Insert > Summary > Choose the field you used under 'Summarized Fields' in the Crosstab > Place this summary on the Group Footer 1
    3) Suppress the details section and move all fields to the Group Footer.
    -Abhilash

  • Anyone has an idea how to connect and configure my Airport express to an internet range extender which is plugged into mains

    Anyone has an idea how to connect and configure my Airport express to an internet range extender which is plugged into mains?
    Message was edited by: m. emin

    You can connect it but with ethernet cable. You can not connect it by wifi to extend the range a second time.
    BTW AE is rather sensitive to connect by wifi to non-apple wifi routers.

  • K1 keeping showing "Lenovo screen and Powered by Tegra". Won't go into main screen

    Hi,
    I just got my K1 2 days. Was working fine but all of a sudden when i try to power on today, it keeps showing me the Lenovo and Powered by Tegra Screen. It won't go into the main screen. I'm very sure i have enough power on the K1. Tried powering off and on many times but still no luck. 
    Anyone with any advise please? I did not upgrade any firmware or settings. Just installed a couple of children apps. Thanks.

    Sounds lke your bootloader has become corrupt. With the system off, what happens if you press and hold the power button and volume up buttons at the same time for several seconds? Can't say for sure if this will help.
    Thanks,
    Ricochet
    The K1_Was Just A Broken Promise Lenovo

  • What key to press to reboot into main screen?

    Sorry I don't know how to call that screen but I know when I restart I need to hold onto a key and I'll be lead into that screen, I want to delete my Windows XP partition in there. Can someone please tell me what key I should be holding when I'm restarting? Thank you.

    If you are asking how to switch between Windows and OS X then restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the desired startup volume and click on the down arrow button. You cannot delete the Boot Camp partition from the boot manager screen. To delete the Boot Camp partition you must use the Boot Camp Assistant in your Utilities folder.

  • Cannot bring program window into main screen... don't know why?!?!?

    hi all... any help would be greatly appreciated on the below:
    I am using a music program (torq by m-audio) and did not have any problems with it. Last night, when I tried to open the application, it is bouncing in the dock when it is loading. after it loads, the program name is showing on the top left corner of the screen. However, the actual program window/browser was not showing up. I thought there was an issue with the program so I restarted computer several times, and also reinstalled program several times, to no avail. After hitting some random buttons, I had hit F9 to bring up all windows running in the background AND I COULD SEE THE PROGRAM RUNNING. However, when I try clicking on it, it slides to the right of the screen and disappears. Can someone help me out as I cannot seem to figure out what the problem is... I have also tried changing the screen resolution and for it to detect displays in case it somehow thought i had another monitor hooked up. Its driving me nuts!!! Thanks in advance!

    It sounds like you might have had Spaces enabled and the program got assigned to a particular Space.
    I've seen problems reported by people who turn off Spaces so that they can't see the extra desktops, but a program still launches to the "unseen" desktop.
    If this is the case, you could turn Spaces back on to see if you can see your application on one of the desktops. If so, change the Spaces preferences for the program to make it only come up on desktop #1, then remove the program from the Spaces list of programs, then turn off Spaces again.

  • Make iDVD Selection Menu into Main Menu

    Please excuse me if this is a simple-minded question, but I have not found a solution yet.
    I have a .mov file that I want to burn to DVD. It has 4 chapters - okay, okay, so they're cartoons; who doesn't want some favorite cartoons around? Anyway, the start of each cartoon in the .mov file is marked with a Chapter Marker (created via FCE.) When the .mov file is imported into iDVD 5.0.1, iDVD IMMEDIATELY creates a Main Menu page containing "Play / Submenu" and the Submenu screen containing the 4 cartoons. (And yes, they're Roadrunner vs. Wile E. Coyote, so there!)
    What I want to do is ELIMINATE the current "Main" Menu page, and instead have the "Submenu" containing the links to the 4 cartoons BE the actual "Main Menu." Thus when the DVD is inserted into a player, the "Main Menu" shows the names of the 4 cartoons.
    In the "structure" representation, I have tried dragging the Submenu icon over the Main menu icon; deleting the "Main Menu" icon"; dragging the first cartoon icon over the Main Menu. Nothing works.
    I also have iDVD 7.0.4 on the MacMini, if there is a solution there. Any suggestions?

    A million thanks for your solution.
    And for others who have lots of VHS tapes that are slowly turning into Packing Material, here is a strategy:
    Easy-VHS-To-DVD -> Basic Toast (included with EV2D) -> Disc Image -> MPEGStreamclip(Open_DVD:TSVideo) -> Quicktime file (will avoid rendering in FCE) -> iMovie or FCE -> iDVD.
    I know, I know, it sounds like a LOT of work, but it is actually extremely easy. The slowest part is the EV2D capture (which is done in real time.) Everything else consists of: 1.Select parameters. 2.Go do something else for 20-30-40 minutes. You will end up with a (semi-permanent) DVD of a VHS that is decomposing day-by-day.
    And as noted above: Please do not break copyright by making copies of VHS tapes that you do not own. But if you BOUGHT 'Em, you OWN 'Em.

  • MacBook - Logging into Main Account Stalls

    This is my first question/ post ever so I hope I am providing enough info:
    I'm trying to assist my wife with a MacBook (Aluminum from around 2009)
    Running OSX v10.6.8  - Intel Core 2 Duo w 2.4 GHz- 4 GB Memory - 250 GB HD (only 6.7 GB available - not sure if this matters)
    She had no issues yesterday morning... battery died, plugged into power and left for the day (around 1:00 PM) left it powered on, lid shut, charging.
    Around 6:00 PM opened lid and had nothing on screen but the "purple galaxy" space theme picture ....
    She did a hard reboot (powered off with power button).
    When Login Screen appeared ... She typed her password, then the screen goes into the "purple galaxy / space" theme on screen and doesn't proceed to her desktop.
    Today I tried to log into her "Guest" account that does not require a password and can log into that account and have access to that desktop.
    I'm stumped as to why we cannot log into her Main Account. I've tried a couple options on start up (holding Command-Option-P-R) and I've tried holding (Shift when it powers on.)  The grey screen with the Apple Logo appears, but no chime this morning, until I held Command-Option-P-R.
    I've tried powering off and back on with power cord plugged in and without. I've been reading stuff all morning from the Apple Support communities and have nothing that seems to fix the problem.
    I'm trying to run a Permissions Repair from the Guest account,  but not sure of any other steps to take. Any advice/ suggestions are appreciated.
    Thanks!

    It's possible the main User account lost the password or admin status.
    For Snow Leopard or earlier:  http://support.apple.com/kb/HT1274
    Mac OS X 10.6.8 or earlier, insert a Mac OS X install DVD, restart with the Option key held down, click on it, and use the Reset Password utility.
    If you don't have a clone backup it's time to start. Just like a seat belt and an air bag protect you in different ways when driving, you need both Time Machine and a clone for full protection.
    Create a Clone backup:
    What is a clone backup?
    A clone is an exact bootable copy of your internal drive. Unlike standard copying of all files to another drive, the clone software copies hidden files along with other in-use files that are not avaialbe  when you copy over files to another drive.
    More info on Wikipedia http://en.wikipedia.org/wiki/Disk_cloning
    Time Machine is not bootable. You can only restore from Time Machine.
    Software used to Clone:
    SuperDuper! http://www.shirt-pocket.com/
    CCC http://www.bombich.com/download.html
    Use Disk Utility to clone your drive:
    1. Select your new volume (indented) and click on the "Restore" tab.
    2. Drag your old volume to the Source field
    3. Drag your new hard drive to the Destination field.
    4. Click the check box for "Erasing Destination".
    5. Click restore at the bottom and it then will start copying over to your new hard drive.

  • Need help embedding photo gallery swf into main swf...

    So I am attempting to create a website in flash and have the
    main swf created for that. However, I've also created a photo
    gallery in a separate swf which I want to embed into one of the
    scenes in the main swf. I tried importing directly to stage, but
    quickly realized that the timeline from the photo swf would not get
    carried over. Basically, I know that it has to be accomplished
    using AS, but don't know what that script would be. Any help would
    be appreciated!

    OK, well, that wasn't really a tutorial as much as it was
    just a huge section of code I couldn't make sense of. Anyways,
    instead of loading the gallery externally now I decided to just
    make it in the actual main swf. So, basically, in the section of
    the main swf reserved for the gallery I created an empty movie
    clip, went inside the clip, created layers for script, thumbs and
    photos. The photos themselves were in a movieclip of their own.
    Each photo has a small fade in accomplished by staggering the
    keyframes for each photo with a stop(); action on the last frame of
    each photo where it comes to full opacity. The thumbnails are back
    in the main movieclip where each button has code telling it to go
    to the beginning of each photos transition and play. It is supposed
    to play until it hits that stop action, but it won't play at all.
    Suggestions?

  • How? loading seperate music player .swf into main site prob.

    hey all!
    Ok something that I still don't really understand, have tried
    to modify afew flas but with no luck.
    Anyhow to the point. I have a main fla file with all my
    content in it and a litlte music player that plays 3 to 4 external
    swfs with music &animated LEDs in it. Anyways right now the
    music player itself is built into my main fla file. I would like to
    move the player a little bit so its coordinates change.However
    obviously when i do this and test movie the external music swfs
    that load have little LED moving animations and the 2 files just
    dont match up, so they load into the wrong area. I also tried to
    move the LED elements exactly the same amount as i did with changes
    in the main fla in moving the music player graphics but still not
    working. Do you think these files are working with "tell
    targetting" or? Im sorry im awful with code so..
    Any good and simple tutorials for a numb nut like me would be
    appreciated on this topic so i can understand whats really going on
    here. Normal logic doesnt seem to be getting me all that far.
    Tks!

    ahh thanks Jeff i guess i would say for nuthin.
    Hopefully someone else can give me a litte bit more to go on
    then that!

Maybe you are looking for

  • F150 Dunning printout error

    Hello, While trying to print the dunning report we get the following error: Dunning notice for account: 'D ' 'D50016 ' was not printed > Forms for MAHNR: 'LAXM ', RBUKM: '1000 ', KOART: 'D ' do not exist (T047E) Is this a configuration error what ste

  • Favorites in Connect to Server

    I have several remote computers that I access periodically.  I would like to use Connect to Server to access them.  As far as I can tell, I can only save the IP address and that is not very useful because I don't remember which IP address corresponds

  • Simple pass is not woking properly

    simple pass is not woking properly I am unable to sign into mails. when i click the web card a box appiars and it says set ur default browser my default browser is IE9   Ineed updates to solve this problem

  • Call transaction (MF60) with variant

    hi in user will save  some variant of the TCODE : MF60, and will put they in job what use SM36 to set job schedule.but the resule message can't be know in BG work. i want to write a report to run the Transaction (MF60) and to save message with abap a

  • TRFC's in Error Status in P54 (SNC) System

    Hi SNC experts, Lots of tRFC are in error status when i am  executing Sm58 Transaction. The error text is  "RFC destination A1PCLNT001 does not exist ". Please guide me on this.. is there any SAP note relevant to this...so that these tRFC can be corr