Flex 3 and Mac os 10.6.3 Scrolling Issue

I am trying to understand why I am getting Scrolling vertically and horizontally on my VBox and HBox container even though I explicitly code it as verticalScrollPolicy="off" horizontalScrollPolicy="off". The funny thing is that it works correctly as I want on my Intel Boxes with various browsers to not show any scrolling, but as soon as I view it on the mac I get the scrolling issues.
Anyone know if they experienced this problem and any workarounds.
-- Thanks

Not sure what's happening with your code, you'll have to post an example that shows this happening to you.
On OS X 10.6.4 and Flex 3.5, it works as it should.
I made this as an example and view source is enabled.  I have two VBoxes, one with scrolling disabled and one with it enabled.
http://thebouv.com/flex/boxscrolling
Message was edited by: thebouv (I'm actually on 10.6.4, said 10.6.3 before)

Similar Messages

  • Xserve Raid- Windows and Mac servers with split RAID speed issues

    First, thanks to those that provided info on setting up the RAID for windows to see (2TB+)! I made the needed slices and Windows made a dynamic 2.27TB volume from the two slices.
    Now, I am noticing a speed drop on writing from mac clients to a Win2003 server connected via FC (optical) to the 2nd RAID controller (optical transceiver installed 2-4Gb/s).
    My Networking (via Raid Admin) setting is Automatic for Speed and Topology.
    My Performance is set same for Lower and Upper controllers:
    Write cache ON
    Host Cache Flushing OFF
    Drive Write Cache ON
    Steady Streaming OFF
    8 stripes/512KB/Disk
    On the Windows end, drive is there, no shadowing or caching (for offline).
    All drive modules are green (no yellow) and drives are new on that RAID (#8-14)
    When copying files (1Mb to 10Mb), it takes seconds to minutes to write!
    (I also noticed my controller caches are 128MB; can/should these be upped?)
    I would also ask if I add a Sanbox switch so that I can add a FC tape drive, is there any docs/links recommended to ensure I've setup properly (Arbitrated loop versus pt-2-pt, transceivers, cable lengths...)?
    Thanks for any help!

    First, thanks to those that provided info on setting up the RAID for windows to see (2TB+)! I made the needed slices and Windows made a dynamic 2.27TB volume from the two slices.
    Now, I am noticing a speed drop on writing from mac clients to a Win2003 server connected via FC (optical) to the 2nd RAID controller (optical transceiver installed 2-4Gb/s).
    My Networking (via Raid Admin) setting is Automatic for Speed and Topology.
    My Performance is set same for Lower and Upper controllers:
    Write cache ON
    Host Cache Flushing OFF
    Drive Write Cache ON
    Steady Streaming OFF
    8 stripes/512KB/Disk
    On the Windows end, drive is there, no shadowing or caching (for offline).
    All drive modules are green (no yellow) and drives are new on that RAID (#8-14)
    When copying files (1Mb to 10Mb), it takes seconds to minutes to write!
    (I also noticed my controller caches are 128MB; can/should these be upped?)
    I would also ask if I add a Sanbox switch so that I can add a FC tape drive, is there any docs/links recommended to ensure I've setup properly (Arbitrated loop versus pt-2-pt, transceivers, cable lengths...)?
    Thanks for any help!

  • Lightroom 5 and MAC OS X 10.7.0 issues

    I'm trying to load LIghtroom5 onto my computer but it's telling me I need Mac OS X 10.7.0 or greater to install. If I run available updateds for my computer the version I am getting is Mac OS X 10.6.8. Do I need to go elsewhere for this download? Is it something I need to pay for?

    LR 5 won't run in OS X 10.6.8.
    You need to update to at least 10.7.x (I suggest 10.7.5).
    You should have read the LR 5 system requirements.

  • Silent print a PDF from a web page using Flex. We are targeting Windows and Mac with Arcobat reader installed

    We are planning to Silent print a PDF from a web page using Flex. We are targeting Windows and Mac with Arcobat reader installed. I have tried using the AIR appliaction and it worked, But our requirement is NO INSTALL to the user machine for the silent printing. It is just from web page and silent printing to the default printer to the desktop/Laptop. Can anyone share your thoughts and experience with us. It will be very helpful..
    For AIR : I tried the thread Re: AIR and PDF showing/silent printing

    Hey CodeMonkey & Ross,
    Did you either of you ever find a solution? I'm stuck too, it seems I can get remote printing on all these PDFs to work but it just prints a blank page since I've been using Javascript in the browser, not Adobe's (they are Engineering drawings that I do not have permission to edit so I can't just insert code into them but I need to make work instructions). I've been scouring the internet for hours now, it seems that this thread is the only relevant/useful one at this point. No one else was trying to achieve this for similar reasons to mine.
    Thanks guys,
    Lox

  • I have a new mac pro and can't get a side scroll bar.  What can I do to get this?

    I have a new mac pro and can't get a side scroll bar.  How can I get this?

    The scroll bar is now set to appear automatically when you start scrolling with a trackpad or scroll wheel mouse. If you are using an mouse without a scrolling device, you should change a setting.
    In System Preferences, click General, and in the Show Scroll Bars section, click the option for how you want it to work. If you want to see them all the time click "Always."

  • Flex and HTML display shift in Safari in Mac OS

    When a popup is displayed in Flex app, the Flex display gets shifted down in Safari in Mac OS alone. However, even if the display is shifted down, the controls seem to be in the correct position. For example, for clicking a button, the cursor has to be some pixels above the shown display. Not only the Flex display shifts down. HTML Links display also shifts down along with Flex and Links are clickable some pixels above the display.
    The problem happens only while triggering the Flex popup display in long flex screen. On a Flex screen within the browser height, with the same actionscript and Javacsript code, there is no problem.
    This works fine in all other browsers including Safari in windows.
    Has anyone faced this scenario? Any help will be highly appreciated.
    For the popup to be displayed in center of viewable area, the following code is used.
    callLater(SMBObjectUtil.changePosition,args);
    In SMBObjectUtil.as file,
    public static function changePosition(x:int, y:int, obj:UIComponent):void {
         var yPos:int = ExternalInterface.call("findScrollTop");      var winHeight:int = ExternalInterface.call("getWindowHeight");
         var appHeight:int = Application.application.height;
         var objectWidth:int = obj.width;
         var objectHeight:int = obj.height;
         var calculatedX:int = 0;
         var calculatedY:int = 0;
         if(Application.application.width>obj.width) {
              try {               calculatedX = (Application.application.width - obj.width)/2;
                   if(yPos <= 0){                    calculatedY = ((winHeight-objectHeight)/2-100)>0?(winHeight-objectHeight)/2-100:50;
    else if(yPos<=(appHeight-winHeight)){                    calculatedY = (((winHeight-objectHeight)/2)+yPos-100)>0?((winHeight-objectHeight)/2)+yPos-100:50;
    else if(yPos>(appHeight-winHeight)){                    calculatedY = appHeight - objectHeight - (winHeight-objectHeight)/2;
              catch(e:Error){          }
         }else {
    obj.x = calculatedX;
    obj.y = calculatedY;
    Javascript functions used are:
    function findScrollTop()
      var ScrollTop = document.body.scrollTop;
      if (ScrollTop == 0)
       if (window.pageYOffset)
        ScrollTop = window.pageYOffset;
       else
        ScrollTop = (document.body.parentElement) ? document.body.parentElement.scrollTop : 0;
      return ScrollTop;
    function getWindowHeight()
      var y = 0;
      if (self.innerHeight) {
       y = self.innerHeight;
      } else if (document.documentElement && document.documentElement.clientHeight) {
       y = document.documentElement.clientHeight;
      } else if (document.body) {
       y = document.body.clientHeight;
      return y;

    Found a fix for this. CallLater() was giving the problem in Safari. Once I removed CallLater and directly called my function, the problem was resolved.

  • HT201380 keep having scrolling problems with Maverick on both iMac and Mac Pro despite downloading mail software update

    Have scrolling problems with Maverick despite downloading mail update on both IMAC and Mac Pro
    Have to reboot and it helps for awhile then stalls again

    The Mac OS X 10.4.7 Update introduced connection issues as a result of (according to the documentation) "Mail now supports connecting to mail servers through a SOCKS proxy". This probably has nothing to do with your problem, but it'd be worth going to System Preferences > Network and making sure the SOCKS Proxy is not enabled in the network configuration used to connect to the Internet.
    Also, it looks like the crashes you're talking about are actually freezes, i.e. Mail becomes unresponsive rather than quitting unexpectedly. In Mail, open Window > Activity Viewer, and see whether Mail displays there what it's doing when it freezes. Actually, you may be able to avoid having to force quit Mail by canceling whatever it's doing (by clicking on the red stop icon of the activity).
    Reinstalling Mail will probably accomplish nothing, but it might be worth reinstalling the Combo Update for the type of machine and the version of Mac OS X you're using (which you would have to do anyway if you wanted to reinstall Mail):
    Mac OS X 10.4.7 Combo Update for Intel
    Take a look at the following articles for guidelines on how to properly install system updates:
    Troubleshooting installation and software updates
    Installing software updates
    Basically, you should verify/repair the startup disk before installing the update, and no applications should be running while installing it.

  • Can't I use my wireless mouse and trackpad in different ways when scrolling?

    Since I'm a Chinese user, I prefer describing my question in my mother language...I will translate it...
    在系统偏好设置里,倒是可以分别设置鼠标和触控板,但是当我打开触控板的“自然滚动”,同时取消鼠标的“滚动或导航时,使内容按手指方向移动”,之后,鼠标恢复原来的滚动 方式,郁闷的使触控板的滚动方式也跟着变化了⋯⋯
    但这时打开触控板的设置,“自然滚动”依然是选中的啊⋯⋯
    如果这时关闭“自然滚动”,再重新开启,鼠标设置界面的“滚动或导航时,使内容按手指方向移动”虽然是为选中的,但使用时滚动方向又变成反向了⋯⋯
    各位有遇到么⋯⋯我觉得是个BUG吧,期待修复⋯⋯
    我的鼠标是雷柏的6900,蓝牙无线
    本子是新的MBA 11‘
    Well, there is two setting items in system preference for "mouse" and "trackpad", and there do have the checkbox for "Move content in the direction of finger movement when scrolling or navigating" and for "Scroll direction: natural". I checked the "Natural Scroll"---- if I may call it this way ---- option and unchecked the same option in mouse setting wishing to use my mouse and trackpad in different ways...
    However, it turned out to be a confusing phenomenon like I can only use my mouse and trackpad in the way "Natural Scroll" or the way it used to be. If I double click the checkbox of "Move content in the direction of finger movement when scrolling or navigating" to refresh my settings, both my mouse and trackpad will turn into the way it used to be in scrolling while if I double click on the "Natural Scroll" checkbox, both of them will turn into the new way.
    At the same time, eventhrough the setting of my mouse has been changed by the changing of trackpad setting, the checkbox in "mouse" is still unchecked and that's where makes it seems like a BUG....
    So, is there anybody who meets the same problem? The reason I want to use this two device in different ways is I just don't like to use mouse in the new way, it's unconfortable for me.
    And, I use a new MacBook Air 11' and a wireless mouse called Rapoo 6900
    Here comes the link of my wireless mouse.
    http://en.rapoo.com/ProOverview.aspx?PID=3550

    jhawk,
    I can see the appeal of your desired setup, but is the limitation the inability to "Pair" the mouse/keyboard to more than one computer at a time? (Practically, that makes sense, you don't want to be blindly moving both cursors around at the same time, since you can only see one screen at a time)
    You CAN operate bluetooth devices on Windows without pairing-you just need to locate the device each time before using:
    http://www.oreillynet.com/pub/a/wireless/2003/09/18/winxpunwired.html
    So maybe you can pair the Mac version, and just search out the device each time you switch over? (but then you would have to "unpair" it off the Mac too) Maybe you need to write two scripts for each platform: pair/unpair devices.
    Sounds like it would be easier to buy two wireless keyboards and mice :P
    What you really want is a utility like this:
    http://www.abyssoft.com/software/teleport/
    (its only Mac to Mac though, unfortunately)
    Good luck!

  • WLC Flexconnect with AAA and MAC authentication

    hi,
    i am having cisco WLC with 7.4.121 version and i am having remote side access points to be connected to this controller and remote access point will have different vlan on the remote side itself.
    my question is i am having  Radius authentication for the clients who are all connecting from all the access points and MAC filtering also.
    My radius server is placed in the HQ where we have WLC. which method of flexconnect switchign will give be both AAA and MAc filter options to be working.
    one more question,
    is it possible to make each AP seperate MAC filters On the WLC.
    thanks
    cyril

    If you are planning on doing machine authentication i.e authentication of machine with username password by the AAA server at then this is possible using flexconnect local switching enabled provided you have your AAA server accessible via the local VLAN at the remote site.
    In case you are planning on doing mac-filtering using WLC and username/password authentication using AAA server then this cannot be achieved when you enable Flexconnect local switching as you do not get an option to configure the mac-filtering on Flex-connect groups.Hence you would need to use central authentication.
    Actually the best option for you is that you either deploy a local site AAA server and do both the authentications via your radius server or use Central authentication with Flexconnect APs incase this is not feasible.
    Hope this clears you doubts!!!
    Note: Please do not forget to rate and accept as solution incase the post is valid.

  • Pngs flicker and appear as white boxes when scrolling down page in Chrome 37.0.2062.120 m

    Hello,
    I have noticed that pngs flicker and appear as white boxes when scrolling down the page in Chrome 37.0.2062.120 m in windows only. Chrome on the mac is fine and this issue doesn't occur on the windows version of chrome canary. It would appear that the pngs are reloading when I scroll.
    There is alot going on in this animation, I am going to sprite most of these pngs to reduce sever requests which may help, but im certain this isnt the root cause of this issue.
    Has anyone come across this issue before?
    Please link to the animation in question here.
    Any advice much appreciated. http://new.oliverrice.co.uk/oliverrice.co.uk.html

    So I have created a sprite for the majority of the png's that form my symbols. This has reduced the total number of sever image requests from over 70 to 5. this has worked really well and feel adobe could add a feature that creates one sprite from all the images within the library. The animation seems to run a lot faster than before and loads much quicker.
    I am however still experiencing the problem mentioned above in chrome 37.0.2062.120 m.
    The animation also runs slowly on the I pad and I phone which I guess is down to memory usage? The animation wasnt intended for the iphone, but it would be nice to see it run on the ipad.

  • Viewing mac's webmail in safari - scroll bar issues

    i've noticed that the apple site and .mac have had a makeover in the last few days.
    it's a nice upgrade, but i'm having problems viewing my .mac webmail with safari;
    i have webmail set up with 3 panes; left hs are folders, top is messages and bottom is preview. however now the scrollbars do not allow me to scroll to the end of the message preview. instead, when the scroll bar is at the bottom of the window i have only scrolled through part of the message!
    does anyone know if this is a mail or safari issue, and how to fix it - it's very annoying!
    (i would use the mail app but i'm behind a firewall and can't configure it, so i have to use safari and webmail)

    This forum is for discussing issues related to the Mail & Address Book applications included with Mac OS X 10.4 (Tiger). If you’re not talking about Mac OS X’s Mail, but .Mac mail on the web instead, the right forum for such questions would be .Mac Email On The Web.

  • Scanner not found after HP driver and Mac OS X 10.5.5 updates

    I had my HP C5180 All-In-One connected to my network and working fine with my iMac before the recent HP Driver and Mac OS X 10.5.5 updates from Software Update. I could print and scan with no problems. After the updates I get an error message from HP Scan Pro that there was a communication error and the scanner was not found. What's interesting is that if I start with the Scan Menu button on the printer I can get all the way to HP Scan Pro launching on my iMac before the error message appears. Apparently the iMac and C5180 see each other and can communicate.
    I had this problem the last time both the HP Drivers and Mac OS X were upgraded through Software Update. HP Support's solution was to uninstall the entire HP driver software package and reinstall with the download from HP's site. That is **** poor and really unacceptable. I really just expect stuff not to break when Apple or HP suggest an update through Software Update. My philosophy of running Macs at home is that I don't have to think or work too hard to adminster them. This is proving me wrong on that idea.
    Thoughts, comments, suggestions?

    I feel your pain brother. Just posted with the exact same problem. Looks like the "fix" is to uninstall/reinstall?
    Yeah, they are definitely seeing each other as is the case with my setup. While it is a band aid and not fixing the problem, it you really really have to scan something, open up your browser and type in the IP address of your 5180. If you don't know it, you can find it by going into the configuration menu in the 5180 until you get to network. From there, you can scroll down to view settings for wired/wireless (don't know how you're connected to network). Once you get your IP address, type it in the browser. At that point the configuration page of the 5180 should come up. On the left, there is a application heading and under that a "webscan" feature. Click on that, then choose the option that applies to you. Once that's done, click preview. Once you see the image, right click on it and save it somewhere. If you hit the scan button, you will also save it, but it's anyone's guess to where it's saved to or what it's named. Again, not the ideal solution, but if you have to use it, then better than nothing.
    FYI I have a C7280 so not sure yours will follow the exact same instructions, but should be close.
    Good luck
    The Swiss Gator

  • [svn] 3158: -integrate AIR build 20080905ap for windows and mac

    Revision: 3158
    Author: [email protected]
    Date: 2008-09-09 12:16:23 -0700 (Tue, 09 Sep 2008)
    Log Message:
    -integrate AIR build 20080905ap for windows and mac
    -update air-config.xml to target Player 10: bug: https://bugs.adobe.com/jira/browse/SDK-16417
    -fix air-config.xml; modified the external library-path: bug: https://bugs.adobe.com/jira/browse/SDK-16732
    -fix build.xml so the web installers are included in the sdk package, no bug
    -update frameworks/projects/airframework/build.xml for AIR to target player 10
    -updaet build_framework.xml for AIR to target player 10
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-16417
    http://bugs.adobe.com/jira/browse/SDK-16732
    Modified Paths:
    flex/sdk/trunk/build.xml
    flex/sdk/trunk/frameworks/air-config.xml
    flex/sdk/trunk/frameworks/build_framework.xml
    flex/sdk/trunk/frameworks/projects/airframework/build.xml
    flex/sdk/trunk/in/air/air_version.txt
    flex/sdk/trunk/in/air/mac/AIR Integration Kit.tbz2
    flex/sdk/trunk/in/air/win/AIR Integration Kit.zip

    This is from a tester describing what happens on a Mac:
    No the program does not launch properly on the Mac
    What happens is this.
    I open my applications folder
    I open the App Folder and see another folder labeled Program V2.1
    I open that folder and see the Program blue icon which click to launch
    The folder disappears and the blue Program icon appears in my dock along side other applications looking ready for launching.
    This is where the problem starts
    If I click on the blue Program icon which is in my dock along side all of my other application icons they all drop off the screen. like the screen resolution changed suddenly or something,
    The menu along the top of the screen also moves off the screen . in the same manner
    so my desktop which usually has a visible dock at the bottom and a menu bar on the top now doesn't show either of those elements.
    I do have a couple of document icons on my desktop , you know text files or what ever they never move
    If I now click my mouse anywhere on the screen all of the icons return including the blue Program icon still sitting in by dock, if I click it again same sequence of actions.
    I deleted and reinstalled the latest version of Adobe Air and got the same result
    I also want to mention
    The top menu on the mac tells me what application is active, you know "finder" "Open office" "Firefox" what ever is program is running and active shows there
    Program has never show up as being active in the top menu so I'm guessing never fully launched

  • Can't Get MacBook Pro and Mac Pro to Network

    I have a MacBook Pro (2008 - 2.5 Ghz. Core 2 Duo with 4 Gb of RAM running OS X 10.6.7) that I have been connecting to my Mac Pro (2005 - 2 2.66 Ghz Xeon with 20 Gb of RAM running OS X 10.6.7) through an Ethernet switch on my school's network. This has worked without a hitch for years, but when I upgraded to 10.6.7 recently, the MacBook and Mac Pro fail to network. On the MacBook Pro, the Mac Pro's icon doesn't show in the shared area, and on the Mac Pro, I can see the icon for the MacBook Pro, but when I click on the icon to connect, I get the message that "Connection Failed There was an error connecting to the server (name of my MacBook Pro). Check the server name or IP address, and then try again." I have tried a direct connect using the "Connect to Server" under the Go menu on both machines, using their IP addresses, but no luck. Is there something I need to re-set to get these two to talk again? I have other Macs on the same network that my MacBook and my Mac Pro can see, and both machines can connect to them. They just can't connect to each other.
    Thanks in advance for any ideas you might have on  how to fix this.

    I fixed the problem by re-setting the default values for my VirusBarrier X6 anti-virus program.

  • Problem with HP Printer Utility and Mac OSX 10.5.4

    I have a problem with HP printer Utility. When a standard user adds a new paper profile HP Printer Utility asks to type an administrator's name and password to allow HP printer Utility to make changes. Is it possible to avoid this? Otherwise I have to give admin rights to every user because they have to be able to add new papers. HP printer Utility sharing and permisssions are set to read and write to everyone.
    HP designjet Z3200
    MacOSX 10.5.4 (Mac pro intel)
    HP printer utility 3.6.0.

    Just found an email HP Support sent to me back in January 2008, about this issue
    "Hello Hunter,
    Thank you for contacting HP Total Care.
    There currently is not proper driver for 10.5, so it is surprising that the printer is printing correctly on your Mac from any application.
    Your issue cannot be resolved until the 10.5 driver is developed and released.
    To sign up for an update as soon as it is available ...click on the link below:
    HP's subscriber's choice is a free service where you can select to receive timely email notifications ranging from software and driver updates to creative ways to do more with your HP products.
    http://h71036.www7.hp.com/hho/html/3618-0-0-225-121.html
    If you need further assistance, please reply to this message and we will be happy to assist you further.
    You may receive an e-mail survey regarding your e-mail support experience. We would appreciate your feedback.
    For information on keeping your HP and Compaq products up and running, please visit our Web site
    at:
    http://www.hp.com/go/totalcare
    Sincerely,
    Dave
    HP Total Care"
    I just sent them an email today on any updates regarding a release date on the Leopard driver for P1005, i'll post any info i receive.

Maybe you are looking for

  • Creating a Crystal Report for B1 without parameters

    Hi Experts, My question is a simple one. I create a crystal report for SAP B1 8.8 Patch 10 using CR 2008 SP02. I have no parameters since its showing sales figures of the past month. But when I run the report in SAP, a selection criteria screen pops

  • I can't figure out data binding from a web service.

    Hi, I've been trying to figure out how to connect a TreeTable control with data from a non-SAP web server. Here's what I have so far;     I have a sample program that uses json in a variable called oData.     I have a TreeTable control named oTable.

  • Run time error while running a webdynpro - urgent

    Hi Guys I am getting the following error while running the webdynpro. My Default view is a INPUT_VIEW. please see below runtime error Regards, Rahul =========================================================== The following error text was processed in

  • How do i know if i still have a warranty on my macbook?

    my mouse pad has begun clicking loudly. this is unusual,is this covered by a warranty? Thank you,   Nikki

  • Save push button in varient.

    Hello experts,             I have a pushbutton on my selection screen. When i will click on that button then only i can enter the values in other paramtere. After entering all values i will save it in varient. When i will call that varient for next t