Drag the Dimensions KN 6.6.1?

How can I change the size of slide in Keynote 6.6.1?

Inspector > Document > paper > click the slide size dropdown, then select custom

Tags: iWork

Similar Questions

  • Can't see the dimensions for drag - move to create dataforms: Oracle EPMA planning

    I m trying to create a "simple dataform" but cant seem to find the dimensions for drag - move so I can create it. I can see dimensions in the Pan "POV", but nothing in the pots line and column as you can see in the screenshot.

    Screenshot from 2014-10-28 14:20:43.png

    I missed something?

    would appreciate any suggestions,

    I got it. We are supposed to drag and drop dimensions using the icon

  • How can I view the dimensions of the text boxes?

    The MUSE toolbar (if it is the correct name for it) to view the size - width and height of the text boxes, while I was working on page layout. This is very important with presentations of several columns that are not complying with the grid column - what types of old school like me know that * measures. (Not a description of PC, but that's what they were called in the publishing at least the last 50 years).

    Watch the presentation of my website http://www.londonsriver.com and you'll see what I mean.

    But in the latest version, that happened the next day - it disappeared. It shows the coordinates X and Y, so I can see where is the box (not that I really care). But it does not show the DIMENSIONS which is what I want. They used to be next to the coordinates on the toolbar or Ribbon or whatever this is.

    Am I missing something? I tried several options, but they do not appear. I may be stupid, but I want to just my rear dimensions. Bypass it is laborious: make the first box of the column, and then draw another box above it, and then drag on the second position. And so on. And very tedious if I already have two or three columns of text on a page that I re - works. What should I do? Guess? If they are "similar" to Muse they will even when the site is updated?

    I don't even begin to understand what many new features are Muse - perhaps one day I'll have the time to learn. Maybe my site is boring, but I come from the world of newspapers, is what it is and I know how to do. I want to just my size back!

    Thank you. And by the way, many thanks to all those involved in invent, develop, and deliver the Muse. I can now create pages in minutes, using the same basic page design and modification of the skills that I used for years - instead of living the demimonde of techspeak and coding where another website, construction tools wanted to take me!

    Have a look here:

    I don't get width and height of the menu options

  • How to get the dimensions of the area within the window of the scene?

    Hello

    I am able to get the size of a window using stage.getWidth () and stage.getHeight (), which gives the dimensions of the window, including the border. But how the size of the dimensions within the window, which is the area inside the border of the window?

    I had created a way to understand this by calculating the difference between the sides of my initial scene and my step. I called this window filling, which is essentially the thickness of the border on the sides and up and down.

    This method of calculation for available surface area in a window is not reliable when a window is maximized, because the thickness of the border of the window shrinks when enlarged. And if your stage size is larger than your scene, then you will get a wrong value.

    There must be a way to get this area. I need it to do correctly scaling.

    Thank you
    Jose

    Published by: jmart on 22 August 2012 23:58

    I did it by adding a 'master' component to the stage

    mainScene = new scene (masterPane, 430, 430);

    The master component is just a container that contains all the content but will resize the window resize event and therefore will always have the right width and height.

    masterPane = new Pane();
    masterPane.getChildren () .add (root);

    Due to that you can resize your content based on

    Double screenWidth = masterPane.getWidth ();
    Double screenHeight = masterPane.getHeight ();

    Here is an example. You can zoom (scrollwheel), pan (click and drag) and Center + scale on the screen (middle button) (only if the content is a square, there is a bug if the content is greater than the width, which I had no time to eliminate now but you get the point)

    import javafx.animation.Animation;
    import javafx.animation.ParallelTransition;
    import javafx.animation.ParallelTransitionBuilder;
    import javafx.animation.RotateTransition;
    import javafx.animation.RotateTransitionBuilder;
    import javafx.animation.ScaleTransition;
    import javafx.animation.ScaleTransitionBuilder;
    import javafx.animation.Timeline;
    import javafx.animation.TranslateTransition;
    import javafx.animation.TranslateTransitionBuilder;
    import javafx.application.Application;
    import javafx.event.EventHandler;
    import javafx.geometry.Point2D;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.input.MouseButton;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.input.ScrollEvent;
    import javafx.scene.layout.Pane;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Rectangle;
    import javafx.stage.Stage;
    import javafx.util.Duration;
    
    public class Test extends Application
    {
        Stage primStage;
        Scene mainScene;
        Group root;
        Pane masterPane;
        Point2D dragAnchor;
        double initX;
        double initY;
    
        public static void main(String[] args)
        {
            launch(args);
        }
    
        @Override
        public void init()
        {
            root = new Group();
    
            final Pane pane = new Pane();
            pane.setStyle("-fx-background-color: #CCFF99");
    
            pane.setOnScroll(new EventHandler()
            {
                @Override
                public void handle(ScrollEvent se)
                {
                    if(se.getDeltaY() > 0)
                    {
                        pane.setScaleX(pane.getScaleX() + pane.getScaleX()/15);
                        pane.setScaleY(pane.getScaleY() + pane.getScaleY()/15);
                    }
                    else
                    {
                        pane.setScaleX(pane.getScaleX() - pane.getScaleX()/15);
                        pane.setScaleY(pane.getScaleY() - pane.getScaleY()/15);
                    }
                }
            });
    
            pane.setOnMousePressed(new EventHandler()
            {
                public void handle(MouseEvent me)
                {
                    initX = pane.getTranslateX();
                    initY = pane.getTranslateY();
                    dragAnchor = new Point2D(me.getSceneX(), me.getSceneY());
                }
            });
    
            pane.setOnMouseDragged(new EventHandler()
            {
                public void handle(MouseEvent me) {
                    double dragX = me.getSceneX() - dragAnchor.getX();
                    double dragY = me.getSceneY() - dragAnchor.getY();
                    //calculate new position of the pane
                    double newXPosition = initX + dragX;
                    double newYPosition = initY + dragY;
                    //if new position do not exceeds borders of the rectangle, translate to this position
                    pane.setTranslateX(newXPosition);
                    pane.setTranslateY(newYPosition);
    
                }
            });
    
            int x = 0;
            int y = -40;
            for(int i = 0; i < 5; i++)
            {
                y = y + 40;
                for (int j = 0; j < 5; j++)
                {
                    final Rectangle rect = new Rectangle(x, y, 30 , 30);
                    final RotateTransition rotateTransition = RotateTransitionBuilder.create()
                            .node(rect)
                            .duration(Duration.seconds(4))
                            .fromAngle(0)
                            .toAngle(720)
                            .cycleCount(Timeline.INDEFINITE)
                            .autoReverse(true)
                            .build();
                    rect.setOnMouseClicked(new EventHandler()
                    {
                        public void handle(MouseEvent me)
                        {
                            if(rotateTransition.getStatus().equals(Animation.Status.RUNNING))
                            {
                                rotateTransition.setToAngle(0);
                                rotateTransition.stop();
                                rect.setFill(Color.BLACK);
                                rect.setScaleX(1.0);
                                rect.setScaleY(1.0);
                            }
                            else
                            {
                                rect.setFill(Color.AQUAMARINE);
                                rect.setScaleX(2.0);
                                rect.setScaleY(2.0);
                                rotateTransition.play();
                            }
    
                        }
                    });
    
                    pane.getChildren().add(rect);
                    x = x + 40;
    
                }
                x = 0;
    
            }
    
            pane.autosize();
            pane.setPrefSize(pane.getWidth(), pane.getHeight());
            pane.setMaxSize(pane.getWidth(), pane.getHeight());
            root.getChildren().add(pane);
    
            masterPane = new Pane();
            masterPane.getChildren().add(root);
            masterPane.setStyle("-fx-background-color: #AABBCC");
            masterPane.setOnMousePressed(new EventHandler()
            {
               public void handle(MouseEvent me)
               {
                   System.out.println(me.getButton());
                   if((MouseButton.MIDDLE).equals(me.getButton()))
                   {
                       double screenWidth  = masterPane.getWidth();
                       double screenHeight = masterPane.getHeight();
                       double scaleXIs     = pane.getScaleX();
                       double scaleYIs     = pane.getScaleY();
                       double paneWidth    = pane.getWidth()  * scaleXIs;
                       double paneHeight   = pane.getHeight() * scaleYIs;
    
                       double screenScale  = (screenWidth < screenHeight) ? screenWidth : screenHeight;
                       int    screenSide   = (screenWidth < screenHeight) ? 0 : 1;                 
    
                       double scaleFactor = 0.0;
                       if(screenSide == 1)
                       {
                           scaleFactor = screenScale / paneWidth;
                       }
                       else
                       {
                           scaleFactor = screenScale / paneHeight;
                       }
    
                       double scaleXTo = scaleXIs * scaleFactor;
                       double scaleYTo = scaleYIs * scaleFactor;
    
                       double moveToX  = (screenWidth /2) - (pane.getWidth()  / 2);
                       double moveToY  = (screenHeight/2) - (pane.getHeight() / 2);
                       TranslateTransition transTrans = TranslateTransitionBuilder.create()
                           .duration(Duration.seconds(2))
                           .toX(moveToX)
                           .toY(moveToY)
                           .build();
                       ScaleTransition scaleTrans = ScaleTransitionBuilder.create()
                           .duration(Duration.seconds(2))
                           .toX(scaleXTo)
                           .toY(scaleYTo)
                           .build();
                       ParallelTransition parallelTransition = ParallelTransitionBuilder.create()
                          .node(pane)
                          .children(transTrans,scaleTrans)
                          .build();
                       parallelTransition.play();
                   }
               }
            });
    
        }
        public void start(Stage primaryStage)
        {
            primStage = primaryStage;
            mainScene = new Scene(masterPane, 430, 430);
            primaryStage.setScene(mainScene);
            primaryStage.show();
        }
    }
    
  • Change the dimensions of info-layering of cultures-box from inches to pixels (someone?)

    What I want to achieve is so ridiculously simple (literally), I am ashamed to have to ask him.

    (With the help of photoshop cs6 extended)

    How in tarnation change you the layering of agricultural information (displayed by dragging) to display the dimensions of the box of culture in pixels instead of inches?

    Screen Shot 2013-01-06 at 11.11.20 PM.png

    I'm stuck. Thanks in advance for your help.

    Am I the only one who finds this kind of things photoshop not exactly the pinnacle of intuitive user interface?

    You must change your units of document in pixels.

    (1) go to the Preferences > units and rules

    (2) pursuant to rules, hang inches pixels

    You can always change these units in inches, once you are finished cropping. Good luck!

  • AS3 dropped MovieClip does not have the dimensions of the parent

    Please help me with my code. I'm working on a project to map with several video clips that are dragged and dropped off on their respective film clips.

    PROBLEM:

    Initially, video clips draggable decrease their original size. When they are deposited on their corresponding video clip, I want to take the dimensions of the films placed on the map. How to do this?

    HERE IS MY CODE

    Stop();

    var startX:Number;
    var startY: number;
    var finalX:Number;
    finalY var: number;

    var finalWidth:Number;
    var finalHeight:Number;

    var counter: Number = 0;

    alta_mc1.addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
    alta_mc1.addEventListener (MouseEvent.MOUSE_UP, dropIt);
    alta_mc3.addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
    alta_mc3.addEventListener (MouseEvent.MOUSE_UP, dropIt);
    alta_mc2.addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
    alta_mc2.addEventListener (MouseEvent.MOUSE_UP, dropIt);
    alta_mc4.addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
    alta_mc4.addEventListener (MouseEvent.MOUSE_UP, dropIt);
    alta_mc5.addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
    alta_mc5.addEventListener (MouseEvent.MOUSE_UP, dropIt);
    alta_mc6.addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
    alta_mc6.addEventListener (MouseEvent.MOUSE_UP, dropIt);
    alta_mc7.addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
    alta_mc7.addEventListener (MouseEvent.MOUSE_UP, dropIt);
    alta_mc8.addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
    alta_mc8.addEventListener (MouseEvent.MOUSE_UP, dropIt);
    alta_mc9.addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
    alta_mc9.addEventListener (MouseEvent.MOUSE_UP, dropIt);
    alta_mc10.addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
    alta_mc10.addEventListener (MouseEvent.MOUSE_UP, dropIt);
    alta_mc11.addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
    alta_mc11.addEventListener (MouseEvent.MOUSE_UP, dropIt);
    alta_mc12.addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
    alta_mc12.addEventListener (MouseEvent.MOUSE_UP, dropIt);
    alta_mc13.addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
    alta_mc13.addEventListener (MouseEvent.MOUSE_UP, dropIt);
    alta_mc14.addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
    alta_mc14.addEventListener (MouseEvent.MOUSE_UP, dropIt);

    function pickUp(event:MouseEvent):void {}
    event.target.startDrag (true);
    event.target.scaleX = 1.2;
    event.target.scaleY = 1.2;
    m_txt. Text = "";
    event.target.parent.addChild (event.target);
    startX = event.target.x;
    startY = event.target.y;
    }

    function dropIt(event:MouseEvent):void {}

    event.target.stopDrag ();
    var myTargetName:String = "target" + event.target.name;
    var myTarget:DisplayObject = getChildByName (myTargetName);
    If (event.target.dropTarget! = null & & event.target.dropTarget.parent == myTarget) {}
    m_txt. Text = "Good Job!"
    event.target.removeEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
    event.target.removeEventListener (MouseEvent.MOUSE_UP, dropIt);
    event.target.buttonMode = false;
    Flex418 = myTarget.x;
    Finally = myTarget.y;
    HERE'S WHERE I CAN'T MAKE THE DROPPED CLIP MOVIE CLIP DIMENSIONS OF THE PARENT.
    finalWidth = event.target.width
    finalHeight = event.target.height;


    counter ++;
    } else {}
    m_txt. Text = "Try Again!";
    Event.Target.x = startX;
    Event.Target.y = startY;
    event.target.scaleX = 1;
    event.target.scaleY = 1;

    }
    if(Counter == 14) {}
    m_txt. Text = "Felicitaciones! HA colocado todos los municipios correctamente. « ;
    }
    }

    alta_mc1.buttonMode = true;
    alta_mc2.buttonMode = true;
    alta_mc3.buttonMode = true;
    alta_mc4.buttonMode = true;
    alta_mc5.buttonMode = true;
    alta_mc6.buttonMode = true;
    alta_mc7.buttonMode = true;
    alta_mc8.buttonMode = true;
    alta_mc9.buttonMode = true;
    alta_mc10.buttonMode = true;
    alta_mc11.buttonMode = true;
    alta_mc12.buttonMode = true;
    alta_mc13.buttonMode = true;
    alta_mc14.buttonMode = true;

    completo. Visible = false;


    help_1.addEventListener (MouseEvent.CLICK, showMap);
    function showMap(event:MouseEvent): void {}
    completo. Visible = true;
    }


    help_1.addEventListener (MouseEvent.ROLL_OUT, showMap1);
    function showMap1(event:MouseEvent): void {}
    completo. Visible = false;
    }

    Thank you

    German

    Try:

    Stop();

    var startX:Number;
    var startY: number;
    var finalX:Number;
    finalY var: number;

    var finalWidth:Number;
    var finalHeight:Number;

    var counter: Number = 0;

    for (var i: uint = 1; i<>

    This ["alta_mc" + i.ToString ()] .addEventListener (MouseEvent.MOUSE_DOWN, Pick-up);

    This ["alta_mc" + i.ToString ()] .addEventListener (MouseEvent.MOUSE_UP, dropIt);

    This ["alta_mc" + i.ToString ()] .buttonMode = true;

    }

    function pickUp(event:MouseEvent):void {}
    event.target.startDrag (true);
    event.target.scaleX = 1.2;
    event.target.scaleY = 1.2;

    m_txt. Text = "";
    event.target.parent.addChild (event.target);
    startX = event.target.x;
    startY = event.target.y;
    }

    function dropIt(event:MouseEvent):void {}

    event.target.stopDrag ();
    var myTargetName:String = "target" + event.currentTarget.name;
    var myTarget:DisplayObject = getChildByName (myTargetName);
    If (event.target.dropTarget! = null & event.target.dropTarget.parent == myTarget) {}
    m_txt. Text = "Good Job!"
    event.target.removeEventListener (MouseEvent.MOUSE_DOWN, Pick-up);
    event.target.removeEventListener (MouseEvent.MOUSE_UP, dropIt);
    event.target.buttonMode = false;
    Flex418 = myTarget.x;
    Finally = myTarget.y;
    HERE'S WHERE I CAN'T MAKE THE DROPPED CLIP MOVIE CLIP DIMENSIONS OF THE PARENT.
    event.currentTarget.width = myTarget.width;
    event.currentTarget.height = myTarget.height;

    counter ++;
    } else {}
    m_txt. Text = "Try Again!";
    Event.Target.x = startX;
    Event.Target.y = startY;
    event.target.scaleX = 1;
    event.target.scaleY = 1;

    }
    if(Counter == 14) {}
    m_txt. Text = "Felicitaciones! HA colocado todos los municipios correctamente. « ;
    }
    }

    completo. Visible = false;

    help_1.addEventListener (MouseEvent.CLICK, showMap);
    function showMap(event:MouseEvent): void {}
    completo. Visible = true;
    }

    help_1.addEventListener (MouseEvent.ROLL_OUT, showMap1);
    function showMap1(event:MouseEvent): void {}
    completo. Visible = false;
    }

  • How to drag the folder main back in the sidebar of the window

    Hello

    By mistake, I dragged the main folder (root?) of the sidebar of the window. I was trying to drag in the Prefs > projector > protection of personal information in order to reindex Spotlight. When I let go, she went from Ottoman.

    I am Elmer, I think it was called "Elmer Macbook" or something like that. No idea how it go back in the sidebar of the window?

    The best

    Elmer

    Hello

    Open the Finder, then go to the Finder menu bar and click Edit > undo move

  • When I try to highlight the text my cursor turns into a hand/fist who just drag the page. I need to be able to highlight, copy and paste text.

    I have to be able to highlight text on web pages, copy and paste. But when I click on my mouse left button, he made a hand / fist which simply dragged the page.
    How can I get to where I can highlight text?

    Start Firefox in Safe Mode to check if one of the extensions (Firefox, Tools/menu key > Modules > Extensions) or if hardware acceleration is the cause of the problem.

    • Put yourself in the DEFAULT theme: Firefox, Tools/menu key > Modules > appearance
    • Do NOT click on the reset button on the startup window Mode safe
  • Drag the e-mail message open mailbox

    I've recently updated to El Capitan.  In latest versions OS Mail, when you opened a message, there is an icon at the top of the window of the message before the title and you can click and drag the open message to the mailbox to check it.  The icon is now gone and I can't find a way to do this without finding the original message in my Inbox.  Is there a way to get around this?  The reason why I want to do this is because I often open the messages I need to treat and leave them open as a reminder.  The message in the Inbox becomes buried in hundreds of others and so it is easier to find and move the open message that he finds in the Inbox list.

    Try dragging the message header. I can't test this on a machine of El Capitan right now, but I think it works.

  • Hi, I can't drag the Firefox journal normally to the left of the address in the browser to the symbol of the House because it was replaced by the padlock.

    Hello

    Following a recent download of a defrag program I did not notice that he put in bitable.com. This page

    (direct access to social networks sites, Google YT etc ) has now displaced my dedicated Home Page which is Google Actualities. I cannot find a way of removing the nuisance site/page but when I try to make Google Actualities my Home Page by dragging the Mozilla logo (normally to the left of your address in my browser window I find that it has been replced by......the padlock!).
    

    Would be really grateful if someone could shed some light on my preicament. Thanks in advance in there.

    Kind regards

    David

    the only thing that should be there is the path to the firefox.exe file (something like "C:\Program Files (x 86) \Mozilla")-remove anything else of this line.

    In addition, run a scan with the adwcleaner tool recommended above.

  • Cannot show the dimensions of the image on a Mac?

    Hello

    I know in the 'Pictures' folder, you can select "Show view options" and then "view info point" and it will show dimensions photo... but it is not possible in a different directory, not to mention that the pictures folder?

    I photograph weddings for a living, and I'm fairly new to mac. Naturally, all my images are stored on external drives... I don't see the dimensions of the image? It seems that I have to open each image individually within the preview, and then press CTRL + I to see! Please tell me I'm wrong.

    4 K - end iMac 2014

    You can right-click (command-click a button or the trackpads) on the image file and select information.

    The title of the chapter more information, one of the entries is dimensions

    Alternatively, if you set the display of the viewfinder to the list, is one of the optional columns to Dimensions. Command-click on the column headers to add or remove columns.

  • How to disable him drag the text selected for searching the Web?

    How to disable him drag the text selected for searching the Web?

    Hmm, I did not forward. This is a new tab page with nothing to do with what you were dragging?

    I wonder if this might be a feature of one of your extensions. You can see their and disable/remove those that are not essential or unrecognized, here:

    Firefox orange (or the Tools menu) button > addons > Extensions category

    If you disable the extensions, usually a link will appear above at least one of them to restart Firefox. You can complete your work on the tab and click one of the links in the last step.

    If there is no difference, you could test mode without failure of Firefox - which is a standard diagnostic tool in order to avoid interference by extensions (and some custom settings). More info: questions to troubleshoot Firefox in Safe Mode.

    You can restart Firefox in Mode safe help

    Help > restart with disabled modules

    In the dialog box, click on 'Start mode safe' (not Reset)

    Any difference?

  • Open in a new tab when you drag the url in the address bar

    Hello
    When using Firefox on a Windows system, I can get a url (no hyperlink) open in a new tab by dragging the address bar while pressing the Alt key on the keyboard.
    Now I use Firefox (latest version) on a Linux system (Linux Mint 14, specifically), but I can't do the same thing. is there a solution of reproduc this behavior?

    Thanks in advance

    Dragging the URL/text next to a tab should open in a new tab. It does not?

    You should be drag text to the area shown on this screenshot.

  • New iMac has no Applications folder in the dock. Where to drag the Firefox icon for?

    A brand new iMac with the current OS X 10.8.2 has no Applications folder in the dock. When I try to download Firefox the last step shows to drag the Firefox icon in the Applications folder.
    What should I do because there is no such file?

    FYI, I had an old MacBook Pro has an Applications folder in the dock it was no problem
    Download and install Firefox.

    Hi rcarm, go to the Finder, then go to the Menu bar and then open the "Go" menu and select "go to folder...". ", and then type (or copy and paste from there) ~/Library/Application Support

    Thank you

  • Is there a another way to resize the browser to share window by dragging the corner?

    My Firefox window is slightly larger than the size of my desktop, so I put the hand on the corner down to resize the window horizontally. Y at - it a shortcut keyboard or another way to do this?

    • You can resize the window by dragging the cursor of the mouse on any part of the edge of the window, not just the lower corner.
    • Press Alt + space to display the window menu, press S to select the size option, use the arrow keys to resize the window and then Enter to confirm.
    • Click expand in the upper right of the window.
    • Click on the title bar and drag the window to the left, up, or the right edge of the desktop. For more information, see Aero snap.
    • Move the cursor to the upper edge or bottom of the window, until the cursor turns into a two-headed arrow, and then double-click the left button of the mouse.

Maybe you are looking for

  • Is SM30 good description for Satellite M30 model?

    Hello I bought a Toshiba laptop in Italy three years ago.It is said in the back of my laptop, TOSHIBA SATELLITE SM30-742. PSM30E-7100V-IT.I thought that my model was M30 742 as SM30-742 does not appear in the sites of Toshiba. How can I determine exa

  • How to get the microphone audio through speakers

    Original title: I want to talk in my microphone and hear what I speak STRAIGHT from the speakers. It happens in windows XP directly that you plug the microphone but not VISTA.__remember I don't want to record and listen... I want LIVE LIVE, pure!Reme

  • White screen on startup (Vista)

    Whenever I try to turn on my old computer (not too old, I built it myself a few years ago) it goes to a white screen and sits there. The mouse does nothing, but if I hit the keys on the keyboard, the screen will become grey and start flashing vertica

  • BlackBerry Maven project. Have a very hard time :(

    I created a project of BlackBerry mavenized successfully with all files .cod with many entries here.  I have not previously worked on Maven so I signed my request for external command line by going to SignatureTool. My problem is that my application

  • BlackBerry Z10 information

    Buenas tardes desde ESA 2 dias mi tlf z10 is quedo sin coverage movil solo tiene los datos internet tal manera no puedo realize llamadas nor puedo recibir las llamadas y the Bateria is puso super toda manera TR caliente me can help estoy in venezuela