Moving and resizing shapes .?!

hey there ..
i was wondering if you guys can help me figure out how to select , move and resize a specific shape .... apreciatte it a lot .. peace . take care and thanks for your concerns..

Hi there, take a look at this code:
http://forum.java.sun.com/thread.jsp?forum=31&thread=427823
You can view the working version at www.bhun.net/shapebean.html. The example isn't very complicated nor does it contain much functionality. But it does show you one way to handle the shapes (there are probably better ones). Resizing a shape just requires you to do some extra work.
Greets
nuhb

Similar Messages

  • 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)

  • After moving and resizing control, some controls don't redraw properly as the cursor passes over them.

    I have a top-level VI with three panes (two splitters).  One of the panes contains nested tab controls.  One of the tab pages contains six XY-graphs, a table and some decorations.
    I use a subVI to resize and relocate the tabs and contained controls.  All this is working fine, and everything looks fine after the resizing is complete.
    The problem is when the cursor passes over certain controls (the chart legends and the table column headers for example), they redraw with gray boxes.  The problem only occurs after enlarging the window from its minimum size.  It goes away if the window is resized back down to minimum.
    Anything that causes the window to redraw, like another resize or minimize/restore, properly refreshes the screen.
    Has anyone seen this problem, and have a workaround?
    The problem exists in development environment or built in LV 9.01 or LV 2010.
    Thanks!
    Matt Dennie
    Attachments:
    Resize Redraw Problem.zip ‏125 KB
    Resize Redraw Problem.JPG ‏210 KB

    Thanks again for taking a look at my problem.
    force redraw - This is apparently only available in LV2010.  I did give at a try, but it did not prevent the problem, nor did it correct the problem once the gray boxes appeared.
    disable updates (on a graph) - This apparently only applies to 3-D graphs, which is not what I am using in this case.
    disable front panel updates - I tried disabling updates before moving/resizing the front panel controls, then re-enabling updates afterwards.  The problem is exactly the same as before.  Once the move/resize is complete, passing the mouse over the table column headers or the graph plot legend results in the gray boxes.
    I would appreciate any other suggestions you may have. 
    Again... the problem is not that the moving and resizing don't work.  They work fine.  But once the resizing is complete, passing the mouse over the legend or table column headers causes gray boxes to appear.
    Thanks!
    -- Matt

  • Cropping when moving and resizing a cropping rectangle

    I created a program that crops an image and displays the cropped image but I'm trying to add more functionality
    by making it movable and resizable. The rectangle moves and resizes but it only crops an image when user draws the rectangle and not when moved or resized. I know that the X,Y, height and width position of the rectangle would need to be updated but I'm not
    sure how I can accomplish this being new to WPF. Below is my user control "CropControl and the code behind. Also, I'm implementing my code using MVVM framework.
    XAML: 
    <UserControl x:Class="Klein_Tools_Profile_Pic_Generator.CropControl"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:s="clr-namespace:Klein_Tools_Profile_Pic_Generator"
    mc:Ignorable="d"
    d:DesignHeight="300" d:DesignWidth="300">
    <UserControl.Resources>
    <ControlTemplate x:Key="MoveThumbTemplate" TargetType="{x:Type s:MoveThumb}">
    <Rectangle Fill="Transparent"/>
    </ControlTemplate>
    <!-- ResizeDecorator Template -->
    <ControlTemplate x:Key="ResizeDecoratorTemplate" TargetType="{x:Type Control}">
    <Grid>
    <s:ResizeThumb Width="3" Height="7" Cursor="SizeNS" Margin="0 -4 0 0"
    VerticalAlignment="Top"/>
    <s:ResizeThumb Width="3" Height="7" Cursor="SizeWE" Margin="-4 0 0 0"
    VerticalAlignment="Stretch" HorizontalAlignment="Left"/>
    <s:ResizeThumb Width="3" Height="7" Cursor="SizeWE" Margin="0 0 -4 0"
    VerticalAlignment="Stretch" HorizontalAlignment="Right"/>
    <s:ResizeThumb Width="3" Height="7" Cursor="SizeNS" Margin="0 0 0 -4"
    VerticalAlignment="Bottom" HorizontalAlignment="Stretch"/>
    <s:ResizeThumb Width="7" Height="7" Cursor="SizeNWSE"
    VerticalAlignment="Top" HorizontalAlignment="Left"/>
    <s:ResizeThumb Width="7" Height="7" Cursor="SizeNESW"
    VerticalAlignment="Top" HorizontalAlignment="Right"/>
    <s:ResizeThumb Width="7" Height="7" Cursor="SizeNESW"
    VerticalAlignment="Bottom" HorizontalAlignment="Left"/>
    <s:ResizeThumb Width="7" Height="7" Cursor="SizeNWSE"
    VerticalAlignment="Bottom" HorizontalAlignment="Right"/>
    </Grid>
    </ControlTemplate>
    <!-- Designer Item Template-->
    <ControlTemplate x:Key="DesignerItemTemplate" TargetType="ContentControl">
    <Grid DataContext="{Binding RelativeSource={RelativeSource TemplatedParent}}">
    <s:MoveThumb Template="{StaticResource MoveThumbTemplate}" Cursor="SizeAll"/>
    <Control Template="{StaticResource ResizeDecoratorTemplate}"/>
    <ContentPresenter Content="{TemplateBinding ContentControl.Content}"/>
    </Grid>
    </ControlTemplate>
    </UserControl.Resources>
    <Canvas x:Name="BackPanel"
    MouseLeftButtonDown="LoadedImage_MouseLeftButtonDown"
    MouseMove="LoadedImage_MouseMove"
    MouseLeftButtonUp="LoadedImage_MouseLeftButtonUp"
    Background="Transparent">
    <ContentControl x:Name="contControl" Visibility="Collapsed"
    Template="{StaticResource DesignerItemTemplate}">
    <Rectangle x:Name="selectionRectangle" Fill="#220000FF"
    IsHitTestVisible="False"/>
    </ContentControl>
    </Canvas>
    </UserControl>
    CODE BEHIND:
    namespace Klein_Tools_Profile_Pic_Generator
    /// <summary>
    /// Interaction logic for CropControl.xaml
    /// </summary>
    public partial class CropControl : UserControl
    private bool isDragging = false;
    private Point anchorPoint = new Point();
    private bool moveRect;
    TranslateTransform trans = null;
    Point originalMousePosition;
    public CropControl()
    InitializeComponent();
    //Register the Dependency Property
    public static readonly DependencyProperty SelectionProperty =
    DependencyProperty.Register("Selection", typeof(Rect), typeof(CropControl), new PropertyMetadata(default(Rect)));
    public Rect Selection
    get { return (Rect)GetValue(SelectionProperty); }
    set { SetValue(SelectionProperty, value); }
    // this is used, to react on changes from ViewModel. If you assign a
    // new Rect in your ViewModel you will have to redraw your Rect here
    private static void OnSelectionChanged(System.Windows.DependencyObject d, System.Windows.DependencyPropertyChangedEventArgs e)
    Rect newRect = (Rect)e.NewValue;
    Rectangle selectionRectangle = d as Rectangle;
    if (selectionRectangle != null)
    return;
    selectionRectangle.SetValue(Canvas.LeftProperty, newRect.X);
    selectionRectangle.SetValue(Canvas.TopProperty, newRect.Y);
    selectionRectangle.Width = newRect.Width;
    selectionRectangle.Height = newRect.Height;
    private void LoadedImage_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
    if (isDragging == false)
    anchorPoint.X = e.GetPosition(BackPanel).X;
    anchorPoint.Y = e.GetPosition(BackPanel).Y;
    Canvas.SetZIndex(selectionRectangle, 999);
    isDragging = true;
    BackPanel.Cursor = Cursors.Cross;
    private void LoadedImage_MouseMove(object sender, MouseEventArgs e)
    if (isDragging)
    double x = e.GetPosition(BackPanel).X;
    double y = e.GetPosition(BackPanel).Y;
    contControl.SetValue(Canvas.LeftProperty, Math.Min(x, anchorPoint.X));
    contControl.SetValue(Canvas.TopProperty, Math.Min(y, anchorPoint.Y));
    contControl.Width = Math.Abs(x - anchorPoint.X);
    contControl.Height = Math.Abs(y - anchorPoint.Y);
    if (contControl.Visibility != Visibility.Visible)
    contControl.Visibility = Visibility.Visible;
    private void Image_MouseMove(object sender, MouseEventArgs e)
    if (moveRect)
    trans = selectionRectangle.RenderTransform as TranslateTransform;
    if (trans == null)
    selectionRectangle.RenderTransformOrigin = new Point(0, 0);
    trans = new TranslateTransform();
    selectionRectangle.RenderTransform = trans;
    trans.Y = -(originalMousePosition.Y - e.GetPosition(BackPanel).Y);
    trans.X = -(originalMousePosition.X - e.GetPosition(BackPanel).X);
    e.Handled = false;
    private void LoadedImage_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
    if (isDragging)
    isDragging = false;
    if (contControl.Width > 0)
    //Crop.IsEnabled = true;
    //Cut.IsEnabled = true;
    BackPanel.Cursor = Cursors.Arrow;
    contControl.GetValue(Canvas.LeftProperty);
    // Set the Selection to the new rect, when the mouse button has been released
    Selection = new Rect(
    (double)contControl.GetValue(Canvas.LeftProperty),
    (double)contControl.GetValue(Canvas.TopProperty),
    contControl.Width,
    contControl.Height);

    Hello HotSawz,
    The ResizeThumb and MoveThumb is not in your code so I cannot compile. Anyway, it is not the problem.
    Anyway, can you clarify more details about "it only crops an image when user draws the rectangle and not when moved or resized", it is already normal behavoir for you to draw a rectangle and then move it. What kind of action do you want? Do you
    mean some controls like this:
    http://www.codeproject.com/Articles/23158/A-Photoshop-like-Cropping-Adorner-for-WPF
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Moving and Resizing Panels

    I have some panels that I would like to allow the end-user to
    rearrange and resize to their liking.
    How would I go about doing this?

    I have some panels that I would like to allow the end-user to
    rearrange and resize to their liking.
    How would I go about doing this?

  • Moving and Resizing the cover picture

    I need to move the cover picture and possibly resize it to fit the opening in a cover I am trying to use. Is this possible in iPhoto?

    Dibgiman43:
    Are you referring the the picture on the cover of an iPhoto book?
    Do you Twango?

  • Moving and resizing fields

    Hello,
    1. I want to make a field just a little bit smaller but when I grab the grab bars and drag to make it smaller it redcues it too much. How do I drag it very, very small amounts? I have looked for help topics on this and there is nothing. I have tried holding down ctrl, alt, and shift when I drag but nothing does it.
    2. How do I get a field to just nudge a little with arrow keys?
    Thank you.

    I use the Layout pallet to position object quite a bit. How ever I do use the arrow keys to nudge objects around the page. You might check and make sure that Snap to grid is unchecked otherwise when you use the arrow keys to move objects they will move in the increment the grid is set to. To set the grid or define grid and ruler settings and guides go to Windows -> Drawing Aids. I think snap to grid is checked by default.

  • 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.

  • 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

  • Can Effects etc. windows be moved or resized?

    The effects window is a little small and claustrophobic even on my 24" display.
    Can it be moved and resized?
    Also is there any PDF version of the Help Manual available?

    I have discovered how to download a PDF Help Manual:-
    1. Go here  http://help.apple.com/finalcutpro/mac/10.0/
    2. Click on the printer icon in the top right corner and select "Book".
    3. In the printer window click the "PDF" button and select "Save as PDF".
    I would still like to know about repositioning and resizing windows.

  • 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)

  • Creating a logo in Pages - a way to save and resize?

    I created a logo in Pages using a few text box, some text and various shapes and colors. I created it at the largest size I think I'll be using it at (quite large, a few feet across) and now I want to use it in several other, smaller instances. I grouped it all together, but when I resize the box, the type stays the same size and so everything gets out of place.
    Is there a way in Pages to save an object such as I've created here, and be able to resize it in correct proportions etc, including any type use, so that I can use it in various sizes etc?
    thanks!

    Is there a way in Pages to save an object such as I've created here, and be able to resize it in correct proportions etc, including any type use, so that I can use it in various sizes etc?
    Save to disk as PDF Portable Document Format, drag from disk into design space (: Pages document), and apply geometric manipulations in Quartz imaging model including resizing, rotating etc etc.
    /hh

  • Moving and properly placing fields in a FormsCentral form

    I've just started using this software that came with Acrobat XI and began designing a form from scratch.  Moving and placing fields in your desired location seems to be quite challenging unless there is something I do not understand about the process.  The primary annoyance is when using the left side handle to change the width of a field, all other fields above appear to be connected and all change widths together.  Also, moving a field along a horizontal plane always ha sthat field snap back to its original position.  Any help here?

    All th fields in the first column in FormsCentral share the same label width. You might want to try to put the label on top if you don't like this behavior.
    If you insert fields on the right on a form element then you can independently set its label width.
    You can only put a form element next to another one. If you want more horizontal "spacing" between element you can resize it by increasing the previous element width. In the image below you can see what you need to "drag"to increase spacing.
    Hope this helps
    Gen

  • Moving and Tilting the Camera for an optimum Lens Profile Creator image set

    When framing the chart in different areas of the image frame, use a combination of physically moving and tilting the camera to achieve an optimal balance for LCP generation.
    The following two passages are from the AdobeLensProfileCreatorCalibrationChartShhtingGuide.pdf
    Page11/a -Move camera a bit to the left (so that when turning to the right to face the chart, it is about 10 to 30 degrees). Take a series of shots similar to the first three, above, except that the chart is framed at the center-left, top-left, and bottom-left areas of the image.
    v. Move camera to the right, and do the same for the center-right, top-right, and bottom-right areas of the image
    pg11/e - When framing the chart in different areas of the image frame, use a combination of physically moving and tilting the camera to achieve an optimal balance for LCP generation.
    i. Only moving the camera to frame, so that image plane stays perfectly parallel to the chart, can have an adverse affect on LCP calibration data.
    ii. Only tilting the chart may cause depth-of-field issues, where part of the chart may go too far out of focus due to the large angle of the chart in regards to the image plane. This can also have an adverse affect on LCP calibration data.
    Does this mean to center the camera with the center/center shot so that the film plane is parallel with the calibration grid, then only use camera tilt on the tripod up and down for the top center an bottom center image. Then move the camera/tripod left (so that when turning to the right to face the chart, it is about 10 to 30 degrees) AND also pan the camera left to shoot the left top center and bottom image.
    I think this combination of instructions have me stuck. Move left but not so much that the calibration target image is parallel with the film plane then pan the camera to get the desired framing.
    Would I be correct to say - move left until the angel to the calibration image is 10-30 degrees and then use camera pan on the tripod to get the image framed properly. ... Is the desire to move as little as possible, or pan as little as possible, or to balance moving and panning in some way. 
    I am profiling a Nikon D7000/TAMRON 11-18mm F/4.5-5.6 lens and have a large target 36"x48" and read that I should shoot at minimum focus distance, 3x minimum, and 5x minimum which equates to 9.8 inches, 29.4 inches and 49 inches... I use this combo to shoot home interior shots at an focal distance of more like 10-20 feet from surrounding walls.. would I also need shots at (120 inches?) 10 feet?
    I really (really) want to get the distance to subject and camera moving/pan combination right.
    Please help. 

    There are a number of things darks/flats/bias can't remove: curvature, coma, pincushion, chromatic aberration. Some of those (pincushion i.e. showing stars on the chip in a slightly different position from their true position) may or may not be correctable with this sort of an app. It's possible using outside data (comparing the star locations in the image to their true locations in a catalog - that's a common astrophotography measurement and only takes seconds). Correcting curvature (differing focus off axis) chromatic aberration and coma (distorted star shape off axis) seem just what this app is about.
    Printing a checkerboard on a nearby hill top sounds involved. Maybe I could get them to plough it in a regular pattern? :-)
    The camera does not capture the data you mention. The images are usually in FITS format which has an enormous amount of data about the focal length, exposure time, amount of atmosphere through which you are looking, etc.
    Calculating from the book value for the lens(es) camera chip etc would likely not be give a better result than the value obtained before correction. In some designs of scopes, particularly the most common ones, the focal length changes as you focus for example. The lenses and mirrors, comparing one scope to the next, are not perfectly identical.
    But a dense star field would be something against which you could measure changes in star shape, focus, chromatic aberration and possibly even position. Once you figured out the parameters for your particular scope+corrector lenses+camera setup you could then use that profile thereafter.
    I'd love to chat with that engineer  I had heard you have one person who got a Meade SCT and started astroimaging just to learn the things we need and most astroimagers do use photoshop.
    Drew S.

  • Grouping and resizing screen controls

    The manual says this:
    To group screen controls:
    1 Select the screen controls you want to group together.
    2 Choose Group from the workspace Action menu (or press Command-Option-G).
    The screen controls are grouped. Moving one of the grouped controls moves the
    others, and resizing one of the grouped controls resizes the others.
    However, when I try that and then try to resize a group, only the control that I'm resizing actually resizes. Can someone else try this and then point me to the stupid thing that I'm missing?
    yes, all the controls (9 sliders, 8 buttons, 8 knobs) are "merged" before "grouping"
    Thanks,
    Stewart

    Make sure that you do not run Firefox in full screen mode (press F11 or Fn + F11 to toggle; Mac: command+Shift+F).<br />
    If you are in full screen mode then hover the mouse to the top to make the Navigation Toolbar and Tab bar appear.<br />
    You can click the Maximize button at the top right to leave full screen mode or right click empty space on a toolbar and use "Exit Full Screen Mode" or press F11.<br />

Maybe you are looking for

  • Documaker 12.4 dofactory not able to connect to Assembler queue

    Hi There, I am trying to setup Documaker Factory, using Weblogic as presentation tier. When starting Factory supervisor Service, the Service stuck up in Queue. The Error message getting fron config Startup is as follows; 2015-04-17 14:43:58,258- INFO

  • Internet problems continued

    So, all my internet problems I have been having over the past 7 months, I think I may have found the fault.  Since moving to my new home, I have had constant problems with the internet being super fast (7/8 meg), and then bottoming out to snails pace

  • Windows 8 vs CS3 trouble

    I've upgraded to Windows 8 and having trouble running CS3 after re-installing it.  Can you help?

  • Action method not being called

    Using jdev 10.1.3.4 with jsf/adf bc. I have two af:table components on a jsf page. I'll call them table A and table B. In table B, I have an input text with autosubmit=true and hooked up to a valuechangelistener. One of the columns in table B is a co

  • Problem with capturing picture in N8

    I have N8 and N95 model mobiles. N8's Capture Images are poorer than N95. Wheras N95 is 5 mp and N8 is 12 mp. N8's video capture quality is perfect. But when I capture a image it looks like highly brighted. Image's brightness is very higher than it's