Making ship character rotate slowly in circle

I am creating a player of a ship image in a tiled map. I am able to rotate it around. But to make it look realistic, i want the ship to move around slowly in circle like a real ship. I do not want the ship to rotate so fast like from up to down immediately. Currently , I could get any codes as how to do it. Can anybody guide with me with some codes?

http://www.google.com/search?q=java+image+rotate
If the first few links don't provide you with a solution, post what you've done so far and more detail about why the information in the first few links doesn't work for you.
~

Similar Messages

  • 3D rotate around a circle preset ae6

    Hello thanks for looking in..
    I am messing with the (3D rotate around a circle) preset in AE6 and if you notice that the Browse Preset feature shows the 3D text completing a circle.. Yet, When I create a text layer, apply the preset effect there is a gap from the end of my last word typed to the start of the word typed.
    IE: TV Bug TV Bug TV Bug TV Bug  (space) beginning of TV Bug instead of looking as the preset does in Browse Presets. TV Bug in a complete circle and spaced evenly.
    I hope this is making sense...I want the "g" in Bug to be spaced as a contiunued circle, so that Last "g" in Bug should butt up to the first "T" in TV. As it stands now I type it out and apply the preset and there is a huge space between the last "g" in Bug and the first "T" in TV.
    What do I need to mess with too get the ends to meet?
    I added a couple of pics to help describe:
    First one is the preset
    2nd one is my challnege of the ends not meeting
    Thanks again
    NC

    RG thanks again for hopping in here. You are a great help and I am thankful to have you perusing these forums.  I did get it to work. Although I do have a question or two about adding one keyframe to create a seemless loop.
    1. I add one frame via End > Page Down. However, I am unclear on where to park the last keyframe to make it a seemless loop? I ended up adjusting the First Margin on that effect to get it to start at the point I desire and then hit END to place the last KeyFrame. I of course made my last keyframe spot on where it starts as to not have a "Jump" in text when it restarts.....
    2. The other thing is the effect on that goes from one speed and slows to a stop and then of course starts again when going back to the beginning. I used Ease In and Ease out however I do not have control over the speed. IE: One speed throughout... Any suggestions on that one RG?
    Regards
    NC

  • I am trying to download Firefox4, but the Firefox character appears w/ a circle w/slash through superimposed over it. Drap this to app. folder gets me no where??

    I am trying to download Firefox4, but after download the Firefox character appears w/ a circle w/ a slash through it superimposed on top. Drap this to app. folder gets me no where??

    Firefox 4 requires at least OS X 10.5 and an Intel Mac. There is a third party version of Firefox 4 that runs on OS X 10.4/10.5 and PPC Macs, for details see http://www.floodgap.com/software/tenfourfox
    If you prefer to use Firefox 3.6, you can get it from http://www.mozilla.com/en-US/firefox/all-older.html

  • How Would One Go About Making an Object Rotate to Face in Direction of Mouse?

    I'm just a teenager who happens to have Flash as part of CS4 Production Premium, which I got as a gift.  I don't have any training or previous experience in Flash, and have only just in the past few month been looking into what ActionScript is.  I've just been fiddling with Flash in my spare time, just as something to do, and am working on making very basic computer games.  Currently I am trying to make a very basic top-down shooter computer game.  I've gotten it to where I can move the player (a circle with an arrow on the edge) in eight directions using the standard FPS movement keys (W,A,S,D) and make it move faster for a limited time by holding down the SHIFT key. 
    But now I've come to a standstill.  I am trying to make the player rotate in the direction of the mouse cursor (made to look like crosshairs) so that the player can move in any of the eight directions and aim in any direction at the same time.  I've searched the Internet for hours on end, looking for anything that might help, but not a single Web page section relates to this kind of thing.  So now I'm giving up on searching for a help article, and am making one instead.  Is there anyone that's successfully done this kind of thing before?  Or at least someone who actually knows how to properly use ActionScript 3.0 and can figure it out themselves, then tell me what they did?   (In the meantime, I've made it so that the player rotates and faces in the direction he is traveling in.)
    I've attatched all the code that I've typed to make the game work, so that anyone can look at it and tell me if I'm doing something wrong already.  I've only been learning ActionScript by figuring it out on my own as I go (watched a few videos I have on a disc too), and in the case of this game, I've just been making is up as I go, so to all of you people who actually know this stuff pretty well, this code is probably going to look nasty.

    I pasted it to the bottom of my code on the main timeline (correcting it for my use), but I get this message in the Compiler Errors window:
    Warning: 1090: Migration issue: The onMouseMove event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'mouseMove', callback_handler).
    So what do I do about that?  (again, I'm just a beginner, so I don't know what any of this means)
    (attached is a snapshot of the various objects refered to in the code.  also the original code is attached to the original post.  in case these help at all.)

  • Character rotation problem in tiled map

    Hi I am trying to rotate the character in a tiled map. Its is successful but theres problem with moving diagonally. When i pressed for example up and right keypressed, when its moving it will rotate as i wanted but when i released the buttons, it either rotate to the up or right. I want the image to rotate diagonally and stay as it is when i released the buttons.
    Here are my source code...I noe its very long but really need someone help...There are 3 java files. (Sorry for dis long and ridiculous codes...)
    1) Game.java
    import javax.swing.*;
    import java.awt.*;
    import java.awt.image.BufferStrategy;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import java.awt.event.KeyEvent;
    import java.awt.event.KeyListener;
    public class Game extends Canvas implements KeyListener
         private BufferStrategy strategy;
         private GameMap map=new GameMap();
         private Player player;
         private boolean left,right,up,down;
         Image ship = Toolkit.getDefaultToolkit().getImage("res/up1.PNG");
         public Game()
              Frame frame = new Frame("Pirate Game");
              frame.setLayout(null);
              setBounds(0,30,480,510);
              frame.add(this);
              frame.setSize(480,510);
              frame.setResizable(false);
              // exit the game
              frame.addWindowListener(new WindowAdapter() {
                   public void windowClosing(WindowEvent e) {
                        System.exit(0);
              frame.addKeyListener(this);
              addKeyListener(this);
              frame.setVisible(true);
              createBufferStrategy(2);
              strategy = getBufferStrategy();
              player = new Player(ship, map, 1.5f, 1.5f);
              // start the game loop
              gameLoop();
    public void gameLoop()
              boolean gameRunning = true;
              long last = System.nanoTime();     
              // keep looking while the game is running
              while (gameRunning)
                   Graphics2D g = (Graphics2D) strategy.getDrawGraphics();
                   // clear the screen
                   g.setColor(Color.black);
                   g.fillRect(0,0,480,480);
                   // render our game objects
                   g.translate(0,0); //placing the map to desired location on the frame
                  map.paint(g);
                   player.paint(g);
                   // flip the buffer so we can see the rendering
                   g.dispose();
                   strategy.show();
                   // pause a bit so that we don't choke the system
                   try { Thread.sleep(4); } catch (Exception e) {};
                   long delta = (System.nanoTime() - last) / 1000000;
                   last = System.nanoTime();
                   for (int i=0;i<delta / 5;i++)
                        logic(5);
                   if ((delta % 5) != 0)
                        logic(delta % 5);
         public void logic(long delta) {
              // check the keyboard and record which way the player
              // is trying to move this loop
              float dx = 0;
              float dy = 0;
              if (left)
                   dx -= 1;
              if (right)
                   dx += 1;
              if (up)
                   dy -= 1;
              if (down)
                   dy += 1;
              // if the player needs to move attempt to move the entity
              // based on the keys multiplied by the amount of time thats
              // passed
              if ((dx != 0) | (dy != 0))
                   player.move(dx * delta * 0.0015f,dy * delta * 0.0015f);
         public void keyTyped(KeyEvent e) {}
         public void keyPressed(KeyEvent e)
              if (e.getKeyCode() == KeyEvent.VK_LEFT)
                   left = true;
              if (e.getKeyCode() == KeyEvent.VK_RIGHT)
                   right = true;
              if (e.getKeyCode() == KeyEvent.VK_DOWN)
                   down = true;
              if (e.getKeyCode() == KeyEvent.VK_UP)
                   up = true;
         public void keyReleased(KeyEvent e)
              if (e.getKeyCode() == KeyEvent.VK_LEFT)
                   left = false;
              if (e.getKeyCode() == KeyEvent.VK_RIGHT)
                   right = false;
              if (e.getKeyCode() == KeyEvent.VK_DOWN)
                   down = false;
              if (e.getKeyCode() == KeyEvent.VK_UP)
                   up = false;
         public static void main(String args[])
          new Game();
    2) GameMap.java
    import javax.swing.*;
    import java.awt.*;
    import java.util.*;
    public class GameMap
         int width = 15;
        int height =15;
        static final int TILE_SIZE = 32;
             int[][]  A  =  {{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},
                                 {1,2,2,2,2,2,2,2,2,2,2,2,2,2,1},
                                 {1,2,2,2,2,2,2,2,2,2,2,2,2,2,1},
                                 {1,2,2,2,2,2,2,2,2,2,2,2,2,2,1},
                                 {1,2,2,2,2,2,2,2,2,2,2,2,2,2,1},
                                 {1,2,2,2,2,2,2,2,2,2,2,2,2,2,1},
                                 {1,2,2,2,2,2,2,2,2,2,2,2,2,2,1},
                                 {1,2,2,2,2,2,2,2,2,2,2,2,2,2,1},
                                 {1,2,2,2,2,2,2,2,2,2,3,2,2,2,1},
                                 {1,2,2,2,2,2,2,2,2,2,2,2,2,2,1},
                                 {1,2,2,2,2,2,2,2,2,2,2,2,2,2,1},
                                 {1,2,2,2,2,2,2,2,2,2,2,2,2,2,1},
                                 {1,2,2,2,2,2,2,2,2,2,2,2,2,2,1},
                                 {1,2,2,2,2,2,2,2,2,2,2,2,2,2,1},
                                 {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},
        Image sea = Toolkit.getDefaultToolkit().getImage("res/sea.PNG");
        Image rock = Toolkit.getDefaultToolkit().getImage("res/rock.PNG");
         public void paint(Graphics g)
            for(int across = 0; across < width ; across++)
                for(int vert = 0; vert < height ; vert++)
                    if (A[across][vert] == 1)
                    g.drawImage(rock,across*TILE_SIZE,vert*TILE_SIZE,null);
                         else
                         g.drawImage(sea,across*TILE_SIZE,vert*TILE_SIZE,null);
        public boolean blocked(float x, float y)
              return A[(int) x][(int) y] == 1;
    3) Player.java
    import java.awt.Graphics2D;
    import java.awt.Image;
    public class Player {
         private float x;
         private float y;
         private Image image;
         private GameMap map;
         private float ang;
         private float size=0.3f;
         public Player(Image image, GameMap map, float x, float y)
              this.image = image;
              this.map = map;
              this.x = x;
              this.y = y;
         public boolean move(float dx, float dy)
              // new position
              float nx = x + dx;
              float ny = y + dy;
              //check collision
              if (validLocation(nx, ny)) {
                   x = nx;
                   y = ny;
                   // and calculate the angle we're facing based on our last move
                   ang = (float) (Math.atan2(dy, dx) + (Math.PI / 2));
                   return true;
              // if it wasn't a valid move don't do anything apart from tell the caller
              return false;
         public boolean validLocation(float nx, float ny)
              if (map.blocked(nx - size, ny - size))
                   return false;
              if (map.blocked(nx + size, ny - size))
                   return false;
              if (map.blocked(nx - size, ny + size))
                   return false;
              if (map.blocked(nx + size, ny + size))
                   return false;
              return true;
         public void paint(Graphics2D g) {
              int xp = (int) (map.TILE_SIZE * x);
              int yp = (int) (map.TILE_SIZE * y);
              // rotate the sprite based on the current angle and then
              // draw it
              g.rotate(ang, xp, yp);
              g.drawImage(image, (int) (xp - 16), (int) (yp - 16), null);
              g.rotate(-ang, xp, yp);
    }

    rotate() should always be accompanied with appropriate translate().
    See:
    http://java.sun.com/docs/books/tutorial/2d/TOC.html
    http://www.adtmag.com/java/articleold.aspx?id=1241
    http://www.apl.jhu.edu/~hall/java/Java2D-Tutorial.html
    And, never mix AWT components with Swing ones.
    Use JPanel instead of Canvas.
    Use also standard drawing/painting technique shown above URSs.

  • Help making a character fall below surface...

    I have a game I'm making and have been programming for awhile that I just recently got back to, and am need of assitance trying to make the main character fall and spawn to a previous location when he falls of the main platform/surface which he is continuously running on. This is a new endeavor for me and perhaps I'm just overly tired today, but I can't wrack my brain around it, any assistance is greatly appreciated.
    My current code for the jump function in scene, and starting code for fall animation(with "wally" being the mc character, for reference), plus the Array I'm trying to reference:
    var iceiceArray = new Array(ice1,
    ice2,
    ice3,
    ice4,
    ice5,
    ice42);
    ice1.addEventListener(Event.ENTER_FRAME, villainsLeft2);
    function villainsLeft2(event:Event)
              for (var i:Number=0; i<iceiceArray.length; i++)
                        iceiceArray[i].x -=  15;
    //jump function
    var grav:Number = 10;
    var jumping:Boolean = false;
    var jumpPow:Number = 0;
    stage.addEventListener(KeyboardEvent.KEY_DOWN, onKeyDown);
    stage.addEventListener(Event.ENTER_FRAME, update);
    function onKeyDown(evt:KeyboardEvent):void
        if(evt.keyCode == Keyboard.UP)
            if(jumping != true)
                jumpPow = -50;
                jumping = true;
    wally2.startY = wally2.y;
    function update(evt:Event):void
        if(jumping)
            wally2.y += jumpPow;
            jumpPow += grav;
            if(wally2.y >= wally2.startY)
                jumping = false;
                wally2.y = wally2.startY;;
    //falling function
    if (!wally2.hitTestObject(iceiceArray)) {
              wally2.y -=15;

    your syntax is wrong.
    Think about it: a Logical statement is evaluated this way:
    if(true){
        doTrueStuff();
    }else if (false){
       doFalseStuff()
    in your case:
    wally2.hitTestObject(iceiceArray[i]) is first evaluated (befroe the negation), so if you actually hit, say the iceplatform nr.7 it evaluates to TRUE
    then you are negating the TRUE (!TRUE=FALSE), making it FALSE (so the condition does not enter your subroutine)
    then instead of leving the for loop with a return (because after checking that your player hits one of the platforms checking the rest is not necessary)
    you simply continue the loop, thus "overriding" anything you previously evaluated in it.
    you should write
              for (var i:Number=0; i<iceiceArray.length; i++)
              // if you don't hit platform...
              if (wally2.hitTestObject(iceiceArray[i])) {
            //give the backbouncing a little more space, othewise (if your platform is not pixelperfect placed, you might nit get out of the collision zone with one collision detection)
              wally2.y += 5;
              return;

  • Making Ship-to Manditory in Sales Orders

    We have a customer that is having a bunch of UDF added to the customer shipto. They want these values to load to the sales order line item and to change if they change the shipto for that line item.
    The way I thought I would do it is the following:
    1) Create the UDF fields in the ship-to database (crd1)
    1) create the UDF fields and a  shiptoUDF (manditory) for marketing data rows
    2) In the Sales Order screen, set formated query to automatically update the shipto UDF (and other udf) when the ship to name changes
    3) Set the shipto name field to update to Null when the item number changes (alter column exit)
    This works on entry, when a new line item is created, the default shipto is blanked out and the shipto UDF is thus blanked. This forces user to set a shipto and thus all the other UDF fields are filled in. user can add the document and everything is saved to database.
    The problem is that when the user tried to back up to edit or look at order, the process of loading the order into the screen blanks out the Shipto fields as well.
    Can anyone give help?

    Probably you set the FMS on the ship to name to refresh regularly. Try to set it to Display Saved User-Defined Values.

  • Acrobat 7 Standard making strange character substitutions

    Yes, we're still using Acrobat 7.
    Acrobat has always been unable to handle some fonts (particularly decorative fonts such as cursive fonts) but until recently it has handled most common fonts reasonably well.
    Today I created a document in MS Word and created a pdf file from it by using the "Adobe PDF" printer driver selection -- as usual.
    And, of course, Acrobat created the PDF file, as it always has....
    BUT today Acrobat is changing some of the characters within one font.
    Acrobat is changing ordinary zero characters to a slashed zero character (which doesn't even exist in this font)
    Acrobat is changing ordinary apostrophe characters into some strange large capital O with a tilde over it. Interestingly enough, Acrobat is inserting this enormous character but only leaving the amount of space normally occupied by the regular apostrophe, so that the s after the apostrophe is coming out inside the middle of the O character.
    And Acrobat is changing the degree symbol character to a 1/4 fraction character.
    Interestingly enough Acrobat makes these substitutions only in one specific font within the document. Parts of the text that are in a different font or even in the same font but in BOLD are not having the problem.
    The font where Acrobat makes these strange substitutions is Windows' own Arial font -- specifically 11 point Arial regular -- it doesn't make these strange substitutions in text written in 11 point Arial Bold or in Times New Roman

    This is an issue with fonts not being embedded in a PDF and with 4 fonts that are listed by Acrobat. I have the link to the knowledge base on another computer, but you can search for it. The solution is to remove 4 fonts as I recall. Then the font substitution works correctly. The problem is finding the problem fonts in the knowledge base.

  • Java 3D: making a sphere rotate like a planet.

    Hey guys, could anyone possible show me to make a spher rotate on its axis, like a plant? I'm fairly new to java 3d.
         Sphere sp = new Sphere(.4f, Sphere.GENERATE_TEXTURE_COORDS, earthApp);
         t.set(1.0, new Vector3d(0f, 0f, 0f));
         TransformGroup tg1 = new TransformGroup(t);
         tg1.addChild(sp);
         mainTG.addChild(tg1);
    That basically puts a sphere in the middle of the screen, earthApp references a file called earth.JPG which colours the sphere to make it look like the earth.
    But i need help rotating it guys!

    I'm pretty new to Java3D as well, but:
    If you look under %JAVA_HOME%\demo\java3d\index.html there are several very clear examples (with source). The ConicWorld example looks similar to what you want to do. Check out the createObject method in %JAVA_HOME%\demo\java3d\ConicWorld\ConicWorld.java. It's slightly more complicated than it has to be because they're using arrays of objects, but the general spin idea is there.

  • Gmail making Mail app run slowly!

    I have been teaching my fiancé how to use his iBook G4 (for more than just writing school papers.) He has a Gmail account that I have set up to work with the Mail app on OSX Panther. He now has a bad opinion of Mail because the app is really really slow to load up his new messages, (lots of that spinning wheel action!) and it makes his computer respond slowly to everything. Sometimes we have to force quit the application just to make the computer usable again.
    I have set up his computer to my .Mac email and my other POP mail server, and neither of those accounts make Mail behave like that. Anybody have any similar experiences with Gmail? Any suggestions? Should we download Gmail's app instead?
    Thanks in advance!

    Go to Apple Menu > System Preferences > Network, choose Network Port Configurations from the Show popup menu, and make sure that the configuration used to connect to Internet appears at the top of the list.
    Also, try using a different method to connect to Internet, if possible, or connecting the computer to Internet as directly as possible, i.e. bypassing any routers that might be present, using an ethernet cable instead of wireless, etc., and see whether that makes a difference.

  • Japanese character appear rotated when applying a Formula on the field

    We have a problem where the japanese character appear well on the report when
    simply drag and drop a field that contained japanese data from the database
    BUT it display the japanese character rotated horizontally when we apply a simple
    formula on it. The formula don't change any style or rotation.
    I think it's a bug. Is anyone had this problem before?

    we are using BO XI release 1 SP4 and the application use these components.
    but I also created a small project with the Visual Studio 2008 with the latest crystal report 2008 embedded components and both return the same result.
    Japanese character appear well but (each character are rotated 90 degrees) on the field where a formula field is set and my formula don't do nothing except setting the field itself :
    Here is the formula:
    formula = {buyer_index_alphabetical_FR;1.alt1name}
    alt1name is a field that contain japanese
    and the field data appear well on the report but with each character rotated.
    if we map on a textfield, the field alt1name directly without this formula
    the text appear normally
    I didn't use formatting formulas
    that 's why my conclusion is that it's a bug.
    But I am surprised that nobodyelse mentioned that.

  • Help with ship rotation

    Hi guys,
    I am in a bit of a bother, I have some code for an Asteroids game which represents the spaceship. I have written it so if you press either the left or right keys then the ship will rotate once thrust is applied. (see code)
    I am having a couple of problems, one problem relates to the ship gif. I am unsure of how I can rotate the ship when the ships heading has been altered.
    Also the bullet when fired does not fire in the same heading as the ship should be facing. Any ideas.
    Also at the moment the ship is not really responding well to the left/right controls. Can anyone suggest some fixes please?
    import java.awt.Graphics2D;
    public class SpaceShip extends Body {
         static final ImageIcon ship = new ImageIcon("ship.gif");
         static final Integer width = ship.getIconWidth();
         static final Integer height = ship.getIconHeight();
         double headingAngle = 0;
         double deltaX, deltaY;
         //Constructor method for SpaceShip with Co-ords x and y.
         public SpaceShip(Double xp, Double yp) {
              x = xp;
              y = yp;
         //Method for drawing the Spaceship object.
         public void draw(Game h, GameComponent canvas) {
              canvas.drawImage(ship.getImage(), mapx(h, canvas, x),
                        mapy(h, canvas, y));
         //This method is responsible for the actions associated with the KeyListener events.
         public void step(Game bw, GameComponent canvas) {
              if (canvas.leftPressed || !canvas.rightPressed) {
                   headingAngle -= 0.035;
              } else if (canvas.rightPressed || !canvas.leftPressed) {
                   headingAngle += 0.035;
              if (canvas.forwardPressed) {
                   deltaX += Math.sin(headingAngle) * 0.01;
                   deltaY += Math.cos(headingAngle + Math.PI) * 0.01;
              if (canvas.spacePressed) {
                   canvas.spacePressed = false;
                   bw.missiles.add(new Missile(x + width / 2 - Missile.width / 2, y));
              //Calculate the ships new position.
              x += deltaX;
              y += deltaY;
              if (y < 0 - height) {
                   y = 1.0 * canvas.ydim;
              } else if (y > canvas.ydim) {
                   y = 0.0 - height;
              } else if (x < 0 - width) {
                   x = 1.0 * canvas.xdim;
              } else if (x > canvas.xdim) {
                   x = 0.0 - width;
         public Double width() {
              return (double) width;
         public Double height() {
              return (double) height;
    }Edited by: philjt on Oct 16, 2008 1:39 AM

    For rotating the ship, take a look at some of the methods in the [Graphics2D|http://java.sun.com/j2se/1.5.0/docs/api/java/awt/Graphics2D.html] class, specifically the rotate ones. As far as the bullets go, you are only passing an x and y coordinate to the Missile constructor. How is it supposed to know which direction to go?

  • When i turn the macbook on a rotating circle comes up for about 5 minutes and i cant access my computer. how can i fix this?

    when i turn my computer on the rotating multi colored circle stays on for about 5 minutes and does not let me access my computer.  what can i do to fix this problem?

    Does it stay on and not go away... or does it eventually let you login?

  • Rotating shapes?

    Does anyone know how to make moving shapes in Adobe Premiere Pro?
    What I'm trying to do is making a square and have it rotate slowly e.g 90 degrees but stay in the same place (if that makes sense? lol)
    Thanks.

    Welcome to the forums.
    This is easily accomplished with the PPro Titler. Create a title with a single square in the middle. Put that title on the timeline and click on it, then look in the Effect Controls Panel and keyframe the rotation parameter.
    You will also find links to many free tutorials in the PremiereProPedia that will quickly show you how things are done in Premiere Pro.
    Cheers
    Eddie

  • Rotation between two vectors

    Hello,
    I am looking for a way for my 3D character to slowly rotate
    between two vectors. The rotation vectors is results from the
    rotation property of GetWorldTransform().
    My first idea was to somehow convert the two vectors into
    degrees and with the help with that information then simple use the
    rotation()-function.
    All help to figure out how to do so, or other suggestions,
    would be highly appreciated. Thanks. :)
    Thanks!

    The interpolate() and interpolateTo() commands accept a
    percentage value as the second parameter, so you should be able to
    specify what percentage of the interpolation you want, at the
    current point in time, as a factor of your time delta.
    - Ben

Maybe you are looking for

  • Disk utility freezes when partitioning HD

    I cleared off some space on my hard drive to create a 20 GB partition to install Mountain Lion (I'm running Snow Leopard). This leaves about 15 GB free space on the old partition. Every time I do this, the system freezes after 10-20 minutes and I hav

  • Incredible

    This is an example how to comment a method of class com.sapportals.htmlb.FileUpload getFile() "public com.sapportals.htmlb.rendering.IFileParam getFile()" Documentation for interface IFileParam don't exist. How can i use this file in my iviews if i d

  • Mass availability check in COHV fails

    Hi, I have daily mass processing job for Collective availability check running with Reset availability data flag in background job. the job runs around some time 4.30 AM in morning. Sometime the job fails because of order locking issues ( Order is op

  • Keyboard Shortcut - Get semi-colon to jump to end of line

    In the NetBeans IDE I can type "myCommand(myVariable;)" and NetBeans will automatically change it to "myCommand(myVariable);". Can that be set up in JDeveloper? If not, is there another way to place the semi-colon at the end of the line without using

  • My new iphone 5 dings for no apparent reason. Anyone know why?

    My New Iphone 5 dings for no apparent reason. I have it set up to ding when I receive a new e mail, but in these cases I did not get mail. DOes anyone have a solution?