Using Template blue box stop movement of graphic and/or text..

I am using one of the templates...it worked fine when I was using there formatted section. However I tried to add a new page that doesn't use their text or graphics. I hit return a few times until I got a new page. I placed a graphic, but when I try to move it a blue box flashes up and I am prevented from moving the graphic. Any thoughts?

It would help if you told us which template you used or at least which type of document. You can see it to the right of the document name.
My guess is that it is a word processing document. You have use paragraph breaks (return key) to get a new empty/blank page. Then you have inserted an image.
The image is probably inserted inline. open the Inspector palette > Wrap tab, the third tab > have the image selected and click on floating. Now you can move or resize the image
Tips: Have Show invisibles turned on, it will better know what happens in the document.
When you want a new page learn to use Insert > Page break
You can download the Pages User Guide from the Pages Help menu. It will tell you a lot about the features in Pages.

Similar Messages

  • When I use the selection tool to move vector points and bend edges, I only see the change in wire frame.

    When I use the selection tool to move vector points and bend edges, I only see the change in wire frame.  Once I commit by letting go of the mouse button, the object does change.  It just previews with a wire frame. I would like to see the preview change on the solid object.  Is there a setting somewhere?
    I sure hope I am explaining this for people to understand .
    Thanks
    Ed

    Hi Ed,
    What do you mean by wire frame??And are you using selection or sub-selection tool since you have mentioned about vector point I doubt if it is sub-selection tool.Could you please attach a video demonstrating the issue where we see the mismatch in the preview and the output, so that we can understand the problem better and try to resolve it.
    Thanks,
    Sangeeta

  • I'm looking for software for my iMac to use to copy old VHS movies onto DVD and old records (digital turn table) in CDs.  Recommendations please?

    I'm looking for software for my iMAC to use to copy old VHS movies from a VCR into DVDs and records from my digital turn table into CDs.  Any recommendations?

    For the VHS movies, try googling Elgato - they make a number of USB devices that are supposed to be able to do this, but check what formatting options they offer : you will want a device that converts directly into .MOV files (to play in QuickTime), or into H.264 for iTunes / iPods, etc.
    As for the vinyl records - first you need a device that will convert the analogue output (phono) into a digital form and will connect via FireWire or USB. The Griffin iMic is one such USB device (if still available?). From there you can use the free Audacity download to read in the signal and convert to a suitable format, e.g. MP3. (You will need to use SysPrefs / Sound to switch to an external audio device, instead of your Mac's built-in mic.)
    (Wait - you said "digital turntable" - software already on your Mac? How do you use a virtual turntable to play vinyl?? Unless what you really mean is an analogue turntable that has a CD writer in it, or a USB connection to connect the turntable's DAC output to a computer?? In which case, either use your turntable to burn  CDs, or connect via USB and the free Audacity software to convert the signal to music tracks and output as MP3.

  • Problems with the text graphic and the text itself.

    Hello everybody. I have been making a site in Adobe Muse CC and I've run into some troubles. The textboxes I've made are not like textboxes, in preview mode, but more like a picture. This also makes the text look blurry when you zoom into the page. Is there a way to make the text in the textboxes like a real text and not like a picture. Make the textmoxes so that you can mark the words and letters, just like you can in a normal website.

    I have tried several fonts but it's still blurry and unclear when I preview it in a browser.
    I believe it has something to do with the textboxes.
    Karamelrand | Smith'N'Jones  You can try and look at the page here. The text is like a picture.
    Is that fixable?

  • In Adobe Flash CS6, I have a blue box appearing around lines drawn with the line tool (and other tools like brush etc). I can't figure out how to disable.

    In Adobe Flash CS6, I have a blue box appearing around lines drawn with the line tool (and other tools like brush etc). Whenever I try to use a tool,  a blue box appears around the line and I have to double click it to manipulate it, which opens just that line in a semi burred screen where all the other objects are semi-grey in the background. I can manipulate this line in this screen but nothing else at that time which I could do about 5 minutes ago. For exampe, I no longer can join up 2 lines drawn by the line tool together. For some reason this started randomly (probably due to a accidental shortcut combination) and I just can't put it back to what it used to be. I have inserted a video hopefully showing what I mean. Any help would be appreciated.

    Thank you - Just what I needed

  • Extend domain using Templates

    Hi All,
    I am trying to extend a domain by deploying FMW applications and libraries using Templates.
    addTemplates works only on offline mode and by default the applications are deployed on a AdminServer.However I am searching for a way to deploy on a managed servers.
    Please suggest a way yo deploy the applcations on a managed serve target using Templates.
    -Rajesh

    Yes.The default FMW (atgpf) domain extension templates are pre-configured with Adminserver as a target.
    Edited by: user787553 on Nov 15, 2009 8:05 AM

  • How to replace System.out.println() using templates

    can you give the complete code for my problem which is given below.
    package include;
    public class P
    public static cout(int a)
    System.out.println( a);
    public static cout(int a,int b)
    System.out.println(a + b);
    // like this i need to write to accept parameters from the class. which is importing this package
    for some more examples
    public static cout(int a,String s)
    System.out.printn(a +s);
    and many more type i.e. all types of arrangements of datatypes
    the above is the package called "include" Now Iam Importing the package in the class Hello:
    import include.P;
    public class Hello
    public static void main(String args[])
    int i=10;
    float f=12.23;
    String s="hello";
    P.cout(i,f); //cout is the static method of package(include) class " P"
    P.cout("welcome",s)
    // like this I want to send any type and any no of arguments as the System.out.println()
    will handle.
    My aim is to replace the System.out.println() with P.cout() which can be achieve in my idea by calling the static method ( such as cout() ) which internally use System.out.println() method. I am facing problem in achieving this because we donot know which type and how many parameters he will send .
    My task is we have to create a method which will accept any no.of arguments and is of any type.I think this can be done BY USING TEMPLATES.
    So please understand my problem and send me reply.I am waiting for your reply.
    thank you.

    Although I am not sure why you are doing this, if you really are trying to code a replacement for System.out.println then:
    out is a PrintStream and the println methods of PrintStream have the following signatures:
    void println()
    Terminate the current line by writing the line separator string.
    void println(boolean x)
    Print a boolean and then terminate the line.
    void println(char x)
    Print a character and then terminate the line.
    void println(char[] x)
    Print an array of characters and then terminate the line.
    void println(double x)
    Print a double and then terminate the line.
    void println(float x)
    Print a float and then terminate the line.
    void println(int x)
    Print an integer and then terminate the line.
    void println(long x)
    Print a long and then terminate the line.
    void println(Object x)
    Print an Object and then terminate the line.
    void println(String x)
    Print a String and then terminate
    So you should only need to create corresponding methods.

  • Different Consumption Account for Movement type 201 and 261

    Dear All ;
    Client want use different consumption account for movement type 201 and 261  .
    How we canmap this in SAP
    Kindly suggest .
    Regards;
    Joydeep Mukherjee

    This you can acheive by setting account assignment indicator is checked.
    OMJJ >>> Movement Type >>>Account Grouping >>Check account Assignment
    If this indicator is set, the system checks whether a G/L account or an account assignment has been specified on the item screen when user post transactional data. If so, the system copies this data to the posting line for account determination.
    If this indicator is not set, the system always uses the G/L accounts or account assignments determined automatically.

  • Trying to move a graphics object using buttons.

    Hello, im fairly new to GUI's. Anyway I have 1 class which makes my main JFrame, then I have another 2 classes, one to draw a lil square graphics component (which iwanna move around) which is placed in the center of my main frame and then another class to draw a Buttonpanel with my buttons on which is placed at the bottom of my main frame.
    I have then made an event handling class which implements ActionListner, I am confused at how I can get the graphics object moving, and where I need to place the updateGUI() method which the actionPerformed method calls from inside the event handling class.
    I am aware you can repaint() graphics and assume this would be used, does anyone have a good example of something simular being done or could post any help or code to aid me, thanks!

    Yeah.. here's an example of custom painting on a JPanel with a box. I used a mouse as it was easier for me to setup than a nice button panel on the side.
    Anyways... it should make it pretty clear how to get everything setup, just add a button panel on the side. and use it to move the box instead of the mouse.
    -Js
    import java.awt.Color;
    import java.awt.Graphics;
    import java.awt.event.MouseEvent;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.event.MouseInputAdapter;
    public class MoveBoxAroundExample extends JFrame
         private final static int SQUARE_EDGE_LENGTH = 40;
         private JPanel panel;
         private int xPos;
         private int yPos;
         public MoveBoxAroundExample()
              this.setSize(500,500);
              this.setDefaultCloseOperation(javax.swing.JFrame.EXIT_ON_CLOSE);
              this.setContentPane(getPanel());
              xPos = 250;
              yPos = 250;
              this.setVisible(true);     
         private JPanel getPanel()
              if(panel == null)
                   panel = new JPanel()
                        public void paintComponent(Graphics g)
                             super.paintComponent(g);
                             g.setColor(Color.RED);
                             g.fillRect(xPos-(SQUARE_EDGE_LENGTH/2), yPos-(SQUARE_EDGE_LENGTH/2), SQUARE_EDGE_LENGTH, SQUARE_EDGE_LENGTH);
                   MouseInputAdapter mia = new MouseInputAdapter()
                        public void mousePressed(MouseEvent e)
                            xPos = e.getX();
                            yPos = e.getY();
                            panel.repaint();
                        public void mouseDragged(MouseEvent e)
                            xPos = e.getX();
                            yPos = e.getY();
                            panel.repaint();
                   panel.addMouseListener(mia);
                   panel.addMouseMotionListener(mia);
              return panel;
         public static void main(String args[])
              new MoveBoxAroundExample();
    }

  • I have itunes set up on a PC with all my music, apps, etc. I want to stop using PC and move my iTunes and files to a Mac I bought and synch my iPhone with the Mac. Can I just synch iPhone with Mac iTunes and will it copy all my stuff onto Mac, or will I h

    I have itunes set up on a PC with all my music, apps, etc. I want to stop using PC and move my iTunes and files to a Mac I bought and synch my iPhone with the Mac. Can I just synch iPhone with Mac iTunes and will it copy all my stuff onto Mac, or will I have to copy files from PC onto Mac?

    Here are some of the links to get you started.
    https://discussions.apple.com/thread/3727530?start=0&tstart=0
    http://support.apple.com/kb/HT4527
    http://www.macworld.com/article/1146958/move_itunes_windows_mac.html

  • Blue Box doesn't shut down on Win XP - HELP! HAve to shut down using Task Manager???

    Is it really true that you must shut the Blue Box down using Task Manager on Windows XP operating system???
    On Win 98/NT/2000 the you can shut the Blue Box down by double clicking the Blue Box and shut it down. When I check the Task Manager it really is shut down.
    However, on Windows XP when I shut the Blue Box down in the same manner - it still resides in the Task manager. If I try to start the Blue Box again after shutting it down a popup window is displayed stating there is already an instance of Blue Box running.
    Any help would be appreciated - we cannot open the Task Manager and terminate the NIFB.exe in our application.
    THANX!

    It is a bug of NI-FBUS 2.3.6 version, please send e-mail to "[email protected]" for further information.
    The next NI-FBUS 3.0 version would solve this problem as I know.

  • Can we create graphic and text in the same window of smartform without using template?

    we create graphic and text in the same window of smartform without using template?

    Hi Kinjal,
    as far as i understand you are talking about a template which you can partitioned and in one part you wants to show your graphics and in other part you wants to print your text, the border of template shall remain invisible.
    If you wants to do it without using a template, you can do it as sujjested by Susmitha, but creating a template will provide you more flexibility that if you wants to change the attributes in future you can do it easily.

  • In Aperture 3 creating a book using Formal theme and in Edit Layout I can move but not resize the image box even though handles appear and the manual says I should be able to. Help      image boxt

    Can I resize image boxes with the displayed handles as the User Manual suggests I can, when creating a book in Aperture 3 using the Formal Theme (with the beveled mask) and in Edit Layout mode?  I can move the box with the yellow guidelines, but those handles will not move to allow me to adjust size.  If I delete the box and add a photobox, I can resize, but I loose those nice beveled masks!

    Well I tried on my wife's MB and it worked fine, but keeps the same aspect ratio. Nearly there. I tried the local Apple outlet, but they had just taken Aperture off the demo machine .
    However, I have discovered that I can use the "right click" option for 'photo aspect ratio' and it will resize the box to accomodate my pictures.  By fiddling I can select an alternative ratio and/or picture and change the size of the frame up or down and try to get an appropriate size and ratio, e.g. if I have a small landscape picture, I can pop in a bigger square picture (it gets cropped) then choose a portrait mode (cropped differently) then pop in my landscape picture (still cropped, but bigger size), then use the option 'photo aspect ratio', I get it uncropped and bigger.  Not a really satisfactory work around, but better than nothing. 
    By combining they fiddling with aspect ratios and the pinch/squeeze routine - on the MB (or via Lion and a track pad I assume) - I should get there.
    Pity those pesky handles don't work!!
    Thanks folks for the help

  • I have had FPCX since Sept, first used Oct.  I have not had one 'movie' export properly, first time since using FPCX.  Audio stops completely at some point and does not re-start.  Any ideas, folks?

    I have had FPCX since Sept, first used Oct.  I have not had one 'movie' export properly, first time since using FPCX.  Audio stops completely at some point and does not re-start.  Any ideas, folks?

    First, I suggest you limit the subject line of your question to a few words which will help someone identify the problem you are encountering. Putting the entire question there looks as though you are shouting.
    It would help anyone to identify your problem if you were to say what video codec (file format) you are using, and describe the method you are using in your attempts to export it.
    You could also list any relevant error messages you encounter.
    What version of FCP X are you using?
    All these things will make it easier for people to help you.
    Andy

  • I'm using the migration assistant everything was OK until last night, the blue bar stop advancing and the time remaining keep freeze in 4hrs.  What should I do?

    I'm using the migration assistant everything was OK until last night, the blue bar stop advancing and the time remaining keep freeze in 4hrs.  What should I do?

    Were you migrating from a Time Machine backup or via WiFi, ethernet, or Firewire?
    Here's a great site that should help you get it sorted out.
    http://pondini.org/OSX/Home.html

Maybe you are looking for