two objects with a single mask image

Hello guys

can someone guide me how to tow mask objects (a box and other image) present in the same canvas with the third image which are also in the same canvas.i may hide a single object at a time, but need of solution both.any mask?

Thanks in advance

Vineet sharma

Try puuting the box and the image in a single container (canvas, Hbox, etc) and mask the container.

Tags: Flex

Similar Questions

  • Two actions with a single button Oracle adf

    Hello
    Dear all,
    I want two action with a single button. Before posting, I studied this thread, but it seems that it cannot solve my problem two actions with a single button?
    It's my button and its action http://4.bp.blogspot.com/-tpP5wIW8JLI/T66zhLZgG0I/AAAAAAAAAPY/F1A-Ka8KGPY/s1600/req1.JPG
    getReqID button is actually a call to a procedure that returns a value to his class of action. The cb1_action function is...
    public String cb1_action() {}
    BindingContainer links = getBindings();
    OperationBinding operationBinding = bindings.getOperationBinding("getReqID");
    Object result = operationBinding.execute ();
    int id = Integer.parseInt (result.toString ());
    System.out.println ("result =" + id);
    If (! operationBinding.getErrors () .isEmpty ()) {}
    Returns a null value.
    }
    Returns a null value.
    }
    It works very well. Don't know I want to, click this button, it also opens a page of .jsff. but I'm unable to open this page.
    Help, please
    Thank you
    Muhammad Nasir

    The first image you provided shows a small 'Attention' sign on the "request for quote-global-TF" which, I guess, gives you the sentence.
    This warning tells you that there is a problem with the task flow that you imported from the pot. Move the mouse over the warning sign a see what message you get from the frame on the error. If you don't get one, in 'source' view and look for red or orange squares in the gutter of the right hand. Scroll to the position of the red square and move the mouse over the underlined part red or orange of the code.

    Timo

  • can perform us two actions with a single button in two clicks, one after the other?

    Mr President.

    can perform us two actions with a single button in two clicks, one after the other?

    I want that when I click on the button Add once it add data to the database and when I click again on this button it clears the form data to the empty fields.

    Concerning

    Tanvir

    In the code, it should be easy.

    The following code adds that a button called butman with text 'ADD '.
    It then registers a listener that will be called if the user clicks the button.

    This listener then calls the runAddData method if you clicked butman while it contained the text of "ADD" and it calls the runClearData method otherwise.
    That's why he will swap the functionality of the button between ADD and CLEAR on each click.

    final Button butman = new Button("ADD");
    butman.setOnAction(new EventHandler() {
              @Override
              public void handle(ActionEvent t) {
                        if (butman.getText().equals("ADD")) {
                                  butman.setText("CLEAR");
                                  runAddData();
                        } else {
                                  butman.setText("ADD");
                                  runClearData();
                        } // END IF-THEN
              }});
    

    I hope that's what you wanted.

    Further reflection.
    You might want to run the ADD and CLEAR methods in their own son so that it can run in the background without slowing down your user interface.

    I also reuse rather a single button for several features instead of to apply with hundreds of nodes used only rarely with masses of code to show and hide as needed.

  • Insert two tables with a single query (same ID)

    Hello

    I want to insert two tables at the same time (with a single request) provided that both records get inserted with the same identifier. How can I do this?
    Table Movies
    id 
    name
    
    Table Category
    movie_id
    cat_type
    (a) insert in the first table, retrieve the id (can be using
    my_sequence.currval
    and then insert into another table.

    question: He brings three queries to the Database, I also suspect that when several people trying to insert there is a problem, I could be wrong.

    I have no other idea.

    Greatly appreciated!

    think you need to do as an anonymous pl/sql block.

    Dim cn As New OracleConnection("DataSource = xx'; user id = xx; password = xx;")
    
    Try
     'build the anonymous pl/sql
     Dim sb as New System.Text.StringBuilder
     sb.Append("declare")
     sb.Append(" l_N number;")
     sb.Append("begin")
     sb.Append("insert into movies (id,name) values (my_sequence.nextval, 'film1') returning id  into l_N;")
     sb.Append( "insert into category values (l_N, 'Category type');")
     sb.Append(" END;")
    
     'create commd object
    
     Dim cmd as New OracleCommand(sb.ToString,cn)
     cmd.Connection.Open()
     cmd.ExecuteNonQuerry()
     cmd.Connection.Close()
     cmd.dispose()
     Catch ex as Exception
    
      blah blah blah
    
    End try
    
      
    

    Published by: pollywog on May 28, 2010 10:48

    Published by: pollywog on May 28, 2010 10:49

  • Draw two object with sceneMesh

    Hello

    I need two draw two independent vertices in the same 3D graphic models, I put the summits and index them in two different application SceneMesh and I tried to display the model in the same 3D graph but it is not possible. So does anyone have an idea how I can do this and be able to control the two items with a camera?

    Thank you in advance.

    Omar

    Hi Omar,.

    This link shows 3D how two objects can be added to the same scene. It also shows how to use object translations can be used to move objects around the stage that can be used to create the illusion of a camera moving objects over the stage window. I used these same methods of implementation when creating a ball game and palette in 3D. Translations can be performed on individual objects too, so you can allow objects change their relative position to each other.

    Is that what you had in mind?

  • Two objects with the same name

    Hi all

    In my production database, there is a materialized view and a table with the same name. The two objects have the same number and type of columns.

    Record from user_object table

    OBJECT_NAMESUBOBJECT_NAMEOBJECT_IDDATA_OBJECT_IDOBJECT_TYPECREATEDLAST_DDL_TIMETIMESTAMPSTATUSTEMPORARYGENERATEDSECONDARYNAMESPACEEDITION_NAME
    TEST_OBJ151373151373TABLE22/06/201222/06/20122012-06 - 22:15:39:30VALIDNNN1
    TEST_OBJ152287MATERIALIZED VIEW22/06/201208/03/20122012-06 - 22:16:08:46VALIDNNN19

    I have another mode to normal display, TEST_NORMAL_VIEW, which selects the data of TEST_OBJ.

    Then, on which table data select. Please give some input on this subject.

    Kind regards

    Matondo

    A materialized view has 2 objects internally for her

    1. the materialized view (it is more of a model)

    2. the table that stores the actual data.

    So when you create a materialized view, you can see 2 objects created by querying the USER_OBJECTS.

    See this

    SQL> create materialized view my_test_mv as select * from emp;
    
    Materialized view created.
    
    SQL> select object_type, object_name, data_object_id from user_objects where object_name = 'MY_TEST_MV';
    
    OBJECT_TYPE        OBJECT_NAME          DATA_OBJECT_ID
    ------------------- -------------------- --------------
    TABLE              MY_TEST_MV                  1638964
    MATERIALIZED VIEW  MY_TEST_MV
    

    Now, you may notice that DATA_OBJECT_ID has null for the MV. DATA_OBJECT_ID is the Segment where the data is stored. As MV object is just a model and does not have data to null.

    The user has no direct access to the MY_TEST_MV table. See this

    SQL> drop table my_test_mv;
    drop table my_test_mv
               *
    ERROR at line 1:
    ORA-12083: must use DROP MATERIALIZED VIEW to drop "KARTHICK"."MY_TEST_MV"
    

    Also, you can associate an existing table to a materialized using the clause ON TABLE PREDEFINED view.

    Here is an example

    SQL> drop materialized view my_test_mv;
    
    Materialized view dropped.
    
    SQL> create table my_test_mv_new as select * from emp;
    
    Table created.
    
    SQL> select object_type, object_name, data_object_id from user_objects where object_name = 'MY_TEST_MV_NEW';
    
    OBJECT_TYPE         OBJECT_NAME          DATA_OBJECT_ID
    ------------------- -------------------- --------------
    TABLE               MY_TEST_MV_NEW              1638967
    
    SQL> create materialized view my_test_mv_new on prebuilt table as select * from emp;
    
    Materialized view created.
    
    SQL> select object_type, object_name, data_object_id from user_objects where object_name = 'MY_TEST_MV_NEW';
    
    OBJECT_TYPE         OBJECT_NAME          DATA_OBJECT_ID
    ------------------- -------------------- --------------
    TABLE               MY_TEST_MV_NEW              1638967
    MATERIALIZED VIEW   MY_TEST_MV_NEW
    
    SQL>
    

    Once you associate a Table with a MV direct Table access is limited. You can directly access only the MV.

  • Move two objects with a click, without grouping?

    Hello

    The problem is simple, I have three objects (two of them are related images) in the following order: images (bottom) - path of squares (middle) - (on top)

    I would like to move the images only by clicking on one of them without each other, grouping if I combine all the images they would be both on top of the square, I don't want that. I want to preserve order.

    So in other words I would like to "bind" the two pictures togheter, just like in photoshop, click on one - move two

    Is this possible?

    Thank you guys.

    ogutuie,

    In addition to say Steve, (or) if there is a reason to have and keep them together, you can:

    (1) click on top, then right-click and click next object below or last object below, then ShiftClick to have selected both select them only once.

    After that, you can move them together, or you can

    (2) select > Save selection and give them a name.

    After that, you can move the selection by clicking in the Select > selection.

    Or you can select through the layers palette.

    Hi Steve. Fall with severe wetness.

  • Two problems with a single ESW-540-24

    We sold an ESW 540 switch a customer to 3COM, which replaces the old equipment. This replacement will be on different faces, then connect some switches 3COM to Cisco equipment. We install rigth now and this two situations:

    • Machines virtual can´t obtain IP through DHCP addresses (using a different MAC address) when it is connected to the Cisco switch. Physical machines receive the IP addresses of the DHCP server without problem. This situation happened with 3COM switches.
    • When we interconect switch Cisco switches 3COM (do not use the uplink ports) the connection never goes up. Remembering that the 3COM switches are old we sets the speed to 100 Mbps Full Duplex, but it did not work.

    Please help me configure the Cisco switch,

    Kind regards

    Jiga.

    Hello Juan,.

    It is possible that the two problems may be related by the same question. The ESW 500 series uses a wizard smartport. If you want to test this, open a session in the ESW and under the home page, access the smartport Wizard and change the port to 'other '.

    Often the default value is set on computer, which allows only a MAC address to register on this port. This will stop most of the switches to transit traffic and in this case a second MAC address of your VM stops passing traffic.

  • The transition between two objects with color gradient

    Oh no! I want to make a smooth transition between objects of gradient color, but you can see a line. How can I make a smooth transition? It is not a transparant-gum... Please help me!

    probleem2.PNGprobleem.PNG

    try to use a gradient instead of the net?

    You can use the path search tool to convert forms in one section, then gradient to create the dark lines where are the current limits.

    Or you can use "pen" one of them, to blend the overlap, but you may need to add the pen to a slightly larger copy of the object and your current border point to create a mask in order to keep the edges you want to stay strong and just leave an edge of more than in the other form.

  • Two PC with a single hard drive... Not at the same time

    I'm a snowbird. 6 months in Michigan, 6 months in Arizona. All moves by automobile.

    I was moving a Dell Vostro 410 unique to each movement... not funny.

    I bought a second 410 with the travel plan only the hard drive. I'll do a clean install of Win7 Home Premium 64, as well as all software, etc. on the Michigan machine.

    What should I do to improve the chances of this hard drive works on both machines?

    Hello

    As the problem is related to the installation of the hard disk, it would be better if get you in touch with decision-making supported by the manufacturer. Support Dell will be able to you guide on the removal of the hard drive but also install on the other computer.

    For instructions on how to remove and replace the hard drive, to see the specific system repair, for more information, see you on how to get the maintenance manual see the section download and display of manuals .

    To check if your warranty is active, see the article Dell knowledge base How to check if your warranty expires

    Please visit the link below to contact Dell technical support.

    Dell Support link

    Get back to us with the last update of your question and we will be happy to help you.

    Thank you.

  • Two calls with a single button - I'll explain

    I have a URL button that calls the following in my column in the APEX;
    <script language="JavaScript" type="text/javascript">
    
    function executeCommands() 
    {
      // Instantiate the Shell object and invoke
    //its execute method.
    var oShell = new ActiveXObject("Shell.Application");
    var commandtoRun = "c:\mybook_start.bat";
    
    // Invoke the execute method.
    oShell.ShellExecute(commandtoRun, "", "", "open", "0");
    }
    
    </script>
    Now before you all go security mad, that's the only way I can call a java program of APEX I could think, if there is a way safer please let me know.


    Now before this process works I need a call to a stored procedure to run (it is an APEX process to call a stored procedure)
    Begin
    bi_pub_data_1();
    END;
    I have a button, can the button first call the stored procedure then call java script code? Please help, thanks, Doug

    You can use a java stored procedure? Or should it be called from this server?

    Also I have the second idea of Kofi in the link he gave out... We use a java stored procedure for some of our unix systems to make pl/sql stuff. Of course, you have to be careful because it can execute OS commands, but its another option.

  • Two objects in a table

    My current setup is two tables and two objects having a relationship one between them, and ObjectMD (metadata).
    Not sure why my predecessors put in place like this, but... This is how it is.

    The problem is that my table of the object (and therefore also ObjectMD) has reached 40 million lines and large joints between object and ObjectMD take forever and are completely unnecessary.

    I want to import the data from ObjectMD into the table object and move forward with a single table. The problem is that the ObjectMD table has its own java that surrounds and this code is used in places far too much for her. I need to leave the structure of Java objects in place.

    I think I should be able to create these two objects from a single table, but I can't see the descriptor. My set method must be getMetaData (.setMethod), but of course reflection of TL doesn't like it. I guess I could create new methods in the object for get/set all these areas and simply passes them to the actual methods.

    How can I set descriptors to create two objects from a single table?

    Sorry, I have answered a few posts dealing with JPA and do not talk about the solution regarding the native TopLink. An embeddable in JPA is equivalent to an Aggregate object in native TopLink. You will need to convert a global descriptor to descriptor of your ObjectMD and then replace the OneToOneMapping by an AggregateMapping.

    AggregateMappings are described in the 11 documentation to:
    http://download.Oracle.com/docs/CD/E12839_01/Web.1111/b32441/relmapun.htm#CHDDAAHI
    and
    http://download.Oracle.com/docs/CD/E12839_01/Web.1111/b32441/reldscfg.htm#sthref1842

    I found a little more detail 11, and they should still be applicable to the 10.1.3 release.

    Best regards
    Chris

  • Using two computers on a single monitor, keyboard and mouse.

    I want to use my two computers with a single screen, keyboard and mouse... says to use the kvm switch.  I use Windows XP on a computer and Windows Vista on the other... what kvm switch do you recommend?

    You can view the free software kvm solution below:

    Input Director
     http://www.InputDirector.com/

    I use between three computers (1-Win7 Pro x 64 single monitor, 1-WinXP Pro x 86 two monitors, 1-WinXP Home x 86 single monitor) and a single keyboard and mouse. It works fine for me, I used it for over a year without any problems. The Win7 Pro and WinXP Pro have both run several virtual machines too.

    There are several other kvm software available (Google is your friend) I tried several before input Director.

    Kind regards

  • Combining images into two separate postscript files into a single file with a single line

    I have two postscript files, each representing a pure black and white, images identically companies (generated by Eagle PCB, is not that it's all that relevant), as it is attached.   I would like to combine the two files into a single file where are the two images side fits on one line so I can print them together.   What is the easiest to do this route?

    Example files:

    https://www.dropbox.com/s/rrcw4t4bk0x5x6u/file1.PS?DL=0

    https://www.dropbox.com/s/21de4f9c35qa3w3/File2.PS?DL=0

    In fact, I could solve the problem with a little reverse engineering of the Postscript and a bash script.

    The files two postscript define a bunch of common functions and some points of reference and call these functions to draw geometries.  I just extend the width of a drawing by 2 X, remove the "grestore" from the bottom, translate the origin back to the middle and shoot another image, followed by a "grestore.

    Resulting file:

    https://www.dropbox.com/s/p378o2vtppl6v1y/combined.PS?DL=0

  • Switch between two intelligent forms with a single button?

    Hello!  I work at 8 Captivate and try to use a single button to switch between two smartshapes.  I can't for the life of me figure out how to do it.  I know its possible to make it 'show' and 'hide', but is it possible to simply create a user click on a button and whenever we click on it, it comes and goes between two different smartshapes?

    Im trying to show the user the functionality on a piece of equipment when they press a button.  When they push the button, it comes and goes between two different read out on the screen.

    Thanks in advance!

    Have you looked at the blog post that I posted a link: I offer 4 scenarios.

    It can also easily be done, if you have a separate (shape) button to switch between two different objects:

    1. Create a user with a default value of 0 v_visib variable
    2. Create two objects and one of them is visible, the other invisible output ("eye" in the Properties Panel icon); I've tagged the ShapeOne and ShapeTwo, where ShapeOne is visible at the beginning
    3. Create this advanced conditional action (you can also turn it into a shared action):

    IF v_visib equals 0
    Hide ShapeOne
    See the ShapeTwo
    Toggle v_visib
    ON THE OTHER

    Hide ShapeTwo

    See the ShapeOne

    Toggle v_visib

    4 assign this action to the success of the button event

Maybe you are looking for