Opening FLA saved from Windows 7 into OSX causes objects to shift

Hi,
I've been working on a project on a Windows 7 machine using Flash CS6, saved the file as FLA and then sent it to my work to continue working on their Mac OSX computers. The problem is, when I opened the file, a lot of the vectors were misplaced and had resized slightly which caused problems with my masks.
Is this a known bug, or to do with the way it's saved?
Thanks.

Text is always different between the two. I never allow OSX to output specifically because the linespacing was based upon the PC's linespacing. The designers just change the content to say what it needs and unfortunately it always needs to be exported on the PC to keep the fonts correct. It's bad enough half the time it used to have serious issues lining up the correct font, weight and style because OSX uses a different font naming convention than Windows.
It's one of the reasons I'm sad to see TLFTextField disappear. There was a lot more control and similarity between that type of text field on both platforms. It fixed a lot of issues. But per this documents note at the top TLFTextField, even though it's new, is depreciated and we're all supposed to revert back to TextField. I hope it's simply because all the TLFTextFields features are being built into the classic TextField (we don't need 2 types honestly, just one strong, functioning type).

Similar Messages

  • Unable to import or copy photos from a time machine back up saved from snow leopard into iPhoto now running on lion

    unable to import or copy photos from a time machine back up saved from snow leopard into iPhoto now running on lion

    The correct method of restoring photos from Time Machine is to restore the entire library.
    The way that TM backs up files makes nearly impossible to go into the backup via the Finder and recover individual files. So you will have to restore a library that contains the photos you need being sure to select the option to keep both versions.
    Then open the restored library and export those photos you need.  Open your original library and import those photos.  After that you can delete the recently restored library.
    OT

  • I cannot open a pdf file with aole-mail. I can open pdf files from windows explorer. I have associated pdf with adobe reader. My operating system is window

    I cannot open a pdf file with aol e-mail. I went to preferences in Adobe Reader but did not know what to enter for Incoming IMAP and outgoing SMTP. I can open pdf files from windows explorer as  I have associated .pdf files with adobe reader. My operating system is windows 7.
    When I try to open the pdf file within aol e-mail I get a message: 'Your security settings do not allow this file to be downloaded'.  I have not changed my security settings (Tools, Internet Options, security).

    Or http://helpx.adobe.com/acrobat/kb/pdf-browser-plugin-configuration.html

  • Can't open PDF files from Windows Explorer on Windows 8.1

    Hello,
    after I've upgraded to Windows 8.1, I can't open PDF files from Windows Explorer (directly double clicking the file). The AcroRd32.exe runs in the background (2x !) as I see the processes in task manager, but there is no user interface visible. I have Acrobat
    Reader 11.0.06, the desktop version (not Metro). I tried uninstalling the Acrobat reader and installing it again but this didn't help. The only way to open PDF files is to close the AcroRd32.exe from the task manager, open empty Acrobat Reader from the desktop
    and then drag&drop the PDF file over that window. This is quite inconvenient. Is there a way to fix this issue so I can open PDF files directly from windows explorer?
    Many thanks!

    I had to install adobe reader, but   PDF's used to display just fine with IE, any idea what happened ?
    Windows 8.1 pro.
    thx
    lee

  • I'm not able to open documents saved from the internet.

    I'm not able to open documents saved from the internet. I'm using a macbook pro en Adobe Acrobat X 10.1.10. I tried: file - export als PDF and save as PDF, none of this works. I always receive a message stating an error and saying that I need to go back to the original file what I did without result. Does anyone have (or had) the same problem?

    What they mean is iTunes Customer Service Contact - http://www.apple.com/support/itunes/contact.html

  • Can't drag and drop from Windows Explorer into iTunes 10

    HI. I recently upgraded to iTunes 10 and now, it won't let me drag and drop files from Windows explorer into iTunes. Is there a setting I need to turn on to get this to work again? I am running Vista.

    I might be wrong, but ...
    I know Microsoft Office 2011 is Mountain Lion compatible.  In fact, Microsoft released updates to it right around the time of Mountain Lion's release to assure compatibility.
    I do not believe Microsoft Office 2008 is Mountain Lion compatible.

  • Time delay switchin from windows xp to osx Leopard

    Hello,
    I have installed windows xp on a partition using bootcamp and I noticed a somewhat annoying problem:
    when I switch from windows xp to osx(Leopard) i get my osx time delayed by 2 hours.
    My timezone is +1, and it is set this way both on windows xp and osx. Is there some workaround which does not include manually setting osx time back to normal?
    thank you,
    Nick

    It's a known issue, but I am not sure if Apple will ever do anything about it. The problem lies with how Mac and Windows set the time. Mac uses GMT, and then offsets to find the local time. Windows just sets the time to local time. So, whenever Mac sets the time on the motherboard clock, Windows will be off, and visa-versa. It is very frustrating, since I live in California (GMT -8), and the clock is off by 8 hours every time I switch operating systems.

  • Open and read from text file into a text box for Windows Store

    I wish to open and read from a text file into a text box in C# for the Windows Store using VS Express 2012 for Windows 8.
    Can anyone point me to sample code and tutorials specifically for Windows Store using C#.
    Is it possible to add a Text file in Windows Store. This option only seems to be available in Visual C#.
    Thanks
    Wendel

    This is a simple sample for Read/Load Text file from IsolateStorage and Read file from InstalledLocation (this folder only can be read)
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using Windows.Storage;
    using System.IO;
    namespace TextFileDemo
    public class TextFileHelper
    async public static Task<bool> SaveTextFileToIsolateStorageAsync(string filename, string data)
    byte[] fileBytes = System.Text.Encoding.UTF8.GetBytes(data);
    StorageFolder local = Windows.Storage.ApplicationData.Current.LocalFolder;
    var file = await local.CreateFileAsync(filename, CreationCollisionOption.ReplaceExisting);
    try
    using (var s = await file.OpenStreamForWriteAsync())
    s.Write(fileBytes, 0, fileBytes.Length);
    return true;
    catch
    return false;
    async public static Task<string> LoadTextFileFormIsolateStorageAsync(string filename)
    StorageFolder local = Windows.Storage.ApplicationData.Current.LocalFolder;
    string returnvalue = string.Empty;
    try
    var file = await local.OpenStreamForReadAsync(filename);
    using (StreamReader streamReader = new StreamReader(file))
    returnvalue = streamReader.ReadToEnd();
    catch (Exception ex)
    // do somthing when exception
    return returnvalue;
    async public static Task<string> LoadTextFileFormInstalledLocationAsync(string filename)
    StorageFolder local = Windows.ApplicationModel.Package.Current.InstalledLocation;
    string returnvalue = string.Empty;
    try
    var file = await local.OpenStreamForReadAsync(filename);
    using (StreamReader streamReader = new StreamReader(file))
    returnvalue = streamReader.ReadToEnd();
    catch (Exception ex)
    // do somthing when exception
    return returnvalue;
    show how to use it as below
    async private void Button_Click(object sender, RoutedEventArgs e)
    string txt =await TextFileHelper.LoadTextFileFormInstalledLocationAsync("TextFile1.txt");
    Debug.WriteLine(txt);
    在現實生活中,你和誰在一起的確很重要,甚至能改變你的成長軌跡,決定你的人生成敗。 和什麼樣的人在一起,就會有什麼樣的人生。 和勤奮的人在一起,你不會懶惰; 和積極的人在一起,你不會消沈; 與智者同行,你會不同凡響; 與高人為伍,你能登上巔峰。

  • Bizarre error when trying to open .fla files in Windows Explorer

    "Windows cannot find '(path of the .fla file INCLUDING the filename)'. Make sure you typed the name correctly, and try again. To search for a file, click the Start button, and then click Search." error message given when I click on any .fla file in Windows Explorer to open it in Flash 8 Pro (as I've ALWAYS done before). Flash opens but no file is opened in it. If I click the fla file a second time THEN it opens in Flash (which is already opened from the first attempt.). This never happened before. I have 2 more laptops that work fine (as did THIS Win XP-SP3 pc until about a week ago), ALL with Flash 8 Pro (1 laptop w/XP-SP3 - just like the main PC with the new 'problem'), 1 laptop w/Vista Ultimate SP2. Even compared registry entries from XP laptop side-by-side - no differences at all. Everything is literally 'word-for-word'. Also compared FileMap.xml - no differences. Reinstalled Flash (no success) then out of frustration reinstalled XP with full disk format (and then everything else all over again - took 3 days) - still no success. Files open from the Flash 'File\Open' menu no problem - just not from Windows Explorer anymore. Nothing is different than before (when everything was ok - same installed programs, apps, updates, exact same 'set-up' as far as Windows drivers, system settings, prefs etc goes. VERY bizarre!

    As you know Flash 8 was a Macromedia product. They don't exist anymore - being absorbed by the all powerful, all seeing, all knowing Adobe Systems (sort of reminds me of the BORG on Star Trek - you know 'Resistance is futile').
    I tried literally everything - to no avail. Since I did try everything - up to and including a complete HDD full format and OS reinstall (which only accomplished deleting several days of my life that I'll never get back) I have come to the conclusion that it must be something inherent in the program that only affects installations performed after 12/31/12.
    My 2 laptops have no issues because the program has been on them for years and has never been reinstalled, but I would be willing to bet if I had to reinstall it on them I would start getting the same problem (since it's now past 12/31/12).
    On 12/31/12 Adobe did something in a way 'similar' to CS2 owners by rendering the activation of CS2 products inoperative. I found this out the hard way after I had just reinstalled everything while trying to deal with this issue. I had to spend hours on the phone to finally get the news from 'Dave' in Indonesia that Adobe decided to just arbitrarily render their CS2 customers paid-for software obsolete and inoperative! (Out of fairness they DID provide 'replacement' apps that don't require activation - thus avoiding MEGA lawsuits).
    Anyway - I'm just saying that software makers can build anything into their product, including date specific limitations without the consumer ever being aware of it.
    With the exception of this issue it otherwise works fine, and I guess I'll just have to deal with it from now on by dbl-clicking on Fla files TWICE instead of once - otherwise affectionately known as 'quadruple-clicking', (but if you count closing the error window then it's 'quintuple-clicking').
    I don't mind being proven wrong - so if somebody out there knows what is going on here (besides my theory of software developers time limitations resulting in complete world domination) feel free to reply. I'll get an email telling me someone replied and I'll come to this post and have a look.
    (suggestions to reinstall will be ignored - been there, done that)

  • Why PDF hang when attempting to open or saved from bank site?

    HI,
    I have a user who tried to export word file from a bank into PDF, she encountered page hang as her screen try to open/saved excel. It only happens to this particular pc.
    When she attempt to save from ERP, it hangs.
    Also to note is that this hanging of PDF is not always, it only hangs when it is my user's first time trying to save/open any document document.
    I have tried to uninstall the pdf software, and reinstalled.
    I have confirmed that the windows and PDF version is the latest as of this posting,
    Please advise. Thank you.
    Regards Joshua Tay

    Hi vanncraw
    What Product are you using ?
    What is the Exact Error Message ?
    is it happening with all PDF Files ?

  • Can't open files saved from Safari

    In SL, I have a new problem with files that are saved from Safari.
    I first noticed it with an Automator service I made, which took selected text and made a text file out of it. But I eventually discovered the problem seemed to be with Safari. Any time Safari saves a file -- if for example, I click a link and it downloads a .zip file, then there is something wrong with that file that prevents me from opening it in another app.
    When I try to open the saved file, either by double-clicking in the Downloads window or from the Finder, the target app just starts bouncing in the dock and never opens. I have to force-quit it. If the target app is already open, it switches to it but never opens the document.
    This is only for files that were saved by Safari. Other PDF's and zip's open just fine.
    And, if I manually launch the target app, and then go to Open... and navigate to the saved document, I can open it fine.
    Files saved from Safari seem to have something wrong with them. If I quit Safari, logout, or even reboot, they still refuse to open by double-clicking.
    What could be causing this?

    Reset safari
    Safari/Reset Safari
    Go to Your HD/Library/Internet Plug-ins/ and remove to trash the "AdobePDFViewer.plugin".
    Open Safari and a .pdf and it should now open with Preview in a Safari/Browser window.
    If not then re download
    http://get.adobe.com/uk/reader/

  • Random problem opening RAW images from I-photo into Camera Raw 4.1

    Hi there, sometimes when I double click an RAW .NEF image in i-photo it opens into the Camera Raw adjustement window and sometimes not. This is shots from the same shoot and they're all definitely .NEF files. The shots that have already opened always open in the CR window and the others don't.
    Any ideas? This is driving me crazy!
    I'm running Photoshop CS3 on a quad core intel Mac.
    Many thanks
    Max

    Max,
    Very few people here use iPhoto, if any.

  • Export from Windows Outlook into Mac Contacts

    Sorry if this has been addressed earlier; I searched but couldn't find this specific matter.
    Just purchased the Verizon iPhone for my wife. She had a prior AT&T iPhone, synched at office, where she works on Windows ... we are syncing the new one here at home on my iMac. I thought it would be a simple matter to export her contacts from the office Outlook (Windows) and import to the iMac's Contacts..BUT they don't appear to make use of any single standardized format. The Windows Outlook could export to PST (which is what it uses), or to Excel or Access. But Mac OS Contacts doesn't import from either of those.
    I'd like to avoid, for obvious reasons, having to re-key all 800+ contacts into the system.
    Is there an obvious solution that I've overlooked?
    Thanks

    Allan Sampson wrote:
    Since all Microsoft does is copy other's work, Microsoft copied Apple's lead as usual and incorporated vCard support with Outlook. Outlook includes an option to forward all contacts in the Outlook address book as separate vCard attachments to an email. Your wife can forward the email with the vCard attachments to a personal email address that she accesses with the Mail.app on her Mac or she can send it to herself with the work email address if she also accesses her work email address wit the Mail.app on her Mac. Save the separate vCard attachments received with the email to a folder created on the Desktop. Use the Address Book import feature choosing vCard navigating to the folder where the vCard attachments saved from the received email.
    I didn't see that in her Outlook (she does have, I think, a fairly old version of Outlook). ... I DID send as e-mail attachments some individual vCard attachments, about 20, and was easily able to import them into our home Mac's Address Book. Are you saying there should be (or IS) the ability to export all 800+ address cards as vCard? That's what I didn't see (and believe me, I looked).
    Allan Sampson wrote:
    Or if the contacts with her Verizon iPhone have been synced with Outlook, she can sync her Verizon iPhone contacts direct with the Address Book on her Mac via the iTunes sync process. If the Address Book on her Mac is used for contacts, she will be provided a merge prompt with the first sync for this data, which she wants to select.
    I did synch her new Verizon iPhone already with iTunes here at home on our Mac. Didn't see this particular list of contacts at the time. I'll take a look this evening again (she's at work as I write this). Her iPhone, I know, shows under Contacts all of the entries I have on my own (AT&T) iPhone, the same ones that are in the Address Book, AS WELL AS a separate Contacts list, which is the set of 800+ from her Outlook at work.
    So, yes, it would seem as if there should be a way. "So close and yet so far."
    Thanks, Allan, for the suggestions.

  • CS6 won't open all images from Windows Explorer

    Hi!
    Today a colleague of mine encountered a strange behaviour with Photoshop CS6 64bit on a Win7-PC (also 64bit), which I could reproduce on a second machine.
    Highlighting severeal jpg-images in a folder and hitting the Enter-key opens
    all images in Photoshop, when Photoshop wasn't running
    only some images (1 - 4 images out of 5) randomly, when Photoshop was already running
    The same effect happens when I use the "Open with..."-command from Windows Explorer on the images.
    Does anyone know this issue?
    Regards
    Dieter

    Normal behavior. Windows only allows a given number of files to be handed over via DDE and that's what happens when a process is already active. When you do this with no program open, it simply blindly fires a standard command with only one file as an argument, but does so for every single file. That's why it works then. Nothing you can change. It's a limitation in Windows itself combined with the fact that only one PS process can be active....
    Mylenium

  • Problem open pdf files from windows xp or W2K3(Not from Windows 7)

    Hi,
    i have some pdf files in a shared folder(W2K3).These are in other subfolders.Some of them cannot be opened .Right click options are limited (photo below).The weird thing is that happens when you try to open the files either from the server or a windows xp machine.From Windows 7 are opening normally.I thought of being an issue with file directory .Any idea ?
    Thanks

    I had to install adobe reader, but   PDF's used to display just fine with IE, any idea what happened ?
    Windows 8.1 pro.
    thx
    lee

Maybe you are looking for

  • How do I install CS4 on other computer without disks?

    I was overseas when I purchased CS4 via a download and installed it on my laptop.  I now want to install it on my desktop at home in the US, but I'm puzzled as to how best to go about doing this because I only have some files on my laptop from the or

  • Unable to see system process request page, process monitor page

    Hi all, We refreshed our test instance with prod recently. sysaudit and ddd audits were clean except for the following entries in sysaudit which i thought wasnt of much significance here. SEC-30) Role User table (ROLEXLATOPR) should be populated when

  • Small Problem with Combo Boxes

    Hi again everyone I am currently trying to add results to a Java league system.I am trying to update the number of games played for the team that has been selected by the combo box1 but it will will not compile The code for this is below newLeague.ge

  • My iphone 4 lost ALL of the ios apps

    I've lost all of the ios 5 apps -- settings, weather, contacts, phone, messaging, safari, etc -- on my phone.  I tried the "search iphone" to the left, but found nothing.  I can receive texts, but when I swipe the screen to read it I get this respons

  • Need to change as one insert stmt

    Hi, I'm using below two insert statements in side the procedure.can i re write as a one insert.pls help         INSERT INTO REP_ITEM_STAT_OPN (         REP_ID, ITEM_ID, TOT_STUD_BY_ITEM, TOT_TIME_BY_ITEM, MIN_TIME_BY_ITEM,MAX_TIME_BY_ITEM)         SE