Set reference point for multiple objects in the middle of the document

Hello Community,
I want to mirror a layout.
So I:
1. Select all the objekts
2. Set the reference point to the middle
3. Mirror the objects
BUT
The reference point is the middle of all the OBJECTS. That leads to several objects crossing the border of my document because the layout isn't spread out evenly.
I want to middle of the DOCUMENT to be the reference point. How can I do that?
Thanks
Christian

Have you fiugured this out on your own?
I just played around a bit and found a method, but it's not exactly intuitive. Select the object(s), then switch to the Rotate tool. The center of rotation will be defined as one of the transformation handles, but you can drag it to anywhere you like, so move it to the point that you want as the center of your mirror. Hold down the Alt/Opt key, and click the reflect button to make a mirrored copy. Without the modifier key the original objects will mirror their position around the repositioned reference.

Similar Messages

  • Set reference point for coordinates

    How to set the reference point for a rectangle in coordiate system using javascript? I want to set this value before setting the geometricBounds property
    Thanks.

    Hi,
    Try this:
    app.activeWindow.transformReferencePoint = AnchorPoint.BOTTOM_RIGHT_ANCHOR;
    Options:
    AnchorPoint.BOTTOM_CENTER_ANCHOR
    AnchorPoint.BOTTOM_LEFT_ANCHOR
    AnchorPoint.BOTTOM_RIGHT_ANCHOR
    AnchorPoint.CENTER_ANCHOR
    AnchorPoint.LEFT_CENTER_ANCHOR
    AnchorPoint.RIGHT_CENTER_ANCHOR
    AnchorPoint.TOP_CENTER_ANCHOR
    AnchorPoint.TOP_LEFT_ANCHOR
    AnchorPoint.TOP_RIGHT_ANCHOR
    Hope that helps.
    Marijan (tomaxxi)
    http://tomaxxi.com

  • Setting property for multiple objects?

    Adobe Pro X; ES2
    I need to set the access property for multiple objects based on the selection of a radio button group. I assume I have to use resolveNodes(), but cannot for the life of me get it to work. Here's what I've played with :
    if (this.rawValue == "1") { 
    xfa.resolveNodes("OtherCase_gp.[*]").access = "open";     
    } else {  
    xfa.resolveNodes("OtherCase_gp.[*]").access = "readOnly";
    If I use Action Builder, I get endless lines of "oTargetField = this.resolveNode("OtherCase_gp.OtherCaseOther_cb"); oTargetField.access = "readOnly";" There must be a better, more efficient way to do this!

    Hi,
    Here's another way to try;
    var fields = xfa.resolveNodes("OtherCase_gp.#field.(name.substring(0,9) == 'OtherCase')");
    for (var i = 0; i < fields.length; i++)
        fields.item(0).access = (this.rawValue == "1") ? "open" : "readOnly";
    This approach will only work if your fields are all under OtherCase_gp, Radzmar's solution is more general if your form has a more complicated hierarchy.
    Regards
    Bruce

  • Can one reference points to many objects?

    HI friend:
    Can I use one object reference points to all objects defined in same class? Because sometimes I only want to access some instance methods and they require a object reference to access. And it doesn't matter which object it is. For example:
    I have a table class:
    public class Table
    int tableNo;
         int tableSize;
         String tableSta;
         String reserName;
         public Table(int n, int s, String c)
              tableNo = n;
                        tableSize = s;
                        tableSta = c;
    Somewhere in the future, I will define a search method (a non-static method) inside table class and it doesn't really matter which object I use to call this method. Because the searching target is all the objects of this Table class. Is it possible to create 50 table objects from another class and use one object reference points to all these objects created and use that reference to access the search method?
    Here is the coding in another class:
    for (int i=1; i<=20; i++)
                   table = new Table(i, 2, "vacant");
                   for (int i=21; i<=30; i++)
                   table = new Table(i, 4, "vacant");
    for (int i=31; i<=50; i++)
                   table = new Table(i, 8,"vacant");
    Can I use table as object reference to access search method?

    Because if the method is static, it can't process instance variables, such as Table objects. But when I implement the search() method, it should search all table objects. That's why I don't want make the method static. :-)

  • Setting up accounts for multiple users

    Suggestions for allowing multiple users to access one account to avoid having to reimburse folks for every download on their work iPads?

    short answer, no. Mail.app does not have support within itself for multiple user accounts. It displays the messages from the mailboxes of the user that is currently logged in. so if you want multiple people to read their mail on the same mac without being able to read other users' mail, you will need to set up multiple user accounts. alternatively, use another client. i think thunderbird supports multiple mail accounts under the same user account. hope this helps.

  • How can I set a passcode that is only required at certain times of the day. Ie: my child needs access for school use, but don't want her playing iPad in the middle of the night. I cannot identify a way to have the iPad turn off or require a password

    I cannot find a way to enable my child's iPad to require a passcode only at certain times of the day.
    Yes I have used the clock/timer/ countdown - great to restrict how many minutes of iPad usage they get a day.
    But as my child requires the iPad in school for class lessons the usage at school varies maybe 30 mins 1 day and a few hrs on other days
    I want the ability to say set the iPad to not work between say 7pm and 7am, ( unless a passcode is entered) so my child isn't playing games on it in the middle of the night...
    Apple I cannot see anything in the settings that performs this function
    Help

    You can Remote Lock his iPad with Find My iPad using a computer at whatever time you like.
    http://support.apple.com/kb/PH2700
    Note: The iPad may be disabled if he tries the passcode too many times.

  • How to set different icons for different windows which is seen in the top left corner?

    Hi
    How to set different icons for different windows which is seen in the top left corner? I know when building exe there is a option to edit icons or add icons and that icon is default for all the windows in the project. But i want different icons for different windows which is possible in VB.
    Is there any way to set icon by calling any dlls.
    Thanks & Regards
    Samuel J
    [email protected]

    Hi Sam,
    no problem. See the attachment.
    Mike
    Attachments:
    TestIcon_LV85.zip ‏44 KB

  • When I type in a location for an object, Edge Animate keeps changing the location. For example, I enter the x-coordinate as 97 and it changes to 94. What's going on??

    When I type in a location for an object, Edge Animate keeps changing the location. For example, I enter the x-coordinate as 97 and it changes to 94. What's going on??
    I'm trying to put the object starting location very precisely and it won't let me.

    With those specs, I'm surprised that it runs at all.
    What kind of PC to use?

  • Setting the scrollbar to be by default in the middle of the scrollpane

    I was wondering if there was a way to set the JScrollBar to be at the middle of the scrollpane by default. I have a handle to the scrollbar and can determine the min and max of it's range, but I don't see a place to set the scrollbar position.

    This is a runnable stand-alone app.
    import java.awt.event.WindowEvent;
    import java.awt.event.WindowListener;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.Dimension;
    import java.awt.FlowLayout;
    import java.awt.Component;
    import java.awt.Color;
    import java.awt.Font;
    import javax.swing.*;
    import javax.swing.table.*;
    import java.util.*;
    public class MarketBook extends JFrame implements WindowListener,
                                                      ActionListener{
         protected final int ROW_HEIGHT = 15;
         protected final int NUM_ROW = 14;
         protected final int PREF_WIDTH = 200;
         protected final int PREF_HEIGHT = 150;
         protected final int BID_COL = 1;
         protected final int OFFER_COL = 2;
         private String instrument;
         private String mkbkID;
         private String[] instArray = {"Item1", "Item2", "Item3"};
         private String[] colNames = {"Qty", "Bid", "Offer", "Qty"};
         private Vector<String> instrumentsList = new Vector<String>();
         private DefaultTableModel dm = new DefaultTableModel(colNames, NUM_ROW);
         private DefaultTableCellRenderer renderer = new DefaultTableCellRenderer();
         JPanel contentPane = new JPanel();
         JPanel topPanel = new JPanel();
         JComboBox instList = new JComboBox(instArray);
         JTable bidOffer = new JTable(){
              public boolean isCellEditable(int row, int column){
                        return false;
         JScrollPane bidOfferScroll = new JScrollPane(bidOffer);
         public MarketBook(String _mkbkID, Vector<String> _instList){
              super(_instList.firstElement());
              this.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
              this.mkbkID = _mkbkID;
              this.instrumentsList = _instList;
              this.instrument = instrumentsList.firstElement();
              buildGUI();
         private void buildGUI(){
              TableColumn tc = null;
              contentPane.setLayout(new BoxLayout(contentPane, BoxLayout.Y_AXIS));
              bidOfferScroll.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED);
              bidOfferScroll.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
              bidOfferScroll.setPreferredSize(new Dimension(PREF_WIDTH,PREF_HEIGHT));
              System.err.println("Max: " + bidOfferScroll.getVerticalScrollBar().getMaximum());
              System.err.println("Min: " + bidOfferScroll.getVerticalScrollBar().getMinimum());
              System.err.println("Extent: " + bidOfferScroll.getVerticalScrollBar().getVisibleAmount());
              System.err.println("Value: " + bidOfferScroll.getVerticalScrollBar().getValue());
              bidOfferScroll.getVerticalScrollBar().setValueIsAdjusting(true);
              bidOfferScroll.getVerticalScrollBar().setValue(50);
              System.err.println("Value: " + bidOfferScroll.getVerticalScrollBar().getValue());
              System.err.println("Model: " + bidOfferScroll.getVerticalScrollBar().getModel());          
                        bidOfferScroll.getVerticalScrollBar().getMaximum()-
                        bidOfferScroll.getVerticalScrollBar().getMinimum())/2);*/
              topPanel.setLayout(new FlowLayout(FlowLayout.LEFT));
              topPanel.add(instList);
              instList.addActionListener(this);
              bidOffer.getTableHeader().setFont(new Font(null, Font.BOLD, 12));
              bidOffer.setAlignmentX(JTable.CENTER_ALIGNMENT);
              bidOffer.setModel(dm);
              bidOffer.getColumnModel().getColumn(0).setPreferredWidth(40);
              bidOffer.getColumnModel().getColumn(1).setPreferredWidth(60);
              bidOffer.getColumnModel().getColumn(2).setPreferredWidth(60);
              bidOffer.getColumnModel().getColumn(3).setPreferredWidth(40);               
              bidOffer.setRowHeight(ROW_HEIGHT);
              // Set table renderer
              for(int i = 0; i < bidOffer.getColumnCount(); i++){
                   tc = bidOffer.getColumnModel().getColumn(i);
                   tc.setCellRenderer(new CustomTableCellRenderer());
              contentPane.add(topPanel);
              contentPane.add(bidOfferScroll);
              JFrame.setDefaultLookAndFeelDecorated(true);
              this.setContentPane(contentPane);
              this.pack();
              this.setVisible(true);
         public void actionPerformed (ActionEvent e){
              JComboBox cb = (JComboBox)e.getSource();
              String selectedItem = (String)cb.getSelectedItem();
              updateSelectedInst(selectedItem);
         public void windowActivated(WindowEvent arg0) {
              // TODO Auto-generated method stub
         public void windowClosed(WindowEvent arg0) {
              // TODO Auto-generated method stub
         public void windowClosing(WindowEvent arg0) {
              // TODO Auto-generated method stub
              this.setVisible(false);
              this.dispose();
              System.exit(0);
         public void windowDeactivated(WindowEvent e) {
              // TODO Auto-generated method stub
         public void windowDeiconified(WindowEvent e) {
              // TODO Auto-generated method stub
         public void windowIconified(WindowEvent e) {
              // TODO Auto-generated method stub
         public void windowOpened(WindowEvent e) {
              // TODO Auto-generated method stub
         // Perform all updates necessary when new instrument is selected
         private void updateSelectedInst(String inst){
              this.setTitle(inst);
         class CustomTableCellRenderer extends DefaultTableCellRenderer{
              public Component getTableCellRendererComponent(JTable table,
                        Object value, boolean isSelected, boolean hasFocus,
                        int row, int column){
                   Component cell = super.getTableCellRendererComponent(table,
                                       value, isSelected, hasFocus, row, column);
                   if (column == BID_COL){
                        cell.setBackground(Color.red);
                   else if (column == OFFER_COL){
                        cell.setBackground(Color.blue);
                   //cell.setFont(f)
                   return cell;
         public static void main(String args[]){
              Vector<String> tempVector = new Vector<String>();
              tempVector.add("item1");
              tempVector.add("item2");
              MarketBook marketBook1 = new MarketBook("mkbk1", tempVector);
    }

  • My i pod touch was erased in the find my ipod app this has set my i pod where i cant do a thing but see a black screen with a rotating circle in the middle of the screen. i tryed to restore and itdosent download actual file to the i touch

    my i pod touch was erased in the find my ipod app this has set my i pod where i cant do a thing but see a black screen with a rotating circle in the middle of the screen. i tryed to restore and itdosent download actual file to the i touch and i cant do a thing with it please help me fix this and if thereis a way with out lossing my data would be great but however it can be done please let me know asap thank u.

    Take it to an Apple Store and they may take care of it for you.
    Basic troubleshooting steps  
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101
     In Memory of Steve Jobs 

  • I have several news sites as my home page. Previously if i clicked a link...it would open a new tab at the righthand end of the row....now it opens in the middle of the row of tabs. Cannot find the setting to change back to righthand end of row

    runung xp pro sp3....i use news sites(7 of them) as my home page. If i click a link on a news page...I am used to it opening in a tab at the far right hand end of the row of tabs. Since f'fox 5 , the new tab is opening in the middle of the row.....Can i change a setting to send the newie back to the right hand end?

    see item #36 Open new tabs on far right, restore pre Fx3.6 behavior, set '''browser.tabs.insertRelatedAfterCurrent''' to '''false''' in about:config
    *http://dmcritchie.mvps.org/firefox/firefox-problems.htm#prefx4
    You can make Firefox 4.0.1 and '''Firefox 5.0''' look like Firefox 3.6.17, see numbered items 1-10 in the following topic
    *[http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface Fix Firefox 4.0 toolbar user interface, problems (Make Firefox 4.0 look like 3.6)]
    '''More information on configuration variables''' available in
    [http://kb.mozillazine.org/About:config_entries about:config (entries)] and for users not familiar with the process there is [http://kb.mozillazine.org/About:config about:config (How to change)] -- Specialized list of only [http://dmcritchie.mvps.org/firefox/tabs_config.htm Tabs configuration] variables.

  • Hi,  I had an update massage for a wile on my phone and yesterday I decided to do the update and so I downloaded the soft w. and started to install but in the middle of the process the phone got stocked and said to connect to iTunes and so i did it a

    Hi,
    I had an update massage for a wile on my phone and yesterday I decided to do the update and so I downloaded the soft w. and started to install but in the middle of the process the phone got stocked and said to connect to iTunes and so i did it and again the process gets interrupted first saying "the software on Iphone needs to be restored to factory settings or update" and so i do it..then it comes the message the an error -39 and I can not do it and it says that I need to restore..and so I do it..but its a circle and it never ends..and I have no phone since yesterday.. all my contacts, my work..
    Can any one help please?

    Hi
    A little information will be of a great help, witch iPhone did you upgrade, memory , and version of software ( iOS 8.x.x )?
    Try restarting you iPhone and make sure you have a god internet connection , get as close to your wifi router (1-3 meter / 2-9 feet ) as possible. Don't use restore to factory  settings before you tried other options .  And most imported du you have an iCloud backup.
    //Sorenc

  • I am trying to download an update for my iphone, but in the middle of the download I get an error message that says, 'There was a problem downloading the software for iphone. The network connection timed out.' Any ideas on how to resolve this issue?

    I am trying to download an update to my iphone, but in the middle of the download, I get an error message that reads, 'There was problem downloading the software for the iphone. The network connection timed out'. Any idea how to reslove this issue?

    Hi Robertfrom Denver.
    Did you try the solution given, and if yes, did it work?
    I have done several "attempted downloads, and see the full file download, typically taking 30 minutes to complete, and then something goes wrong.
    I am happy to suspend AV and FW software, but would like to know if it is a good fix or not first?
    HelenfromBroughton Astley

  • In the middle of the installation processing, this has appeared: "There is a problem with the windows installer package. A program is required for this install to complete could not be run." my question is, what is that specific program?

    in the middle of the installation processing, this has appeared: "There is a problem with the windows installer package. A program is required for this install to complete could not be run." my question is, what is that specific program?

    Let's try the following user tip with that one:
    "There is a problem with this Windows Installer package ..." error messages when installing iTunes for Windows

  • I ve got an iPhone 6 i forgot my password i ve tried to restore it from itunes but in the middle of the downloading it asks for password

    I ve got an iPhone 6 with iOS 8.1.1i forgot my password i ve tried to restore it from itunes but in the middle of the downloading it asks for password  how do i restore my phone?

    Hi there pablo nina,
    Welcome to Apple Support Communities.
    It sounds like you’ve forgot the passcode for your iPhone and you want to know how to restore it. The article linked  below will walk you through the process of restoring your iPhone from recovery mode using iTunes.
    Forgot passcode for your iPhone, iPad, or iPod touch, or your device is disabled - Apple Support
    Cheers,
    -Jason 

Maybe you are looking for

  • Web link to pass the parameter to custom web app then update the field

    Hi, I have created the web link in service request object to refer Account Object. I want to let user able to select the account from web link then base on the current SR no and account that have created update the record in CRMOD. My question is how

  • Error in Display of Text variable

    Hello gurus, I have a requirement in which power user wants to see the output as follows : Product sold of Current year for months --- to -      /  Product Sold of Previous year for months --- to - So if on Selection screen ,user enters months 01/200

  • Query is not working properly when statistics are computed (XE 11g Windows 7 32 bits)

    Hi, We have an application with a Oracle XE 11.2 database on a Windows 7 32 bits plateform. We have a query wich access 4 tables end use a user defined package function. When the statistics are computed the query is returning no rows, (with the data

  • Custom Master Page issue with Document Set Libraries

    Details: Publishing site using SharePoint 2013.  The SharePoint is on my company's servers. Have a custom Master page that has a navigation banner (built with HTML/CSS/javascript).  The site has it applied successfully to the "Site Master Page" but w

  • Macbook not picking up External display?

    I have just brought the new macbook air and i am trying to connect it to my Pioneer Tv via a HDMI. i have pluged it in to all the right places and something strange happens... when i turn on the TV the macbook does not pick it up at all, but then whe