Page behaviour when minimized

Hey,
I am new to portal development and I am not sure if this is the right forum or not to ask my question, but here it is anyway's.
I have designed a page with multiple text regions and links to various external applications, but the trouble I am having is when the screen is minimized to a smaller size. If I have text in a region saying 'Welcome to our Portal Page' displaying straight across the top of the page in full screen, it displays as something like:
'Welcome
to our
Portal
Page'
when a user changes the size of the browser window. It collapses to fix the new screen size. How can I set the page items to be in a fixed place and not change/collapse when the size of the window changes? I would sooner the users have to use scroll bars then have the page look and feel change.
Any ideas?
Thanks

Can you post the HTML for that bit of the page?
It's probably inside of a table that allows breaking on whitespace (i.e. not using nowrap). One way would be to wrap your text inside of a div or span like
<span style="white-space: nowrap">My Text</span>

Similar Messages

  • Home page safari shortcut fails to play music when minimized

    I made a homepage shortcut to safari (music.google.com) which stops playing music when minimized. If I launch safari directly and navigate to music.google.com music continues to play when minimized. Symptoms are identical IOS5 & IOS5.01.  Any suggestions?
    Thanks in advance for any guidance
    Pete

    I accessed the GarageBand site and not being sure how one would play an audio loop there, I clicked the little green arrow next to "Rational Eyes" near the top. This put up a little black window that said "MP3 Player (GarageBand.com)" with a line of text that said "Report problems by clicking the 'HELP' button above.", but there was no help button other than the item on the tool bar of the site window. There was no sound.

  • Printable Page behaviour

    Hi all,
    I have table which has 15+ number of columns and each column has width of more than 90px. When i am using printable page behaviour the printable page is showing all the columns of table but when i am extracting a hard copy out of it, i am not getting all the columns. Can there be a way through(programming) where i can define what should be the font size of printable page, so that i can have all columns on my hard copy.
    I also tried printinh hard copy with landscape mode but its not catering all the columns.

    User,
    please always tell us which JDev version you are using as the solution might depend on it.
    I'm not sure I understand your requirement fully. A hard copy is a screen shoe, so you get what you see. If the printable page behavior doesn't get the output you want, you can always use a more sophisticated report solution which give you all the control on the output you want.
    However, here are some links which might help you get started on how to change the output of the printable page behavior:
    https://blogs.oracle.com/jdevotnharvest/entry/how_to_hide_or_show and
    http://jobinesh.blogspot.de/2011/07/tips-on-using-showprintablepagebehavior.html
    Both are using the same technique.
    Timo

  • GoTo Web Page Behaviour & Text?

    Hi there.
    Flash CS3
    I'm just trying to play around with some text animation and
    no where
    near to what CS3 can do.
    1. I have a background image (converted to graphic) on its
    own layer
    which runs the whole animation. I have added a Go To Web Page
    Behaviour
    which triggers with "On Release" Event.
    2. On second layer I have text created as STATIC text saved
    as graphic.
    This text drop in from the top to the middle of the
    background.
    3. On a 3rd layer I have created text as DYNAMIC text which
    does the
    same as the STATIC text en drop in next to it.
    When previewing this in my browser (IE 7 & FF) the little
    hand which
    says it's clickable goes away when hovering it on top of the
    second text
    (DYNAMIC). The moment this text appears on the animation, the
    place
    where I could click to activate the Go to Web Page Behaviour
    is not
    clickable anymore.
    See example here:
    http://www.sincro.co.za/flash/clickable.html
    I will really appreciate any help.
    Regards,
    Deon

    Your page is just one Flash movie. Your question, therefore,
    is about how
    FLASH behaves, not about HTML or anything DW. I suggest you
    post this on
    the Flash forum.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Deon H" <[email protected]> wrote in message
    news:[email protected]..
    > Hi there.
    >
    > Flash CS3
    >
    > I'm just trying to play around with some text animation
    and no where
    > near to what CS3 can do.
    >
    > 1. I have a background image (converted to graphic) on
    its own layer
    > which runs the whole animation. I have added a Go To Web
    Page Behaviour
    > which triggers with "On Release" Event.
    > 2. On second layer I have text created as STATIC text
    saved as graphic.
    > This text drop in from the top to the middle of the
    background.
    > 3. On a 3rd layer I have created text as DYNAMIC text
    which does the
    > same as the STATIC text en drop in next to it.
    >
    > When previewing this in my browser (IE 7 & FF) the
    little hand which
    > says it's clickable goes away when hovering it on top of
    the second text
    > (DYNAMIC). The moment this text appears on the
    animation, the place
    > where I could click to activate the Go to Web Page
    Behaviour is not
    > clickable anymore.
    >
    > See example here:
    >
    http://www.sincro.co.za/flash/clickable.html
    >
    > I will really appreciate any help.
    >
    > Regards,
    > Deon

  • Cursor behaviour when quick key zooming

    Is there a way to change the cursor behaviour when using a quick key (cmd-space) zoom?
    When laying out complex forms i often need to quickly zoom in to accurately position (say) a checkbox i've just place on the page, but if i cmd-space zoom i have to then click the arrow tool before i can continue positioning the element in question.
    Not a big problem with one element but if i need to zoom in tight to reposition a number of elements i've selected, the need to click the arrow tool after the zoom causes that selection to deselect. Which means zooming in on each one to position it.
    In short, is there any way for acrobat to revert to the current tool after a quick key zoom?

    JFrame.setDefaultLookAndFeelDecorated(true) has bugs! I agree. I created my own lookAndFeel extending mostly from MetalUI components. I then made my own RootPaneUI and TitlePane, so I was knee deep in the MetalRootPaneUI code. You cannot fix the flicker problem. When resizing, the new bounds are determined and then setBounds is called on the window, either a Frame or Dialog. The setBounds call forces lightWeight components to repaint(), causing the flicker.
    sometimes, when resizing, the resize cursor will not be reset after resizing.I found this one two. I actually fixed this one. In the MetalRootPaneUI.MouseInputHandler.mouseEntered(line:878):public void mouseEntered(MouseEvent ev)
      Window w = (Window)ev.getSource();
      // change this line to the one below it
      //lastCursor = w.getCursor();
      lastCursor = Cursor.getPredefinedCursor(0);//should work now
      mouseMoved(ev);
    }What appears to happen is when a Dialog is closed over a JFrame, the cursor gets screwed up somehow. I was able to recreate the bug. I simply made a JFrame with a button that created a dialog. I then used the titleBar's closeButton to close the dialog. Just after clicking the closeButton, I moved my mouse quickly over the edge of the dialog before it had a chance to disappear. Sometimes I was fast enough and the cursor got stuck. The above code is all I could do to fix it.
    The resizing was filckery or slow whether I used the real MetalRootPaneUI or my own. I also tried the dynamicLayout and noerasebackground with unacceptable trade-offs. Luckily my app only has one JFrame. So, I only setDefaultLookAndFeelDecorated JDialogs, which are never resizable in my app. This means that my JFrame is the only window in the app that uses the OS TitleBar rather than my own. Although, my JFrame resizes without flickering.

  • Aviod page reload when user hits back button

    Hi
    I got 2 coldfusion pages A and B. When i click a link from
    page A it goes to page B. When i click the back button of the
    browser from page B the page A refreshes and shows. I dont want the
    page A to reload when the user hits the back button of the browser
    (so that all data remains as it was) from page B.
    is there any method to cache the page and show? Or are there
    any other methods? Pls help. I am running this project in Model
    Glue architecture (i dont know whether that makes any difference)

    Normal behaviour is that going back does not cause a page to
    reload. You might be doing something to make that happen. If you
    can figure out what it is, then you can stop doing it.

  • In Pages 5 when I try to attach a pages document to an email it gives me 2 folders and 4 files ???  How does one email a pages document.

    How does one email a pages document? In pages 5 when I try to attach a pages document to a gmail email it gives me 2 folders and 4 other files to choose from. 

    Sounds like you are using Gmail.
    Pages 5 uses a zipped package of files as its format. 3rd party servers don't understand the format and show it as the component parts.
    Use Mail toenail the file or zip the .pages document before sending.
    Peter

  • Firefox has remberd a password to a website ... chessatwork and I get loged in to my main page and when I click on any link it takes me right back to my log in page, where it has it stored.... password and user name,,, whats up and how do I turn that off?

    Firefox has remberd a password to a website ... chessatwork and I get loged in to my main page and when I click on any link it takes me right back to my log in page, where it has it stored.... password and user name,,, whats up and how do I turn that off? chessatwork has ran great for me for many yrs, then one day I down loaded firefox and went to play chess on this site chessatwork.com, well the window popped up asking to remember the log in and pass word and so I said ok, and it did, but now when I click log in and I go to my main page (home) and click on any link, say to play game I return right back to log in

    See http://kb.mozillazine.org/Deleting_autocomplete_entries<br />
    Remove a saved password here: Tools > Options > Security: Passwords: "Saved Passwords" > "Show Passwords"
    You may also need to remove the cookies from that website.<br />
    * Tools > Options > Privacy > Cookies: "Show Cookies"

  • Regarding Pages charts, when I try to 'build' a 3D chart all I get is little dots but not graphics.  No problems with 2D charts though. Guess my question is "Help?"

    Regarding Pages charts, when I try to 'build' a 3D chart all I get is little dots but not graphics.  No problems with 2D charts though. Guess my question is "Help?"

    Sorry for the delay getting back to this.
    Thanks to Fruhulda and Peter for their comments regarding the refusal of Pages to let me make 3D charts. 
    In answer to the questions put to  me in this regard :
    1. Pages version : Pages '09  v.4.1 (923)
    2. Mac O/S :          v.10.6.8 
    3. 3D chart :          Can't find a 'name', but upright bars with rounded corners ???
    4. Moved apps :    Not that I'm aware of!  All should be as installed off the disc.
    5. A note :              I have been able to create these in the past - related to a SW update? 
                          and ... can create these charts perfectly in Keynote (go figure).
    Thanks to all.
    CM

  • Pages crashes when opening any document on iPad 3 Latest version.   I could find on the net and finally deleted Pages from my device and reinstalled it. Still when I try to create anew document or open a document it just cr

    Pages crashes when opening any document on iPad 3 Latest version. I tried everything I could find on the net and finally deleted Pages from my device and reinstalled it. Still when I try to create a new document or open a document it just crashes out.

    Try this:
    Make sure IOS is updated to latest version
    Reboot device by pressing both the home button and sleep/wake (power) buttons at the same time for 10-15 seconds until the apple logo appears on the screen, then let go.
    If that doesn't work then reset the device by going to settings/general/reset/reset all settings

  • I cannot log onto the App Store, the page appears when I call it from the dock or the Apple menu. I can call the log-in box from the menu bar, but on signing in the spinning icon just keeps spinning,(not the beachball). Any suggestions? Using 10.6.7 and u

    I cannot log onto the App Store, the page appears when I call it from the dock or the Apple menu and I can call the log-in box from the menu bar, but on signing in the spinning icon just keeps spinning,(not the beachball).  Using 10.6.7 and up-to-date on all software. Any suggestions?

    Could be a third party app preventing you from being able to login.
    Mac App Store: Sign in sheet does not appear, or does not accept typed text
    If it's not a third party issue, follow the instructions here.
    Quit the MAS if it's open.
    Open a Finder window. Select your Home folder in the Sidebar on the left then open the Library folder then the Caches folder.
    Move the com.apple.appstore and the com.apple.storeagent files from the Caches folder to the Trash
    From the same Library folder open the Preferences folder.
    Move these files Preferences folder to the Trash: com.apple.appstore.plist and com.apple.storeagent.plist
    Same Library folder open the Cookies folder. Move the com.apple.appstore.plist file from the Cookies folder to the Trash.
    Relaunch the MAS.

  • When I try to open a Pages document from iCloud, created on my iPad, I get message stating I need a newer version of Pages.  When I go to app store all I get is "installed" when looking at pages app. my Macbook pro is up to date with all updates.

    When I try to open a Pages document from iCloud, created on my iPad, I get message stating I need a newer version of Pages.  When I go to app store all I get is "installed" when looking at pages app. my Macbook pro is up to date with all updates. Any ideas?

    You have 2 versions of Pages on your Mac.
    Pages 5 is in your Applications folder.
    Pages '09/'08 is in your Applications/iWork folder.
    You are alternately opening the wrong versions.
    Pages '09/'08 can not open Pages 5 files and you will get the warning that you need a newer version.
    Pages 5/5.01 can not open Pages 5.1 files and you will get the warning that you need a newer version.
    Pages 5.1 sometimes can not open its own files and you will get the warning that you need a newer version.
    Pages 5 can open Pages '09 files but may damage/alter them. It can not open Pages '08 files at all.
    Once opened and saved in Pages 5 the Pages '09 files can not be opened in Pages '09.
    Anything that is saved to iCloud is also converted to Pages 5 files.
    All Pages files no matter what version and incompatibility have the same extension .pages.
    Pages 5 files are now only compatible with themselves on a very restricted set of hardware, software and Operating Systems and will not transfer correctly on any other server software than iCloud.
    Apple has not only managed to confuse all its users, but also itself.
    Note: Apple has removed over 100 features from Pages 5 and added many bugs:
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Archive/trash Pages 5, after exporting all Pages 5 files to Pages '09 or Word .docx, and rate/review it in the App Store, then get back to work.
    Peter

  • How to put a page break when a value changes

    Hi there, I am very new to BI Publisher. I realize this is a really SIMPLE question, but I can't seem to find a CLEAR answer.
    I have a set of data that I have a repeating group for in my RTF template and it works great. But I want to have a page break each time one of the values changes and I cannot figure out how.
    here is the xml
    <?xml version="1.0" encoding="UTF-8" ?>
    <!-- Generated by Oracle Reports version 6.0.8.28.0 -->
    <PIR05>
    <LIST_G_ITEM_NO>
    <G_ITEM_NO>
    <PAGE_NO>0</PAGE_NO>
    <ITEM_NO>4242301</ITEM_NO>
    <ITEM_DESC1>13MM Aries Cell Assembly</ITEM_DESC1>
    <LOT_NO>123</LOT_NO>
    <LOT_DESC>4242301</LOT_DESC>
    <SUBLOT_NO />
    <LOCATION>2IRE</LOCATION>
    <GRADE_CODE>NONE</GRADE_CODE>
    <ITEM_UM>Each</ITEM_UM>
    <ITEM_UM2 />
    <LINE_NO>614</LINE_NO>
    <COUNT_NO>614</COUNT_NO>
    <P_ITEMUM2LABEL />
    <P_ITEMUM2DASH />
    <F_ITEMUM2>1</F_ITEMUM2>
    <P_CSITEMUM2_LABEL />
    <P_CSITEMUM2_DASH />
    </G_ITEM_NO>
    - <G_ITEM_NO>
    <PAGE_NO>0</PAGE_NO>
    <ITEM_NO>4242301</ITEM_NO>
    <ITEM_DESC1>13MM Aries Cell Assembly</ITEM_DESC1>
    <LOT_NO>1232</LOT_NO>
    <LOT_DESC>4242301</LOT_DESC>
    <SUBLOT_NO />
    <LOCATION>2IRE</LOCATION>
    <GRADE_CODE>NONE</GRADE_CODE>
    <ITEM_UM>Each</ITEM_UM>
    <ITEM_UM2 />
    <LINE_NO>615</LINE_NO>
    <COUNT_NO>615</COUNT_NO>
    <P_ITEMUM2LABEL />
    <P_ITEMUM2DASH />
    <F_ITEMUM2>1</F_ITEMUM2>
    <P_CSITEMUM2_LABEL />
    <P_CSITEMUM2_DASH />
    </G_ITEM_NO>
    <G_ITEM_NO>
    <PAGE_NO>0</PAGE_NO>
    <ITEM_NO>4242301</ITEM_NO>
    <ITEM_DESC1>13MM Aries Cell Assembly</ITEM_DESC1>
    <LOT_NO>562354</LOT_NO>
    <LOT_DESC>4242301</LOT_DESC>
    <SUBLOT_NO />
    <LOCATION>WOR RECV</LOCATION>
    <GRADE_CODE>NONE</GRADE_CODE>
    <ITEM_UM>Each</ITEM_UM>
    <ITEM_UM2 />
    <LINE_NO>603</LINE_NO>
    <COUNT_NO>603</COUNT_NO>
    <P_ITEMUM2LABEL />
    <P_ITEMUM2DASH />
    <F_ITEMUM2>1</F_ITEMUM2>
    <P_CSITEMUM2_LABEL />
    <P_CSITEMUM2_DASH />
    </G_ITEM_NO>
    </LIST_G_ITEM_NO>
    <WHSE_DESC>OPM INVENTORY ORG</WHSE_DESC>
    <CS_NODATA>617</CS_NODATA>
    <CYCLE_NO>000000014</CYCLE_NO>
    </PIR05>
    I want the g_item_no (repeating group) to have a page break each time LOCATION changes.

    You can declare two variables, to hold the previous and current LOCATION values and break the page when it differs.
    Or just before your end-for-each, have this code.
    <?if:position()!=1 and position()!=last() and LOCATION!=following::LOCATION[1]?><xsl:attribute name="break-before">page</xsl:attribute><?end if?>
    Ensure that its placed in a form field.
    This will have a page break when LOCATION changes.

  • HT2490 does anyone know how to get my 'google' page back when I click on safari- it was always there and now comes a panel of panes with my 'top sites'- it is so aggravating...

    does anyone know how to get my google page back when I open safari??.... it is gone and I get a full page of 'top sites' instead... it is so frustrating! appreciate the help if anyone knows!

    Safari preferences / General tab

  • Problem description: (MacBook Pro 15" late 2008, OSX Yosemite 10.10.2 installed, no pending updates) computer is running very slow - takes 2-3 minutes to open apps such as Pages, even when no other apps are open.  Randomly freezes and becomes unrespo

    Problem description:
    (MacBook Pro 15” late 2008, OSX Yosemite 10.10.2 installed, no pending updates) computer is running very slow - takes 2-3 minutes to open apps such as Pages, even when no other apps are open.  Randomly freezes and becomes unresponsive, requiring forced power down.  Randomly logs off.  Removed Kodak AIO software via Clean My Mac2, but BonjourAgent still there and requesting access.  Cleaned weekly with Clean My Mac2 and running Sophos AntiVirus. 2GB memory installed.  Currently 169.99 GB available of 249.2 GB capacity.
    Help?
    EtreCheck version: 2.1.8 (121)
    Report generated March 21, 2015 at 11:35:35 AM EDT
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Pro (15-inch, Late 2008) (Technical Specifications)
        MacBook Pro - model: MacBookPro5,1
        1 2.4 GHz Intel Core 2 Duo CPU: 2-core
        2 GB RAM Upgradeable
            BANK 0/DIMM0
                1 GB DDR3 1067 MHz ok
            BANK 0/DIMM1
                1 GB DDR3 1067 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery Health: Normal - Cycle count 59
    Video Information: ℹ️
        NVIDIA GeForce 9400M - VRAM: 256 MB
            Color LCD 1440 x 900
        NVIDIA GeForce 9600M GT - VRAM: 256 MB
    System Software: ℹ️
        OS X 10.10.2 (14C1514) - Time since boot: 0:13:37
    Disk Information: ℹ️
        Hitachi HTS543225L9SA02 disk0 : (250.06 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Macintosh HD (disk0s2) / : 249.20 GB (168.91 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
        HL-DT-ST DVDRW  GS21N 
    USB Information: ℹ️
        Apple Inc. Built-in iSight
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple, Inc. Apple Internal Keyboard / Trackpad
        Apple Computer, Inc. IR Receiver
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /Library/Extensions
        [not loaded]    com.leapfrog.driver.LfConnectDriver (1.11.1 - SDK 10.10) [Click for support]
        [loaded]    com.sophos.kext.sav (9.2.50 - SDK 10.8) [Click for support]
        [loaded]    com.sophos.nke.swi (9.2.50 - SDK 10.8) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.leapfrog.codeless.kext (2) [Click for support]
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [running]    com.kodak.BonjourAgent.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
        [running]    com.sophos.uiserver.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.adobe.SwitchBoard.plist [Click for support]
        [loaded]    com.leapfrog.connect.authdaemon.plist [Click for support]
        [loaded]    com.macpaw.CleanMyMac2.Agent.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Click for support]
        [running]    com.sophos.common.servicemanager.plist [Click for support]
    User Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.macpaw.CleanMyMac2Helper.diskSpaceWatcher.plist [Click for support]
        [loaded]    com.macpaw.CleanMyMac2Helper.scheduledScan.plist [Click for support]
        [loaded]    com.macpaw.CleanMyMac2Helper.trashWatcher.plist [Click for support]
    User Login Items: ℹ️
        Dropbox    Application  (/Applications/Dropbox.app)
    Internet Plug-ins: ℹ️
        AdobeExManDetect: Version: AdobeExManDetect 1.1.0.0 - SDK 10.7 [Click for support]
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        Flash Player: Version: 16.0.0.305 - SDK 10.6 Outdated! Update
        AdobeAAMDetect: Version: AdobeAAMDetect 2.0.0.0 - SDK 10.7 [Click for support]
        AmazonMP3DownloaderPlugin1017265: Version: AmazonMP3DownloaderPlugin 1.0.17 [Click for support]
        JavaAppletPlugin: Version: Java 8 Update 31 Check version
        AmazonMP3DownloaderPlugin: Version: AmazonMP3DownloaderPlugin 1.0.17 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        iPhotoPhotocast: Version: 7.0 - SDK 10.8
    User internet Plug-ins: ℹ️
        CitrixOnlineWebDeploymentPlugin: Version: 1.0.94 [Click for support]
        Google Earth Web Plug-in: Version: 6.0 [Click for support]
    Safari Extensions: ℹ️
        AdBlock
        Disconnect
        Add To Amazon Wish List
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
        Java  [Click for support]
        Tuxera NTFS  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: OFF
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 249.20 GB Disk used: 80.29 GB
        Destinations:
            Backup [Local]
            Total size: 63.67 GB
            Total number of backups: 1
            Oldest backup: 2015-02-23 16:16:08 +0000
            Last backup: 2015-02-23 16:16:08 +0000
            Size of backup disk: Too small
                Backup size 63.67 GB < (Disk used 80.29 GB X 3)
    Top Processes by CPU: ℹ️
             5%    WindowServer
             1%    loginwindow
             0%    AppleSpell
             0%    SophosUIServer
             0%    SophosAntiVirus
    Top Processes by Memory: ℹ️
        118 MB    InterCheck
        101 MB    SophosScanD
        60 MB    Dropbox
        54 MB    mds_stores
        41 MB    SophosAntiVirus
    Virtual Memory Information: ℹ️
        49 MB    Free RAM
        682 MB    Active RAM
        652 MB    Inactive RAM
        315 MB    Wired RAM
        1.49 GB    Page-ins
        2 MB    Page-outs
    Diagnostics Information: ℹ️
        Mar 21, 2015, 11:18:52 AM    Self test - passed
        Mar 21, 2015, 10:53:03 AM    /Library/Logs/DiagnosticReports/SophosUIServer_2015-03-21-105303_[redacted].cra sh
        Mar 19, 2015, 07:59:03 PM    /Library/Logs/DiagnosticReports/CalNCService_2015-03-19-195903_[redacted].crash

    Linc Davis wrote:
    Slow performance after installing Yosemite on an older Mac is often caused by inadequate memory. Although you can install the upgrade on a Mac with 2 GB of memory, experience has shown that at least 4 GB is needed for full performance.
    Select About This Mac from the Apple menu. If you have less than 4 GB of memory, and your model has upgradable memory, install as much as it can take, or at least that much. Any reputable RAM vendor will have a web form in which you can select the Mac model and be directed to compatible parts.
    Memory in the MacBook Air is not upgradable. If that's what you have, you should restore the previous system from a backup, or replace the machine. Ask if you need guidance.
    The Etrecheck report clearly shows that SylvieRose has a Macbook Pro, not a Macbook Air and that there are only 2 GB  RAM installed.  The Etrecheck report can be very informative if one takes the time to examine it. 
    Ciao.

Maybe you are looking for

  • Sync RFC call from BPM - message expired

    Hi guys, I have a scenario with BPM where I'm doing a sync RFC call to ECC and then I want to process the result. However, the processing of BAPI take approx 5 minutes and my messages get expired after 3 minutes. How to resolve this issue? Thanks a l

  • My PPC G5 Mac Has Been Randomly Shutting Down...

    Is there anything else that it could be besides the power supply? It's happened maybe once daily for the last week or so... Always powers right back up though. Are there any tests and such that I could run to get more information? Any help appreciate

  • Supporting web portlets on multi-web server setup

    We are in the process of setting up a system that will have 2 web servers plus a system for the portal and its backend DB. (ie, the 2 web servers will have a load balancer in front of them to spread the work.) My question is: how do I support our web

  • Problem in adobe using  bapi BAPI_VENDOR_CREATE

    Dear Experts I  want to develop an adobe interactive  form for vendor creation using bapi " BAPI_VENDOR_CREATE "but all the necessary fields that needed for vendor creation are not coming.like fields in transaction code  'XK01'. i.e company name , tr

  • Entry not found in object buffer

    Hi, When we create service desk message we are getting Entry not found in object buffer error error. Can you please help me out to resolve this issue. Thanks