How to load 2 CVI panels as child window to a parent window created by VC++?

Hello, I want to load 2 CVI panels as child window to a main window, which is created by VC++.
the CVI panel is in a dll file(created by LabCVI). 
the Load child panel routine is something like following,
int __stdcall RunDLLUI (int* hParent )
int hpanel;
HWND hWnd;
if ((hpanel = LoadPanelEx (0, "guidlluir.uir", PANEL, __CVIUserHInst)) < 0)
return 0;
// set parent
if ( hParent != 0 )
GetPanelAttribute (hpanel, ATTR_SYSTEM_WINDOW_HANDLE, (int *)&hWnd);
SetParent( hWnd, (HWND)hParent);
DisplayPanel (hpanel);
// RunUserInterface ();
return 1;
The problem is, if I call  RunUserInterface (), then no window shown, it is, I think, that this routine blocks both the other panel to be created and the main window to be shown.  but if I don't call it, the 2 child windows won't response mouse event. seems no message dispatching for them.
so how can I get what I want, thx a loooooooooooooooooooooooot.

Hello, I want to load 2 CVI panels as child window to a main window, which is created by VC++.
the CVI panel is in a dll file(created by LabCVI). 
the Load child panel routine is something like following,
int __stdcall RunDLLUI (int* hParent )
int hpanel;
HWND hWnd;
if ((hpanel = LoadPanelEx (0, "guidlluir.uir", PANEL, __CVIUserHInst)) < 0)
return 0;
// set parent
if ( hParent != 0 )
GetPanelAttribute (hpanel, ATTR_SYSTEM_WINDOW_HANDLE, (int *)&hWnd);
SetParent( hWnd, (HWND)hParent);
DisplayPanel (hpanel);
// RunUserInterface ();
return 1;
The problem is, if I call  RunUserInterface (), then no window shown, it is, I think, that this routine blocks both the other panel to be created and the main window to be shown.  but if I don't call it, the 2 child windows won't response mouse event. seems no message dispatching for them.
so how can I get what I want, thx a loooooooooooooooooooooooot.

Similar Messages

  • How can i set background color of child window in jdk 1.6

    Hi friends i hv devoloped simple java app using javax.swing.JFrame in which on click button event i open new child window using JFrame to draw some image.
    i set childs background color as setBackground(Color.lightGray);
    but the problem is,child window takse its background color same as its parent window.(i.e. main window's color or desktop ).i get this problem in jdk 1.6.but it is working fine in jdk 1.5.
    how can i set background color of child window in jdk 1.6 .
    plz solve my problem.
    thanks in advanced.

    Mo,
    Call me old fassioned, but I simply refuse to demangle SMS speak.
    You've got a whole keyboard, so learn how to use it.
    Keith.

  • Loading a CVI Panel from TestStand

    I am running TestStand 2.01F1 and CVI 6.0 on Windows 2000. I have a Panel with several controls on it. Within TestStand, I made several action test steps with cvi adapter. One step loads the panel using the userinterface method LoadPanelEX. Another step displays the panel. then another step sends control to the Panel waiting for a specific Event from the panel. Once I run the sequence, it runs fine the first time and works fine. But once I run it again, it hangs on the DisplayPanel routine with the called function from the test step.
    I am using the GetUserEvent function and processDrawEvents.

    Hi James,
    I'm not running W2000, can you try the attached file(s) to see if they work for you - it's stripped down to it's elements as much as possible.
    S.
    // it takes almost no time to rate an answer
    Attachments:
    cvi_panel_loading.zip ‏61 KB

  • How to load monitor profiles under Bootcamp running Windows XP?

    I have a macbook pro SR (Geforce 8600M GT 256MB) with bootcamp and I can't start the color control panel applet on windowsXP. I have an external monitor and I downloaded an icc profile made by an user with the same monitor and panel. It works perfect under MacOS, but in WindowsXP I can't do anything.
    Anybody knows if exists any other software to load a color profile when Windows starts up?
    Thanks and sorry for my english. Bye!

    You may want to try the Boot Camp forums:
    http://discussions.apple.com/category.jspa?categoryID=237

  • How to pass a string from a child thread to a parent thread ?

    I have a Server class listening to a particular port continuously using TCP Sockets . Whenever a client connects to this server socket, a new thread is created to obtain the data from the client socket. The following code shows how this is done -
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.net.*;
    public class TransportHandler extends Thread{
              ServerSocket server_socket;
              int myListeningPort;
              public String clientReq = "";
              public TransportHandler() throws IOException{
                   super();
                   myListeningPort = 80;
                   CreateServSocket();
              //throw the socket exception outside, so that it can be handled
              public TransportHandler(int port) throws IOException{
                   super();
                   myListeningPort = port;          
                   CreateServSocket();
              private void CreateServSocket() throws IOException{
                            //create serversocket
                   server_socket = new ServerSocket(myListeningPort);
              public void printmsg(){
                   System.out.println(clientReq);
              @Override
              public void run() {
                   // TODO Auto-generated method stub
                   StartListening();
              public void StartListening(){
                   while(true){
                        //loop forever listening to connections
                        try {
                             Socket clientSocket = server_socket.accept();
                                             //create new thread to handle client connection
                             Thread clientthread = new Thread(new ClientConnectionHandler(clientSocket));
                             clientthread.setName("Client Handler");
                             clientthread.start();
                             printmsg();
                        } catch (IOException e) {
                             // TODO Auto-generated catch block
                             e.printStackTrace();
              public void StoreReq(String msg){
                   clientReq.concat(msg);
              private class ClientConnectionHandler implements Runnable{
                   Socket ClientSock;
                   BufferedReader sockReader;
                   InputStreamReader isReader;
                   String messageFromClient;
                   public ClientConnectionHandler(Socket sock){
                        ClientSock = sock;
                        try {
                             isReader = new InputStreamReader(ClientSock.getInputStream());
                             sockReader = new BufferedReader(isReader);
                        } catch (IOException e) {
                             // TODO Auto-generated catch block
                             e.printStackTrace();
                   @Override
                   public void run() {
                        // TODO Auto-generated method stub
                        int c= 0;
                        try {
                             while( (messageFromClient = sockReader.readLine())!= null){
                                  StoreReq(messageFromClient);  
                             //System.out.println("clientreq = "+clientReq);
                        } catch (IOException e) {
                             // TODO Auto-generated catch block
                             e.printStackTrace();
    }The TransportHandler is instantiated from another class HttpMessageHandler as shown below -
    import java.io.IOException;
    public class HttpMessageHandler {
         public static void main(String[] args){
              try {
                   TransportHandler server = new TransportHandler();
                   server.start();
              } catch (IOException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
    }So in the above code when the server.start() is executed, the run() method in TransportHandler is executed. How do I get the string contained in clientReq in HttpMessageHandler after the data from client socket is fully read ?
    Edited by: turing09 on Dec 12, 2009 2:13 PM

    Okay, to make my problem more clear to you - basically I am trying to create a simple Http Server, wherein the HttpMessageHandler is an interface between the Http layer & the Transport layer (represented by TransportHandler class). I am trying to code it bottom-up. In my design I require the TransportHandler class to get the client http request data from the TCP socket and pass it onto the HttpMessageHandler class.
    At the same time TransportHandler class must continuously listen to the port to receive other connections. For every client connection, the TransportHandler creates a new ClientHandler thread & this new thread gets the data. The TransportHandler instance & the ClientHandler instance are running in seperate threads. The HttpMessageHandler is running in the main thread. Please note: the member variable clientReq is private & not public
    The problem I am facing here is that even when the ClientHandler thread finishes, I am not able to print the client request data in HttpMessageHandler thread.
    I am able to print the String in the run() method of ClientHandler but not in HttpMessageHandler main() method.
    Any solutions for this?
    Edited by: turing09 on Dec 12, 2009 5:24 PM
    Edited by: turing09 on Dec 12, 2009 5:25 PM

  • How was the animation in the motion welcome window created?

    Hi all,
    I played around a bit in motion and I was wondering how they managed to get that 'lavalamp' effect in the video in the welcome window of motion?
    (The blue video to the left of the window?)
    What is done to the particles to make the small circles behave like leaves on a windy street while moving upwards? How are the 'northern lights' in the background done?
    Can anyone help me with this?
    Thanks a lot already,
    dl33

    cool...Cool...COOL! Good job, Patrick. I made a couple MINOR tweaks. On the "orbit around" behavior", I changed the x velocity to 65, the influence to 1881 and the air drag to .63
    http://download.yousendit.com/68DFD70E4A11B6E3 (sorry, I don't have a website of my own to post stuff)
    Looks really similar, I know (since Patrick's was great anyway)...it just looks a little bit more natural. Patrick's looked a little like the bubbles were going in a reverse explosion or something...they were coming together too close (no offense, Patrick).
    Feedback?
    Jonathan

  • [JS:CS4] - How to Load the PrinterPreset in InDesign

    Dear All,
    I'm having the Printer Presets ".prst" in some where in the local machine, How to Load this preset in to Application though javascript.
    I can create the preset through :   preset.add() method. but I can't load from the user given or mentioned path itself.
    Please any one give me the solutions, then I will appreciate....
    Thanks & Regards
    T.R.Harihara Sudhan

    Please find the following code, which will remove all the print presets before adding our preset to the application.
        //Removing all printerPresets from the application
        for(var pP=0; pP < app.printerPresets.length; pP++)
            var myprintPreset = app.printerPresets.item(pP);
            if (String(app.printerPresets.item(pP).name) != '[Default]')
                myprintPreset.remove();
        //Adding our preset to the application
        var printPreset;
        printPreset=File("c:/test.prst");
        app.importFile(1918071916, printPreset);
        myprintPreset=app.printerPresets.lastItem();
        myprintPreset.printFile = File(aDoc.filePath+'/'+String(aDoc.name).substr(0, (String(aDoc.name).length-5))+'.ps');
        aDoc.print(false, myprintPreset);
    Arivu

  • Calling a function in child window from parent window

    Hi,
    How can I call a method in child window from parent window in adobe air using javascript. In the following example I need to call mytest() function in
    child.html from parent.html file.
    Thanks,
    ASM
    //parent.html
    <HTML><HEAD>
    <script>
    var initOptions = new air.NativeWindowInitOptions();
    initOptions.type = air.NativeWindowType.NORMAL;
    initOptions.systemChrome = air.NativeWindowSystemChrome.STANDARD;
    var bounds = new air.Rectangle(300, 300, 600, 500);
    var html2 = air.HTMLLoader.createRootWindow(false, initOptions, false, bounds);
    var urlReq2 = new air.URLRequest("child.html");
    html2.load(urlReq2);
    html2.stage.nativeWindow.activate();
    html2.window.mytest();       //NOT WORKING
    </script>
    </HEAD><body></body></HTML> 
    // child.html
    <HTML><HEAD>
    <script>
    function mytest()
      air.trace("in child window");
    </script>
    </HEAD> <body></body></HTML>

    I suspect your problem is that the child window hasn't been created by the time you call the function in the parent.Loading the content is an asynchronous processes -- AIR doesn't stop executing your code until the window has finished loading child.html. So, you will need to add an eventlistener to html2 and call the function from there:
    html2.addEventListener( "complete", onChildLoaded );
    function onChildLoaded( event )
         html2.window.mytest();

  • How to define Side Panels for linked to Child Window Applications

    We are trying to use the NWBC Side Panel with PPM 6.0 in NWBC 3.5.  We have a Role that has a menu defined that gives the users a link to the INM_WORKCENTER_APP which displays the current user's Tasks in a table.
    When we click on a task in the table it opens the task details using the CPROJECTS_FPM application in a new window.  This new window that opens up doesn't have any of the Side Panels that we have defined on the role with the main menu links.
    We have tried to add the side panel using different application alias and at different levels in the Role, but can't get a Side Panel to show up on the child window.  We even tried to switch the window to open INPLACE in the main window and it still switches to no side panels.  The only side panels we are able to see is side panels that the user has manually added under connections and the Data Context Viewer side panels.
    Is NWBC capable of having side panels to be defined to be available for these linked to child applications that are called from a main application screen?  If so, what is the possible configurations we need to make on the role for this to work properly?
    Thanks in advance for any help!

    Wanted to close this thread with the solution that worked for us.
    We had to change the Launchpad configuration for Role CPROJECTS Instance OIF.  We changed the Application from a Web Dynpro ABAP type to Object Based Navigation.  Set the Application Parameters Business Object to PROJECT and Operation to DISPLAY.
    Then for our role defined in PFGC for our NWBC, we added a new menu item to the Web Dynpro application CPROJECTS_FPM with Configuration CPROJECTS_FPM.  Then under Object Based Navigation we set the Object Type to PROJECT and Method to DISPLAY to match what we set above in the Launchpad.  Then set the menu item to be invisible since we didn't want it to show to users.
    Now when we launch the child window it uses OBN and sees the definition in our role and utilizes the same Side Panel definitions defined for the role.

  • How to load text files in GUI

    plz tell me .. how to load and compare two text files using file popup's . example file i have attached..
    Attachments:
    testW_FF.txt ‏2 KB

    I don't understand whether your question is on how to load text files or how to show them on a panel or how to compare them... or all aspects together!
    The first operation (loading the file) can be accomplished with functions included in the Formatting and I/O Library like OpenFile, ReadFile and so on; with a file like yours even FileToArray could be an option.
    How to show the data on screen is heavily dependent on what you intend to do with them: data can be shown in textboxes, listboxes, tables or graphs so... what do you want to do?
    The same applies with comparison: without additional details is difficult to give you the proper hint.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • C# MDI application: how to scale child windows when main window is re-sized?

    Hi,
    I have an MDI application that have several child forms.  Users can view several forms at one time, and users also are given the options to arrange the child forms anyway they want:  cascade or tile.  What I want to achieve is that if the
    parent window is re-sized, all child forms should also be re-sized proportionally.   The code that I have only work if the child forms are tiled horizontally, AND that I only make the main window wider.  Otherwise, all forms are scaled (but not perfect),
    however, the location is not scaled; therefore, they are overlapping each other.   I greatly appreciate any help from you.  
    Size m_preSize;
    private void MainForm_ResizeBegin(object sender, EventArgs e)
    m_prevSize = this.ClientRectangle.Size;
    private void MainForm_ResizeEnd(object sender, EventArgs e)
    int iWidth = m_prevSize.Width;
    int iHeight = m_prevSize.Height;
    double dXFactor = (double)(this.ClientRectangle.Width) / (double)iWidth;
    double dYFactor = (double)(this.ClientRectangle.Height) / (double)iHeight;
    foreach (Form c in this.MdiChildren)
    if (!c.Visible)
    continue;
    if (c.WindowState == System.Windows.Forms.FormWindowState.Maximized ||
    c.WindowState == System.Windows.Forms.FormWindowState.Minimized)
    // DO not ajust on resize if a child window is at its Maximized state
    return;
    c.Scale(new SizeF((float)dXFactor, (float)dYFactor));
    Best Regards,
    Emily

    Hi Badidea,
    Once again, I did not explain my idea clearly.  I am sorry about that.  I only wanted to scale the child-windows as the parent re-sized.  And yes, if the child-windows fill up the view-able area of the parent's window, I would like them to
    also fill up the  view-able area of parent's window once again after re-size of parent window.  No scroll should be involved.
    Regards,
    Emily
    Hello,
    It depends on how you cascade or tile these forms.
    In this case, I would recommend you use this way below.
    1. Layout with splitContainers.
    2. Set each child form's toplevel to false, then add them to the panels of splitContainers.
    3. Resize these form to fit the panels.
    4. repeat #3 inside the main form's resize event.
    Here is a simple sample.
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    namespace _150313AutoSizeMdiChiledForm
    public partial class MainForm : Form
    public MainForm()
    InitializeComponent();
    Form1 f1 = new Form1();
    Form2 f2 = new Form2();
    Form3 f3 = new Form3();
    private void MainForm_Load(object sender, EventArgs e)
    f1.TopLevel = false;
    this.splitContainer2.Panel1.Controls.Add(f1);
    f1.Size = this.splitContainer2.Panel1.ClientSize;
    f1.Show();
    f2.TopLevel = false;
    this.splitContainer2.Panel2.Controls.Add(f2);
    f2.Size = this.splitContainer2.Panel2.ClientSize;
    f2.Show();
    f3.TopLevel = false;
    this.splitContainer1.Panel2.Controls.Add(f3);
    f3.Size = this.splitContainer1.Panel2.ClientSize;
    f3.Show();
    private void MainForm_Resize(object sender, EventArgs e)
    f1.Size = this.splitContainer2.Panel1.ClientSize;
    f2.Size = this.splitContainer2.Panel2.ClientSize;
    f3.Size = this.splitContainer1.Panel2.ClientSize;
    Designer code.
    namespace _150313AutoSizeMdiChiledForm
    partial class MainForm
    /// <summary>
    /// Required designer variable.
    /// </summary>
    private System.ComponentModel.IContainer components = null;
    /// <summary>
    /// Clean up any resources being used.
    /// </summary>
    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    protected override void Dispose(bool disposing)
    if (disposing && (components != null))
    components.Dispose();
    base.Dispose(disposing);
    #region Windows Form Designer generated code
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    this.splitContainer1 = new System.Windows.Forms.SplitContainer();
    this.splitContainer2 = new System.Windows.Forms.SplitContainer();
    ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
    this.splitContainer1.Panel1.SuspendLayout();
    this.splitContainer1.SuspendLayout();
    ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
    this.splitContainer2.SuspendLayout();
    this.SuspendLayout();
    // splitContainer1
    this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
    this.splitContainer1.Location = new System.Drawing.Point(0, 0);
    this.splitContainer1.Name = "splitContainer1";
    this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
    // splitContainer1.Panel1
    this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
    this.splitContainer1.Size = new System.Drawing.Size(607, 411);
    this.splitContainer1.SplitterDistance = 198;
    this.splitContainer1.TabIndex = 0;
    // splitContainer2
    this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
    this.splitContainer2.Location = new System.Drawing.Point(0, 0);
    this.splitContainer2.Name = "splitContainer2";
    this.splitContainer2.Size = new System.Drawing.Size(607, 198);
    this.splitContainer2.SplitterDistance = 294;
    this.splitContainer2.TabIndex = 0;
    // MainForm
    this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    this.ClientSize = new System.Drawing.Size(607, 411);
    this.Controls.Add(this.splitContainer1);
    this.Name = "MainForm";
    this.Text = "MainForm";
    this.Load += new System.EventHandler(this.MainForm_Load);
    this.Resize += new System.EventHandler(this.MainForm_Resize);
    this.splitContainer1.Panel1.ResumeLayout(false);
    ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
    this.splitContainer1.ResumeLayout(false);
    ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
    this.splitContainer2.ResumeLayout(false);
    this.ResumeLayout(false);
    #endregion
    private System.Windows.Forms.SplitContainer splitContainer1;
    private System.Windows.Forms.SplitContainer splitContainer2;
    Result.
    You could download it form http://1drv.ms/1Mwwibp.
    It is quite similar with the one for tiling, you could edit it to fit your requirements.
    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.

  • How to load an image without a gui? big problems...

    Hey guys, I usually try my best to not ask for help and figure stuff out myself. But this last week i've been having big problems with this work project.
    My goal is to load images from disk, and append them to each other to create one big image.
    The images are 0-9.jpg each file containing a number in it. then i create one big file with 4 numbers in it. called final.jpg.
    so far i can do all this, but whenever the program is finished, the application just keeps running. the program has literally gone through all the steps... i have a system.out.println printed on the last line after the main, after the class instantiation... and still it stays running.
    how do you guys load images without a gui? This program will probably be running under unix, so i can't create a (for component example)
    Panel() and media track the file load... so i'm pretty much stumped
    any help you guys can provide would be really incredibly helpfull at this point. I have searched these threads for a few hours without luck. I found only 1 real post related to my problem, but eventually they said use MediaTracker = new Mediatracker( new Panel() ); which i can't use. :(
    Thanks a lot guys.
    :D

    yeah tried doing that, didn't work either.
    UPDATE
    I FINALLY found a way...
    and here it is for others to find!
    public BufferedImage getImage(String filename) throws Exception {
    FileInputStream input = new FileInputStream( filename );
    JPEGImageDecoder decoder = JPEGCodec.createJPEGDecoder( input );
    BufferedImage image = decoder.decodeAsBufferedImage();
    return image;
    it returns an image buffer, but it's better than nothing! :)
    atleast this functions under unix.

  • How do I call on a specific child in a container

    I am loaded images into a container that is being displayed on a map.  I've created a string of my images names and am looping a loader to load each image and add them to the container.
    var overlays=["compsmall.png","compsmall3.png","compsmall3.png","compsmall4.png"]
    var overlay_container:MovieClip= new MovieClip();
    function calloverlays():void
    for (var i:Number = 0; i < overlays.length; i++)
    var overlay_url = overlays[i];
    var overlay_loader = new Loader();
    overlay_loader.load(new URLRequest(overlay_url));
    overlay_loader.contentLoaderInfo.addEventListener(Event.COMPLETE, overlayLoaded);
    function overlayLoaded(e:Event):void
    var my_overlay:Loader = Loader(e.target.loader);
    overlay_container.addChild(my_overlay);
    Once all of my images are loaded into the container overaly_container how can I call on a specific child of the container?  For example how can I call on compsmall2.png once its been loaded into overlay_container?
    I place these images onto a map by placing the whole container at the correct location.  I then turn layers on/off by adding and removing the children within the container.  This is why I'd like to specify a specific object in the parent.
    Thanks in advance,
    j

    Well, there are better ways given how you're loading - nesting functions is generally frowned upon... but this should get you started anyway. This is a little function that you could use to hide one of your loaded images:
    function hideLayer(image:String){
        var c:int = overlay_container.numChildren;
        for(var i:int = 0; i < c; i++){
            if(Loader(overlay_container.getChildAt(i)).contentLoaderInfo.url.indexOf(image) != -1){
                overlay_container.getChildAt(i).visible = false;
                break;
    and then use like: hideLayer("compsmall2.png");
    But like I said, there are better ways. But you'd need to restructure your code - get rid of the nested functions, and the loop... then load each image one at a time. Then you know the index in the array of the image being loaded and can match that with the index inside the container...

  • Error Loading Plugins Control Panel.aip

    I tried to open Illustrator for the first time on my new computer. It seems like it's going to open, then I get an error message:
    Error Loading Plugins
    Control Panel.aip
    I have reinstalled, uninstalled, reinstalled, updated window, updated adobe, restarted inbetween, etc.
    I have Designer CS3 on a toshiba satellite p205d-s8804 running Vista 2gig memory AMD Turion 64x2 2GZ x86 ATI Radeon X1200 2G RAM 139G free HD space.
    It seems numerous people are having this problem across the web but no one has posed an answer on how to fix it. It is insinuated that it is a registry problem.
    Can and Adobe person post the solution.
    PLEASE HELP

    Bill, thank you very much for posting the solution to the "Error Loading Plug-ins. Control Panel.aip" problem.
    I was able to find your solution here on the forum with only a minimal amount of searching, and it worked perfectly.
    FWIW, I found two duplicate files in the C:\Program Files\Adobe\Adobe Illustrator CS3\Support Files\Required folder - one called ADMEveParser and another one called ADMPlugin.  Both of them had a 1 in parentheses after the file name.
    Again - many thanks for your thoughtfulness.

  • How to load other obejects in flash file after intro using ActionScript 3.0

    How to load other obejects in flash file after intro using ActionScript 3.0 or any other method all in same fla file. see blow intro screen shot ,this one playing repeatedly without loading other fla pages .only way to load other pages is click on Skip intro .see second screeshot below .i need that site to load after intro .
    see codes already in
    stop();
    skipintro_b.addEventListener(MouseEvent.CLICK, skipintro_b_clicked);
    function skipintro_b_clicked(e:MouseEvent):void{
    gotoAndStop("whoweare");
    There is another script there
    /* Simple Timer
    Displays a countdown timer in the Output panel until 30 seconds elapse.
    This code is a good place to start for creating timers for your own purposes.
    Instructions:
    1. To change the number of seconds in the timer, change the value 30 in the first line below to the number of seconds you want.
    var fl_TimerInstance:Timer = new Timer(1000, 30);
    fl_TimerInstance.addEventListener(TimerEvent.TIMER, fl_TimerHandler);
    fl_TimerInstance.start();
    var fl_SecondsElapsed:Number = 1;
    function fl_TimerHandler(event:TimerEvent):void
              trace("Seconds elapsed: " + fl_SecondsElapsed);
              fl_SecondsElapsed++;
    i have no knowledge about these thing ,any help really appreciated .

    Ned Murphy Thank you very Much .It is working .Great advice

Maybe you are looking for

  • File Receiver Adapter - Writing Attachments

    Hello Folks, i received a SOAP Message with some attachments. Now i want to write these files into a file system. No i have seen, that the file receiver adapter has no support for attachments. is there any solution for that? Thanks for answers. Best

  • Can I edit an preexisting vector image in PSCS5?

    I know I can make a vector image in CS5, but is there a way I can import an existing vector image (ie. an .ai image) and then edit it in Photoshop? I'm using CS5, on MacOSX Lion. Thanks for your feedback!

  • Intercompany Deliveries were created with zero quantity, causing an idoc failure and the remaining delivery too

    Intercompany Deliveries were created with zero quantity, causing an idoc failure and the remaining delivery too a. User trying to create delivery but stock not available. b. When stock is not there it should show an error message in SAP screen but it

  • Oop's ram

    I bought 2 x 1GB 240-Pin 128Mx64 DDR2 PC2-5300 Unbuffered RAM from crucial. Now in system profile the new ram shows speed PC2-3200U-288 and for the built-in ram PC2-4200U-444. Have I installed a lesser upgrade against the original pair? Thanks

  • Middleware errors

    Hi Gurus, In my system other guy make the configuration for the replication to ERP. Now, I delete this configuration follow the  help (delete suscription, publication, site, queue and filter). However, now I only have an error. If I try to create an