Removing header links in full screen mode

Does anyone know how I can remove the header links in portlet's full screen (maximized) view? Currently, I see "Home", "Builder", "Navigator" and I want to remove these. I'm using Oracle Portal 10.1.4.
Thanks.

I'm logged in as a user with all possible rights. I do see the edit link when I'm in a portlet page, but when I click on the portlet title to see the portlet in a full screen mode (my goal is to change the look and feel of the portlet in full screen mode), I can't get to the edit link.
As an example, when you go to http://portalstandards.oracle.com/portal/page/portal/OracleHostedWSRPPortal/Samples and click "About", you'll see an Oracle "out-of-box" template (some image then blue border and the same blue border as the footer). I want to get rid of this look and put in my own image and border. How do I do that?
Edited by: user1754223 on Sep 9, 2010 9:07 AM

Similar Messages

  • Please help: Linking from PDF to other PDF's that open in a new window... but NOT in full screen mode!?

    Hi All,
    I have a project where a PDF is viewed in full screen mode when opened, from within this I wish to link to a variety of other PDF's.
    Creating the links is simple, however I can not work out how to control the new window so that the new PDF opens with the toolbars and menus, ie not in full screen mode.
    Any help would be apreciated, google is not my friend on this one.
    LB.

    Hi Thanks for the response.
    I thought I had, but what seemed to be happening was that the Linked PDF was
    adopting the full screen property of the original PDF. I'll give it another
    go and let you know.
    LB
    2009/5/10 Steve Hart <[email protected]>
    Have you tried setting the initiall view properties of those PDFs to what
    you want?  Go File>Properties>Initial View.
    >

  • I need to remove "minimize, maximize, close" buttons on full screen mode

    I can remove all buttons (like refresh, back, forward, address bar, etc..) but the little right 3 buttons "minimize, maximize, close" i cant remove, how can i make with userChrome.css or other option.
    Because i can close firefox exiting from fullscreen and clicking on archive menu with "Alt" key.
    I dont wanna this little 3 buttons, that i can hide and show permanent.
    I hope explain me correctly
    Thanks a lot

    Add code to userChrome.css below the default @namespace line.
    *http://kb.mozillazine.org/userChrome.css
    <pre><nowiki>@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    #autohide-context { display:none!important; } /* hide context menuitem "Exit Full Screen Mode" */
    #window-controls { display:none!important; } /* hide window controls in full screen mode */
    </nowiki></pre>

  • How to remove status bar at bottom of browser when in full screen mode

    We have an application that runs in full screen mode for public display, so having the status bar pop-up at the bottom of the screen is distracting when it moves between pages is distracting and detracts from the user experience.
    How do I disable the status bar so that it no longer pops up when the browser is in full screen mode?

    Or do you mean the floating message that describes the current activity of the browser (for example, Waiting...) or shows the URL of the currently hovered link?
    That can be suppressed using custom style rules. Here is an example of a past thread on how you might do that:
    [https://support.mozilla.org/questions/976248 How do I disable the link address popup at bottom of the page?]
    That was as of Firefox 25. Does it still work in Firefox 30?

  • Remove "Open in Full Screen mode" from multiple files

    Hi there,
    I just discovered today that I could use Javascript with Acrobat.
    I download a lot of ebooks from a certain website that has them all set to open in Full Screen mode.  (Properties > Initial View > Windows Options > [x] Open in Full Screen mode)
    I could fix a lot of stuff that was annoying me with ebooks from this site, but I can't seem to find anything to disable the full screen thingie...
    I tried these commands that I found, but they didn't do the job :
    app.fs.isFullScreen = false;app.fullscreen = false;this.fs.isFullScreen = falsev;this.fullscreen = false;
    Thanks,
    Simo
    PS : Using Actobat X

    Thank you both for your replies.
    With Acrobat Pro you can set the Initial View through the batch process.
    Would you mind explaining how to do this for a noob like me? 
    Thanks,
    Simo

  • How do I remove full screen mode in Firefox 4

    I clicked Firefox button and then clicked the full screen mode. I know wish to exit this mode but can not find the way to undo it

    '''F11''' toggles fullcreen mode.

  • Safari 6.0.1 Truncates URLs in Non Full Screen Mode

    I just applied the Java removal patch that Apple released and I noticed that all URLs now get truncated to subdomain.domain.extension. For example, if I go to store.apple.com/us my URL bar only shows store.apple.com. If I go to full screen mode it shows store.apple.com/us. The trailing "/us" is gray, not black, but it shows. This is occurring with all of the sites I visit.
    I created a new user and logged on with the newly created user's profile and attempted the same test. The results were exactly the same.
    What can I do to see the entire URL in window mode?
    Windowed mode:
    Full screen mode:

    I have had the new Safari for less than 1/2 hour and I'm already switching to Google Chrome. The new Safari not only grays out URLs inexplicably, but also, and this is SUPER annoying, when I click on a link on Facebook, it takes me out of FB to the link, but grays out the "back" arrow so I can't even return to where I was on FB. ***?

  • JDK 1.4.2 and full-screen mode

    Hi all,
    I'm messing around with a 2D-elite clone using Java 1.4 full-screen mode. After a few hours of work I am happily zapping asteroids and aliens at a zippy 140 FPS.
    I then switch from JDK 1.4.0_01 to 1.4.2_01 in the hope of getting some extra speed. Without making any other changes to the code, things suddenly start crawling along at <30 FPS.
    I am using BufferStrategy in combination with a VolatileImage to draw everything on. Did I miss any important changes in the newest release of the JDK or am I doing something fundamentally wrong?
    Raf

    Hi Abuse,
    Thanks for answering. First of all, my speed calculations are a bit crufty. In my main thread, I do a System.currentTimeMillis() every 1000th call. I consider 10^6 / (this time in ms - last time in ms) to be the speed in FPS. It's probably wildly off, but the difference in speed between the two JDKs is noticeable even without the numbers.
    Posting all of the code is going to be a bit difficult because there's quite a few classes in the project. However, I'll try to isolate the relevant code below.
    At this point, I'm not entirely convinced that the drawing is the problem. I'm using a shoddy integrated video card which may be causing the issues, but even if I only draw the background starfield I see a significant drop in speed. I'll try to disable some code here and there in the hope of finding something more specific.
    I'm playing some music in the background and there is rather a lot of collision-handling code going on, maybe that's the bottle-neck. When you bump into stuff, the trajectory of your ship and whatever you rammed is altered depending on weight, velocity and angle. It's a lot of fun to watch but still quite buggy at this point. (I've got a planet on-screen which acts rather like a beach-ball when I ram it).
    Anyhow, here's the rendering code:
    This class takes care of the initialization of the full-screen mode.
    Actual drawing is done in the Level class below.
    public class Main implements Runnable {
        private long lastTime = System.currentTimeMillis();
        double frameCount = 0;
        public static final int BUFFER_COUNT = 1;
        private JFrame frame;
        BufferStrategy bufferStrategy;
        GraphicsDevice device;
        private BigScreen screen;
        private static final int DRAW_DELAY = 5;
        public static void main(String[] args) {
            Main main = new Main();
        public Main() {
            this.initializeSettings();
            this.initializeGUI();
            new Thread(this).start();
            new Thread(new HouseKeeping()).start();
        private void initializeSettings() {
            Tools.loadEntityTypes();
            SoundManager.getHandle().playMusic();
        private void initializeGUI() {
            GraphicsEnvironment env = GraphicsEnvironment.getLocalGraphicsEnvironment();
            device = env.getDefaultScreenDevice();
            GraphicsConfiguration gc = device.getDefaultConfiguration();
            frame = new JFrame(gc);
            frame.setTitle("Elite 2D");
            frame.setUndecorated(true);
            frame.setResizable(false);
            frame.setIgnoreRepaint(true);
            frame.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
            device.setFullScreenWindow(frame);
            Level.getHandle().setDimensions((int) device.getDefaultConfiguration().getBounds().getWidth(),
                    (int) device.getDefaultConfiguration().getBounds().getHeight());
            BufferCapabilities bc = new BufferCapabilities(new ImageCapabilities(true),
                    new ImageCapabilities(true),
                    BufferCapabilities.FlipContents.BACKGROUND
            try {
                frame.createBufferStrategy(BUFFER_COUNT, bc);
            } catch (AWTException e) {
                e.printStackTrace();
            bufferStrategy = frame.getBufferStrategy();
            int width = device.getDisplayMode().getWidth();
            int height = device.getDisplayMode().getHeight();
            screen = new BigScreen(width, height, gc.createCompatibleVolatileImage(width, height));
            frame.getContentPane().add(screen);
            frame.addWindowListener(new WindowAdapter() {
                public void windowClosing(WindowEvent e) {
                    System.exit(0);
                public void windowDeiconified(WindowEvent e) {
                    GraphicsEnvironment env = GraphicsEnvironment.getLocalGraphicsEnvironment();
                    device = env.getDefaultScreenDevice();
                    GraphicsConfiguration gc = device.getDefaultConfiguration();
                    device.setFullScreenWindow(null);
                    device.setFullScreenWindow(frame);
                    BufferCapabilities bc = new BufferCapabilities(new ImageCapabilities(true),
                            new ImageCapabilities(true),
                            BufferCapabilities.FlipContents.COPIED
                    try {
                        frame.createBufferStrategy(BUFFER_COUNT, bc);
                    } catch (AWTException awt) {
                        awt.printStackTrace();
            // Set the cursor to a transparent image
            Image image = Toolkit.getDefaultToolkit().createImage(
                    new MemoryImageSource(16, 16, new int[16 * 16], 0, 16));
            Cursor transparentCursor = Toolkit.getDefaultToolkit().createCustomCursor(image,
                    new Point(0, 0), "invisiblecursor");
            frame.setCursor(transparentCursor);
            screen.setFocusable(false);
            frame.addKeyListener(getKeyListener());
        public KeyAdapter getKeyListener() {
            return new KeyAdapter() {
                public void keyPressed(KeyEvent e) {
                    Level.getHandle().getPlayer().handleKeyUp(e.getKeyCode());
                public void keyReleased(KeyEvent e) {
                    Level.getHandle().getPlayer().handleKeyDown(e.getKeyCode());
        public void run() {
            while (true) {
                if (frameCount++ % 1000 == 0) {
                    long thisTime = System.currentTimeMillis();
                    // aantal ms voor 1000 frames
                    // 1000 * (aantal frames / seconde)
                    double fps = thisTime - lastTime;
                    lastTime = thisTime;
                    Level.getHandle().getConsole().addConsoleMessage("FPS : " + 1000000 / fps);
                Graphics g = bufferStrategy.getDrawGraphics();
                screen.paintSurroundings();
                g.drawImage(screen.background, 0, 0, null);
                g.dispose();
                bufferStrategy.show();
                try {
                    Thread.sleep(DRAW_DELAY);
                } catch (InterruptedException e) {
                } catch (IllegalStateException i) {
        public Rectangle getScreenDimensions() {
            return frame.getGraphicsConfiguration().getBounds();
        public void exitFullScreen() {
            device.setFullScreenWindow(null);
    } // End class Main// The rendering-code in Level is done in the updateStatus-method.
    // Once again, rendering is delegated to the current SolarSystem class.
    public class Level {
        private static Level handle;
        public SolarSystem currentSolarSystem;
        private Console console;
        private int width, height;
        private Ship player;
        // All ships within this radius of the player get to act
        private static final int ACTION_RADIUS = 5000;
        // All entities within this radius of the player qualify for drawing
        private static final int VISIBILITY_RADIUS = 2000;
        private Level() {
            console = new Console();
            currentSolarSystem = new SolarSystem();
            Equipment[] weapons = new Equipment[3];
            weapons[0] = new BeamWeapon(Color.red, 1000, 0.02, 0.1);
            weapons[1] = new PulseWeapon(Color.blue, 500, 0, 400, 1);
            weapons[2] = new MissileLauncher();
            player = new Ship(100, 100, weapons, currentSolarSystem);
            currentSolarSystem.addEntity(new Entity(1000, 1000, Tools.getEntityType("planet"), currentSolarSystem));
            for (int i = 0; i < 20; i++) {
                Entity asteroid = Tools.getEntityType("asteroid").createEntity(200 * i, 0, currentSolarSystem);
                asteroid.setSpeed(Tools.getRandom(asteroid.getMaxSpeed()));
                asteroid.setAccelerationAngle(Tools.getRandom(Tools.TWOPI));
                currentSolarSystem.addEntity(asteroid);
            for (int i = 0; i < 5; i++) {
                currentSolarSystem.addEntity(Tools.getEntityType("enemy").createEntity(
                        Tools.getRandom(-1000, 1000), Tools.getRandom(-1000, 1000), currentSolarSystem));
        public SolarSystem getActiveSolarSystem() {
            return this.currentSolarSystem;
        public Console getConsole() {
            return this.console;
        public void setDimensions(int x, int y) {
            this.width = x;
            this.height = y;
        public int getWidth() {
            return this.width;
        public int getHeight() {
            return this.height;
        public static Level getHandle() {
            if (handle == null) {
                handle = new Level();
            return handle;
        public ArrayList getEntitiesInRectangle(int x1, int y1, int w1, int h1) {
            ArrayList intersects = new ArrayList();
            for (int i = 0; i < currentSolarSystem.getEntities().size(); i++) {
                Entity e = (Entity) currentSolarSystem.getEntities().get(i);
                if ((x1 + w1 > e.getX()) && (e.getX() + e.getWidth() > x1) && (y1 + h1 > e.getHeight())
                        && (e.getY() + e.getHeight() > y1)) {
                    intersects.add(e);
            return intersects;
        public ArrayList getEntitiesInLine(double x1, double y1, double x2, double y2) {
            ArrayList intersects = new ArrayList();
            Line2D line = new Line2D.Double(x1, y1, x2, y2);
            for (int i = 0; i < currentSolarSystem.getEntities().size(); i++) {
                Entity e = (Entity) currentSolarSystem.getEntities().get(i);
                // System.out.println(e.getBoundingShape() + " vs " + x1 + "x" + y1 + ", " + x2 + "x" + y2);
                if (line.intersects(e.getBoundingShape().getBounds2D())) {
                    intersects.add(e);
            return intersects;
        public Entity getNearestEntityToLineOrigin(double x1, double y1, double x2, double y2) {
            double closestIndex = 0;
            Entity closestEntity = null;
            Line2D line = new Line2D.Double(x1, y1, x2, y2);
            for (int i = 0; i < currentSolarSystem.getEntities().size(); i++) {
                Entity e = (Entity) currentSolarSystem.getEntities().get(i);
                // System.out.println(e.getBoundingShape() + " vs " + x1 + "x" + y1 + ", " + x2 + "x" + y2);
                if (line.intersects(e.getBoundingShape().getBounds2D())) {
                    double distance = Tools.getDistance(x1, y1, e);
                    if (closestEntity == null) {
                        closestEntity = e;
                        closestIndex = distance;
                    } else if (distance < closestIndex) {
                        closestEntity = e;
            return closestEntity;
        public Ship getPlayer() {
            return player;
        public void updateStatus(Graphics g, int width, int height) {
            getActiveSolarSystem().updateStatus(g, getPlayer(), width, height);
            getConsole().showConsoleMessages(g);
    }Draws a starfield and all visible entities in sight. So far I'm just
    drawing all entities in the solar system. Seems to be faster than
    figuring out whether objects are near the player for <100 objects.
    public class SolarSystem {
        private static final int BIG_STARS = 20;
        private static final int MAX_STARS = 1000;
        private static final int STAR_AREA = 1400;
        private int[][] stars;
        private ArrayList entities;
        private ArrayList explosions;
        public SolarSystem() {
            entities = new ArrayList();
            explosions = new ArrayList();
            this.initializeStarField();
        public ArrayList getEntities() {
            return entities;
        public ArrayList getExplosions() {
            return explosions;
        public void addEntity(Entity e) {
            entities.add(e);
        public void removeEntity(Entity e) {
            entities.remove(e);
        public void addExplosion(int x, int y, int size, int max) {
            // System.out.println("Adding explosion at " + x + " " + y);
            explosions.add(new Explosion(x, y, size, max));
        public void updateStatus(Graphics g, Ship player, int width, int height) {
            this.pollEntities(player);
            this.drawScene(g, player, width, height);
        private void drawScene(Graphics g, Ship player, int width, int height) {
            // Make sure nothing extraneous gets drawn
            g.clipRect(0, 0, width, height);
            // Clear the surface and set the background
            g.setColor(Color.black);
            g.fillRect(0, 0, width, height);
            // Draw explosions & remove from the buffer if needed
            Explosion[] expl = (Explosion[]) getExplosions().toArray(new Explosion[explosions.size()]);
            int centerX = (int) player.getX();
            int centerY = (int) player.getY();
            int widthOffset = centerX + width / 2;
            int heightOffset = centerY + height / 2;
            this.drawStarField(g, player);
            for (int i = expl.length - 1; i >= 0; i--) {
                Explosion ex = expl;
    g.setColor(new Color(Math.max(255 - ex.size, 0), 0, 0));
    g.drawOval(ex.x - widthOffset, ex.y - heightOffset, ex.size, ex.size);
    if (ex.size < ex.max) {
    ex.size += 2;
    ex.x--;
    ex.y--;
    explosions.set(i, ex);
    } else {
    explosions.remove(i);
    // todo - can we re-use the active entities table here?
    Entity[] entities = getVisibleEntities(player);
    for (int i = 0; i < entities.length; i++) {
    entities[i].drawEntity((int) (entities[i].getX() - player.getX() + width / 2),
    (int) (entities[i].getY() - player.getY() + height / 2), g);
    player.drawEntity(width / 2, height / 2, g, entities, width, height);
    private void drawStarField(Graphics g, Ship player) {
    g.setColor(new Color(255, 255, 255));
    int starX = ((int) player.getX() % STAR_AREA);
    int starY = ((int) player.getY() % STAR_AREA);
    for (int i = 0; i < BIG_STARS; i++) {
    g.fillOval((stars[i][0] - starX) % STAR_AREA, (stars[i][1] - starY) % STAR_AREA, 3, 3);
    for (int i = BIG_STARS; i < MAX_STARS; i++) {
    g.drawLine((stars[i][0] - starX) % STAR_AREA, (stars[i][1] - starY) % STAR_AREA,
    (stars[i][0] - starX) % STAR_AREA, (stars[i][1] - starY) % STAR_AREA);
    * Includes the player as an active entity
    * @param player
    * @return
    private Entity[] getActiveEntities(Ship player) {
    Entity[] activeEntities = (Entity[]) entities.toArray(new Entity[entities.size() + 1]);
    activeEntities[activeEntities.length - 1] = player;
    return activeEntities;
    private void pollEntities(Ship player) {
    this.purgeDestroyedObjects();
    Entity[] activeEntities = this.getActiveEntities(player);
    for (int i = 0; i < activeEntities.length; i++) {
    activeEntities[i].resolveAction();
    // todo - Handle gravitational pull
    //if (activeEntities[i].hasGravitationalPull()) {
    // Handle collisions
    for (int i = activeEntities.length - 1; i >= 0; i--) {
    if (activeEntities[i] != null && !activeEntities[i].isTransparent() && !activeEntities[i].isDestroyed()) {
    for (int j = i - 1; j >= 0; j--) {
    if (activeEntities[i] != null && activeEntities[j] != null &&
    !activeEntities[j].isTransparent() && Tools.entitiesCollide(activeEntities[i], activeEntities[j])) {
    handleCollision(activeEntities[i], activeEntities[j]);
    // todo - seems redundant - remove by avoiding player ?
    if (activeEntities[i].isDestroyed()) {
    // System.out.println("Removing " + activeEntities[i]);
    activeEntities[i] = null;
    if (activeEntities[j].isDestroyed()) {
    // System.out.println("Removing " + activeEntities[j]);
    activeEntities[j] = null;
    private void purgeDestroyedObjects() {
    for (int i = entities.size() - 1; i >= 0; i--) {
    if (((Entity) entities.get(i)).isDestroyed()) {
    entities.remove(i);
    private void handleCollision(Entity one, Entity two) {
    // Base damage is a factor of total speed & angle.
    double collisionFactor = Math.abs(Math.sin((one.getAccelerationAngle() - two.getAccelerationAngle()) / 2));
    double explosiveDamage = 0;
    if (one.explodesOnImpact()) {
    one.onDestroy();
    explosiveDamage += one.getExplosiveDamage();
    if (two.explodesOnImpact()) {
    two.onDestroy();
    explosiveDamage += two.getExplosiveDamage();
    one.applyDamage(explosiveDamage + (collisionFactor * two.getMass() / one.getMass()));
    two.applyDamage(explosiveDamage + (collisionFactor * one.getMass() / two.getMass()));
    // Introducing the FACTOR-variable also causes stickiness (two objects glued together after collision)
    // FACTOR determines how much of the energy is transfered from entity 1 to 2, and how much remains
    double FACTOR = 0.9;
    // Don't delete v1 and a1!
    double v1 = one.getSpeed();
    double a1 = one.getAccelerationAngle();
    double spinFactor = Math.cos(one.getAccelerationAngle() - two.getAccelerationAngle());
    if (!one.isDestroyed()) {
    one.setSpeed(two.getSpeed() * FACTOR + one.getSpeed() * (1 - FACTOR));
    one.setAccelerationAngle(two.getAccelerationAngle());
    one.applySpin(spinFactor);
    if (!two.isDestroyed()) {
    two.setSpeed(v1 * FACTOR + two.getSpeed() * (1 - FACTOR));
    two.setAccelerationAngle(a1);
    two.applySpin(-spinFactor);
    public Entity[] getVisibleEntities(Entity center) {
    return (Entity[]) entities.toArray(new Entity[entities.size()]);
    private void initializeStarField() {
    stars = new int[MAX_STARS][2];
    for (int i = 0; i < MAX_STARS; i++) {
    setStar(i);
    private void setStar(int index) {
    stars[index][0] = Tools.getRandom(STAR_AREA) + STAR_AREA;
    stars[index][1] = Tools.getRandom(STAR_AREA) + STAR_AREA;
    Finally, the Entity class. All in-game objects extend Entity. Rendering is done in the drawEntity-method. Each Entity has an EntityType which contains parameters like the weight, maximum acceleration and turn rate etc... Images are also stored in EntityType.
    public class Entity {
        public static final double TWOPI = Math.PI * 2;
        protected double speed;
        protected double turnRate;
        protected double x, y;
        protected double heading;
        protected double accelerationAngle;
        protected boolean destroyed = false;
        protected double energy;
        protected EntityType type;
        private Equipment activeEquipment;
        private SolarSystem solar;
        public Entity(int xPos, int yPos, EntityType type, SolarSystem solar) {
            this.x = xPos;
            this.y = yPos;
            this.type = type;
            this.energy = this.getEntityType().getEnergy();
            this.solar = solar;
         * Basic entity drawing function doesn't taken rotation into account
        public void drawEntity(int xLocation, int yLocation, Graphics g) {
            if (this.getActiveEquipment() != null && this.getActiveEquipment().isActive()) {
                this.getActiveEquipment().applyEffect(this, g);
    //        Level.getHandle().getConsole().addConsoleMessage(xLocation + "x" + yLocation);
            g.drawImage(getIcon(), xLocation, yLocation, null);
        public Shape getBoundingShape() {
            return new Rectangle((int) getX(), (int) getY(), getWidth(), getHeight());

  • Issue with Aperture full screen mode on HD 5870

    I have a very strange problem with Aperture, which may be linked to the HD 5870 and it's probably faulty drivers and would be very grateful if somebody with the same hardware could try this out if he/she can replicate this behavior:
    I have a brand new 6-core with the 5870 optional card using a dual display setup (ACD 23" and NEC PA241W).
    Whenever I enter full screen mode and activate the brushes, the image on the full screen monitor is reduced in size to about 70% of the full screen resolution. This also gets triggered, when I use the HUD display ("H" key) and lock the floating window on the browser display.
    It's a bit hard to describe, but anybody with the same or similar setup, please try this:
    - enter full screen mode in Aperture by hitting "F"
    - press "H" and lock the window using the small slider in the upper right corner
    - activate any of the quick brushes, like dodge or burn
    Is your image, which is displayed full screen on the main monitor, getting smaller in size or is it starting to flicker a bit, getting darker? If yes, we have a universal bug here.
    I could narrow the problem down in a sense, that it does not matter if either screen is hooked up using the DVI or the Mini-Display-Port. It also happens when I switch the main screen over to the other, so it's (fortunately) not a problem of my new NEC display, the ACD shows the same behavior.
    My best guess right now is some kind of bug in Aperture combined with a faulty driver of the HD 5870.
    Any help here is greatly appreciated.

    People have said that Aperture library benefits from, and should not be, on the boot drive, and placing on SSD or alternate drive, maybe RAID 0 in some cases.
    64-bit kernel mode helps overcome some of the limitations and obstacles when working with large data sets, which is why I always kept data off the system and placed on RAID 0 which does improve system responsiveness.
    If you have already done that and taken steps to optimize your storage layout hard to imagine it is a graphic driver.
    And I would limit removing caches to just Aperture's own, though can't hurt to clean out the system's, that is something that SuperDuper will do if you use it, as it doesn't copy those and just skips caches and temp files best rebuilt (but does not touch user caches).
    And a touch of Disk Warrior just for good preventative maintenance measure of course.

  • Have Pinned site shortcut open in full screen mode (not maximized)

    Hello.  I'm currently in the testing phases of migrating all of our users from a locally installed client version of their email to a web version of their email.  I'd really like the webmail version to look more like an application than a website. 
    Is there any way to make the pinned site shortcut (not all sites) open in full screen mode when double clicked?  Another wish list item would be for the URL field to be removed from it as well.  Chrome provides this functionality by making a site
    into an application, but then any link you click on within your email opens up in Chrome and thats a deal breaker for me.  Does anyone know if this is possible in internet explorer 9?  Thanks in advance

    any way to make the pinned site shortcut (not all sites) open in full screen mode when double clicked?
    I think it does which is a surprise.  E.g. if you last closed an IE window in Fullscreen mode it can open up again in Fullscreen mode.  This may be in response to user complaints about Maximized mode which would still be a problem because that
    is the OS doing.  However, even there it has always been possible to open a window from a shortcut in Maximized mode.  The problem is that any windows spawned from that one will have the original window's Normal mode attributes in terms of size and
    shape.
    FYI
    Robert Aldwinckle

  • YouTube Chromeless Player ceases to enlarge up to Full Screen width in Full Screen mode

    Hello all!
    I tested my skin for YouTube Chromeless player, and seems it worked properly.
    All graphic elements, including TLFTextFields, are stored in external SWF, all the AS3 code - in loading SWF.
    I use ProLoader class to load SWF.
    However, when I tried to attach Player skin code to my Home Page code, I immediately bumped into two issues:
    1. TLFTextFields ceased to display proper font;
    2. YouTube Chromeless player ceased to enlarge up to Full Screen width in Full Screen mode, whereas all publishing settings were kept the same...
    Although I managed to cope with TLFTextField bug by replacing instances with vars in loaded SWF, I have no the slightest idea what to do with those paddings in Full Screen mode... Neither removing all children on stage before loading YouTube Player skin, nor compulsory resetting player's size can't make it work...  
    Any help appreciated !!!

    Thanks for the reply Andrei!
    No, the issue is not there. My monitor resolution is 1280x1024 only, and I just watched via Skype how it looks on 1920x1080.
    Moreover, as I mentioned above, the Player skin per se works more or less properly (whereas attached to the Home page doesn't).
    And EVERYTHING, including YouTube player enlargement, looks good in 'standalone' version...
    You may have a look at these two links:
    - YouTube Player skin. Standalone
    - Customised YouTube Player. Full project
    What is added in full project:
    1. One background image: MovieClip
    2. One background title: TLFTextField
    3. Five buttons + one intro player: VideoPlayer
    4. One masking rectangle: Sprite
    I wonder what may cause such deviation in behaviour ?..
    P.S. Any other bugs report (especially with screenshots) are also appreciated
    UPD: Actually, buttons are not just VideoPlayers. All of them are MovieClips, which included two VideoPlayers, one TLFTextField and two Sprites...

  • Sky go buffering when in full screen mode

    Hi I have been using Sky Go for about 6 months without a problem and all of a sudden when i switch to full screen mode or enlarge the screen it is buffering every two minutes or so and i cant watch any programs. I have tried re setting my broadband (which is also sky broadband) i have uninstalled and re installed silver light, updated my internet explorer, tried opera and fire fox and nothing seems to stop it from happening. Has anyone had this issue and managed to resolve it. Or have any other suggestions i can try?? Thanks :-)

    Hi
    If you sign in to sky go then top right it says settings, then click on View/manage devices you can then remove the device. Log out. Then log back in to sky go and when you do it will re register your device. You can only do this once or twice a month though.
    The below link might also help
    http://help.sky.com/articles/register-your-devices-on-sky-go
    Hope it works

  • In Full Screen mode Safari only opens new tabs?

    Safari 5.1 has a preference that lets you set whether or not targeted links open into new tabs or new windows.
    In regular screen mode, this preference works as expected.
    In Full Screen mode (Lion), this preference seems to be ignored, and Safari always opens targeted links into new tabs.
    Is there a preference I'm missing to set this behavior for Full Screen mode?
    The reason I ask is that I would love to use the swipe gesture to switch between different web pages I have open, and so far Safari only seems to use gestures in Full Screen mode to switch between windows, not tabs.

    Hi there i tried... I think prey locked my computer..:(
    Infact i know it did because i just got out...after making changes in prey ...**** that is one **** of a program...
    Im across the bay... Its cold tonight. :).

  • Warning message in full screen mode

    Hi everyone
    I have produced a document in InDesign that contains sound.  The PDF of this is designed to automatically open in full screen mode. When a user clicks on the sound button nothing is heard.  I come out of full screen mode and there is a yellow bar warning me about the sound in the document and if it should play it.
    My question is does anyone know whether this warning message can be shown when the user is viewing the PDF in full screen mode or if it can be disabled?
    Many thanks
    Darren

    Hi there
    I am running Windows Xp and Acrobat 9 Pro.  I have placed the file in InDesign as a WAV.  As an interim solution I have removed the sound from InDesign, converted to MP3 and placed it in using Acrobat.  I am not getting the warning now - would this also be your advice or is there a better solution?
    I find it strange that you can only place WAV files into InDesign and only MP3 into Acrobat - do you know why this is?
    Thanks
    Darren

  • When I go into full screen mode in Safari 5.1 on LION it switches to a new Space, making my other displays useless. Anyone else annoyed that Apple has completely left out those with multiple displays?

    I had a fear that this was going to be the case, but you can't have two full screen apps open in two different displays. At least that's how Safari fullscreen works. When switching over to full screen mode in safari, it automatically creats a new space, turns on four finger gesture to swipe through full screen apps which I had turned off in place of App Switcher.
    I don't use spaces because of the lack of support for using spaces with multiple displays. I would use spaces and mission control if I had control of each display's mission control separately.
    The fix would be to unlink the displays so they can scroll through full screen apps by themselves. I want this feature so I can mix and match the full screen apps on my three different displays. I see this beneficial for more people with multiple displays. in the future when thunderbolt display links, people will want better support too.
    I know I would use spaces and mission control more if I could have this ability. I'd be interested to know people's opinion.

    No no, if you read what I said, it would be that each individual display would be customizable to the user. The way you have it, it sounds like your second display will be dedicated to scrolling through fullscreen apps not allowing you to do it on the home screen. This is silly because with my concept, you could do that, by dragging apps to fullscreen in your second display, but if you want you could tell another display to scroll through fullscreen apps (independently) if you wanted. Each display will have it's own mission control with it's own set of desktops. I also can see how some people would still want them linked together, so this could just be a little check box made in mission control prefs to "link" or "unlink" desktops with link checked by default.
    With your solution you're limited to your setup. but what if the person has three or four displays? Well then your solution would limit them to one dedicated display that scrolls through fullscreen apps where mine lets a person customize their desktops depending on their preference and setup.
    further example: if you have safari, address book and mail in one display, you could still have ichat, PS and Illustrator in your second, and a text editor, FTP Client and iTunes in your third. Then you would mix and match these apps but it would promote the use of mulitple displays as well as benefit people with three or more, which thunderbolt, Cinema Display and Pro computers support.

Maybe you are looking for