SWF with TLF compiled in Flash CS5 can't be imported into Flex 4.5

Hello there,
Trying out Flex 4.5 preview I've run into a problem:
In my Flex project I dynamically load various SWF files compiled in Flash CS5. These SWFs use TLF.
With Flex 4.1 everything worked as expected, but in Flex 4.5 I get RTE(s).
Just to be clear: if the SWF uses old classic text, Flex 4.5 displays it normally, but once you try TLF - nothing but RTE.
Anybody has experienced that?
I've also posted this on the TLF forum.
I'm on OS 10.6.6, and use the prerelease version of Hero (not the latest 18623)
Thanks,
FTQuest

I tried to add the newer TLF swc to FLash CS5 (pointing to it in the library path), but it didn't work.
So, we'll wait till Flash team releases next update.
Thanks for the clarification,
FTQuest

Similar Messages

  • Loading child SWFs with TLF content (from Flash CS5.5) generates reference errors in FB4.6

    I am currently producing e-learning content with our custom AS3-Framework.
    We normally create content files in Flash CS5.5 with dynamic text fields, which are set at runtime from our Framework (AS3 framework in FB4.6).
    Now we are in the progress of language versioning, and since one of the languages is Arabic we are changing the dynamic text fields to TLF fields.
    Then all my problems started.
    In Flash I have chosen to include the TLF engine and to export in frame 2.
    (see to: http://helpx.adobe.com/flash/kb/loading-child-swfs-tlf-content.html )
    I get this error:
    VerifyError: Error #1053: Illegal override of getEventMirror in flashx.textLayout.elements.FlowLeafElement.
                at flash.display::MovieClip/gotoAndPlay()
    I guess it is because our framework wants to gotoAndPlay before the TLF engine has been loaded.
    Can this be it?
    Any good suggestions on how to handle loading child SWFs with TLF content.

    Please refere to the following articles .. you may find some help.
    http://www.stevensacks.net/2010/05/28/flash-cs5-tlf-engine-causes-errors-with-loaded-swfs/
    http://www.adobe.com/devnet/flash/articles/preloading-tlf-rsl.html
    I also faced similar problem and posted a question at the following link, but, I still couldn't find the solution.
    http://forums.adobe.com/message/4367968#4367968

  • Importing anything (swf, swc, etc) compiled from Flash CS5.5 into FB 4.5 throws Errors

    I'm using FB 4.5 with sdk 4.1.0.16076.
    I've tried importing an swc file, using the "convert symbol to flex component" command and it throws a VerifyError: Error #1053: Illegal override.
    I've tried just compiling an swf and embedding it in a Flex compoent, again i get a VerifyError: Error #1053: Illegal override.
    I've tried changing a number of compile settings in Flash CS5.5 but with no luck.
    Does anyone have any ideas how to fix this error?

    with the swf it is: Illegal override of createTextLine in flashx.textLayout.compose.ComposeState.
    the swc is  Illegal override of FTETextFieldHostFormat in FTETextField.as$134.FTETextFieldHostFormat.
    these errors seem arbitrary, since the first time i loaded an swc i got a different Illegal override error regarding some kind of CSS object that i can't remember.
    i have read other threads that indicate this problem may occur when compiling objects using different SDKs in the same project. Does Flash CS5.5 compiled objects need to be imported to the 4.5 sdk maybe? (i'm using sdk 4.1).

  • SQLite Database and TLF Text in Flash CS5

    I encountered the following problem when working with the built-in sqlite database and using TLF TextFields in Flash CS5
    When I tried to use TLF TextFields alone, I don't face any probelem,
    but when I start using a database connectivity code, the TLF TextFields placed on the stage are not shown, but instead, the SWF file is showing the built-in preloader with five dots looping.
    I tried changing the default Linkage in ActionScript 3 Settings to Merge Mode, but in this case nothing is shown, not the textfields, neither the preloader.
    I think the problem is related to loading the TLF Text Engine, but I couldn't figure out what to do.
    The following is my code placed in first frame:
    ==========================================
    import flash.data.SQLConnection;
    import flash.events.SQLErrorEvent;
    import flash.events.SQLEvent;
    import flash.filesystem.File;
    var conn:SQLConnection = new SQLConnection();
    conn.addEventListener(SQLEvent.OPEN, openHandler);
    conn.addEventListener(SQLErrorEvent.ERROR, errorHandler);
    // The database file is in the application directory
    var folder:File = File.applicationDirectory;
    var dbFile:File = folder.resolvePath("DBSample.db");
    conn.openAsync(dbFile);
    function openHandler(event:SQLEvent):void
        trace("the database was created successfully");
    function errorHandler(event:SQLErrorEvent):void
        trace("Error message:", event.error.message);
        trace("Details:", event.error.details);
    stop();
    ==========================================
    and I am using one TLF TextField on the stage for later use.
    Publish Settings>> Player: AIR 2.6
    and not to forget, when I test the file using Contol Panel >> Test in Air Debug Launcher (Desktop), the file is working correctly.
    but when I open the generated SWF file, the problem appears.
    I hope that I find some help
    Thanks.

    http://www.flashandmath.com/flashcs5/rsltip/

  • [svn:fx-trunk] 12912: With TLF 571 checked in we can now revert the MXML 2009 changes for how the id language attribute is processed .

    Revision: 12912
    Revision: 12912
    Author:   [email protected]
    Date:     2009-12-14 12:08:35 -0800 (Mon, 14 Dec 2009)
    Log Message:
    With TLF 571 checked in we can now revert the MXML 2009 changes for how the id language attribute is processed.
    An unqualified id property will no longer be seen as a setter for a normal public, writable, non-static "id" property - which matches Flex 3 behavior.
    As in earlier versions of Flex, the mechanism to retain MXML id attribute information at runtime is to implement mx.core.IMXMLObject. The compiler will generate a call to the intialized() method and pass in the id information.
    Note: One exception to this rule seems to be UIComponent which instead get id attribute information via mx.core.IDeferredInstantiationUIComponent (although there seems to be a TODO in the codebase to remove this mechanism and thus should not be relied on by third parties).
    QE notes: Please add tests for the TLF id property on flow elements (div, span, p, etc).
    Doc notes: Please check that we have not documented
    Bugs: N/A
    Reviewer: Paul
    Tests run: Checkintests, local test cases.
    Is noteworthy for integration: Yes
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/FrameworkClasses.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/core/SpriteVisualElement.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/supportClasses/GraphicEleme nt.as
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/ComponentBuilder.jav a
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/lang/StandardDefs.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/reflect/Type.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/reflect/TypeTable.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/init/ValueInitializer.ja va
    Removed Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/IID.as

    This is a duplicate post.  This should be locked to avoid further confusion.
    My CSS wont change
    Nancy O.

  • Flash CS5.5 unable to import sounds and massive animation lag

    So, having reached a point where I want to add sound to my animation (which is extremely laggy for no particular reason), I find myself completely unable to import sounds of any form into Flash. "Oh, crap" I say to myself, and come onto the forums looking for a solution. Apparently importing the sound into a sound editor (ie audition) and then resaving it works, except it hasn't in my case and I'm still stuck with this stupid "Couldn't import [filename]" error.
    (and my animation is extremely laggy for some reason in case you hadn't realised from the hints above. Does this have something to do with the fact that I am using blurs in the animation and then animating them with tweens, or is flash cs5.5 (and 5) just not good at rendering blurs efficiently?)

    In Flash, all of the animation is done at runtime, not during authoring. This means that a blur, for instance, is done when the user is looking at the movie. This is completely different from the way that video is played on a computer. All of the animation workload is on the user's processor.
    If you have a normal bitmap image that you are blurring with a blur filter and then animating that bitmap on the timeline in a tween, then you are giving the processor a lot of work to do. If you import a blurred bitmap and animate that, the processor has much less work to do.
    That may or may not describe the problem that you are seeing.
    I have no idea what the problem is with the sound files. Can you post one of the sound files so that someone could take a look at it?

  • Flash cs5 keeps crashing when importing images.

    Flash cs5 keeps crashing when importing images onto stage.  I plan on tracing a drawing I made.  They aren't that big so I don't know why cs5 crashes.  Any ideas how to fix that? Thanks
    I'm using windows 7- 64 bit.
    Quard processor and 8 gb of ram
    Here is the error I recieve:
    Problem signature:
      Problem Event Name:    APPCRASH
      Application Name:    Flash.exe
      Application Version:    11.0.0.485
      Application Timestamp:    4badda9d
      Fault Module Name:    ntdll.dll
      Fault Module Version:    6.1.7600.16385
      Fault Module Timestamp:    4a5bdb3b
      Exception Code:    c0150010
      Exception Offset:    000845bb
      OS Version:    6.1.7600.2.0.0.768.3
      Locale ID:    1033
      Additional Information 1:    2865
      Additional Information 2:    2865b1bb537c4d5e61b79207bc968f0a
      Additional Information 3:    ddf9
      Additional Information 4:    ddf98ab5688195f8b48f91f047120c5a
    Read our privacy statement online:
      http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
      C:\Windows\system32\en-US\erofflps.txt

    I got the same problem. I tried to import into Flash cs3, cs4, cs5 - constant error in each application.
    But seems I've found the reason why this happened in my case.
    I just deleted the installed system video codecs (divx, xvid, third-party codecs).
    I do not see a direct connection with the import objects into flash. But fact, immediately after the removal of codecs it has to work.
    I suspect that the reason could be a third-party codec that is associated with playing QuickTime. Maybe.
    Also if it does not help you this way, I used a temporary solution.
    Open the psd in Adobe Ilustrator, copy images to clipboard, paste it into flash.
    In my case the images are not displayed on the screen after insert, but put into the library.
    Don't touch objects, just save the file, close the Flash.
    Launch Flash and open saved file. In my case in the first run was an error.
    Close the application and open it with file again.
    The second time the error was not followed, the images were within the document 8-)
    This option made it possible to work until the issue is not solved completely (adobe, wake up!).
    win7 64, cs5 (cs3, cs4 had the same issue)
    Perhaps it can be useful for someone.
    thx
    Sorry for my English.

  • Can i export an Imovie project with special effects as a quick time movie then import into final cut express keeping the special effects?

    Hi, Can i export an Imovie project with special effects as a quick time movie then import into final cut express keeping the special effects?

    Absolutely.  Go to File->Export->QuickTime Movie (do NOT use QuickTime Conversion).  Make sure you check the Self-Contained box.  The export will be an exact copy of your Sequence, complete with any filters or other effects you've added.  Import the self-contained movie back into the project (or another project) if needed.
    -DH

  • Problem with Installing Trial of Flash CS5.5

    I'm trying to install the trial version of Flash CS5.5.  I have downloaded it with the Adobe Downloader without problems.  However, when I try to install the program, it gives me an error.  I am able to select the "trial" radio button and can accept the user agreement.  When it tries to install, it gives me the following error message: "The Setup encountered an error(-1) during install. Please restart the machine and try again."  I have restarted and tried to install the software several times without success. 
    Thanks in advance for any suggestions.

    DancingCavy9 the advantage of setting up a new administrator account is that account has fresh permissions assigned to it.  This is why it is a recommended form of troubleshooting. 
    The install logs document will allow you to review the install logs. Alternately if you would like to run the Adobe Support Advisor, select the option to Package for Support, and respond to this thread with your token number I would be happy to review your install logs.

  • Flash CS5 can't save CS4 files

    I keep a copy of CS3 around just so I can be productive... CS4 takes 10 to 20 seconds between timeline edits for the screen to un-freeze.
    I had hoped CS5 would resolve this because I would like to and need to use the Flash Player 10 classes... But NO!, it is completely useless in a production environment because you can't even save your work without jumping through hoops!!!  I work with aproximatly 20 designers and we have thousands of CS3 files that get updated in over 40 live sites. This product is not ready and it is very disappointing that Adobe would release it like this. The only way I can save any of these files is to save as a CS4.
    See other posts:
    http://forums.adobe.com/thread/642378?tstart=0

    Hi Greg,
    Thanks for emailing me your FLA file so we could investigate.  It looks like one of your assets is corrupted.  This file crashes even in Flash CS4 when I drag sparks.jpg to the stage.
    Flash CS5 crashes more quickly because it tries to validate this asset on save but can't because that asset is corrupted.  If you remove sparks.jpg from the library, you can save the file in Flash CS5.
    Thanks,
    Nivesh

  • Packaging adobe air with android app in flash cs5

    Hi,
    I have developed a very simple app in flash cs5 and am ready to upload it to android market. However, users need adobe air to run it. Does anyone know if there is some way to package the app with air? I want to make it as easy as possible for people to run the app. Users will be prompted to download air and I can put this information on the apps page on android market but if there is some way to iclude this in the apk I'd love to know. Can't seem to find information on it on the web.
    Thanks

    Hum, thought so. Usually if there seems to be no answer to something on the web it's not possible!! Thanks.

  • If I buy an IMAC with only 512gb of flash storage can boot camp make a Windows Partition

    If I buy an IMAC with only 512gb of flash storage (no hard drive) can boot camp make a Windows Partition

    Yes
    http://windows.microsoft.com/en-us/windows-8/system-requirements

  • HELP: Flash CS5, can't publish for flash player 4

    Hello!
    I want to create a flash ad for google AdWords using Flash CS5.
    according to the guidelines (http://adwords.google.com/support/aw/bin/static.py?hl=en&page=guide.cs&guide=1308145&topic =1310862&answer=176108&rd=2) I am required to publish for flash player 4:
    Flash versions: All Flash ads must be published for Flash Player version 4-10.
    Flash CS5 doesn't offer me to target flash player 4 in the publish settings!
    how to resolve that issue?
    Thanks!

    I googled it! A funny thing is:
    http://www.google.com/support/forum/p/AdWords/thread?tid=262eb148dc312b92&hl=en
    Flash versions: All Flash ads must be published for Flash Player version 4-10.
    It include the version 10 too right? then why do you go for flash 4?
    Anyway, I will reply you if I come across a solution.

  • I have taken pictures of items that are linked to a database that I am building.  How can I bypass importing into iPhoto and simply downloading the images as "files" not "photos" so I can access them with my database?  thanx.

    I have taken pictures with both my Sony camera and my iPhone of items that are linked to a database that I am building, as well as my website.  How can I bypass importing the images into iPhoto and simply downloading the images as "files" not "photos" so I can access them with my database?  thanx.

    If your Sony has a removable memory card you can use a card reader to copy the image files from to a folder on your Desktop and then move them anywhere you'd like.
    Since the iPhone doesn't have a removable memory card you can try using Image Capture to see if you can manually upload the files to a folder on the Desktop. 
    If you have to import the photos, which are image files, into iPhoto you can then export them out of iPhoto to the Desktop and go from there to your database.  Just because they are in iPhoto doesn't prevent you from using them elsewhere.
    OT

  • How do I know what version of firefox I am using? Versions higher than 3.6 are incompatible with k12 online school and I can no longer get into Elluminate Live sessions.

    Ever since I updated Mozilla Firefox on my computer,my address bar disappeared. Also, I can no longer log into Elluminate Live sessions.

    Check your PM '''Inbox''' at the top of this thread.

Maybe you are looking for

  • Unable to retrieve tables from this connection

    I have been using Dreamweaver for over 5 years. I have been using an Access database and ASP the entire time. I am using a Windows 2000 server for the database and web site. I have used every verson of Dreamweaver since Ultra Dev. When I bought verso

  • Problems on installing boot camp on windows vista 64

    I've a problem,when I finished installing vista 64,I should install the bootcamp 2.0,I searched many discussions about this.But I can't find the file 'bootcamp64' on my leopard disk(apple\driver\bootcamp64?),I just find the bootcamp.msi,what can I do

  • Windows 8 Upgrade for Satellite C870D-105 possible?

    Hi out there, I own a Satellite C870D-105 Partnumber PSCA2E. Does anyone know whether it is possible to upgrade my Win7 Home Premium to Win 8 Pro via the Windows Upgrade Assistant? So far I haven't been successful and the part numbe does not appear i

  • How to create a simple input form in BPC 10.0 and the details are below

    Hi Experts, I would like to know how to create attached input form and what are the dimension would require to use in order to populate correct report Please provide your comments and the sample report has been attached. MGA Index Column Head Count P

  • File name with latest time stamp for inbound interface

    Hi experts, I have a requirement to develop an inbound interface in which I need to fetch the all files from the physical directory, and then retrieve the one with the latest timestamp. I found out the FM 'SUBST_GET_FILE_LIST', but this FM does not g