Can someone pls Help me: How to create a Fake target table(Dummy)  in DAC

Hi There,
Can someone pls Help me in creating a Fake target table(Dummy) in DAC?
Thanks,
Raghu

Raghu
You need to create a task so that you can hook sources and targets together.
First, Design --> Tables tab --> New --> Below 'Edit' -->Table Type (Source) for your source tables.
Design --> Tables tab --> New --> Below 'Edit' -->Check warehouse and Table Type (Fact or Fact Temporary) for your target tables.
Points if helpful
Kris

Similar Messages

  • Can someone pls help me with this code

    The method createScreen() creates the first screen wherein the user makes a selection if he wants all the data ,in a range or single data.The problem comes in when the user makes a selection of single.that then displays the singleScreen() method.Then the user has to input a key data like date or invoice no on the basis of which all the information for that set of data is selected.Now if the user inputs a wrong key that does not exist for the first time the program says invalid entry of data,after u click ok on the option pane it prompts him to enter the data again.But since then whenever the user inputs wrong data the program says wrong data but after displaying the singlescreen again does not wait for input from the user it again flashes the option pane with the invalid entry message.and this goes on doubling everytime the user inputs wrong data.the second wrong entry of data flashes the error message twice,the third wrong entry flashes the option pane message 4 times and so on.What actually happens is it does not wait at the singlescreen() for user to input data ,it straight goes into displaying the JOptionPane message for wrong data entry so we have to click the optiion pane twice,four times and so on.
    Can someone pls help me with this!!!!!!!!!
    import java.util.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.text.*;
    import java.util.*;
    public class MainMenu extends JFrame implements ActionListener,ItemListener{
    //class     
         FileReaderDemo1 fd=new FileReaderDemo1();
         FileReaderDemo1 fr;
         Swing1Win sw;
    //primary
         int monthkey=1,counter=0;
         boolean flag=false,splitflag=false;
         String selection,monthselection,dateselection="01",yearselection="00",s,searchcriteria="By Date",datekey,smonthkey,invoiceno;
    //arrays
         String singlesearcharray[];
         String[] monthlist={"Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sept","Oct","Nov","Dec"};
         String[] datelist=new String[31];
         String[] yearlist=new String[100];
         String[] searchlist={"By Date","By Invoiceno"};
    //collection
         Hashtable allinvoicesdata=new Hashtable();
         Vector data=new Vector();
         Enumeration keydata;
    //components
         JButton next=new JButton("NEXT>>");
         JComboBox month,date,year,search;
         JLabel bydate,byinvno,trial;
         JTextField yeartext,invtext;
         JPanel panel1,panel2,panel3,panel4;
         JRadioButton single,range,all;
         ButtonGroup group;
         JButton select=new JButton("SELECT");
    //frame and layout declarations
         JFrame jf;
         Container con;
         GridBagLayout gridbag=new GridBagLayout();
         GridBagConstraints gc=new GridBagConstraints();
    //constructor
         MainMenu(){
              jf=new JFrame();
              con=getContentPane();
              con.setLayout(null);
              fr=new FileReaderDemo1();
              createScreen();
              setSize(500,250);
              setLocation(250,250);
              setVisible(true);
    //This is thefirst screen displayed
         public void createScreen(){
              group=new ButtonGroup();
              single=new JRadioButton("SINGLE");
              range=new JRadioButton("RANGE");
              all=new JRadioButton("ALL");
              search=new JComboBox(searchlist);
              group.add(single);
              group.add(range);
              group.add(all);
              single.setBounds(100,50,100,20);
              search.setBounds(200,50,100,20);
              range.setBounds(100,90,100,20);
              all.setBounds(100,130,100,20);
              select.setBounds(200,200,100,20);
              con.add(single);
              con.add(search);
              con.add(range);
              con.add(all);
              con.add(select);
              search.setEnabled(false);
              single.addItemListener(this);
              search.addActionListener(new MyActionListener());     
              range.addItemListener(this);
              all.addItemListener(this);
              select.addActionListener(this);
         public class MyActionListener implements ActionListener{
              public void actionPerformed(ActionEvent a){
                   JComboBox cb=(JComboBox)a.getSource();
                   if(a.getSource().equals(month))
                        monthkey=((cb.getSelectedIndex())+1);
                   if(a.getSource().equals(date)){
                        dateselection=(String)cb.getSelectedItem();
                   if(a.getSource().equals(year))
                        yearselection=(String)cb.getSelectedItem();
                   if(a.getSource().equals(search)){
                        searchcriteria=(String)cb.getSelectedItem();
         public void itemStateChanged(ItemEvent ie){
              if(ie.getItem()==single){
                   selection="single";     
                   search.setEnabled(true);
              else if (ie.getItem()==all){
                   selection="all";
                   search.setEnabled(false);
              else if (ie.getItem()==range){
                   search.setEnabled(false);
         public void actionPerformed(ActionEvent ae){          
              if(ae.getSource().equals(select))
                        if(selection.equals("single")){
                             singleScreen();
                        if(selection.equals("all"))
                             sw=new Swing1Win();
              if(ae.getSource().equals(next)){
                   if(monthkey<9)
                        smonthkey="0"+monthkey;
                   System.out.println(smonthkey+"/"+dateselection+"/"+yearselection+"it prints this");
                   allinvoicesdata=fr.read(searchcriteria);
                   if (searchcriteria.equals("By Date")){
                        System.out.println("it goes in this");
                        singleinvoice(smonthkey+"/"+dateselection+"/"+yearselection);
                   else if (searchcriteria.equals("By Invoiceno")){
                        invoiceno=invtext.getText();
                        singleinvoice(invoiceno);
                   if (flag == false){
                        System.out.println("flag is false");
                        singleScreen();
                   else{
                   System.out.println("its in here");
                   singlesearcharray=new String[data.size()];
                   data.copyInto(singlesearcharray);
                   sw=new Swing1Win(singlesearcharray);
         public void singleinvoice(String searchdata){
              keydata=allinvoicesdata.keys();
              while(keydata.hasMoreElements()){
                        s=(String)keydata.nextElement();
                        if(s.equals(searchdata)){
                             System.out.println(s);
                             flag=true;
                             break;
              if (flag==true){
                   System.out.println("vector found");
                   System.exit(0);
                   data= ((Vector)(allinvoicesdata.get(s)));
              else{
                   JOptionPane.showMessageDialog(jf,"Invalid entry of date : choose again");     
         public void singleScreen(){
              System.out.println("its at the start");
              con.removeAll();
              SwingUtilities.updateComponentTreeUI(con);
              con.setLayout(null);
              counter=0;
              panel2=new JPanel(gridbag);
              bydate=new JLabel("By Date : ");
              byinvno=new JLabel("By Invoice No : ");
              dateComboBox();
              invtext=new JTextField(6);
              gc.gridx=0;
              gc.gridy=0;
              gc.gridwidth=1;
              gridbag.setConstraints(month,gc);
              panel2.add(month);
              gc.gridx=1;
              gc.gridy=0;
              gridbag.setConstraints(date,gc);
              panel2.add(date);
              gc.gridx=2;
              gc.gridy=0;
              gc.gridwidth=1;
              gridbag.setConstraints(year,gc);
              panel2.add(year);
              bydate.setBounds(100,30,60,20);
              con.add(bydate);
              panel2.setBounds(170,30,200,30);
              con.add(panel2);
              byinvno.setBounds(100,70,100,20);
              invtext.setBounds(200,70,50,20);
              con.add(byinvno);
              con.add(invtext);
              next.setBounds(300,200,100,20);
              con.add(next);
              if (searchcriteria.equals("By Invoiceno")){
                   month.setEnabled(false);
                   date.setEnabled(false);
                   year.setEnabled(false);
              else if(searchcriteria.equals("By Date")){
                   byinvno.setEnabled(false);
                   invtext.setEnabled(false);
              monthkey=1;
              dateselection="01";
              yearselection="00";
              month.addActionListener(new MyActionListener());
              date.addActionListener(new MyActionListener());
              year.addActionListener(new MyActionListener());
              next.addActionListener(this);
              invtext.addKeyListener(new KeyAdapter(){
                   public void keyTyped(KeyEvent ke){
                        char c=ke.getKeyChar();
                        if ((c == KeyEvent.VK_BACK_SPACE) ||(c == KeyEvent.VK_DELETE)){
                             System.out.println(counter+"before");
                             counter--;               
                             System.out.println(counter+"after");
                        else
                             counter++;
                        if(counter>6){
                             System.out.println(counter);
                             counter--;
                             ke.consume();
                        else                    
                        if(!((Character.isDigit(c) || (c == KeyEvent.VK_BACK_SPACE) || (c == KeyEvent.VK_DELETE)))){
                             getToolkit().beep();
                             counter--;     
                             JOptionPane.showMessageDialog(null,"please enter numerical value");
                             ke.consume();
              System.out.println("its at the end");
         public void dateComboBox(){          
              for (int counter=0,day=01;day<=31;counter++,day++)
                   if(day<=9)
                        datelist[counter]="0"+String.valueOf(day);
                   else
                        datelist[counter]=String.valueOf(day);
              for(int counter=0,yr=00;yr<=99;yr++,counter++)
                   if(yr<=9)
                        yearlist[counter]="0"+String.valueOf(yr);
                   else
                        yearlist[counter]=String.valueOf(yr);
              month=new JComboBox(monthlist);
              date=new JComboBox(datelist);
              year=new JComboBox(yearlist);
         public static void main(String[] args){
              MainMenu mm=new MainMenu();
         public class WindowHandler extends WindowAdapter{
              public void windowClosing(WindowEvent we){
                   jf.dispose();
                   System.exit(0);
    }     

    Hi,
    I had a similar problem with a message dialog. Don't know if it is a bug, I was in a hurry and had no time to search the bug database... I found a solution by using keyPressed() and keyReleased() instead of keyTyped():
       private boolean pressed = false;
       public void keyPressed(KeyEvent e) {
          pressed = true;
       public void keyReleased(KeyEvent e) {
          if (!pressed) {
             e.consume();
             return;
          // Here you can test whatever key you want
       //...I don't know if it will help you, but it worked for me.
    Regards.

  • Hi guys can someone pls help! im gg crazy...

    Hi guys can someone pls help! im gg crazy... im doing this java prograamming project and cant seem to work the Search function. My program compiles well and runs, but after i key in the details for "Add new customer" , and i attempt to search the customer name that i keyed in, the program does not return my input! My teacher says its something to do with assigning an array length or something but how do i code that.... Heres the code, pls try to help..
    import java.io.*;
    public class shop
    static String Name, Address,Gender,Country,Pdtname,Type,Dob,
    Hometel,Mobile,Purchase,ID,Cost,Quantity,Introdate;
    static int x;
    public static void main(String[] args) throws Exception
    char choice;
    do{
    System.out.println("MAIN MENU");
    System.out.println("(1). Add New Customer");
    System.out.println("(2). Search Customer");
    System.out.println("(6). Quit");
    System.out.print("Pls. enter a choice :");
    choice = Character.toUpperCase((char)System.in.read());
    System.in.read();
    System.in.read();
    switch(choice)
         case '1':Add();
         break;
         case '2':Search();
         break;
         case '6':Quit();
         break;
         default:System.out.println("- Sorry, You have entered an invalid option, please try again -");
    }while(choice != '6');
    public static void Add()throws Exception
         BufferedReader data=new BufferedReader
         (new InputStreamReader(System.in));
    String Name, Dob, Hometel, Mobile, Country, Purchase;
    boolean valid;
    int x;
    valid=true;
         do
         System.out.print("Please enter Customer's Name:");
         Name=data.readLine();
         if (Name.equals(""))
         System.out.println("Name must not be empty");
         else
         for (x=0; x<Name.length();x++)
         if(!(Character.isLetter(Name.charAt(x))) && Name.charAt(x) !=' ')
         System.out.println("Please enter letters only[A-Z] ");
         valid=false;
         break;
         else
         valid=true;
         }while (!valid || Name.equals(""));
         do{
         System.out.print("Please enter Customer's Address:");
         Address=data.readLine();
         if (Address.equals(""))
         System.out.println("Address must not be empty");
         }while (Address.equals(""));
         do{
         System.out.print("Please enter Customer's Gender (M/F):");
         Gender=data.readLine();
         if (!Gender.equalsIgnoreCase("M") && !Gender.equalsIgnoreCase("F"))
         System.out.println("Please input either M or F");
         else
         if (Gender.equals(""))
         System.out.println("Gender must not be empty");
         }while (!Gender.equalsIgnoreCase("M") && !Gender.equalsIgnoreCase("F") || Gender.equals(""));
         do
         System.out.print("Please enter Customer's Date of Birth (dd/mm/yyyy):");
         Dob=data.readLine();
         if (Dob.equals(""))
         System.out.println("Dob must not be empty");
         else
         for (x=0; x<Dob.length();x++)
         if(!(Character.isDigit(Dob.charAt(x))) && Dob.charAt(x) !='/')
         System.out.println("Please enter only numbers in dd/mm/yyyy format");
         valid=false;
         break;
         else
         valid=true;
         }while (!valid || Dob.equals(""));
         do
         System.out.print("Please enter Customer's Contact no(Home):");
         Hometel=data.readLine();
         if (Hometel.equals(""))
         System.out.println("Home number must not be empty");
         else
         for (x=0; x<Hometel.length();x++)
         if(!(Character.isDigit(Hometel.charAt(x))) && Hometel.charAt(x) !=' ')
         System.out.println("Please enter numbers only [0-9] ");
         valid=false;
         break;
         else
         valid=true;
         }while (!valid || Hometel.equals(""));
         do
         System.out.print("Please enter Customer's Contact no(Mobile):");
         Mobile=data.readLine();
         if (Mobile.equals(""))
         System.out.println("Mobile number must not be empty");
         else
         for (x=0; x<Mobile.length();x++)
         if(!(Character.isDigit(Mobile.charAt(x))) && Mobile.charAt(x) !=' ')
         System.out.println("Please enter numbers only [0-9] ");
         valid=false;
         break;
         else
         valid=true;
         }while (!valid || Mobile.equals(""));
         do
         System.out.print("Please enter Customer's Country:");
         Country=data.readLine();
         if (Country.equals(""))
         System.out.println("Country must not be empty");
         else
         for (x=0; x<Country.length();x++)
         if(!(Character.isLetter(Country.charAt(x))) && Country.charAt(x) !=' ')
         System.out.println("Please enter letters only[A-Z] ");
         valid=false;
         break;
         else
         valid=true;
         }while (!valid || Country.equals(""));
    public static void Search()throws Exception
         BufferedReader data=new BufferedReader
         (new InputStreamReader(System.in));
         String target;
         boolean found;
         found=false;          //record not found
         System.out.print("Enter the name that you want to search:");
         target=data.readLine();
         if (target.equalsIgnoreCase(Name))
         System.out.println("The customer's name is "+Name);
         System.out.println("The customer's address is "+Address);
         System.out.println("The customer's gender is "+Gender);
         System.out.println("The customer's date of birth is "+Dob);
         System.out.println("The customer's home contact number is "+Hometel);
         System.out.println("The customer's mobile number is "+Mobile);
         System.out.println("The customer's Country is "+Country);
         System.out.println("Record found");
         found=true;               //record found
         if (found==false)
         System.out.println("Record not found");
         public static void Quit()
         System.out.println("Thank You For Using Database Application System Designed For Crystalodge Gift Shop");
    }

    Thank you for your interest in just plopping down your code and asking for someone to just fix it for you. We'll get right on it...

  • HT1152 hi can someone pls help

    hi can someone pls help
    my imac cannot read any discs and they keep ejecting
    thanku

    Intel-based Macs: Resetting the System Management Controller (SMC) - http://support.apple.com/kb/ht3964
    Apple Computers: Troubleshooting the slot-loading SuperDrive - http://support.apple.com/kb/HT2801

  • Hi! I have an iPhone 4s and when I FaceTime the sound is really low. When I phone call someone, its totally different and works better. I also have a MacBok Pro and the FaceTime sound works perfectly there as well. Can someone pls help me? Thanks :)

    Hi! I have an iPhone 4s and when I FaceTime the sound is really low. It´s really annoying. When I do phone calls it works, and on my MacBook Pro it works much better on FaceTime than on my phone. Can someone pls help to so solute this? Really need help! Thanks

    This sounds like something similar to https://discussions.apple.com/thread/3388112?start=105&tstart=0.
    Try turning down the speak volume (System Preferences->Sound->Output->Output Volume)  or the microphone gain (System Preferences->Sound->Input->Input Volume). Do this on both sides of the call.

  • Can someone pls help me with java on my macbook pro because after i download the mountain lion java has died and i need java to see streaming quotes from stock market

    can someone pls help me with java on my macbook pro because after i download the mountain lion java has died and i need java to see streaming quotes from stock market

    Java is no longer included in Mac OS X by default. If you want Java, you will have to install it.
    However, note that you should think twice before installing Java for such a trivial need as looking at stock market quotes. There are other ways to get that information that don't involve Java, and using Java in your web browser is a HUGE security risk right now. Java has been vulnerable to attack almost constantly for the last year, and has become a very popular, frequently used method for getting malware installed via "drive-by downloads." You really, truly don't want to be using it. See:
    Java is vulnerable… Again?!
    http://java-0day.com

  • HT1212 The problem is that my iphone isnt connected/synced to iTunes and i've forgotten my password so iTunes isnt connected either so can someone pls help me?

    The problem is that my iphone isnt connected/synced to iTunes and i've forgotten my password so iTunes isnt connected either so can someone pls help me?
    PLEASE HELP ME

    Hi Someonewashere,
    In the article you were coming from, there is actually a section regarding what to do if you have never synced to iTunes before:
    If you have never synced your device with iTunes, or you do not have access to a computer
    If you see one of following alerts, you need to erase the device:
    "iTunes could not connect to the [device] because it is locked with a passcode. You must enter your passcode on the [device] before it can be used with iTunes."
    "You haven't chosen to have [device] trust this computer"
    If you have Find My iPhone enabled, you can use Remote Wipe to erase the contents of your device. If you have been using iCloud to back up, you may be able to restore the most recent backup to reset the passcode after the device has been erased.
    Alternatively, place the device in recovery mode and restore it to erase the device:
    Disconnect the USB cable from the device, but leave the other end of the cable connected to your computer's USB port.
    Turn off the device: Press and hold the Sleep/Wake button for a few seconds until the red slider appears, then slide the slider. Wait for the device to shut down.
    While pressing and holding the Home button, reconnect the USB cable to the device. The device should turn on.
    Continue holding the Home button until you see the Connect to iTunes screen.
    iTunes will alert you that it has detected a device in recovery mode. Click OK, and then restore the device.
    iOS: Forgotten passcode or device disabled after entering wrong passcode
    http://support.apple.com/kb/HT1212
    Regards,
    - Brenden

  • I purchased an iPod touch few months back. And i am very upset with the volume output it produces. iPod being an music player, has poor volume quality then my iPhone 3gs. Can anyone pls help. How do i rectify it?

    i purchased an iPod touch few months back. And i am very upset with the volume output it produces. iPod being an music player, has poor volume quality then my iPhone 3gs. Can anyone pls help. How do i rectify it?

    Problem with both the speaker and earphones?
    Have you tried another pair of headphones?
    Yu can try the standard fixes to rule out a software problem:
    - Reset. nothing is lost.
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup
    - Restore to factory defaults/new iPod.

  • Can someone PLEASE show me how to Create a play list on a ZEN TOuch

    )ok from what i see so far i go on the player i select the track i want.
    2) Then i go too create play list and name the playlist
    3) But when i go to add other songs i witness 2 problems
    a) It saves all the songs for that artist
    b) it ask too override what was in the play list so i lose the songs i saved before?
    4) What is the whole point of the select as is button?
    Can someone please show me how to make a play list on the player not the media source....

    I don't mean to bump this after over a month, but I just found it with a search. I agree... playlist creation seems like it would be such a simple thing... and they make it so hard.
    Would added playlist function be able to be upgraded through firmware?
    It seems like along with the "Add to selected", there could be an "Add to playlist" thing you could click, then it would ask which plalist you would like to add it to. That way, even from the 'Now Playling' listing, you could add a song that's playing right now to any one of your playlists. Or you wouldn't have to interrupt what's playing to add a track in the library.
    The Zen software is pretty terrible too... you can't even easily arrange your playlist. You have to drag the tracks. I can't just click something like "Arrange playlist by artist" or anything. It's crazy.
    I love that you can do playlists... a lot of players don't even have this feature. But it seems like they could easily make it more... well... easy for us.
    For a software solution, I've found the Zen Winamp plugin to be by far the best thing for making playlists. It's great!
    - Darin

  • Using weblogic as web server for Enterprise Manager can someone pls help?

    hello,
    can i have your help on this?
    i want to use Weblogic as web server instead of apache in the structure of Enterprise Manager 10g R3?
    have any of you try this? can someone please provide me some link related to how to configure Weblogic as web server for Enterprise Manager.
    Many thanks in advance
    Cheers,
    Cosmin

    You'll probably have better luck posting in the Enterprise Manager forum:
    Enterprise Manager

  • Can someone pls help me with setting up an apple id.Whats the itunes gift code?

    Hi,
    I have recently purchased an iphone 5S. I am not able to use my apple ID in app store as it states you have to reveiw it in itunes before you proceed.When i review it, it asks for my credit card details.Thats fine.However I am not able to get itunes gift code.Can someone help me with this.Thanks

    Hi,
    I have recently purchased an iphone 5S. I am not able to use my apple ID in app store as it states you have to reveiw it in itunes before you proceed.When i review it, it asks for my credit card details.Thats fine.However I am not able to get itunes gift code.Can someone help me with this.Thanks

  • Can someone pls help me?

    I am trying to "see & hear" my MACBOOK on my HDTV. I have the picture connected perfectly. But I cannot get the audio to work. I have hooked it with a cable from my Macbook where I put headphones and speakers into the back of the TV... can someone confirm which port I am supposed to have the red and white ends plugged in to?
    Thank you VERY much.
    HJB

    Thank you. But I used the PC video in port from a DVI cable. So there is ONE light green round (but a LITTLE larger than most) port for "PC/DVI AUDIO IN" beside it. It obv does not correlate to the red and white plugs I have. Is there and do I need a special cable for that? Hope that makes sense.
    Ideas?
    Thanks so much.

  • Trying to copy files and getting this error message, One or more items can't be copied because you don't have permission to read them. this is really annoying, can someone pls help..?

    i have two network drive and i am trying to copy a file from my mac mini to one of the network drives, but i keep getting this error message "One or more items can’t be copied because you don’t have permission to read them." i have no idea why this is since i have always been able to copy stuff back and forth. i checked my file sharing permissions and it is set to read and write for admin (me), none for everyone and read for guests. can someone please, this is very annoying and this is the second time it has happened to me.

    neither move nor copy is working. both way gives same error message. what i would like to do however is move the file. yes i am logged in as a the admin and the issue is affecting not just that particular file in my system but others as well. i looked at get info and no the file is not locked but under permission, it says everyone and read only. it will not let me change this setting from get info however when i look under system preferences for file sharing, my setting is read and write for admin (me), none for everyone and read for guests.

  • Can someone advise me on how to create a feedback form in java??

    hello
    im learning to create a GUI and would like to create a feedback form like the one java website has below
    http://java.sun.com/docs/books/tutorial/forms/sendusmail.html
    could someone advise me or provide any helpful link on how to do that?I just want to learn to do a simple feedback form(just a textbox and a submit button)
    thank you
    tomleo

    That's a Swing tutorial. The idea is you learn Swing, and then use the things you learned about to create the application you want. There is nothing special about a feedback form, it just uses elements common to almost any GUI app.

  • Can someone pls help me to change AS3 code to AS2 code

    Hello! Dear All,
    I dont understand why with AS3 code my swf file is not working smooth at all. I would like to try it with AS2. In publish setting when I am selecting Flash Player 8, AS2 my swf is running good but showing lots of code errors.
    I dont have much knowledge about AS2 so if someone can help me with this...it would be great.
    Thanks,
    Cheers!
    Code1:
    import flash.external.ExternalInterface;
    ExternalInterface.addCallback("GetVars",GetVars);
    ExternalInterface.addCallback("SetVariable1",SetVariable1);
    function GetVars():Array {
    return [
      {VariableName:"SetVariable1",DefaultValue:"Variable1"}
    function SetVariable1(variable:String):void {
    for (var i:int = 0; i < numChildren; i++) {
      var mc:MovieClip=getChildAt(i) as MovieClip;
      if (mc!=null&&mc.name=='Audi_Cup') {
       mc.variable1=variable;
       mc.SetVariable1(variable);
    Code 2
    this.mask_mc.cacheAsBitmap=true;
    this.mask_mc.cacheAsBitmap=true;
    Text1.mask=(mask_mc);
    function SetVariable1(variable:String):void {
    if (variable!=null) {
      for (var i:int = 0; i < numChildren; i++) {
       var mc:MovieClip=getChildAt(i) as MovieClip;
       if (mc!=null&&mc.name=='Text1') {
        var object:TextField=mc.getChildByName('InputTextField1') as TextField;
        if (object!=null) {
         object.text=variable;
    SetVariable1(this.variable1);

    it's possible, but unlikely, you'll fix anything by converting to as2.  so, what problems are you having with as3?

Maybe you are looking for

  • Connecting to 2012 localDB from VBA

    I have been having a very frustrating time trying to connect to a localDB database from Excel VBA. I have created a database using Visual Studio 2012 Express and in the IDE the database seems fine. I can create data and query it without problem. In V

  • Why won't Fire Fox 34.0.5 restart in limited user account ?

    FF 34.0.5 crashed while in the limited user account and won't load when I try and restart it. FF will load and start when I use the admin account with no problem(s). I've uninstalled and re-installed FF 34.0.5 twice but the limited user account still

  • IPad app is opening and closing

    Hi Guys, I have deployed app in iPad, when i try to open the app it is not opening, after clicking the app it is showing a black screen and automatically coming closing the app.

  • Alv subtotal

    HI all, I need subtotal based on 2 fields one is matnr and the other one is vben but i am getting subtotals based on only matnr but not on vbeln what could be the problem? it_sort-fieldname = 'VBELN'. IT_SORT-TABNAME = 'GI_FINAL'. IT-SORT-SPOS = '1'.

  • Create infopath form contain all records of particular table

    Hi, It has resolved my above issue. I want to create one sharepoint list connected with database and when i click on add new item, it should display infopath form.  I am able to show infopath form on click of 'Add new item' but sharepoint list not co