Flex behavior difference between PC Vs Mac

I encountered a strange behavior with my Flash player (I am running 10,0,32,18 on both PC and MAC) where in there is a subtle difference between its behavior on a MAC vs on a PC.
I have a large application where I have a chalk board canvas that sits on top of other canvases and elements so that I can doodle on the chalkboard so that I can annotate say a picture that lies below the chalkboard canvas.
Under a same specific action in my application, the visibility for my chalkboard canvas goes away on my MAC as opposed to on a PC, in which it is visible.
Has anyone encountered such differences between flash players on these two platforms? I woudl appreciate any insight. Thanks, Ramesh

Thanks for sharing. May be I am not imagining this :-) I am wondering if such errant behavior might be due to events misfiring in a MAC. I have observed another instance where the event from a child pop up window does not show up on the parent, but occasionally does (I do understand from teh documentation that in the case of popup, the event will show up only when the listener is systemManager). It would be great if an Adobe engineer who is monitoring this forum can dig into this further.. Thanks, Ramesh

Similar Messages

  • Difference between PC and mac?

    With the Intel-based macs, we can install Windows on a mac and run it as if it's running on a PC. That leads me to a question. What exactly is the difference between PC and mac? I know they are different on the OS, but that's just on a software level, which I don't think constitutes the difference. The hard drives are formatted differently on both machines, I know, but we can still use the same hard drive for both a PC or a mac, we just have to format it the right way. So what really is the main thing that constitutes the difference between a PC and a mac? Putting it this way, I can run PC on a mac, can I do it the other way round? Can I install a Mac OS 10.5 on a pure PC made by companies like hp or Dell (or I can easily make one on my own) with an Intel Core 2 Duo/Quad processor, and run the machine like it's a mac?

    Allan Eckert wrote:
    While some have managed to hack things so that they can install OS X on a PC, the results have been not very reliable. Generally OS X has many part that do not function properly.
    It doesn't work well because the Mac hardware itself is different from what is found in any other Intel-based computer. Even the CPU's & support chips are not off-the-shelf Intel parts but variants optimized for Macs that are not available to other computer makers or to DIY enthusiasts.
    This is probably why for a time in 2007 the 'fastest Windows notebook on earth' was a MacBook Pro, as tested by PC World, a fact touted for a while in Apple TV ads. (It lost that title to a more conventional Wintel laptop about a month later, but the new champ cost over $5000, had "almost nonexistent" battery life, & weighs over 11 pounds, which should give you some idea of the advantages an Intel-Apple collaboration has over the competition.)

  • What is the difference between On My Mac calendar and icloud calendar?

    What is the difference between On My Mac calendars and icloud calendar. I would like just one system to be on both my iphone and MacBook.

    Hi,
    On My Mac calendars are local to the machine. iCaloud calendars are synced to Apple's iCloud servers.
    Best wishes
    John M

  • I want to reserve a static IP address on my Airport extreme.  What is the difference between reserving by MAC Address and DHCP Client ID?

    I want to understand the differences in the way you can reserve a static address for a device on the network.  I had previously set the device itself to an address and then reserved it with DHCP Client ID, which I thought was just the devices static addresss.  I'm not sure if this was in fact correct or just happend to work.  I know what a MAC address is, but I'm not really sure what the DHCP Client ID is. So it would be great if someone could clarify it, and the difference between reserving address by MAC Address or DHCP Client ID.

    A MAC address is a unique identification consisting of letters and numbers in a form that looks like this:
    xx:xx:xx:xx:xx:xx
    Every network device has a MAC address, which can be found on a label on the bottom or back of the device. Apple calls this the Ethernet ID.
    A DHCP Client ID is an optional name that you can assign to a device. For example, on your Mac....
    Open System Preferences (gear icon on the dock)
    Open Network
    Click on Ethernet
    Click Advanced at the lower right
    You may be able to edit the DHCP Client  ID here....for example.....you could enter MJ500's MacBook in the space provided. That would be the Client ID of your Mac.

  • Differences between CC for Mac and CC for Windows

    Hello,
    I just read here in the forum that possibilities regarding app-making in InDesign are limited when you are a Windows user. Seems like the "Create App"-possibility is for mac users only. Terry White made a very good video about app-making, but failed to mention that you needed not only CC (or CS6), but also a Mac.
    Be that as it may, I would like to know if there is a list somewhere, describing in detail the differences between possibilities and options on CC for Windows compared to CC on a Mac.
    And - if there is no list, can anyone tell me the differences?
    Regards,
    MikHva

    Thanks for the answer. I can see that I messed up formulating the last entry - what we are about to do is upgrade from CS6 to CC.
    Maybe you could help me with a related question. The last few days I have been searching for alternatives to builing my apps in InDesign, and I turned to Dreamweaver. I copied the CSS  from InDesign to dreamweaver, fixed the content and made my app work through my 1 phonegap build-project (the InDesign version looked better, though) - but getting on fra Dreamweaver to Android and iOS involves Phonegap.
    I can see that Adobe has developed the Adobe Phonegap Build. Is that a program (app) that I can acces after subscribing to the Creative Cloud? A friend of mine has the CC-version and I asked if she had acces to install Adobe Phonegap Build, but it was not on her list of programs to install.
    - As things look right now we might be going for a Pro or Enterprise version - but I haven't figured out the difference between the two yet - I've been busy with Dreamweaver.
    Sincerely and with thanks,
    MikHva

  • Flex 4 Difference between getPreferredBoundsWidth and getLayoutBoundsWidth

    Hi,
    I've been reading about layouts, saw some examples, read the ILayoutElement API and I still don't understand what's the difference between (lets take for example) getPreferredBoundsWidth and getLayoutBoundsWidth? When would one use one and when the other ? Please explain, thanks ! 

    Hi,
    The layouts or custom layout logic generally use these methods.
    The getPreferredBoundsWidth/Heihgt return the preferred size. This is the size of the component that's calculated based on its content (explicit or measured size, optionally transformed with the component's matrix.
    The getLayoutBoundsWidth/Height return the current layout size, as it is on screen. This is the component's size that was set by the layout.
    The reason to have these two sizes is that one serves as input to the layout (how big a component wants to be / how big did it measure?) and and the other is an output of the layout - the final / layout size is based on the preferred size + any constraints or other special layout logic.
    Here's an example:
    <s:Group id="outer" width="100", height="100">
        <s:Group id="inner" left="10" right="10">
             <s:Button width="20" height="20"/>
        </s:Group>
    </s:Group/>
    The outer group will be sized at 100, 100 because it has 100, 100 as explicit size. The outer's both layout and preferred sizes are the same.
    The inner group will be sized at 80, 20 because it is constrained horizontally to the outer. Its layout size is going to be 80, 20, but its preferred size is going to be 20, 20, because in this case its content is a 20x20 Button.
    Now if you remove the explicit constraints from outer, then it will snap to its preferred size. The preferred size will be calculated from its content - inner 20x20 plus the constraints for a total of 40x20. The inner group now will have layout size of 20x20 and also a preferred size of 20x20:
    <s:Group id="outer">
        <s:Group id="inner" left="10" right="10">
             <s:Button width="20" height="20"/>
        </s:Group>
    </s:Group/>

  • What is the difference between Windows and Mac formating?

    Hello guys!
    My question is in subject, just wondering what is real difference and what kind of restrictions in usability i could expect?
    Thanks,
    Ivan

    Mac OS X uses a file system that it inherited from Mac OS called HFS Plus. HFS Plus is a metadata-rich and case preserving file system. Due to the Unix roots of Mac OS X, Unix permissions were added to HFS Plus. Later versions of HFS Plus added a journal to prevent corruption of the file system structure and introduced a number of optimizations to the allocation algorithms in an attempt to defragment files automatically without requiring an external defragmenter.
    Filenames can be up to 255 characters. HFS Plus uses Unicode to store filenames. On Mac OS X, the filetype can come from the Type code stored in file's metadata or the filename.
    HFS Plus has three kinds of links: Hard links, Symbolic links and Aliases. Aliases are designed to maintain a link to their original file even if they are moved or renamed.
    FAT32
    In order to overcome the volume size limit of FAT16, while still allowing DOS real-mode code to handle the format without unnecessarily reducing the available conventional memory, Microsoft decided to implement a newer generation of FAT, known as FAT32, with cluster counts held in a 32-bit field, of which 28 bits are currently used.
    In theory, this should support a total of approximately 268,435,438 (< 228) clusters, allowing for drive sizes in the range of 2 terabytes. However, due to limitations in Microsoft's scandisk utility, the FAT is not allowed to grow beyond 4,177,920 (< 222) clusters, placing the volume limit at 124.55 gigabytes, unless "scandisk" is not needed [3].
    FAT32 was introduced with Windows 95 OSR2, although reformatting was needed to use it, and DriveSpace 3 (the version that came with Windows 95 OSR2 and Windows 98) never supported it. Windows 98 introduced a utility to convert existing hard disks from FAT16 to FAT32 without loss of data. In the NT line, support for FAT32 arrived in Windows 2000.
    Windows 2000 and Windows XP can read and write to FAT32 filesystems of any size, but the format program on these platforms can only create FAT32 filesystems up to 32 GB. Thompson and Thompson (2003) write[4] that "Bizarrely, Microsoft states that this behavior is by design." Microsoft's knowledge base article 184006[3] indeed confirms the limitation and the by design statement, but gives no rationale or explanation. Peter Norton's opinion[5] is that "Microsoft has intentionally crippled the FAT32 file system."
    The maximum possible size for a file on a FAT32 volume is 4 GiB minus 1 B (232-1 bytes). For most users, this has become the most nagging limit of FAT32 as of 2005, since video capture and editing applications can easily exceed this limit, as can the system swap file.
    (From wikipedia)

  • Difference between Windows and Mac versions

    Could anyone tell me whether the files generated by the Mac version of In-design stricly identical to the *.indd and other files (templates, libraries) generated under Window? If not, what are the differences? Thanks in advance for any help.

    There is no significant difference, but they will not be bit-for-bit identical.
    For instance, the INDD file format records which version and platform of InDesign created the file, so that small piece of information will certainly differ. Also, historically, when Macs used non-Intel processors with different byte order, ID may have stored some numbers in reversed byte order. But since everything is Intel now, that's not an issue.
    In any case, there is 100% compatibility between both platforms. Mac ID can read Windows ID and vice versa.

  • What's the difference between 'On my Mac' & 'MobileMe' calendars?

    I'm just moving from Entourage to iCal. I didn't import my Entourage data into iCal; I just opened the calendar created by Entourage in iCal. I assume this is fine and I can rename this calendar to something other than the default "Entourage" and keep working in it, without the need to import data?
    This calendar syncs with MobileMe (where it also appears as "Entourage" ) with no problems and I can view all my events and to dos in Safari at http://www.apple.com/mobileme/.
    What I'm confused about is that, when creating a new calendar in iCal I get the options: "On My Mac" and "MobileMe". I don't get it; if my calendar syncs with MobileMe, what's the difference?
    Can someone please stop my brain hurting.
    Thanks in advance,
    Steve = : ^ )

    Thanks for the reply. The To Do folder in Mail has two sub-folders: "On My Computer" and "MobileMe". All the To Dos from my regular iCal calendar already appear in the "On My Computer" sub-folder, and they end up in the calendar at MobileMe, so there's no need for a 'MobileMe'-type calendar there.
    You're right that To Dos created in Mail require a 'MobileMe'-type calendar to appear in iCal, but why wouldn't you just switch to iCal to create a To Do?
    Where there is a difference, though, is that it works in the other direction: To Dos created in a 'MobileMe' calendar in iCal, end up in the "MobileMe" To Do sub-folder in Mail and items in this folder get synced to the "Apple Mail To Dos" folder on the iPhone, whereas those in the "On my Computer" sub-folder don't. (I verified this).
    This appears to be a solution to the lack of a To Do app on the iPhone. As far as I can see, I can: export my iCal calendar; create a new 'MobileMe' (i.e. not 'On My Computer') calendar; import my exported data into this calendar and use it in place of the current calendar. As far as I can see everything will behave exactly as it does now with the exception that my To Dos will now appear in the "MobileMe" To Dos sub-folder in Apple Mail instead of the "On My Computer" one, and this means that they will now sync to the "Apple Mail To Dos" folder on the iPhone.
    But if it were this simple, there wouldn't be people all over the net complaining about the lack of a To Do list on the iPhone, and other people writing apps to fill the demand. And what is the point of the 'On My Computer'-type calendar in the first place? I must still be missing something. :-\
    Steve = : ^ )

  • What is the difference between iMac and Mac pro?

    I want to buy an iMac but have saw the mac pro.  What is the difference?  Do you need an iMac to get a mac pro or does it come with a monitor?

    Yes, exactly as Kappy has stated.
    The iMac is an "all-in-one" computer similar to an HP Envy, or HP Touchsmart.
    HP Envy Here: http://tinyurl.com/bb-hp-envy
    HP Touchsmart Here: http://tinyurl.com/bb-hp-touchsmart
    These are an "all-in-one" machine, where the CPU (central processing unit), mainboard, and graphics display adapter are all embedded onto one board, and it is built-in to the monitor display case.
    So you just have what looks like a "thicker" monitor on your desk and your keyboard connects to this "all-in-one" computer.  (and actually the newest 2012 iMacs are not really that "thick" at all, and it does look pretty nice/thin/sleek).
    The disadvantage to an "all-in-one" is that it's not easily upgradeable.  You can't change out the graphics cards, or install new PCIe expansion cards (faster network cards, RAID adapter, etc.), can't add extra internal hard drives (i.e. 4 internal hard drives), etc.
    The Mac Pro is a standalone computer.  It requires an additional monitor/display.  The advantage of having a Mac Pro is that it is upgradeable (you can get more powerful graphics cards in the future if you need better 3D rendering power) and it has far more memory slots, so it can be expandeable to I believe 128GB of RAM (whereas I believe the iMac might be 32GB of ram?)
    iMac memory expansion here:  http://www.apple.com/why-mac/compare/
    Mac Pro Memory expansion here:  http://eshop.macsales.com/shop/memory/Mac-Pro-Memory#1333-memory
    Also the iMac is a much thinner device, and you can't separate the display from the CPU (they are an "all-in-one" device) so you can't upgrade or change the primary display, but you can add a second display).
    With the Mac Pro, you can add additional graphics cards, and you can power up to twelve displays (if you wish).  You also have a much more powerful processor on the Mac Pro (one quad-core, or up to two 6-Core Intel Xeon processors).  So the Mac Pro a much more powerful machine.
    The iMac is just a nice cute/thin desktop display (all-in-one), but with a quad-core processor it's still a fairly fast/decent machine.
    If you are doing heavy 3D graphics rendering or gaming, or graphics design (3D CAD, etc.) then I would probably go with something more powerful like a Mac Pro, since you can get better graphics cards, and the Mac Pro will run much cooler (as you're trying to do massive rendering).
    > Do you need an iMac to get a mac pro or does it come with a monitor?
    No, you don't need an iMac for a Mac Pro (they are two separate and different computers), but yes you do need an external monitor display if you buy a Mac Pro.
    Any 1920x1080p monitor/display with an HDMI input will be sufficient for using with a Mac Pro.

  • Whats the difference between using a .mac account and an AIM account?

    hi, i'm trying to set up ichat to videochat with home when i'm abroad. Will two AIM accounts satisfy or do i have to have a family .mac account? i really dont see the point in paying 200 bucks for the .mac account if you can do the same thing with a free AIM account.
    thanks
    Tom

    Hi
    Either will do for free.
    Free 60day trial(click on free trial on the top) here http://www.apple.com/dotmac/ keep your .mac name after the 60days.
    or free AIM name here http://www.aim.com/ click on "get a screen name"
    Tony

  • What is difference between Numbers for Mac and for iPod Touch?

    Trying to decide pros/cons of getting Numbers for my iMac vs. just for my iPod Touch? Obviously, one is cheaper than the other.  Dumb question, but I guess I cannot use Numbers downloaded from App Store on my iMac; just on my iPod Touch?  And, can I just buy Numbers for iMac; seems only option is to buy as part of package under iWorks (don't need Pages or Keynote for the home).

    (1) Numbers for iOS and Numbers for OSX are completely different products building files using the same format.
    (2) You may buy Numbers as a single application thru Mac App Store. The application Mac App Store is delivered with Lion.
    Yvan KOENIG (VALLAURIS, France) samedi 14 janvier 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k
    My iDisk is : http://public.me.com/koenigyvan

  • Quality difference between Windows and Mac

    Well, that's the problem:
    The same song, (Skull and Crossbones by Klaus Badelt), played under my Mac partition or under my Windows partition is sounding different.
    I thought the speakers were broken, but it's not that. Under the Mac iTunes, it sounds horrible, it's distorted and compressed. Equalizer is set the same (Classical), the file is the same, same machine, same application (iTunes 7.6.2), everything is the same. Except the library size. Under Mac it's 13.4 GB, under Widnows only a 100 MB...
    Any ideas?
    Thanks

    Neither version of iTunes will make jewel cases.

  • Difference between PC and Mac movie

    Hi! I've authored a CD-ROM title that calls for a number of
    PDF docs to open throughout it. Unfortunately, the PDFs
    (baOpenFile) are not opening on the mac (they have in the past),
    and many of my text elements are not lined up anymore. What gives?
    Any help would be appreciated! Thanks in advance! chris
    P.S. - I used the _movie.path& ("Docs\doc.pdf", "Normal")
    method, which has always worked in the past.

    Don't forget about the Mac "update" a while ago. From what
    I've read in other forums and unbeknowst to Mac users, Apple
    changed the default viewer for pdf's; they open in Preview now and
    not in Acrobat Reader.
    I had all kinds of issues with this on my last project and
    even though it opened Reader a few months ago on the Mac, after an
    update sometime in January, the pdf's open in Preview.
    Unfortuntaley, some text and elements didn't appear on the screen
    anymore and all of my interactive buttons, etc. in the pdf no
    longer work in Preview, only in Reader, so I had to add a note to
    the CD that mac users have to click on a pdf file and tell the mac
    to open it using Reader not Preview. Once the user does this on
    their end, pdf's can be opened in Reader by default.
    Apple computers suck.

  • Difference between PC and Mac notebook displays

    The 15" and 17" Macbook Pro have a screen resolution of 1440x900 and 1680x1050 respectively. However, when comparing to PC laptops, almost all 15" laptops have only a 1280x800 resolution and the 17" models sport a 1440x900 resolution. If you want 1680x1050 you have to get a desktop sized 20" laptop. Does this mean that Apple notebooks have higher quality displays than PC notebooks ? I've seen a 13" Macbook and the 1280x800 resolution is superb for that screen size. However, I haven't seen the 17" Macbook Pro yet. I have a 20" iMac at work which has the same resolution of the 17" Macbook Pro. I'm not sure, but I think that 1680x1050 might be a little too much for a 17" monitor...

    hi, I've got an MBP C2D 17". it does indeed have exactly the same res as the apple 20" cinema display, which is part of the reason I went for the 17" as I'm used to this amount of desktop space. all it means is that the pixels are smaller, so you can of course fit exactly the same amount of stuff on the screen as on the 20" display, but everything is a little smaller. if you have trouble reading text on a 20", then you will probably be resizing stuff on the 17". for me it's fine, I'm finding it perfectly usable, text and detail are clear enough for me, but I have pretty good eyesight.
    that said, I'm not 100% happy with the screen. I find it perfectly crisp, sharp and clean, but there is a problem with the backlighting being very uneven so I have brighter areas, especially along the lower part of the screen. search my posts for more details, I've written a lot about it.
    I contacted apple today to see about how it would work if I decided I wanted a replacement of the whole machine or to have a replacement of the screen. not sure if I'll go for that yet as the machine is really working well in every other way. it just irks me that I've shelled out for the current apple flagship notebook and I've landed a display that is not as A grade as it should be.
    btw, is that true about PC notebooks? a rabid PC fanatic I know has always gone on and on about how mac laptops are inferior because they never have high enough res on their screens. meanwhile, he gives himself migraines squinting at 1600x1200 that you can hardly read on what I think is a 17" dell of some sort.
    personally I think the res on the 17" is just about right, you wouldn't want to try and go much higher than that because you'd really be struggling to read text. I just never expected a backlighting problem on a top of the range machine. I really hope it is just faulty because it would be not much fun to decide to get it replaced, go through all the downtime and reinstalling just to get another machine with similar or potentially worse problems..

Maybe you are looking for

  • I lost my iPhone and when I'm trying to find it with the location, they say that it is "out of service". What should I do?

    Hello people! As I mentionned in my question, I have lost my iPhone I'm feeling very dumb, it is the second time that this happens to me and I really need your help! I don't even know what happened, but when I arrived home after school, I didn't find

  • Business Catalyst and File sharing?

    Hello all, I did some searching on here and I had no luck. I am trying to set up icons, that when clicked, allow the user to download the file(s). I am using Adobe's Muse and I don't want to give up on BC because I love the form integration. s Also,

  • Connecting 8520 to external GPS

    Hi! I've seen a few other messages about my problem, but I still don't know how to solve it. I have a BB Curve 8520. I want to use a running app and because the 8520 doesn't have a GPS, I bought an external one; B Speech keychain GPS. My BB can find

  • RSA in jdk 1.4.2 or not?

    Hi,I have java 1.4.2 and I want to use RSA,have I to download any other thing? If yes,what?I've read that I have to download a provider,is it true?what's a provider? If no,where can I find a snippet or something to understand how to use RSA?as easy a

  • Y axis is locked in 3d rotate. Suggestions.

    y axis is locked in 3d rotate. Suggestions.