Layout and resize

Although I tried many things, I can't get out of this :
I have a java app. with a jSplitPane. On the right side, I have a JPanel hosting another jPanel with an image background.
What I'd like is that when moving the divider, my inner Panel (the one with the image) doesn't resize. It should be just displayed at the center of the other one.
Now, I used BorderLayout for the 'container' and added the second one like this :
            panel1.add(panel2, java.awt.BorderLayout.CENTER);But when I move the divider, the iner panel extends to the borders (the image is stretched).
I tried FlowLayout, but then nothing at all is displayed (??)
Any idea ?
O, BTW, the inner panel uses a grid bag Layout. Could it have an influence on its container ?

Too many panels you are having. Try none:
import java.awt.*;
import java.net.*;
import javax.swing.*;
public class SplitExample {
     public static void main(String[] args) throws MalformedURLException {
          JLabel left = new JLabel("LEFT");
          URL url = new URL("http://weblogs.java.net/jag/bio/JagHeadshot-small.jpg");
          JLabel right = new JLabel(new ImageIcon(url));
          JSplitPane sp = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, left, right);
          JFrame f = new JFrame("SplitExample");
          f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          f.getContentPane().add(sp);
          f.pack();
          f.setLocationRelativeTo(null);
          f.setVisible(true);
}

Similar Messages

  • Inner Frames, GridBag Layout, and resizing

    Hey,
    I'm developing a online gaming lobby in Java, and at the top of my lobby I have a list of players, with red or green lights indicating whether or not that player is ready to play. Once all are ready, the host can start a countdown that takes the players into the game.
    For the ready/not ready lights, I used JRadioButtons because they provide a good model for what I wanted (a sort of on/off deal). What I did was set them to be enabled when that slot is empty, but have a grey "disabled/slot empty" icon for both the selected and not selected states. Then, when a player joins, I disable the Radio Button and have the "player ready" and "player not ready" pictures set for the disabled selected and disabled-not-selected properties of the radio button.
    To recap, when the slot is empty, the radio button is enabled, but looks disabled and has the same pictures for both selected and not selected. When the slot is filled the radio button is disabled but has enabled-looking pictures for 'ready' and 'not ready' states, selected and not selected respectively.
    It will make more sense with a picture:
    http://img151.imageshack.us/img151/4620/lobbyiz7.png
    I did it this way, with sort of logically backwards JRadioButtons, because I didn't want the users of the lobby to be able to click the radio buttons and change their state, thus seemingly (and logically, client-side) changing the ready status of other players.
    Anyway, I have two questions. As you can see in the screen shot, all the player names and their associated "lights" are clustered to the center. Originally, the lights and text were all flush with the edge of the separators above and below them. I am using a grid bag layout with inner panels, which all also use grid bag layouts. In the player list panel (the top one that we've been discussing), when players join, the text next to the JRadioButtons goes from "Waiting for player to join" to "Freddie" or something like that. Once you get enough players to join, the player list contracts into the center because the text in the buttons becomes smaller. Is there a way to make the radio buttons stay where they are, no matter the length of the text, with a grid bag layout?
    Also, you can see from the screenshot that the disabled radio buttons (the slots that are filled with players) have the proper pictures next to them, but they still used the disabled font, which is kind of greyed out. Is there a way to make it so that the disabled font is not grey?

    j.law wrote:
    That's the thing, I am using a grid bag layout for everything, including the inner panels and the outer, main frame. The problem is that the inner panels resize and crunch down.Then as recommended above, simply don't do that. Study the layout tutorials and code with them. It's that simple.
    Also, your "radiobutton" are not behaving as radiobuttons as they are not clickable, ... so don't use radiobuttons. Use a JLabel perhaps and swap the icons as necessary.

  • Stop JPanel auto positioning and resizing in Netbeans

    Hi,
    I'm working on a Swing application in Netbeans. In my program I had several JPanels. At any one time, only one JPanel is visible.
    I dragged my JPanels to the JFrame in the Swing editor. Each time the user clicks on the switch function button, another JPanel should be displayed.
    However, the new panel does not display correctly. It remained at the position where I had dragged (randomly) on Netbeans, instead of the new size and location I set it to prior to setting it visible. I tried to tinker with it, and realized that Netbeans helped me reposition my JPanel back to its original position. For my function to work, I suspect I should disable auto positioning and resizing.
    How do I turn it off?
    Thanks in advance,
    eddy05

    eddy05 wrote:
    That's what the JComponent.setSize() and JComponent.setLocation() do right, to resize and relocate JComponents and its subclasses.This only sets the properties of that particular JComponent. The layout manager of the container that holds it can choose to use these properties or not depending on what layout manager is being used.
    I wanted to perform the above functions, but Netbeans' behaviour keeps interfering, hence my request on how the behaviour can be turned off =)By dropping a JPanel into your JFrame (the JFrame's contentPane actually), NetBeans is by default going to use the GroupLayout, and the properties of the JComponent noted above will be ignored. One solution alluded to above is to have the JFrame's contentPane use a null layout, but while this might work in the short run, in the long run it will hurt you. Better is to read up on the various layout managers available for your use in the Sun Swing tutorials and start to play with them in your code.

  • Moving and Resizing UIComponents

    Hi,
    I am making a flex application in which I am drawing Square,
    Rectangle,Ellipse, line,etc with flex UIComponent.
    I want to Moving and Resize the UIComponents .
    And what would be a better way to put UIComponent on some
    container and resize and move the container ? Or directly move and
    resize the UIComponent ?
    Can any one help me ??

    Hello all,
    regarding what I asked about, I've found this https://help.ubuntu.com/community/Resiz … Partitions
    So the question now is about moving. If I dd sda5 to sda4 will I have to set something up for it work? Like some offsets/adresses?
    If I am able to move sda5 to sda4, the rest will be fairly easy. Any about my partitiong layout - it's manual, I've used fdisk, cryptsetup, mkfs and the lvm tools that come with the arch install iso.
    Also some have misunderstood - currently everything but the boot partition, which is on another drive, is encrypted - in one LUKS partition and inside it there is an LVM with the different partitions.
    I've tested on a virtual machine by doing the following:
    unmount partitions
    move the luks partition by using dd with opts bs=4096 conv=notrunc,noerror,sync
    after that follow https://help.ubuntu.com/community/Resiz … Partitions
    Worked like a charm(if you need to remove mappers use dmsetup).
    After that: the uuid's of the lvm's are the same so that's cool. Just need to get the UUID of the new luks partition and set it in grub's cryptroot parameter.
    That's all
    Still I think I will backup everything first, then I will try this.
    Last edited by rand_x0r (2014-04-23 22:20:00)

  • Forcing a JWindow to pack/validate and resize

    Hi,
    I'm using a JWindow with some JComponents in it and I'm trying to set the font of this window and all of its components. After setFont() (which works) I want the JWindow to resize because the label sizes etc. changed with the new font.
    I tried JWindow's pack() and validate() methods but the window keeps its old now incorrect size.
    What can I do to recalculate the layout and to resize the window correctly?
    Thanks
    Frank

    Your example works for me, too. But when I try (nearly) the same in my application
    System.out.println(myPanel);
    System.out.println(myWindow);
    dialog.setFont(font);
    myWindow.pack();
    System.out.println(myPanel);
    System.out.println(myWindow);
    I get the following results:
    JPanel[,0,0,113x149,invalid,hidden,layout=com.jgoodies.forms.layout.FormLayout,alignmentX=null,alignmentY=null,border=javax.swing.border.EtchedBorder@1be1041,flags=9,maximumSize=,minimumSize=,preferredSize=]
    JWindow[win0,0,0,113x149,invalid,hidden,layout=java.awt.BorderLayout,rootPaneCheckingEnabled=true]
    JPanel[,0,0,113x149,invalid,hidden,layout=com.jgoodies.forms.layout.FormLayout,alignmentX=null,alignmentY=null,border=javax.swing.border.EtchedBorder@1be1041,flags=9,maximumSize=,minimumSize=,preferredSize=]
    JWindow[win0,0,0,0x-1,hidden,layout=java.awt.BorderLayout,rootPaneCheckingEnabled=true]
    The panel seems to resized but in strange way. When I make it visible it has the old size.
    myPanel is a panel in myWindow. I use myPanel from myWindow to show it in the ModalLayer of a dialog so one of myWindows panels has been added to the modal layer of dialog.
    Frank

  • Adobe Air is very smiller than Zinc App - Reposition and Resize not working?

    Hello guys, i have found and readden nice solution like NativeWindow was saved positions and sizes If i close Adobe Air App and i open again like NativeWindow was moved and resized. It is very simple working. And it works fine. 100 % Good! But how does it work with Zinc App because it doesn't work for positions and sizes. How do i fix? I have upgraded code from FileSerializer.as With mdm.Script:
    package
      import flash.events.Event;
      import flash.net.URLRequest;
      import flash.net.URLStream;
      import flash.utils.ByteArray;
      import mdm.Application;
      import mdm.FileSystem;
      import mdm.System;
      public class FileSerializer
      public static function WriteObjectToFile(object:Object, filename:String):void
      var fileExists:Boolean = mdm.FileSystem.fileExists(mdm.Application.path+filename);
      var outByte:ByteArray = new ByteArray();
      outByte.writeObject(object);
      if(fileExists == false)
      mdm.FileSystem.saveFile(mdm.Application.path+filename, "");
      mdm.FileSystem.BinaryFile.setDataBA(outByte);
      mdm.FileSystem.BinaryFile.writeDataBA(mdm.Application.path+filename);
      private static var stream:URLStream;
      public static function ReadObjectfromFile(filename:String):Object
      var fileExists:Boolean = mdm.FileSystem.fileExists(mdm.Application.path+filename);
      if(fileExists == false)
      var obj:Object;
      stream = new URLStream();
      stream.addEventListener(Event.COMPLETE, function(evt:Event):void
      obj = stream.readObject();
      stream.close();
      stream.load(new URLRequest(filename));
      return obj;
      return null;
    That is improved to mdm.Script and it saves sometimes.
    And i have create UserPref.as
    package
      public class UserPref
      public var zincForm:String = "MainForm";
      public var zincType:String = "sizeablestandard";
      //public var zincSWF:String = "MainApp.swf";
      public var zincPosX:Number;
      public var zincPosY:Number;
      public var zincWidth:Number;
      public var zincHeight:Number;
    And i create MainApp.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
      xmlns:mx="library://ns.adobe.com/flex/mx"
      layout="absolute" applicationComplete="applicationCompleteHandler(event)" creatingComplete="creationCompleteHandler(event)">
      <fx:Script>
      <![CDATA[
      import mdm.Application;
      import mdm.Event;
      import mdm.Forms;
      import mdm.mdmForm;
      import mx.events.FlexEvent;
      private var up:UserPref;
      private var form:mdmForm;
      protected function applicationCompleteHandler(event:FlexEvent):void
      mdm.Application.init();
      this.up.zincPosX = this.form.x;
      this.up.zincPosY = this.form.y;
      this.up.zincWidth = this.form.width;
      this.up.zincHeight = this.form.height;
      FileSerializer.WriteObjectToFile(this.up, "pref.zup");
      mdm.Application.onAppExit = function (appevt:flash.events.Event):void
      mdm.Application.exit();
      mdm.Application.enableExitHandler();
      protected function creationCompleteHandler(event:flash.events.Event):void
      this.up = FileSerializer.ReadObjectfromFile("pref.zup") as UserPref;
      if(up) {
      mdm.Application.onFormReposition = function(rpevt:mdm.Event):void
      this.form.x = up.zincPosX;
      this.form.y = up.zincPosY;
      mdm.Application.onFormResize = function(rsevt:mdm.Event):void
      this.form.width = up.zincWidth;
      this.form.height = up.zincHeight;
      }else
      this.up = new UserPref();
      ]]>
      </fx:Script>
      <fx:Declarations>
      <!-- Platzieren Sie nichtvisuelle Elemente (z. B. Dienste, Wertobjekte) hier -->
      </fx:Declarations>
    </mx:Application>
    And i recompile with Zinc Studio 4.0.22 than i try reposition and resize with Zinc Window than i close since saved files and i open again. But why does it not reposition and resize?
    How do i fix? Can somebody help me?
    Thanks best regards Jens Eckervogt

    I little more searching and I found the answer. Check it out here:
    http://forums.adobe.com/message/2879260#2879260

  • Difference between null layout and absolutelayout

    hello
    I would like to know the difference between the null layout and the absolutelayout
    thank you in advance

    http://www.google.com/search?q=absolutelayout
    Next time, please use the search yourself.Do I have to consider this as answer Yes.
    notice that I asked for the difference between both
    of the layout and not about
    absolutelayout only Third link, advertised by
    "I think AbsoluteLayout does more than just setting Layout to null. AbsoluteLayout may even accomodate for changes in font sizes etc. ..."
    already should give you something to think about.
    Furthermore, the search shows that there are several different classes named AbsoluteLayout (ADF, SWT, BUI, samskivert...), and you didn't specify which one you're talking about.
    Still think this wasn't an answer?
    I guess I should stop assuming that you have a brain of your own.

  • Can I mix Pages page layout and word processing together in one document?

    Hello there ! I am quite new to Pages and I am desperate to learn as i want to get rid of everything being Microsoft
    As you all know when you open Pages you can choose between page layout and word processing !
    the thing is i thought that after using a page layout you could just go with word processing easily... well no, you can't, but i'm sure i'm missing something...
    For exemple i really like the catalogue brochure and it would be perfect for me to start a project... but after a few pages, i can just add blank pages and if i want to type text, i have to add text boxes... i don't want that, I want word processing... and another thing in this brochure i can't add table of content because it is not by default in the template...
    So my question is quite basic here, can we link Page layout and word processing without having to use text boxes and everything ?
    Thanks in advance !
    Have a good day

    Alexander,
    Welcome to Apple discussions.
    The simple answer is no. What differentiates page layout from word processing mode is that the PL mode has no text layer. So everything that goes on the page must be an object of some kind. And any pages you add to a PL document must also be PL. You can't mix the two modes. One way around it is to start with a blank page, insert a text box, then stretch the box so that it covers the entire page. You can the type in it as if it were a text layer in a WP file. You can even capture that page so that you can add it automatically when you need it, or save it as a template.
    As for building a Table of Contents, it appears that Pages only sees text styles that are on the text layer, which means it won't see styles that are in objects -- which means it won't work with a PL document. From being a long-time reader of this discussion group, I've noticed it's rare that someone wants to add a ToC to a PL document.
    If you find that you're going to be mixing text and graphics, start with a word processing template. If you really like the Catalog Brochure, you could always copy some or all of its elements over to a blank WP template.
    Hope this helps.
    -Dennis

  • What is the best way to move and resize layers?

    When I click on a layer to move and resize it in Elements 8 in Windows 7, it disappears.  After I go to Edit/Undo, it reappears.  What should I do?

    I have PSEv.8 and Windows 7, and the Editor works like a charm for me.
    Try the following:
    Open picture 1, duplicate the background layer.
    Open picture 2, make a selection of something in the picture with one of the selection tools, and then go to Edit>copy. This puts the selection on the clipboard.
    Go back to to picture 1, go to Edit>paste, and the selection will be on its own layer
    Use the move tool to position and resize the selection.
    The middle layer can be dragged to the top. Here, this process will obscure visibility of Layer 1, but you can drag the layer structure back, of course.
    http://www.pixentral.com/show.php?picture=1D3wrzjD5r24U8LfdTA1sdUb0zJOY0
    I opened a picture of the house on the lake, copied/pasted the "Slick Rock Divide" sign as per above. The layer structure is represented in the print screen.
    You should note that it is best if the resolution of the picture files is the same, or close to it.

  • Photoshop CC: Have a template that I moved image into.  Image is too small.  How do I resize the image while in the template?  Or must I go to original image file and resize there again and again until I get the right fit?

    I have a template that I am able to plug different pictures into at different times.  The problem is that when I plug an image into that template, I find that the image is either too big or too small.  Is there a way to plug the image into the template and resize the image (and not the template itself) OR will I have to go to the file with the original image and resize it there and then try to plug it in to the template to see if it fits------and if it does not fit, go back to the original file with the image and resize it again and see if that fits---and so on and so on...........?  I have tried the" image size" option but it's hit or miss------mostly miss!
    Thanks!

    Read up on Smart Objects. It looks like you have no idea as to how to create and use them.
    Jut create a Smart Object from the layer containing whatever it image it is that you are "plugging into your template".  But you do need to learn the application at its most basic levels.
    Photoshop is a professional level application that makes no apologies for its very long and steep learning curve.  You cannot learn Photoshop in a forum, one question at a time.
    Or is it possible that you don't even have Photoshop proper but the stripped-down Photoshop Elements?"
    If the latter is the case, you're in the wrong forum.  This is not the Elements forum.
    Here's the link to the forum you would want if you're working in Elements.:
    https://forums.adobe.com/community/photoshop_elements/content
    If you do have Photoshop proper, please provide the exact version number of that application and of your OS.
    (edited for clarification)

  • Can you help me with Page Layout and/or Design ideas for a software manual?

    Greetings,
    I am a new InDesign user, and am converting a software manual that I created in MS Word into InDesign. It will be converted to a pdf to view online. I have the basics (3 master pages, page numbers, running headers, 2column pages with text boxes on the left and screenshots on the right), but I want to make it look prettier. Could you please give me some ideas on page layout and/or design to make it look better or more creative?
    A few things that I am considering: borders around screenshots, a watermark, a logo next to the page numbers, different size/type of fonts, etc.
    I am open to any suggestions to make this look better. However, please understand that I am new to InDesign. With that being said, please tell me a few steps when you mention your tips. Thank you!

    Take a look at a few websites on Cannons of Page Construction.
    I think the best idea for you is to look at a few software manuals and take tips from how they accomplished the layouts.
    I'm not saying to copy them - but rather see what works and doesn't work, what worked for them might not necessarily work for you - research some layouts.
    Fonts/type/sizes etc. are pretty much ambigious without context - is this a software manual for kids (soft cuddly big fonts easy to read), technical (small, tight spacing etc), Adult friendly (smooth, crisp clear, well spaced), elderly (large elegant fonts).
    It all really depends on your demographic audience.
    Being new to InDesign I suggest you take up Sandy Cohens Quickstart Visual Guide.
    I think you should look at Michael Murphys Book on Styles
    And you should definitely get your printer (the guys bulk printing) the booklet for you on board from the start to work out optimal sizes to suit their printing presses and workflow etc. And to ensure that you are setup correctly in page sizes, margins, safe type areas, colour profiles and a few other things that your printers prepress can help you with.

  • Help needed in Drag and Drop and  resizing of image icons

    Hi all,
    I'm doing a project on Drag and Drop and resizing of image icons.
    There is one DragContainer in which i have loaded the image icons and i want to drop these image icons on to the DropContainer.
    After Dropping these icons on to the DropContainer i need to resize them.
    I have used the Rectangle object in resizing.
    The problem now i'm facing is when i drag, drop and resize an image icon and when i try to drag, drop a second image icon the first image icon gets erased.
    can any one help me in fixing this error.
    if u want i can provide the source code.
    thanks in advance
    murali

    the major restrictions in its implemented only in
    jdk1.1.Why!

  • I just got photoshop cc 2014 on windows 8.1 64 bit, and it starts up on the white layout and and whenever I start a project it is in a window? Also whenever I try to change on of these it does not save. I am using the trial

    just got photoshop cc 2014 on windows 8.1 64 bit, and it starts up on the white layout and and whenever I start a project it is in a window? Also whenever I try to change on of these it does not save. I am using the trial. Basically nothing saves and it was all screwed up when I first got it.

    Do a screen screen capture and post it here so we can see what you stating about a white layout...

  • Upload and Resize Image not inserting filename in database

    I have a form that I created using the insert record form wizard. One of the fields is a file field and my form enctype is set to multipart/form-data. I then used the upload and resize image behavior and set the parameters. When testing the form the file uploads to the correct directory but no entry is made into the database for that particular field. The other fields are entered into the database just fine. If it helps, here is the code generated before the  tag:
    <br />
    <br /><?php require_once('../../Connections/test.php'); ?>
    <br /><?php<br />// Load the common classes<br />require_once('../../includes/common/KT_common.php');<br /><br />// Load the tNG classes<br />require_once('../../includes/tng/tNG.inc.php');<br /><br />// Make a transaction dispatcher instance<br />$tNGs = new tNG_dispatcher("../../");<br /><br />// Make unified connection variable<br />$conn_test = new KT_connection($test, $database_test);<br /><br />// Start trigger<br />$formValidation = new tNG_FormValidation();<br />$tNGs->prepareValidation($formValidation);<br />// End trigger<br /><br />//start Trigger_ImageUpload trigger<br />//remove this line if you want to edit the code by hand <br />function Trigger_ImageUpload(&$tNG) {<br />  $uploadObj = new tNG_ImageUpload($tNG);<br />  $uploadObj->setFormFieldName("picture");<br />  $uploadObj->setDbFieldName("picture");<br />  $uploadObj->setFolder("../images/");<br />  $uploadObj->setResize("true", 120, 0);<br />  $uploadObj->setMaxSize(1500);<br />  $uploadObj->setAllowedExtensions("gif, jpg, jpe, jpeg, png, bmp");<br />  $uploadObj->setRename("auto");<br />  return $uploadObj->Execute();<br />}<br />//end Trigger_ImageUpload trigger<br /><br />// Make an insert transaction instance<br />$ins_team = new tNG_insert($conn_test);<br />$tNGs->addTransaction($ins_team);<br />// Register triggers<br />$ins_team->registerTrigger("STARTER", "Trigger_Default_Starter", 1, "POST", "KT_Insert1");<br />$ins_team->registerTrigger("BEFORE", "Trigger_Default_FormValidation", 10, $formValidation);<br />$ins_team->registerTrigger("END", "Trigger_Default_Redirect", 99, "../team.php");<br />$ins_team->registerTrigger("AFTER", "Trigger_ImageUpload", 97);<br />// Add columns<br />$ins_team->setTable("team");<br />$ins_team->addColumn("id", "NUMERIC_TYPE", "POST", "id");<br />$ins_team->addColumn("sort", "NUMERIC_TYPE", "POST", "sort");<br />$ins_team->addColumn("name", "STRING_TYPE", "POST", "name");<br />$ins_team->addColumn("title", "STRING_TYPE", "POST", "title");<br />$ins_team->addColumn("description", "STRING_TYPE", "POST", "description");<br />$ins_team->addColumn("picture", "FILE_TYPE", "FILES", "picture");<br />$ins_team->setPrimaryKey("id", "NUMERIC_TYPE");<br /><br />// Execute all the registered transactions<br />$tNGs->executeTransactions();<br /><br />// Get the transaction recordset<br />$rsteam = $tNGs->getRecordset("team");<br />$row_rsteam = mysql_fetch_assoc($rsteam);<br />$totalRows_rsteam = mysql_num_rows($rsteam);<br />?>

    If the reason is about memory, warning message should be happened when upload the image, because "show thumbnail" means resize at second time, how come you failed to resize the picture that system let it upload succeed at the first time by the same resize process?
    upload procedure
    a.jpg: 2722x1814, 1.2mb
    upload condition: fixed width 330px, 1.5mb
    "upload and resize" a.jpg -> file upload -> "resize engine" -> passed (but not work and no warning message)
    "show thumbnail" a.jpg -> "resize engine" -> failed (not enough memory)
    it doesn't make sense.
    and you miss an important key point, I upload the same picture myself, and resize work, so I said it happened at random, and that's why I am so worried.

  • Use of Java Swing +Applescript to move and resize Mac OS X windows using

    Here is an interesting use of Java on Mac OS X and Applescript to
    enable moving and resizing of windows using mouse and keyboard:
    [MoveResize tool|http://code.google.com/p/sandipchitalesmacosxstuff/#Move_and_resize_windows_on_Mac_OS_X]
    How it works:
    The implementation uses Applescript to get the front most window and
    it's bounds. It sends the bounds rectangle to a server implemented in
    Java over a socket connection. The Java server takes the screen shot
    of the full Desktop and uses it as the Image label (a JLabel with
    ImageIcon) as the content pane of an undecorated JFrame which has the
    same bounds as the Desktop. A JPanel with semitransparent background
    and a dark rounded rectangular border is given the same bounds that
    were received over the socket. This JPanel is added to the
    PALETTE_LAYER of the JFrame's layered pane - which makes it appear
    floating in front of the front window. A Mouse and a Key listener
    added to the JPanel allow moving and resizing of the JPanel. When the
    user types the ENTER key the JFrame is hidden and the new bounds of
    the JPanel are sent back to the Applescript over the socket connection
    which moves and resizes the front most window.
    Enjoy!
    Sandip
    Edited by: chitale on May 14, 2009 4:12 AM

    Copy the /Home/Documents/ folder to the NAS drive. That drive needs to support AFP or you may run into filename problems and/or other file related problems due to filesystem differences.
    Once the folder has been moved to the NAS select the folder on the NAS and CTRL- or RIGHT-click. Select Make Alias from the drop down menu. You should now have an alias named "Documents alias." On the Mac put the /Home/Documents/ folder in the Trash but don't delete it. Copy the alias file from the NAS to the /Home/ folder. Rename it to simply "Documents." Double-click on it to be sure it opens the folder on the NAS. If so you can empty the Trash. You're done.

Maybe you are looking for

  • Probleme with macbook pro and avast

    Hello, please i have a macbook pro mi-2009 with mac os x 10.8.5 and i installed avast and then all the applications don't want to start unless safari and default software and when i restart my mac he don't want to start again and when i started with

  • Copying condition records in SD

    Hi, We are in SAP 4.7. In condition type VA00, I have about 100 condition records in sales orgn 0001 for material 0001. I would like to copy all these 100 condition records within the same condition type VA00, but into a different sales orgn 0002 for

  • Pausing a sequence of text and images

    Ok, I have 6 tabs down the side of the main screen where users can hover over to select which tab to view. All they do is hover to select the tab - no clicking. The sequence changes from tab to tab sequentially (if a tab is selected then the sequence

  • Is there any way to revert the header from Premiere Pro CC 2014.1 back to CC 2014?

    For the most part, I like the UI change. It's sleek and easier on the eyes with emphasis in the right parts of the panels, but there's one thing I'd like to revert back to CC 2014... It's the new header. The line attached to the header is no longer l

  • Installation stop at check DDIC password.

    Hello everybody, I am trying to install the IDES SR3 on windows (x64) and oracle. but my installation is stop on the Check DDIC password phase. I can log on using the user name DDIC and password 19920607. So please suggest me How to solve the problem