Done something very stupid

Dear all, I've lost my install guide for Logic Studio with the product codes - just got a new laptop and wiped the old - doh!!! Is there a way to solve this/
cheers
Steve

If you have registered your version of L8 then you should be able to enter and view your registrations and see your serial number. Calling Apple would be an Idea as well if you're registered they'll be able to see you...
As you started Logic the first time - you had to have sent the registration form - which incl. your serial number - so you are on record....
So make the Calls

Similar Messages

  • HT1338 I have done something so stupid I blush to tell you.I created a Master Password for Fiefox then fogot it.I can reset at the price of losing everything.I guess I've had it,huh?

    I have done something so stupid I blush to mention it.I created a Master Password for Firefox then forgot it. Guess I've had it,huh?

    Yes
    Allan

  • I have done something very silly and cant find a way out

    while on a website it said click here to email the owner
    I did that
    It now asked me to select the mail program to use to contact him
    I made a mistake and instead of selecting thunderbird I chose firefox
    now of course when I try to email the guy I get an endless loop of firefox windows opening up
    and the only way I can get out is to reboot the PC
    How can I stop it going to firefox for a mail program ?
    Regards
    Don

    I think this probably is the same solution, but with a little less reading:
    (1) Use the Options dialog to change the application that handles email. This support article has the steps: [[Change the program used to open email links]].
    (2) ''If that doesn't work:'' The settings file which stores actions for mailto: and downloads could be corrupted. This article describes the general approach to that problem: [[Firefox repeatedly opens empty tabs or windows after you click on a link]]. However, please try #1 first.

  • I've done something really stupid.....

    .... I've put some files in to .dmg image and password protected the file..... now I've forgotten the password!! Is there any way to break into it, or do I have to do all the work again (sob sob)!
    Thanks,
    Andy

    If you unchecked the 'remember password in keychain' option when creating the dmg, than there is no other way to get the password back. If you have Time Machine, than the 'doing it again' process will be MUCH faster. Just restore the files back to when you didn't have them on a dmg.
    That is the problem with password protecting folders.
    ~Christoph

  • I have done something very very very cool with photoshop touch!

    Who could I show this too to help you potentially sell more product

      You may want to market the work yourself. David Hockney creates fine art on an iPad using a £2.99 ($4.75) 'app' called Brushes which allows the user's finger to become a brush.
     

  • FXML Scene Is acting weird, Or im doing something very stupid

    Hi Guys.
    heres whats happening, i have a circle and a cubic curve.
    I want my Circle to do a pathTransition in that cubic curve. The problem is, It doesnt do it where i want to. It starts way out of the line, and i need to manually insert the circle where i want it to. But it always go out of the line, no matter what.
    I did a testLine to see waht was happening and i had to do this :
    c1.relocate(lineTest.getStartX() + 90,lineTest.getStartY() - 10);
    Anyway, what am i doing wrong ?
      @FXML
        private void moveToBottomSpot()
         Path onePath = new Path();
        c1.setVisible(true);
        //c1.relocate(lineTest.getStartX() + 90,lineTest.getStartY() - 10);
        c1.relocate(lineOfBottom.getStartX() - 10 ,lineOfBottom.getStartY() + 25);
        final PathTransition pathTransition = PathTransitionBuilder.create()
                .duration(Duration.millis(1500))
                .cycleCount(1)
                .node(c1)
                .path(lineOfBottom)
                .build();
           pathTransition.play(); 
        }

    Ok.
    I re-made the program without FXML and it works great. But, i have an issue.
    How i reverse the path that a node makes ?
    I think i need to use timeLine;
    Can anyone give me a hand ?
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package PilhaBola;
    import javafx.animation.PathTransition;
    import javafx.animation.PathTransitionBuilder;
    import javafx.animation.Timeline;
    import javafx.application.Application;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Group;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Circle;
    import javafx.scene.shape.CubicCurve;
    import javafx.scene.shape.CubicCurveBuilder;
    import javafx.scene.shape.Rectangle;
    import javafx.scene.shape.RectangleBuilder;
    import javafx.scene.shape.Shape;
    import javafx.stage.Stage;
    import javafx.util.Duration;
    * @author André
    public class PilhaBola extends Application {
         * @param args the command line arguments
        public static void main(String[] args) {
            launch(args);
        @Override
        public void start(Stage primaryStage) {
         Group root = new Group();
          Rectangle r0 = RectangleBuilder.create()
                    .fill(Color.TRANSPARENT)
                    .y(380)
                    .x(260)
                    .width(140)
                    .height(80)
                    .build();
          Rectangle r1 = RectangleBuilder.create()
                    .fill(Color.TRANSPARENT)
                    .y(300)
                    .x(260)
                    .width(140)
                    .height(80)
                    .build();
          Rectangle r2 = RectangleBuilder.create()
                    .fill(Color.TRANSPARENT)
                    .y(220)
                    .x(260)
                    .width(140)
                    .height(80)
                    .build();
            r0.setStroke(Color.BLACK);
            r1.setStroke(Color.BLACK);
            r2.setStroke(Color.BLACK);
            Circle c0 = new Circle(550,20,20,Color.BLACK);
            Circle c1 = new Circle(550,70,20,Color.BLACK);      
            final Circle c2 = new Circle(550,130,20,Color.BLACK);  
            CubicCurve cc0 = CubicCurveBuilder.create()
                .startX(520)
                .startY(150)
                .endX(320)
                .endY(430)
                .controlX1(320)
                .controlX2(320)
                .controlY1(50)
                .controlY2(420)
                .stroke(Color.BLACK)
                .opacity(0) 
                .build();
            final CubicCurve cc1 = CubicCurveBuilder.create()
                .startX(520)
                .startY(150)
                .endX(320)
                .endY(350)
                .controlX1(320)
                .controlX2(320)
                .controlY1(50)
                .controlY2(420)
                .opacity(0) 
                .stroke(Color.DARKBLUE)
                .build();
             CubicCurve cc2 = CubicCurveBuilder.create()
                .startX(520)
                .startY(130)
                .endX(320)
                .endY(270)
                .controlX1(320)
                .controlX2(320)
                .controlY1(50)
                .controlY2(270)
                .stroke(Color.PINK)
                .opacity(0) 
                .build();
             Button push = new Button("Push");
             push.setOnAction(new EventHandler<ActionEvent>() {
              @Override
                public void handle(ActionEvent event) {
                    final PathTransition pathTransition = getPathBallToStack(c2,cc1);
                    pathTransition.play();
             Button pull = new Button("Pull");
             pull.setOnAction(new EventHandler<ActionEvent>() {
                @Override
                public void handle(ActionEvent event) {
                    final PathTransition pathTransition = getPathStackToBall(c2,cc1);
                    pathTransition.play();
            root.getChildren().add(push);
            root.getChildren().add(cc0);
            root.getChildren().add(cc1);
            root.getChildren().add(cc2);
            root.getChildren().add(c0);
            root.getChildren().add(c1);
            root.getChildren().add(c2);
            root.getChildren().add(r2);
            root.getChildren().add(r0);
            root.getChildren().add(r1);
            Scene scene = new Scene(root,600,600);
            primaryStage.setTitle("Hello World!");
            primaryStage.setScene(scene);
            primaryStage.show();
        public static PathTransition getPathBallToStack(Node n,CubicCurve p)
            final PathTransition pathTransition = PathTransitionBuilder.create()
                .duration(Duration.millis(1500))
                .cycleCount(1)
                .node(n)
                .path(p)
                .build();
            return pathTransition;
           private static PathTransition getPathStackToBall(Node n,CubicCurve p)
                final PathTransition pathTransition = PathTransitionBuilder.create()
                .duration(Duration.millis(1500))
                .cycleCount(1)
                .node(n)
                .path(p)
                .build();
            Shape path = pathTransition.getPath();
            Timeline timeline = new Timeline();
            return pathTransition;
    }

  • Trying to do something very strange with layouts and painting components

    I'm trying to do something very strange with changing the layout of a container, then painting it to a bufferedImage and changing it back again so nothing has changed. However, I am unable to get the image i want of this container in a new layout. Consider it a preview function of the different layouts. Anyway. I've tried everything i know about swing and have come up empty. There is probably a better way to do what i am trying to do, i just don't know how.
    If someone could have a look perhaps and help me out i would be much appreciative.
    Here is a self contained small demo of my conundrum.
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Graphics2D;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.image.BufferedImage;
    import javax.swing.BoxLayout;
    import javax.swing.ImageIcon;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.border.LineBorder;
    // what is should do is when you click on the button "click me" it should place a image on the panel of the buttons in a
    // horizontal fashion. Instead it shows the size that the image should be, but there is no image.
    public class ChangeLayoutAndPaint
         private static JPanel panel;
         private static JLabel label;
         public static void main(String[] args)
              // the panel spread out vertically
              panel = new JPanel();
              panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
              // the buttons in the panel
              JButton b1, b2, b3;
              panel.add(b1 = new JButton("One"));
              panel.add(b2 = new JButton("Two"));
              panel.add(b3 = new JButton("Three"));
              b1.setEnabled(false);
              b2.setEnabled(false);
              b3.setEnabled(false);
              // the label with a border around it to show size in a temp panel with flowlayout to not stuff around
              // with the actual size we want.
              JPanel thingy = new JPanel();
              label = new JLabel();
              label.setBorder(new LineBorder(Color.black));
              thingy.add(label);
              // the button to make things go
              JButton button = new JButton("click me");
              button.addActionListener(new ActionListener(){
                   public void actionPerformed(ActionEvent e)
                        //change layout
                        panel.setLayout(new BoxLayout(panel, BoxLayout.X_AXIS));
                        panel.doLayout();
                        //get image
                        BufferedImage image = new BufferedImage(panel.getPreferredSize().width, panel.getPreferredSize().height, BufferedImage.TYPE_INT_ARGB);
                        Graphics2D g = image.createGraphics();
                        panel.paintComponents(g);
                        g.dispose();
                        //set icon of jlabel
                        label.setIcon(new ImageIcon(image));
                        //change back
                        panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
                        panel.doLayout();
              // the frame
              JFrame frame = new JFrame();
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.setSize(400,200);
              frame.setLocation(100,100);
              frame.getContentPane().add(panel, BorderLayout.NORTH);
              frame.getContentPane().add(thingy, BorderLayout.CENTER);
              frame.getContentPane().add(button, BorderLayout.SOUTH);
              frame.setVisible(true);
    }

    Looks like you didn't read the API for Container#doLayout().
    Causes this container to lay out its components. Most programs should not call this method directly, but should invoke the validate method instead.
    There's also a concurrency issue here in that the panel's components may be painted to the image before revalidation completes. And your GUI, like any Swing GUI, should be constructed and shown on the EDT.
    Try this for size -- it could be better, but I've made the minimum possible changes in your code:import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Graphics2D;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.image.BufferedImage;
    import javax.swing.BoxLayout;
    import javax.swing.ImageIcon;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.SwingUtilities;
    import javax.swing.border.LineBorder;
    public class ChangeLayoutAndPaint {
      private static JPanel panel;
      private static JLabel label;
      public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
          @Override
          public void run() {
            // the panel spread out vertically
            panel = new JPanel();
            panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
            // the buttons in the panel
            JButton b1, b2, b3;
            panel.add(b1 = new JButton("One"));
            panel.add(b2 = new JButton("Two"));
            panel.add(b3 = new JButton("Three"));
            b1.setEnabled(false);
            b2.setEnabled(false);
            b3.setEnabled(false);
            // the label with a border around it to show size in a temp panel with flowlayout to not stuff around
            // with the actual size we want.
            JPanel thingy = new JPanel();
            label = new JLabel();
            // label.setBorder(new LineBorder(Color.black));
            thingy.add(label);
            // the button to make things go
            JButton button = new JButton("click me");
            button.addActionListener(new ActionListener() {
              @Override
              public void actionPerformed(ActionEvent e) {
                //change layout
                panel.setLayout(new BoxLayout(panel, BoxLayout.X_AXIS));
                //panel.doLayout();
                panel.revalidate();
                SwingUtilities.invokeLater(new Runnable() {
                  @Override
                  public void run() {
                    //get image
                    BufferedImage image = new BufferedImage(panel.getPreferredSize().width,
                        panel.getPreferredSize().height, BufferedImage.TYPE_INT_ARGB);
                    Graphics2D g = image.createGraphics();
                    panel.paintComponents(g);
                    g.dispose();
                    //set icon of jlabel
                    label.setIcon(new ImageIcon(image));
                    //change back
                    panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
                    //panel.doLayout();
                    panel.revalidate();
            // the frame
            JFrame frame = new JFrame();
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setSize(400, 200);
            frame.setLocation(100, 100);
            frame.getContentPane().add(panel, BorderLayout.NORTH);
            frame.getContentPane().add(thingy, BorderLayout.CENTER);
            frame.getContentPane().add(button, BorderLayout.SOUTH);
            frame.setVisible(true);
    }db
    edit I prefer this:import java.awt.BorderLayout;
    import java.awt.Graphics;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.image.BufferedImage;
    import javax.swing.*;
    public class LayoutAndPaint {
      JPanel panel;
      JLabel label;
      public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
          @Override
          public void run() {
            new LayoutAndPaint().makeUI();
      public void makeUI() {
        JButton one = new JButton("One");
        JButton two = new JButton("Two");
        JButton three = new JButton("Three");
        one.setEnabled(false);
        two.setEnabled(false);
        three.setEnabled(false);
        panel = new JPanel();
        panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
        panel.add(one);
        panel.add(two);
        panel.add(three);
        label = new JLabel();
        JButton button = new JButton("Click");
        button.addActionListener(new ActionListener() {
          @Override
          public void actionPerformed(ActionEvent e) {
            layoutAndPaint();
        JFrame frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setSize(400, 400);
        frame.add(panel, BorderLayout.NORTH);
        frame.add(label, BorderLayout.CENTER);
        frame.add(button, BorderLayout.SOUTH);
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
      private void layoutAndPaint() {
        panel.setLayout(new BoxLayout(panel, BoxLayout.X_AXIS));
        panel.revalidate();
        SwingUtilities.invokeLater(new Runnable() {
          @Override
          public void run() {
            BufferedImage image = new BufferedImage(panel.getPreferredSize().width,
                panel.getPreferredSize().height, BufferedImage.TYPE_INT_ARGB);
            Graphics g = image.createGraphics();
            panel.paintComponents(g);
            g.dispose();
            label.setIcon(new ImageIcon(image));
            panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
            panel.revalidate();
    }db
    Edited by: DarrylBurke

  • I have done something terrible!  nopen up, 'event'  but if I click on them a triangle with an exclamation point comes up.  What have I done, how can I get them back?

    I have done something terrible!  now some of my photos will not open up, I can see them in the 'event' but if I click on some of them I get a gray triangle with an exclamation point.  What have I done and how do I rectify it? 

    The exclamation shows when the file path/link to the original file has been broken.  Apply the two fixes below in order as needed: 
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Since only one option can be run at a time start with Option #3, followed by #4 and then #1 as needed.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager and launch.
    2 - click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option.
    4 - In the next  window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments.  However, books, calendars, cards and slideshows will be lost. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • I have an apple id which I have been happily using to purchase from iTunes and it appears on iPad and iPhone. Now I have done something wrong in iCloud and my mobile me Id comes up on iPhone and iPad so I can no longer purchase. What should I do.

    I have an apple id which I have been happily using to purchase from iTunes and it appears magically on iPad and iPhone, MacBook and partner's iPod touch. Now I have done something wrong in iCloud and my mobile me Id comes up on iPhone and iPad so I can no longer purchase using this and i can't find a way to reset  What should I do? I want to be able to buy apps from iPhone and iPad from this same account and  still synch with my mac book and share with my partner's iPod touch.
    Any suggestions?

    We are users, not Apple. We cannot trace your phone, and neither can Apple.
    Please change every password you have. Posting your email addresses and Apple IDs on a public forum is insane. Hopefully a Mod will edit them out for you.

  • HT1766 i have moved from an iphone 4 to iphone 5 and have done a back up of my iphone 4 and restored this back up to the iphone 5 but the apps do not appear to have come across, have I done something wrong?  Please can someone tell me how to move my apps

    i have moved from an iphone 4 to iphone 5 and have done a back up of my iphone 4 and restored this back up to the iphone 5, but the apps do not appear to have come across.  Have I done something wrong?  Please can someone tell me how to move my apps across?

    After you Restore from backup, sync the iPhone.

  • The restriction code is on my Iphone and I didn't set it up. Could I have done something when tethering the iphone to my MacBook Pro through settings in the MacBook?

    The restriction code is set on my iPhone and I didn't set it up. Could I have done something when tethering the iPhone to my MacBook Pro through settings in the MacBook? I'm a new iPhone user. thanks

    answered

  • When importing from camera into aperture, photo's are also copied to my desktop, if i delete from desktop i am unable to edit photo in aperture. Must have done something, but what?

    When importing from camera into aperture, photo's are also copied to my desktop, if i delete from desktop i am unable to edit photo in aperture. Must have done something, but what?

    Have a look at your import setting specifically Store Files:
    Make sure it is set to where you want the originals to go.
    Message was edited by: Frank Caggiano - Don;t empty the system trash. The originals that you deleted from the Desktop are in there and are the only copies you have unless they are still in the camera.

  • IPhoto has somehow uninstalled itself, or I've done something wrong. If  try to open iPhoto, it gives me this message: "You can't open the application "iPhoto" because it may be damaged or incomplete. I have an iMac OS X. How do I reinstall iPhoto please

    iPhoto has somehow uninstalled itself, or I've done something wrong. If I try to open iPhoto, it gives me this message: "You can't open the application "iPhoto" because it may be damaged or incomplete". I have an iMac OS X. How do I reinstall iPhoto please?

    What is your iPhoto version and how did you install it originally?
    If it came with a new mac and Lion or Mt. Lion installed, you can delete iPhoto from the Applications folder (don't empty the Trash) and download it again from the "Purchased" tab of the App Store.
    If you have bought the iLife CD, reinstall iPhoto from the installation media, after deleting it from the Application folder.
    Or if your Mac came with an older MacOS X, but iLIfe preinstalled, use the system Install CDs,  see Terence Devlin's post here:  Re: My iPhoto isn't working. Error message says "you can't open the app "iPhoto" because it may be damaged or incomplete.
    Regards
    Léonie
    P.S: This may not only be a problem of a broken iPhoto. What did you do, directly before this happened? Did you run a program, that will clean the Mac to save space, like "Clean My Mac" or "Mac Keeper"? These little helpers can be risky and overdo it and remove too much. Then it might be safer to reinstall your system, because other essential files might be missing now.

  • I have done something to my mail account

    I have done something to my gmail account and now I cant open up my mail???

    What  Mac OS X version are you using?
    Does the Mail window open? If so, please post a screenshot of the mail window as you see it now. Use command-shift-4 and drag across to take the screenshot, and the camera Icon on the forums to include it in a post.

  • How do I retrieve bookmarks that are deleted when I click onto a bookmark on my iPhone. Ive done something to my iCloud. I haven't backed up my stuff

    Ive done something to my icloud. Every time I click on a bookmark it updates and deletes everything. Everything in that bookmark is lost on my iphone and my laptop. How do I retrieve my deleted bookmarks?

    If you see next to these bookmarks you are in Edit mode and tapping the bookmark will delete it.  If that's the case you need to tap Done to exit this mode.
    If you don't see the symbol, try going to Settings>iCloud, turn Safari off, then after a few seconds turn it back on.  Then test your bookmarks again.

Maybe you are looking for

  • Safari causing full-system hang

    For a while now I've been getting the SBOD irregularly in Safari, since 3.x if I remember right. I've got some time off work at the minute so I'm finally looking into this properly, and here's what I've found: There seems to be two separate condition

  • I would like to add text and draw on photos. Is this possible in iPhoto or is there an app? Thanks!

    I often need to write a note on a photo or circle something on a photo... is there an app that can help? I would like to be able to do this with iPhoto on my iPad, but am interested in a user-friendly app as well. Thanks!

  • How can I  make the most of my HD handycam and FCS?

    I have a feeling that my gear will enable me to produce Crisp HD content but I am unsure if my settings are correct to attain that goal. Here then is my story: - I am shooting with a Sony HDR-HC3 handycam- I have the record format set to "HDV 1080i"

  • Infotype 0024

    Hello, I am looking for a Enhancement/BADI for infotype 0024, i want this to trigger when the infotype is about to be saved to the database tables. I checked BADI HRPAD00INFTY, but it is not triggering for infotype 0024. The data for IT0024 is saved

  • Af:query -valddate fields issue on adf:11.6

    ADF11.6 I have af:query with text fields and some of fields data types as Integer and BidDecimals . When user enter the characters instead of numbers in af:query fields and click on search , then should be error message saying enter only characters .