Connect dispatchevent between two swf's??

One single swf, imgdesc.swf is being loaded into the emptymcholder, by the moviecliploader instance.
My order is
folioholdermc ---holds--> emptymcholder --holds--> imgdesc.swf
Within folioholdermc, I disabled buttons and lowered opacity, once imgdesc.swf was loaded, using onloadInit()
Now  in the button inside imgdesc.swf. I called, this.unloadMovie(), which  successfully unloads the file, but I am still inside emptymcholder,  though I actually want to go back into folioholdermc.
I  am trying out the use of Eventlistener to check for unloadMovie. But my  problem is can I place this within folioholdermc, within the  onloadInit() or maybe within the on(press) function which actually calls  the loader in the first place?? I need to enable the buttons within  folioholdermc, and increase opacity, once the imgdesc.swf is unloaded.
Within the onLoadInit() in folioholdermc I added
_mc.addEventListener("end",endClip);
         function endClip() {
            trace("end");    //plan to insert code to enable buttons and increase opacity here
and in the imgdesc.swf within the back button
on(press){
    this.dispatchEvent({target:this, type:"end"});
    trace("event dispatched");
    this.unloadMovie();
how do I connect the two?? This is not working, as the endClip function is not being called. What am I doing wrong???

Ok I figured it out. First mistake was that the code for dispatchevent was incomplete and placed in the wrong place, the first frame of the imgdesc.swf. The first frame of imgdesc.swf is apparently loaded before the onloadInit(), sending out an event which no one is listening to.
So this is what I did within imgdesc.swf
First Frame:
import mx.events.EventDispatcher;
EventDispatcher.initialize( this );
stop();
Then within the on(press) of the back button I inserted a gotoAndStop(2);
Second Frame:
this.unloadMovie();
this.dispatchEvent({type:"end", target: this});
trace("Child dispatching: end");
Now in the onloadInit within the parent swf I wrote
_mc.addEventListener("end", endClip);
        function endClip() {
            trace("end");
            i = 1;
            while (i<=30) {
            _root.folioholdermc["img"+i]._alpha = 100;
            _root.folioholdermc["img"+i].enabled = true;
            i++;
Worked perfectly!! Hope this helps someone else who is stuck.

Similar Messages

  • How can I pass a variable(s) between two swfs?

    Hello all,
    I was wondering if it is possible to pass variables between
    two standalone swfs that are not being hosted on a webserver.
    I am creating a flash projector to go on a CD Rom and want to
    load another swf into the _root level and in the process, want to
    pass a variable or two to the "new" swf that is being loaded. Any
    help or insights that you can offer would be greatly appreciated!
    Thanks for your help.
    Tim

    if by _root level you mean you're loading something into
    _level0 you can't won't be able to use the localconnection. the
    sharedobject is your only option.

  • Access Restriction - Internet Connection Policy (between two times)

    I want to say something about the Access Restriction.
    I set the policy for allow internet connection for one of my LAN PC's. For example, I set the policy to ALLOW internet connection EVERY DAY  from 8:00PM to 10:00PM. Starting with 10M internet connection stops. BUT, after a few minutes I do a power circle (turn OFF and turn ON the router) and I have internet connection again. For me, allowing internet connection from 8:00 PM to 10:00 PM means  to have internet connection ONLY BETWEEN THIS HOURS, not before and not after.
    In my opinion, this is the same situation with two DENY policies for internet connection, one from 12:00 AM to 8:00 PM and other from 10:00 PM to 11:55 PM (for the same PC, of course).
    Why POWER CIRCLE broken this policies ?
    ps - sorry for my English.

    @sunwatcher,
    If I set a policy for my little boy PCs ... for allowing internet connection from 4:00PM to 6:00PM (for example) ... after 6:00 PM internet connection stops and he turn OFF and turn ON the router (power circle)  and after that he have internet connection, from then for a long time ...
    I am from Romania, and I set time zone on GMT +2 (Bucharest time zone)
    I insist with this problem because I want for him to use internet only between two times. Outside this time frame I want him to do their homework.

  • Mapi connection behaviour between two sites-Exchange 2010

    Hello,
    I have small doubt, need help from you guys,
    i have two sites A, B,  DAG is span over the two sites;
    Both site has array Of different FQDN
    site A has active copies, its PASSIVE copies are in site-B
    i have witnesserver in third location
    if Active mailbox database in Site-A fails, passive copy on Site-B will become active;  i guess
    My question is ===>  without downtime or without MANUAL Task, will mapi connection goes to site-B copy ??? ,

    Hi,
    In Cross Site maintainence we, have to work out mainly on Database Activation Coordination Mode(DAC) which avoids the split brain syndrome.
    below URL's gives you clear vision on how we can do that and what it is for.
    - http://www.msexchange.org/articles-tutorials/exchange-server-2010/management-administration/planning-deploying-testing-exchange-2010-site-resilient-solution-sized-medium-organization-part7.html
    - https://technet.microsoft.com/en-us/library/dd979790.aspx
    Regards,
    Gowtham T

  • Unloading swf between two swfs.

    I have a UI that loads swf in the content area when several
    buttons are clicked (these buttons are menu1, menu2 et.c) the code
    is as follows and it is working fine...
    import fl.controls.Button;
    import flash.display.Loader;
    import flash.net.URLRequest;
    import flash.events.MouseEvent;
    var loader = new Loader();
    var swfFile:String = new String();
    swfFile = "blank.swf";
    var req:URLRequest = new URLRequest(swfFile);
    loader.load(req);
    addChildAt(loader,1);
    menu1.addEventListener(MouseEvent.MOUSE_UP,menuRelease);
    menu2.addEventListener(MouseEvent.MOUSE_UP,menuRelease);
    menu3.addEventListener(MouseEvent.MOUSE_UP,menuRelease);
    menu4.addEventListener(MouseEvent.MOUSE_UP,menuRelease);
    function menuRelease(e:Event):void {
    this.removeChildAt(1);
    if (e.target.name == "menu1") {
    swfFile = "FM_main_menu_beta01.swf";
    } else if (e.target.name == "menu2") {
    swfFile = "FM_plan_menu_beta01.swf";
    } else if (e.target.name == "menu3") {
    swfFile = "FM_activity_menu_beta01.swf";
    } else {
    System.exit(0);
    req = new URLRequest(swfFile);
    loader.load(req);
    this.addChildAt(loader,1);
    So clicking the first button brings up a main menu in the
    main content area...with four menu options (buttons labelled
    mainMenu1, mainMenu2 etc.) When you click one of these main menu
    options, the corresponding swf should be loaded in place of the
    main menu (in the main contant area).
    However this is not happening and the main menu is staying
    around and not being unloaded. Is this because the main menu swf is
    in a loader created in the parent swf, but the main menu loader is
    in the main menu swf. So I think in effect i have two loaders
    appearing at the same time.
    import fl.controls.Button;
    import flash.display.Loader;
    import flash.net.URLRequest;
    import flash.events.MouseEvent;
    var swfFile:String = new String();
    swfFile = "blank.swf";
    var req:URLRequest = new URLRequest(swfFile);
    var loader = new Loader();
    removeChildAt(1);
    loader.load(req);
    addChildAt(loader,1);
    mainMenu1.addEventListener(MouseEvent.MOUSE_UP,menuRelease);
    mainMenu2.addEventListener(MouseEvent.MOUSE_UP,menuRelease);
    mainMenu3.addEventListener(MouseEvent.MOUSE_UP,menuRelease);
    mainMenu4.addEventListener(MouseEvent.MOUSE_UP,menuRelease);
    function menuRelease(e:Event):void {
    removeChildAt(1);
    if (e.target.name == "mainMenu1") {
    swfFile = "FM_plan_menu_beta01.swf";
    } else if (e.target.name == "mainMenu2") {
    swfFile = "FM_activity_menu_beta01.swf";
    } else if (e.target.name == "mainMenu3") {
    swfFile = "blank.swf";
    } else {
    swfFile = "blank.swf";
    req = new URLRequest(swfFile);
    loader.load(req);
    addChildAt(loader,1);
    }

    bump

  • Connecting wirelessly between two buildings

    Last winter, the network was setup with a Linksys WRT54GX4 and communication between the office and another building opposite was possible. As the year progressed foliage returned to the nearby trees and the connection has failed since.
    I am thinking of using another WRT54GX4 in the building opposite the office building to establish a reliable connection to the office network.
    Would this purpose be served?

    GV is correct and i would recommend the WAP54GP or the WAP54GPE if you wished to mount the WAP to the exterior of the opposite building for a better signal strength.  The WAP45GPE also has a internal high gain antenna.  Just a thought but may help with your set up.
    Message Edited by Ikester on 11-02-2007 11:17 PM
    Richard Aichner (Ikester)

  • Variables between two swfs

    I have a main.swf (level0)and a news.swf (level1). News.swf
    is loaded because main.swf tells it so :-). If I have a variable in
    news.swf, does it become part of the main.swf? I want to send a
    variable from news.swf to main.swf, so the main.swf knows which swf
    must load after event in news.swf. Which is the best way to do
    that? Is it a LocalConncetion?
    THX for advice

    rohai wrote:
    > I have a main.swf (level0)and a news.swf (level1).
    News.swf is loaded because
    > main.swf tells it so :-). If I have a variable in
    news.swf, does it become part
    > of the main.swf?
    Not it does not becomes part of the main.swf but there is no
    problem to access
    the variables across multiple levels tho. _level1.vars=value;
    or _level0.vars=value;
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Communicate between two differente JavaFX desktop design file

    I have created two JavaFX desktop design file with netbeans 6.9.1. One is the login and the other de principal menu. In java i create a object of the principal menu an just call object.setVisible(true).
    So in javafx how to call the menu principal from the login?. what should i code in the btnLoginAction??
    this is the login javafx:
    function btnLoginAction(): Void {
    function run (): Void {
    var design = Login {};
    Stage {
    title: "Main"
    scene: design.getDesignScene ()
    }

    I'm not looking for a "tutorial created especially for me".... Just perhaps someone that can copy and paste some code from a similar project that they have done so I understand how to do it.
    You could have simply put here's a tutorial for how to use TweenLite to crossfade between four pages, and here's one that will let you pass information between two .swf files. If you recently watched the tutorials then it wouldn't take long to find them (maybe you have them bookmarked) and post a couple links.
    Anyways, I just found an excellent tutorial on how to crossfade using TweenLite (found here) and an article that explains how to pass information from one .swf to another (here). It took some searching and knowing exactly what I was looking for to find them, but that's a much better answer for someone looking to do those two things than I've found here (or elsewhere for that matter).

  • Fading between two pages & controlling one MC from another.

    Let me see if I can explain this properly. I usually use a motion tween and the alpha channel to fade movie clips in or out. What I am currently trying to do is fade one page out and another in, but it could be one of several MCs. I basically have four "pages" for a website including services, portfolio, about, and contact. I have icons on my navigation bar (which is going to be imported into my XHTML seperately so it can float them according to the users window size). The icons need to navigate between the pages and the pages need to fade in and out (eg. fade in the Services MC when the user clicks on the services icon, and fade out of it and into the Portfolio MC when the user clicks on the portfolio icon). Please keep in mind that the icons and pages are in completely different .fla/.swf files because I couldn't figure out how to float them in Flash after several hours of looking around online, but know I can easily do it using div tags + CSS in XHTML.
    If someone could quickly explain how to "gotoandplay" a label in a different .swf file (communicate between the .swf NavBar and my main .swf) as well as fade out of the current MC (whichever page the user is currently on) before fading into new page (according to the icon the user clicks on), I'm sure I could 'fill in the blanks' from the rest of the AS3 and Flash I already know. The page also needs to fade out of whatever page it's currently on when the user clicks on the hide button (located on the page in the main .swf file). There is also several subpages on each page (which shouldn't be a big deal if I can figure the rest of this out).
    I'm going to be using this same concept for nearly all of the websites I design & develop in the future and really need to know how to do this for the current site I'm working on. I would greatly appreciate any suggestions on how to accomplish these two things.
    P.S. Please keep in mind I'm not an advanced user in AS3, but am very computer savy, and have done my share of programming in the past. I looked around for hours online to try and complete this without using the forum, but have come up with links to dead tutorials and short answers left and right. I'm hoping I won't come across the same here.
    From what I've read so far I believe I can use tweening in ActionScript instead of a motion tween on the timeline to fade in and out of clips and believe that's the method to use to accomplish what I'm trying to do. Correct me if I'm wrong though.

    I'm not looking for a "tutorial created especially for me".... Just perhaps someone that can copy and paste some code from a similar project that they have done so I understand how to do it.
    You could have simply put here's a tutorial for how to use TweenLite to crossfade between four pages, and here's one that will let you pass information between two .swf files. If you recently watched the tutorials then it wouldn't take long to find them (maybe you have them bookmarked) and post a couple links.
    Anyways, I just found an excellent tutorial on how to crossfade using TweenLite (found here) and an article that explains how to pass information from one .swf to another (here). It took some searching and knowing exactly what I was looking for to find them, but that's a much better answer for someone looking to do those two things than I've found here (or elsewhere for that matter).

  • How to Transport G/L Accounts between two systems?

    Hi,
    I am trying to move the Chart Of Accounts along with Company dependent data from our Dev to QA system. I used transaction OBY9 to transport the chart of accounts however, it is only transporting chart of accounts related data and I had to re-create those accounts in Company Code.
    I also tried to use FS15 and FS16 between two systems however, no luck. Could you please provide any guidance based on your experience?
    Thanks,
    Durgesh.

    Hi John,
    For activating ALE for a particular message type there are following prerequisites:
    1. Set up the RFC Connection (ABAP) between two systems
    2. Configure model view in Sender system
    3. Distribute Model view  from sender system
    4. Generate partner profile from sender system (In sender system go to tcode WE20 go to partner type LS and maintain outbound parameter for message type GLMAST)
    5. In receiving system go to tcode WE20 go to partner type LS and maintain Inbound parameter --> Message type GLMAST and Process code GLMA.
    Save entries and the above should work for you.
    Generate IDOC for one GL Account and try to send company code date for one company code first. The message will appear which says "one idoc transferred".
    Regards
    Kapil

  • How to make a connection between two wireless sensor networks of different groups through gateway?did any external device or coding is needed?

    my objective is to make a connection between two wireless sensor networks....i am using two nodes and one gateway for each wireless sensor network.....what is the procedure for connecting these two wireless sensor networks of different groups

    my objective is to make a connection between two wireless sensor networks....i am using two nodes and one gateway for each wireless sensor network.....what is the procedure for connecting these two wireless sensor networks of different groups

  • Wi-fi bridge between two routers TP-LINK WR841ND (WDS).  HP 1536 dnf MFP connect to one of this routers (copper).  My Ipad or Iphone can't find HP 1536 dnf MFP (using Eprint). Ipad and iphone connect   to router across WiFi.

    Hello.
    I have wi-fi bridge between two routers TP-LINK WR841ND.
    The name of this technology - WDS.
    HP Laser JET 1536 dnf MFP connect to one of this routers (copper).
    Second device (my NETBOOK) connect to second router (WiFi).
    I have good communication between NETBOOK and HP Laser JET 1536 dnf MFP via WiFI-bridge.
    In usual case NETBOOK can find (and can Ping) network printer and make a print some files.
    But my Ipad or Iphone can't find HP Laser JET 1536 dnf MFP (using Eprint). Ipad and iphone connect
    to router across WiFi.
    Please, help!

    Are you using the ePrint Mobile App, the ePrint Printer Control App, or just trying to send an email to the printer's ePrint email address?
    Does AirPrint work?
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

  • Establishing a socket connection between a .swf file and a socket-test program (TCP/IP builder - Windows), in AS3.

    I have an issue with a college project I'm working on.
    Using Actionscript 3, I made a simple .swf program, an animated, interactive smiley, that 'reacts' to number inputs in a input-box.
    For the sake of the project, I now need to make the framework for establishing a socket connection with the smiley .swf, and another program.
    This is where I encounter issues. I have very little knowledge of AS3 programming, so I'm not certain how to establish the connection - what's required code-wise for it, that is.
    To test the connection, I'm attempting to use the "TCP/IP builder" program from windows, which lets me set up a server socket. I need to program the .swf file into a client - to recognize it, connect to it, then be able to receive data (so that the data can then be used to have the smiley 'react' to it - like how it does now with the input-box, only 'automatically' as it gets the data rather than by manual input).
    My attempts at coding it are as follows, using a tutorial (linked HERE):
    //SOCKET STUFF GOES HERE
        var socket:XMLSocket;        
        stage.addEventListener(MouseEvent.CLICK, doConnect); 
    // This one connects to local, port 9001, and applies event listeners
        function doConnect(evt:MouseEvent):void 
        stage.removeEventListener(MouseEvent.CLICK, doConnect); 
        socket = new XMLSocket("127.0.0.1", 9001);   
        socket.addEventListener(Event.CONNECT, onConnect); 
        socket.addEventListener(IOErrorEvent.IO_ERROR, onError); 
    // This traces the connection (lets us see it happened, or failed)
        function onConnect(evt:Event):void 
            trace("Connected"); 
            socket.removeEventListener(Event.CONNECT, onConnect); 
            socket.removeEventListener(IOErrorEvent.IO_ERROR, onError); 
            socket.addEventListener(DataEvent.DATA, onDataReceived); 
            socket.addEventListener(Event.CLOSE, onSocketClose);             
            stage.addEventListener(KeyboardEvent.KEY_UP, keyUp); 
        function onError(evt:IOErrorEvent):void 
            trace("Connect failed"); 
            socket.removeEventListener(Event.CONNECT, onConnect); 
            socket.removeEventListener(IOErrorEvent.IO_ERROR, onError); 
            stage.addEventListener(MouseEvent.CLICK, doConnect); 
    // Here, the flash tracks what keyboard button is pressed.
    // If 'q' is pressed, the connection ends.
            function keyUp(evt:KeyboardEvent):void 
            if (evt.keyCode == 81) // the key code for q is 81 
                socket.send("exit"); 
            else 
                socket.send(evt.keyCode); 
    // This one should handle the data we get from the server.
            function onDataReceived(evt:DataEvent):void 
            try { 
                trace("From Server:",  evt.data ); 
            catch (e:Error) { 
                trace('error'); 
        function onSocketClose(evt:Event):void 
            trace("Connection Closed"); 
            stage.removeEventListener(KeyboardEvent.KEY_UP, keyUp); 
            socket.removeEventListener(Event.CLOSE, onSocketClose); 
            socket.removeEventListener(DataEvent.DATA, onDataReceived);
    Trying to connect to the socket gives me either no result (other than a 'connection failed' message when I click the .swf), or the following error:
    Error #2044: Unhandled securityError:. text=Error #2048: Security sandbox violation: file:///C|/Users/Marko/Desktop/Završni/Flash%20documents/Smiley%5FTCP%5FIP%5Fv4.swf cannot load data from 127.0.0.1:9001.
        at Smiley_TCP_IP_v4_fla::MainTimeline/doConnect()[Smiley_TCP_IP_v4_fla.MainTimeline::frame1:12] 

    Tried adding that particular integer code, ended up with either errors ("use of unspecified variable" and "implicit coercion") , or no effect whatsoever (despite tracing it).
    Noticed as well that the earlier socket code had the following for byte reading:
    "sock.bytesAvailable > 0" (reads any positive number)
    ...rather than your new:
    "sock.bytesAvailable != 0" (reads any negative/positive number)
    Any difference as far as stability/avoiding bugs goes?
    So then, I tried something different: Have the program turn the "msg" string variable, into a "sentnumber" number variable. This seemed to work nicely, tracing a NaN for text (expected), or tracing the number of an actual number.
    I also did a few alterations to the input box - it now no longer needs the 'enter' key to do the calculation, it updates the animation after any key release.
    With all this considered and the requirements of the project, I now have a few goals I want to achieve for the client, in the following order of priority:
    1) Have the "sentnumber" number variable be recognized by the inputbox layer, so that it puts it into the input box. So in effect, it goes: Connect -> Send data that is number (NaN's ignored) -> number put into input box -> key press on client makes animation react. I optionally might need a way to limit the number of digits that the animation reacts to (right now it uses 1-3 digit numbers, so if I get sent a huge number, it might cause issues).
    - If the NaN can't be ignored (breaks the math/calculus code or some other crash), I need some way of 'restricting' the data it reads to not include NaN's that might be sent.
    - Or for simplicity, should I just detect the traced "NaN" output, reacting by setting the number variable to be "0" in such cases?
    2) After achieving 1), I'll need to have the process be automatic - not requiring a keyboard presses from the client, but happening instantly once the data is sent during a working connection.
    - Can this be done by copying the huge amounts of math/calculus code from the inputbox layer, into the socket layer, right under where I create the "sentnumber" variable, and modifying it delicately?
    3) The connection still has some usability and user issues - since the connection happens only once, on frame 1, it only connects if I already have a listening server when I run the client, and client can't re-connect if the server socket doesn't restart itself.
    I believe to do this, I need to make the connection happen on demand, rather than once at the start.
    For the project's requirement, I also need to allow client users to define the IP / port it's going to connect to (since the only alternative so far is editing the client in flash pro).
    In other words, I need to make a "Connect" button and two textboxes (for IP and port, respectively), which do the following:
    - On pressing "Connect", the button sets whatever is in the text boxes as the address of the IP and port the socket will connect to, then connects to that address without issues (or with a error message if it can't due to wrong IP/port).
    - The connection needs to work for non-local addresses. Not sure if it can yet.
    - On re-pressing connect, the previous socket is closed, then creates a new socket (with new IP/port, if that was altered)
    It seems like making the button should be as simple as putting the existing socket code under the function of a button, but it also seems like it's going to cause issues similar to the 'looping frames' error.
    4) Optional addition: Have a scrolling textbox like the AIR server has, to track what the connection is doing on-the-fly.
    The end result would be a client that allows user to input IP/Port, connects on button press (optionally tracking/display what the socket is doing via scrollbox), automatically alters the smiley based on what numbers are sent whilst the connection lasts, and on subsequent button presses, makes a new connection after closing off the previous one.
    Dropbox link to new client version:
    https://www.dropbox.com/s/ybaa8zi4i6d7u6a/Smiley_TCP_IP_v7.fla?dl=0
    So, starting from 1), can I, and how can I, get the number variable recognized by "inputbox" layer's code? It keeps giving me 'unrecognized variable' errors.

  • How to check the Network Connectivity between two systems.

    Hello Everyone,
    Please let me know different ways to check the network connectivity between two systems other than ping/traceroute commands.
    Thank You.
    Edited by: 835435 on Jan 20, 2012 11:43 AM
    Edited by: 835435 on Jan 20, 2012 11:44 AM

    Use snoop.
    snoop -d <nic> - will give requests and replies coming/going in/out of the specified NIC.
    snoop -d <nic> <MAC address of the target host> - will give requests coming from the required host.

  • RFC connection between two SAP systems (with SAP router)

    Hi!
    I would like to set up a RFC-connection from SAP Solution Manager to other SAP system.
    The network connection between the servers is VPN.
    How can I set up this RFC-connection, if my connection between two SAP systems looks as follows,
    (I use the following SAP routers)?
    my server  --> customer
    my server --> internal SAP Router server xy (10.101....) --> SAP Router customer 2 (10.1....) --> SAP System customer (134....)
    Back-way
    SAP Systeme customer --> SAP Router customer (134.1....) --> internal SAP router (212.6....) --> my server
    How can I set up this RFC-connection, if my connection between two SAP systems looks as follows,
    (I use the following SAP routers)?
    something like:
    /H/10.101..../S/sapdp99/H/10.1.4..../S/sapdp99/H/134...
    Thank you very much!
    regards
    Thom

    Same answer as in the other forum where you cross posted....

Maybe you are looking for

  • Problems with the battery

    Dear Apple Support Team, My name is Irene Yankelevich and I come from Belarus. I am writing to you to tell the long story of my sufferings with the MacBook that I have purchased while in the US last year. I sincerely hope that there is something that

  • Output to 16:9 for iPod

    When I use Convert using Quicktime, I have difficulty getting it to preserve the 16:9 HDV 1080i format for output. Basically I want to create a .MOV file with the correct apsect ratio for download from the web. I also want to generate another .MOV fi

  • SQL LOADER and ORA-01861: Please ignore,,my mistake...its duplicate

    Hi, I've to load data through control_file(.ctl) into oracle table through sqlldr. Oracle 11g, win xp. as soon as I use - sqlldr dss/dss control=orders.ctl I get error or nothing. Text file that is generated after loading fails has the following erro

  • WRT54G v5 Fails Unexpectedly

    Hi, Ok, when I woke up this morning I found that the network in my house had unexpectedly gone off line. I have determined that the ISP (AT&T- DSL connection) is not to blame by bypassing the router and being able to connect as usual. The problem I'm

  • How to reterive the required output

    i want to extract data from two different tables and to create a single table. first table is gc1 idx suburb_form 1 ALBANY 2 PERTH 3 ALBANY CBD 4 PERTH CBD SECOND TABLE IS CITIES ALBANY PERTH I WANT TO CREATE A TABLE WHICH SHOULD CONTAIN ALL RECORDS