Transform group objects

Hello Illustrators.
I've came across a thought, how to transform a grouped object. like in Photoshop when we use the distort transformation, we can manipulate the corner points
for a particular occasion. Here in the example I have 3 rectangles one smaller than another, and I I have grouped them. Now I'm trying to figure out a way how to adjust
the shape into the grey one. I have used the free distort tool, but does no justice. because there is no preview so I cannot see how it adjusts. I'm only after the equivalent of the distorition
like in Photoshop.
Thank you.

The root problem--as I've been pointing out here ever since Illustrator acquired envelopes--is that Illustrator envelopes insist on being created with their curve handles auto-extended. FreeHand, by comparison, provides you a choice of whether a rectangular envelope has its handles initially extended or retracted. So such a thing in FreeHand is as no-brainer simple as applying a rectangular envelope and then dragging its four corners to where you want them (just as in Photoshop).
To do that in Illustrator, you have to tediously set up guides so as to try to replicate the proportional positions of the envelope's extended handles on each side, after moving the corner points.
Using Envelope>Make With Top Object only works sometimes, because that feature does not provide any means by which to instruct the program which corner of the artwork is supposed to map to which corner of the already-drawn envelope shape. Instead, it just makes its own "guess" according to the ever-tyrannical horizontal/vertical axes of the page.
JET

Similar Messages

  • How do you add a ViewingPlatform to a Transform Group, and make it move?

    Hello,
    I am reasonably new to Java3d and have been looking around the forum about how to add a ViewingPlatform to a transform group. I did find several posts and they did help to get me to put a ViewingPlatform into a transform group, but now I have a problem of not being bale to move it:
    The public void actionPerformed(ActionEvent e ) is where the code changes the xloc and zloc variables and make the transform group move. However I get an error when I try to add the Camera to this transform group which is moved.
    Thanks in Advance.
    Mahen.net

    My code is:
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.event.WindowAdapter;
    import com.sun.j3d.utils.applet.MainFrame;
    import com.sun.j3d.utils.universe.*;
    import javax.media.j3d.*;
    import javax.vecmath.*;
    import com.sun.j3d.utils.geometry.Sphere;
    import javax.swing.Timer;
    import com.sun.j3d.utils.geometry.ColorCube;
    import com.sun.j3d.loaders.objectfile.ObjectFile;
    import com.sun.j3d.loaders.*;
    public class BouncingBall extends Applet implements ActionListener, KeyListener {
         private Button go = new Button("Go");
         private TransformGroup objTrans;
         private TransformGroup vpTrans;
         private Transform3D trans = new Transform3D();
         private Transform3D trans2 = new Transform3D();
         private Timer timer;
         private float xloc=0.0f;
         private float zloc=0.0f;
         public BranchGroup createSceneGraph(SimpleUniverse su) {
            BranchGroup objRoot = new BranchGroup();
            // lanscape
            TransformGroup tg = new TransformGroup();
            TransformGroup tg1 = new TransformGroup();
            TransformGroup tg2 = new TransformGroup();
            TransformGroup tg3 = new TransformGroup();
            TransformGroup tg4 = new TransformGroup();
            tg.addChild(tg1);
            tg.addChild(tg2);
            tg.addChild(tg3);
            tg.addChild(tg4);
            Transform3D transform1 = new Transform3D();
            Transform3D transform2 = new Transform3D();
            Transform3D transform3 = new Transform3D();
            Transform3D transform4 = new Transform3D();
            transform1.setTranslation(new Vector3f(2.0f,0.0f,0.0f));
            transform2.setTranslation(new Vector3f(-1.5f,0.0f,0.0f));
            transform3.setTranslation(new Vector3f(1.0f,1.0f,-2.0f));
            transform4.setTranslation(new Vector3f(-2.0f,-1.0f,1.0f));
            tg1.setTransform(transform1);
            tg2.setTransform(transform2);
            tg3.setTransform(transform3);
            tg4.setTransform(transform4);
            tg1.addChild(new ColorCube(0.4));
            tg2.addChild(new ColorCube(0.4));
            tg3.addChild(new ColorCube(0.4));
            tg4.addChild(new ColorCube(0.4));
            objRoot.addChild(tg);
            //character
            objTrans = new TransformGroup();
            objTrans.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
            objRoot.addChild(objTrans);
            objTrans = new TransformGroup();
            objTrans.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
            Transform3D pos1 = new Transform3D();
            pos1.setTranslation(new Vector3f(0.0f,-0.5f,0.0f));
            objTrans.setTransform(pos1);
            // loading object
            try
                   Scene s = null;
                   ObjectFile f = new ObjectFile ();
                        f.setFlags (ObjectFile.RESIZE | ObjectFile.TRIANGULATE | ObjectFile.STRIPIFY);
                   String s1 = "gun.obj";
                   s = f.load (s1);
                   objTrans.addChild (s.getSceneGroup ());
              catch (java.io.FileNotFoundException ex){
            objRoot.addChild(objTrans);
            // lighting
            BoundingSphere bounds = new BoundingSphere(new Point3d(0.0,0.0,0.0), 100.0);
            Color3f light1Color = new Color3f(1.8f, 0.1f, 0.1f);
            Vector3f light1Direction = new Vector3f(4.0f, -7.0f, -12.0f);
            DirectionalLight light1  = new DirectionalLight(light1Color, light1Direction);
            light1.setInfluencingBounds(bounds);
            objRoot.addChild(light1);
            Color3f ambientColor = new Color3f(1.0f, 1.0f, 1.0f);
            //camera
            Vector3f translate = new Vector3f();
            TransformGroup vpTrans = new TransformGroup();         
            vpTrans.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
            vpTrans = su.getViewingPlatform().getViewPlatformTransform();
            vpTrans = new TransformGroup();
            vpTrans.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
            Transform3D T3D = new Transform3D();     
            T3D.setTranslation(translate);
            translate.set( 0.0f, 0.0f, 3.0f);
            vpTrans.setTransform(T3D);
            return objRoot;
         }

  • Adding Two Spheres to Same Transform Group

    Should be a simple question. How do I add two spheres to the same TransformGroup?
    With this code, only one sphere is displayed:
    TransformGroup tg = new TransformGroup();
    Sphere sphere001 = new Sphere(0.1f);
    Vector3f vector = new Vector3f(0.0f, 0.0f, 0.0f);
    Transform3D transform = new Transform3D();
    transform.setTranslation(vector);
    tg.setTransform(transform);
    tg.addChild(sphere001);
    Sphere sphere002 = new Sphere(0.1f);
    Vector3f vector002 = new Vector3f(0.0f, 0.5f, 0.0f);
    Transform3D transform2 = new Transform3D();
    transform2.setTranslation(vector002);
    tg.setTransform(transform2);
    tg.addChild(sphere002);

    Not totally sure but i think the second tg.setTransform() overwrites the previous transform thus both spheres are transformed to the same insertion point, so the 2nd sphere is "covering" the 1st? Maybe each transform group can only apply 1 common set of transform on all child objects.
    I had a similar problem and the following works for me:
    Try putting the 2 spheres in seperate BranchGroups, this ensures that there are 2 independent transforms. You can then add the 2 BranchGroups to either your SimpleUniverse to be displayed (i'm guessing thats your objective) or even to another common TransformGroup (say you want the 2 spheres to be inserted at 2 differnt points but then moved together to another location)
    //1st BranchGroup contains some Transform Group
    BranchGroup bg1 = new BranchGroup();
    TransformGroup tg1 = new TransformGroup();
    Sphere sphere001 = new Sphere(0.1f);
    Vector3f vector = new Vector3f(0.0f, 0.0f, 0.0f);
    Transform3D transform = new Transform3D();
    transform.setTranslation(vector);
    tg1.setTransform(transform);
    tg1.addChild(sphere001);
    bg1.addChild(tg1);
    //2nd BranchGroup constains another Transform Group
    BranchGroup bg2 = new BranchGroup();
    TransformGroup tg2 = new TransformGroup();
    Sphere sphere002 = new Sphere(0.1f);
    Vector3f vector002 = new Vector3f(0.0f, 0.5f, 0.0f);
    Transform3D transform2 = new Transform3D();
    transform2.setTranslation(vector002);
    tg2.setTransform(transform2);
    tg2.addChild(sphere002);
    bg2.addChild(tg2);
    //eg, moving the 2 spheres together after they are inserted in different places
    TransformGroup moveTogether = new TransformGroup();
    Vector3f vector003 = new Vector3f(0.2f, 0.2f, 0.2f);
    Transform3D transform3 = new Transform3D();
    transform3.setTranslation(vector003 );
    moveTogether.addChild(bg1);
    moveTogether.addChild(bg2);

  • Turn off free transform on objects

    Is there a way to turn off the free transform on objects? This is a helpful function sometimes, other times it is the most annoying thing, especially when I am working with small dots marking map locations.
    I am using Illustrator CC 2014
    Thank you for any input.

    Marcia,
    What happens in CC2014 if you
    A) Use the Group Selection Tool (the Direct Selection Tool with the + (see the flyout),
    or
    B) First Alt/Option Click the object with the Direct Selection Tool then ClickDrag with it?

  • Error while creating MV replication group object

    Hi,
    I am getting error while creating replication group object. I tried to create using OEM and SQLPlus
    OEM error
    This error while creating M.V. rep. group object
    There is a table or view named SCOTT.EMP.
    It must be dropped before a materialized view can be created.
    In SQLPLUS
    SQL> CONNECT MVIEWADMIN/MVIEWADMIN@SWEET
    Connected.
    SQL>
    SQL> BEGIN
    2 DBMS_REPCAT.CREATE_MVIEW_REPOBJECT (
    3 gname => 'SCOTT',
    4 sname => 'KARTHIK',
    5 oname => 'emp_mv',
    6 type => 'SNAPSHOT',
    7 min_communication => TRUE);
    8 END;
    9 /
    BEGIN
    ERROR at line 1:
    ORA-23306: schema KARTHIK does not exist
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 86
    ORA-06512: at "SYS.DBMS_REPCAT_SNA_UTL", line 2840
    ORA-06512: at "SYS.DBMS_REPCAT_SNA_UTL", line 773
    ORA-06512: at "SYS.DBMS_REPCAT_SNA_UTL", line 5570
    ORA-06512: at "SYS.DBMS_REPCAT_SNA", line 82
    ORA-06512: at "SYS.DBMS_REPCAT", line 1332
    ORA-06512: at line 2
    Please not already I have created KARTHIK schema.

    Arthik,
    I think I know what may have happened.
    As I can see you are trying to create support for an updateable materialized view.
    You have to make sure the name of the schema that owns the materialized view is the same as the schema owner of the master table (at master site).
    From the code you have shown, I bet the owner of table EMP is SCOTT.
    From the other hand, you want to create materialized view EMP_MV under schema KARTHIK that refers to table SCOTT.EMP at master site.
    According to the documentation, the schema name used in DBMS_REPCAT.CREATE_MVIEW_REPOBJECT must be same as the schema that owns the master table.
    Please check the documentation at the link below
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14227/rarrcatpac.htm#i109228
    I tried to reproduce your example in my environment, and I got exactly the same error which actually confirms my assumption that the reason for the error is the fact that you tried to create the materialized view in a schema with different name than the one where master table exists.
    I'll skip some of the steps that I used to create the replication environment.
    I have two databases, DB1.world and DB2.world
    On DB2.world I will generate replication support for table EMP which belongs to user SCOTT
    SQL> conn scott/*****@DB2.world
    Connected.
    SQL>create materialized view log on EMP with primary key;
    Materialized view log created.
    SQL>
    SQL>conn repadmin/*****@DB2.world
    Connected.
    SQL>BEGIN
      2       DBMS_REPCAT.CREATE_MASTER_REPGROUP(
      3         gname => 'GROUPA',
      4         qualifier => '',
      5         group_comment => '');
      6*   END;
    PL/SQL procedure successfully completed.
    SQL>BEGIN
      2       DBMS_REPCAT.CREATE_MASTER_REPOBJECT(
      3         gname => 'GROUPA',
      4         type => 'TABLE',
      5         oname => 'EMP',
      6         sname => 'SCOTT',
      7         copy_rows => TRUE,
      8         use_existing_object => TRUE);
      9*   END;
    10  /
    PL/SQL procedure successfully completed.
    SQL> BEGIN
      2       DBMS_REPCAT.GENERATE_REPLICATION_SUPPORT(
      3         sname => 'SCOTT',
      4         oname => 'EMP',
      5         type => 'TABLE',
      6         min_communication => TRUE);
      7    END;
      8  /
    PL/SQL procedure successfully completed.
    SQL>execute DBMS_REPCAT.RESUME_MASTER_ACTIVITY(gname => 'GROUPA');
    PL/SQL procedure successfully completed.
    SQL> select status from dba_repgroup;
    STATUS                                                                         
    NORMAL                                                                          Now let's create updateable materialized view at DB1. Before that I want to let you know that I created one sample in DB1 user named MYUSER. MVIEWADMIN is Materialized View administrator.
    SQL>conn mviewadmin/****@DB1.world
    Connected.
    SQL>   BEGIN
      2       DBMS_REFRESH.MAKE(
      3         name => 'MVIEWADMIN.MV_REFRESH_GROUPA',
      4         list => '',
      5         next_date => SYSDATE,
      6         interval => '/*1:Hr*/ sysdate + 1/24',
      7         push_deferred_rpc => TRUE,
      8         refresh_after_errors => TRUE,
      9         parallelism => 1);
    10    END;
    11  /
    PL/SQL procedure successfully completed.
    SQL>   BEGIN
      3       DBMS_REPCAT.CREATE_SNAPSHOT_REPGROUP(
      5         gname => 'GROUPA',
      7         master => 'DB2.wolrd',
      9         propagation_mode => 'ASYNCHRONOUS');
    11    END;
    12  /
    PL/SQL procedure successfully completed.
    SQL>conn myuser/*****@DB1.world
    Connected.
    SQL>CREATE MATERIALIZED VIEW MYUSER.EMP_MV
      2    REFRESH FAST
      3    FOR UPDATE
      4    AS SELECT EMPNO, ENAME, JOB, MGR, SAL, COMM, DEPTNO, HIREDATE
      5*      FROM   [email protected];
    Materialized view created.
    SQL>conn mviewadmin/******@DB1.world
    Connected.
    SQL> BEGIN
      2       DBMS_REFRESH.ADD(
      3         name => 'MVIEWADMIN.MV_REFRESH_GROUPA',
      4         list => 'MYUSER.EMP_MV',
      5         lax => TRUE);
      6    END;
      7  /
    PL/SQL procedure successfully completed.And now lets run CREATE_MVIEW_REPOBJECT.
    SQL>   BEGIN
      2       DBMS_REPCAT.CREATE_MVIEW_REPOBJECT(
      3         gname => 'GROUPA',
      4         sname => 'MYUSER',
      5         oname => 'EMP_MV',
      6         type => 'SNAPSHOT',
      7         min_communication => TRUE);
      8    END;
      9  /
      BEGIN
    ERROR at line 1:
    ORA-23306: schema MYUSER does not exist
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 86
    ORA-06512: at "SYS.DBMS_REPCAT_SNA_UTL", line 2840
    ORA-06512: at "SYS.DBMS_REPCAT_SNA_UTL", line 773
    ORA-06512: at "SYS.DBMS_REPCAT_SNA_UTL", line 5570
    ORA-06512: at "SYS.DBMS_REPCAT_SNA", line 82
    ORA-06512: at "SYS.DBMS_REPCAT", line 1332
    ORA-06512: at line 3 I reproduced exactly the same error message.
    So the problem is clearly in the schema name that owns the materialized view.
    Now lets see if what would happen if I create the MV under schema SCOTT which has the same name as the schema on DB2.world where the master table exists.
    SQL>conn scott/****@DB1.world
    Connected.
    SQL>CREATE MATERIALIZED VIEW SCOTT.EMP_MV
      2    REFRESH FAST
      3    FOR UPDATE
      4    AS SELECT EMPNO, ENAME, JOB, MGR, SAL, COMM, DEPTNO, HIREDATE
      5*      FROM   [email protected];
    Materialized view created.
    SQL>conn mviewadmin/******@DB1.world
    Connected.
    SQL> BEGIN
      2       DBMS_REFRESH.ADD(
      3         name => 'MVIEWADMIN.MV_REFRESH_GROUPA',
      4         list => 'SCOTT.EMP_MV',
      5         lax => TRUE);
      6    END;
      7  /
    PL/SQL procedure successfully completed.And now lets run CREATE_MVIEW_REPOBJECT.
    SQL>   BEGIN
      2       DBMS_REPCAT.CREATE_MVIEW_REPOBJECT(
      3         gname => 'GROUPA',
      4         sname => 'SCOTT',
      5         oname => 'EMP_MV',
      6         type => 'SNAPSHOT',
      7         min_communication => TRUE);
      8    END;
    PL/SQL procedure successfully completed.As you can see everything works fine when the name of the schema owner of the MV at DB1.world is the same as the schema owner of the master table at DB2.world .
    -- Mihajlo
    Message was edited by:
    tekicora

  • Grouped objects not saved correctly

    I group objects (graphics and text), save the file, but when I open it again, grouped objects are moved, sometimes outside the slide. This seems to affect graphics dropped onto keynote, and only of they are grouped. Graphics & text produced inside keynote, using its graphing tools are displayed correctly.
    Anyone sees the same behavior? More importantly, anyone has a fix?
    Keynote 08
    OS 10.6.2

    Hi,
    I noticed that I can not change the precision on a column in one of my tablesProbably that's a FK column.
    For the other problem - probably it's caused by merge conflict and you have in the file symbols <<<<<< >>>>>> and non valid XML elements. You can try to replace the content of the file manually using version from repository. There will be better processing of suche cases in next release.
    Philip

  • Can't group objects in Captivate?

    Why no option to "group" objects in Captivate? -- not only is this standard in vector graphics programs (Freehand, Illustrator, Flash, even in Word), it's necessary for efficient editing.

    Hi there
    You may group, but the grouping is temporary.
    Note that Captivate is not a vector application. Instead it is a raster based applicaton. Perhaps that explains it?
    If you really would like to see it emerge as a future option, please submit a Wish Form to ask for it.
    Click here to visit the Wish Form/Bug Reporting Form
    Cheers... Rick
    Click here for Adobe Certified Captivate and RoboHelp HTML Training
    Click here for the SorcerStone Blog
    Click here for RoboHelp and Captivate eBooks

  • General exception in deploy transformation for object "ZWAD_PPQM_Q009.

    hi experts
    I am getting this error when i am tring to access  report
    General exception in deploy transformation for object "ZWAD_PPQM_Q009.
    thanks

    Hi,
    Please help.
    How did you manage to resolve this. I have similar issues.
    I have SAP_ALL and can run the reports without problems but users have error message
    general exception in deploy transformation for object "WEB_TEMPLATE"
    thanks

  • CP5 - W7 - Nested/Grouped objects - Not possible

    Hi dear community,
    I use Photoshop, Premiere, after effects, and many other adobe produts...
    All of them have something in common, you can group or nest objects, vector based or pixel based media does not matter.
    In Premiere, yoy can group a film a title and some effects into a cilp, and then use that clip as a object.
    In Photoshop you can create folders under layers and use those to manage several objects at once.
    But what about captivate? Even the "not to be mensioned here PowerPoint" can group objects.
    Why is it so that within a company one does not reuse smart ideas and maby code?
    Do not get me wrong, I love all the posibilities with captivate, but explode sometimes on the small unessesary to forget to develop things.
    And to you who want to tell me about SHIFT, that is not what I am talking about
    Thank you for reading!
    // Daniel

    Hello,
    Sorry for that, must have been tired. The link is in the main page of these CP-forums, but here you have it too:
    Feature Request Form
    Lilybiri

  • Transform an object draft (purchase invoice) to one final with SDK.

    Some body help me.
              I need transform an object draft (purchase invoice) to one final with SDK.  
    I want make a massive approving puchase invoice in draf mode.
    How can i do that???
    CGM

    Hi,
    Different DI API Versions handles different XML versions.
    see ocompany documentation or you can use the following to reach version 2.
           oCompany.XmlExportType = SAPbobsCOM.BoXmlExportTypes.xet_ExportImportMode
           oCompany.XMLAsString = False
    You can define in the xml file the version. Even if you have an older version it can work also.
    I have put here a stocktransfer, but i have found a Purchase Invoice
    Here is version 1/2 from 2004ABC versions up to 2007AB ... I had a full function for you.input is the draft absentry.
        Private Function saveDraftAsPurchaseInvoice(ByVal AbsEntry As String) As Boolean
            'oCompany.XmlExportType = SAPbobsCOM.BoXmlExportTypes.xet_ExportImportMode
            'oCompany.XMLAsString = False
            Dim oPI As SAPbobsCOM.Documents = oCompany.GetBusinessObject(BoObjectTypes.oPurchaseInvoices)
            If oPI.GetByKey(1) Then
                oPI.SaveXML(My.Application.Info.DirectoryPath & "\sample_Purchase_invoice.xml")
            End If
            Dim oDraft As SAPbobsCOM.Documents = oCompany.GetBusinessObject(BoObjectTypes.oDrafts)
            If oDraft.GetByKey(AbsEntry) = False Then
                Return False
            End If
            Dim FileName As String = My.Application.Info.DirectoryPath & "\18_" & CStr(DateDiff(DateInterval.Second, CDate("2007/01/01"), Now)) & ".xml"
            Dim xmlString As String
            Dim oXmlDoc As New Xml.XmlDocument
            xmlString = oDraft.GetAsXML()
            ' event this is not set you have version 1 using table names!
            'oCompany.XmlExportType = SAPbobsCOM.BoXmlExportTypes.xet_ExportImportMode -> version 2 of XML DI API, using DOCUMENT instead
            ' of table name !
            xmlString = xmlString.Replace("<Object>112</Object>", "<Object>18</Object>")
            xmlString = xmlString.Replace("<ODRF>", "<OPCH>")
            xmlString = xmlString.Replace("</ODRF>", "</OPCH>")
            xmlString = xmlString.Replace("<DRF1>", "<PCH1>")
            xmlString = xmlString.Replace("</DRF1>", "</PCH1>")
            xmlString = xmlString.Replace("<DRF3>", "<PCH3>")
            xmlString = xmlString.Replace("</DRF3>", "</PCH3>")
            xmlString = xmlString.Replace("<DRF6>", "<PCH6>")
            xmlString = xmlString.Replace("</DRF6>", "</PCH6>")
            oXmlDoc.LoadXml(xmlString)
            oXmlDoc.Save(FileName)
            Dim oDoc As SAPbobsCOM.Documents = oCompany.GetBusinessObject(BoObjectTypes.oPurchaseInvoices)
            Try
                oDoc = oCompany.GetBusinessObjectFromXML(FileName, 0)
                oDoc.Comments = oDraft.Comments & " DI API ADDED FROM DRAFT"
                oDoc.DocNum = 0
                oDoc.DocDate = Date.Today
                oDoc.DocDueDate = Date.Today
                oDoc.TaxDate = Date.Today
                lRetCode = oDoc.Add()
                'Kill(FileName)
                If lRetCode = 0 Then
                    Dim NewEntry As String = String.Empty
                    Call oCompany.GetNewObjectCode(NewEntry)
                    sbo_application.StatusBar.SetText(NewEntry)
                Else
                    sbo_application.StatusBar.SetText(oCompany.GetLastErrorCode.ToString & " - " & oCompany.GetLastErrorDescription)
                End If
            Catch ex As Exception
                sbo_application.StatusBar.SetText(ex.Message)
            End Try
        End Function
    Regards
    J.
    Edited by: Janos  Nagy on Aug 12, 2008 1:13 PM

  • Change center of grouped objects

    Hi,
    I am making a very simple animation and this might not be the best tool for it but I don't know another (and I'm using CS4).
    For each frame of the animation I have an artboard and in each artboard I move whatever objects need to be moved in that frame relative to the previous one.
    When I look at the movie, each frame is not properly aligned with the previous one and so my question.
    Is it possible to group all objects in a given frame and then define a center for all the whole group so that I can change this center to be a static point in the animation and then use that center to position all grouped objects relative to the artboard?
    Thanks in advance
    Pablo

    You can set a reference point in a symbol.
    But maybe you'd better show something ...

  • Enumerating members of a Group object

    Is there anything specific you must do to enumerate the �member� attribute of a group Object via JNDI.
    I am using an instance of ADAM as a test Directory. I can search for Group objects with no problem, but when I process the results/object attributes I find that the member attribute is always null ?

    The problem was with my Test Directory not my JNDI code - installed and populated a new instance of my ADAM test Directory and Group member enumeration is working fine now.

  • Flowing Grouped objects

    Hi All,
    I am working on a product catalog in InDesign 6 and need some help flowing grouped objects (2 images and 1 text frame) through a 3 column 2 row layout. How do I set it up so when I add more products/grouped objects the current products flow to the next cell or even next page? I'm stuck! Any help on this would be greatly appreciated!

    Use anchor object to anchor image to text, then when move text the image move with it.

  • Resizing grouped objects keynote

    In keynote I would like to be able to resize grouped objects without maintaining proportionality - is this possible?
    The "Constrain Proportions" button is greyed out for grouped objects for me.
    I'm using version 6.2

    Why can't I resize grouped objects in the new Keynote without constraining proportions
    The only people who can give an informed answer are the Apple engineers, however they don't post in the user to user community.
    Keynote 5.3 certainly could do this, but the latest version of Keynote is a completely separate application with different tools and features and file format.
    You can let Apple know of your concern by using:     Apple Feedback

  • Transformation of Objects from XI 3.0 to PI 7.0

    Hi,
        I had Developed Objects in XI 3.0...
        Is it Possible to Transform my Objects from XI 3.0 to PI 7.0
        If Possible, Let me Know, my Developed Objects will run smoothly in PI 7.0    With any additional Configuration. otherwise tell me Additional Configuration Required.

    Hi
    Try with this
    /people/sravya.talanki2/blog/2005/11/02/overview-of-transition-from-dev-to-qa-in-xi
    /people/community.user/blog/2007/01/18/steps-for-a-sound-footing-in-your-xi-project
    Best Approaches for Moving DEV to QA
    https://websmp104.sap-ag.de/~sapdownload/011000358700001684302005E/HowToSLDandXI.pdf
    http://help.sap.com/saphelp_nw2004s/helpdata/en/93/a3a74046033913e10000000a155106/frameset.htm
    Thanks

Maybe you are looking for