Linked continer issue

Hi Guys,
This issue is specific to TLF 1.1 and does not happen in TLF 1.0.
Have 2 linked container and try typing on the second para of second container, you will see a flicker . Also if you hit "ENTER" in the first para of second container the content will dissapear .
You can try the same here ..
Is this a bug in TLF or am i doing something wrong ?
Thanks
Rafique Gilani

I've been looking into this -- thanks for reporting this! I have a workaround for you to try. I haven't done extensive testing with it, but it fixes the basic problem. The bug is caused by the new incremental composition. We added new code for composing from the middle of the container, instead of requiring to start at the beginning each time. This bug happens when we are applying the incremental composition logical, but are starting from the start of the second or subsequent container. In this case, it gets confused about where the composed lines should go. The fix is to extend the damaged area slightly, to include the very end of the previous container. You can do this by adding an event listener for DamageEvent to the TextFlow. When you get a damage event, and the damaged area starts at the start of the controller (and its not the first), damage backward by one character.
Here's an example event listener:
        private function damageHandler(event:DamageEvent):void
            if (event.textFlow == activeFlow)
                var controllerIndex:int = activeFlow.flowComposer.findControllerIndexAtPosition(event.damageAbsoluteStart);
                if (controllerIndex > 0)
                    var controller:ContainerController = activeFlow.flowComposer.getControllerAt(controllerIndex);
                    if (controller.absoluteStart == activeFlow.flowComposer.damageAbsoluteStart)
                        activeFlow.tlf_internal::damage(controller.absoluteStart - 1, 1, false);
You can attach this event listener to textflow as follows:
            activeFlow.addEventListener(DamageEvent.DAMAGE, damageHandler, false,0,true);
Let me know how this works -- my apologies for the bug.
Thanks,
- robin

Similar Messages

  • Pdf links & dropbox issues

    Hi ,
    I got this problem, some of my hyperlinks (downloadable pdf) are not displayed when i'm testing my site, the new window open but nothing happen
    I wonder, may be its because I've put them in my dropbox in first place ?
    I noticed dropbox link have issues to, link can't be downloaded
    How to do it , link pdf file properly ?
    Thanks

    You don't need to use Dropbox to host your PDFs for download, Muse will do this natively for you.
    >In Deisgn Mode click on the text image, etc thato you want to be your active link to download.
    > In the toolbar at the top of the page click the drop dowb menu next to "Hyperlinks"
    > Scroll down to "Files" section, then to "Link to File" and then navigate on your HD to where your PDF is. This then links that PDF up and when you upload your site to a testing site or to your server, the PDF will be included in the upload to then be downloaded by your users.

  • Mini Displayport to Dual-Link DVI Issues on 30" Cinema Display

    I know this problem has been around for a while, and that there are several other discussion on it, but my goal here is to point out that even in mid-2011, this issue remains.
    Here's my configuration:
    30" Cinema Display
    Dual-link MDP to DVI adapter with 1.03 firmware (purchased August 2011 from an Apple Store)
    New-ish MacBook Pro (purchased December 2010) with Mini Displayport
    Symptoms:
    On dark areas of the screen, DVI noise appears (horizontal flickers of light coming and going at random)
    Attempted Fixes:
    Unplugging the display and plugging it back in to the computer (failed)
    Restarting the computer (failed)
    Tightening the connections on the Dual-Link DVI adapter (failed)
    Sleeping the display and awaking it (failed)
    Some suggest getting a new 27" Cinema Display with native Mini Displayport/Thunderbolt support. I actually have one, but I cannot tolerate the glare on the glossy displays, so I'm "downgrading" to a 30" Cinema Display.
    Is there any remaining hope for this issue?

    I still cannot understand why you would return everything... Ultimately you want this computer right? Once the bugs on the adapter are fixed are you gonna go back and re-buy it?
    Seems like a lot of time spent out of spite and not for good reason. Me, this is the best Mac I've ever owned (and I've owned many. no, really.) and I'm happy to wait for this adapter w/ this machine in stead of going back to my other box.
    I observed a similar client of mine w/ an iPhone... after the first week, he didn't like the keyboard and a few other things, so he took it back and went back to using his Blackberry -only to dump the Blackberry again for the iPhone, because he realized that the iPhone still did more things better than the Blackberry.
    J.

  • OBIEE 11g Action Link translation issue

    Hi All,
    I have a translation issue with the Action links in OBIEE 11.1.1.5 version.
    The pop-up which is displayed on clicking the column having action link is not getting translated. This seems to be the issue with all the action links.
    All other catalog objects, captions etc are translated properly.
    Has anyone faced similar issues ? Is there a workaround for this ?
    Thanks for any pointers.

    Action links are not getting translated. I faced a similar problem in OBIEE 11.1.1.6 version.
    What you can do is replace that action link with a 'link or image' option in dashboard objects.
    'Link or Image' types of object get translated in OBIEE 11.1.1.5 as well as OBIEE 11.1.1.6 version.
    hope this helps.

  • LINKED SERVER ISSUE on ORACLE DATABASE

    Hi everyone
    I have SQL 2008 R2 Running on Windows server 2003 R2 OS.
    I have created a linked server to ORACLE 11
    I have may jobs running process against this linked server and thy work fine
    But soddenly I receive this error :
    Cannot initialize the data source object of OLE DB provider "OraOLEDB.Oracle" for linked server "WMS". [SQLSTATE 42000] (Error 7303).  The step failed
    In this scenario the SQL SERVER AGENT Account is the Domain administrator.
    When I restart the Server it begin to work fine again but from time to time I receive again the error mentioned above.
    Have any one pass through this issue?

    Is the network connection to Oracle box stable? Is it inside a firewall?
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • View Link Editor Issue - empty query clause if based on association

    JDeveloper 10.1.2
    Setup:
    - entities A and B
    - a 1 to * association from entity A to entity B (A_B_association)
    - a view of A based on entity A (AView)
    - a view of B based on entity B (BView)
    - BView has an expert mode query
    Create a view link from table A to table B:
    - choose the A_B_association under AView for the source attribute
    - choose the A_B_association under BView for the destination attribute
    - click add
    - click next
    issue: the query clause is empty
    - click next:
    info dialog pops up;
    title = "Business Components"
    message = "Restoring the default where clause."
    Note, however, that creating a view link based on the attributes works. That is, if I choose the primary key attribute under AView for the source attribute, and the corresponding foreign key attribute under BView for the destination attribute, then the wizard generates the expected query clause.
    If I create a new project and recreate the entities, the views, and the association, then I can successfully create a view link based on the association. The foreignKey value on the association end was different in the new association XML file.  I modifed the old XML file so that it used the same foreignKey element, but that did not seem to work.
    I am guessing that this is some sort of user error on my part or that we have otherwise managed to squat up our XML files.
    Any tips, hints, or ideas appreciated.
    Thanks,
    Steve

    The problem is in AView.
    We had modified the AView at one point, then reverted it to a default view of entity A. Here, "a default view" means that we undid our custom changes (apparently not thoroughly enough); that is, we did not delete it and create a default view from scratch using the contextual menu on the A entity.
    The bottom line is that the AView attributes were not being mapped to the entity -- they were showing up as calculated attributes.
    We created a "New Default View Object..." from the contextual menu of entity A, then manually corrected the AView.xml file to solve the problem.

  • Dual Link Display Issue on 30" LCD

    Can I use "Mini DisplayPort to VGA Firmware Update" to my "Mini DisplayPort to Dual-link" cable?
    Or this update is only for "Mini DisplayPort to VGA" cable?
    (update URL ; http://support.apple.com/downloads/Mini_DisplayPort_to_VGA_FirmwareUpdate)
    Now I have flickering and swaying display issue.
    (Mini DisplayPort to Dual-link cable + DELL 3007WFP 30" LCD Monitor)
    So I hope this update can be solve my problem.

    DD
    there are several threads open on this - all stem from problems with the adapter cable (MB571Z/A)
    here's one:
    Topic : Mini Displayport to Dual-Link DVI not working?
    http://discussions.apple.com/thread.jspa?messageID=9294777&#9294777
    also see the product reviews:
    http://store.apple.com/us/product/MB571
    I have the new Mac Mini and a 30" Apple Cinema Display - basically, it 'works' but there are many problems - screen blinks & resolution degrades intermittently, screen saver sometimes crashes into a scramble, and sleep sometimes becomes coma.

  • SQL Server Linked Server Issues with MVC 5

    I have 2 linked servers
    Server A = MYOB  ( custom 32 it ODBC Driver ) 
    Server B = SQL Server 64 Bit.
    They link fine using windows authentication - and I can run the following no problem in SQL Management tools ( as part of a stored proc ) . 
    DECLARE @MaxID varchar(100)DECLARE @Query varchar(MAX)
    -- Insert Sales
    SELECT @MaxID = MAX(SaleID) FROM [r2hserver\SQLexpress].artoo.dbo.MYOB_Sales
    SELECT @Query = 'INSERT [r2hserver\SQLexpress].artoo.dbo.MYOB_Sales SELECT * FROM OpenQuery(MYOB,''SELECT * FROM Sales WHERE SaleID > ' + @MaxID + ''')'
    EXEC(@Query)
    The problem is: Whenever execute the stored procedure from within a MVC 5 Web App ( EF6 )  - I get :
    Unable to start a nested transaction for OLE DB provider "SQLNCLI11" for linked server "myserver/SQLexpress". 
    A nested transaction was required because the XACT_ABORT option was set to OFF.
    and if I set XACT_ABORT ON  - I get :  Microsoft Distributed Transaction Coordinator (MS DTC) has stopped this transaction.
    I cannot figure out how to make it run!  I have turned firewalls off  and tried many different config.
    Ideas?

    Hi Marty,
    Thank you for your question. 
    I am trying to involve someone more familiar with this topic for a further look at this issue. Sometime delay might be expected from the job transferring. Your patience is greatly appreciated. 
    Thank you for your understanding and support.
    Regards,
    Charlie Liao
    TechNet Community Support

  • Not viewing links/coding issue

    I used iweb08 to design a website. It always displayed fine in any web browser (ie safari or explorer etc) and a Mac or a PC could view it. When I upgraded to iweb09 only PCs seem to be able to view the links on top of the home page and Macs cannot view the links on the homepage and therefore can't move around the site.
    I contacted the domain company (Hostess) and they gave me the following advice:
    "The problem you are having is a coding issue. You'll have to either consult the makers of the program (Apple iLife'09) or a web developer to find the best way to resolve this issue. Different browsers (Internet Explorer, Firefox, Safari) use different methods of displaying content and depending how the content is coded, you can run into problems like this where it shows up in one browser but not another."
    This would make sense to me if the PC couldn't see the links, but I don't understand why a Mac cannot view a page made on iweb and browsing in safari!
    If anyone has any advice I would be more than grateful.

    After talking to www.hostess.com.au again the problem was suddenly fixed, although they still claimed it was a "coding issue".

  • Active Directory Logon / Site Link Bridge Issue

    Dear NC,
    i have an issue with users in different Locations, to explain easyest here is a little network diagram:
    So, as one can see, i have 4 Locations, one is the Headquarter.
    The Target Goal is: Users in Location C must Logon with Domaincredentials from Sub.domain.tld from Location A.
    Location HQ, A and B are fully routed, Location C has only a route to Location B.
    Every Location has at least one writable DC with GC ans DNS Server installed.
    I have the following site links:
    HQ<>A
    HQ<>B
    A<>B
    B<>C
    and also a Site Link Bridge with "A<>B" and "B<>C".
    Unfortunatly Users cannot logon in Location C with sub.domain.tld Domaincredentials from Location A.
    Need a bit help, thx :-)
    -Bernd

    Hi Bernd,
    I am sorry that I am a little confused here, would you please clarify what do you mean by “Users in Location C must Logon with Domaincredentials from Sub.domain.tld from Location A”?
    From what I understand, you have two domains:
    domain.tld and sub.domain.tld, and you want that user accounts in
    sub.domain.tld (location A) can logon from domain.tld (location C), am I right?
    If that is your goal, please make sure the following conditions are true:
    During the logon process, specify the right domain name which is like
    @sub.domain.tld.
    The GC in location C is available to identify the appropriate Domain Controller for authentication process.
    There is no network connectivity issues between location A and C, because after GC located a DC in location A, the logon process will take place between location A and C.
    In addition, every site should have good network connectivity with at least another site to keep AD replication healthy. If there are critical errors in your HQ site, we should try
    to resolve them.
    Here is a related article below for your reference:
    What Is the Global Catalog?
    http://technet.microsoft.com/en-us/library/cc728188(v=WS.10).aspx
    Please feel free to let us know if there are any further requirements.
    Amy Wang

  • Include a link in issue tracker notification

    I have my issue tracker sending "New Issue Assignment" and "Overdue Issues for Project..." email notifications. I would also like to include a link to the related issue in the body of the message. Can you help me?

    Has anyone worked this out? I am working on this right now and am stuck. I know I need the issue_id but it is a sequence. TIA.

  • Link Manager Issue

    Hi,
    Difference in hyper link b/w managed link table & portal end.
    Eg: In managed link table there is link "http://www.abc.com" & even dlinkstate is Valid, but when i check in portal end for that link its showing hyper link as "http://www.xyz.com"
    Even i have refreshed & recomputed links from Managed links Administration page its not working.
    What should i change so that in portal it will show hyper link as "http://www.abc.com".....
    Any suggestion
    Edited by: 838623 on Sep 1, 2011 11:05 AM

    Hi
    My 2 cents on this :
    The result set is generated by IdocScript function (loadDocLinks) during page generation for LinkManager and this could be the reason why you are seeing the issue mentioned below .
    Thanks
    Srinath

  • DB-Link Performance Issues

    Hello,
    Does anyone know of any performance issues with regards to db-links? If I execute queries right on the database, they're pretty fast. When I execute them from the other server using a db-link, some queries are slow and some aren't. I can't pin-point where the problem is. I use TOAD to execute my queries on Oracle 7.
    Thank you very much.

    Hi
    When you execute statement that use tables from only one site the statement is executed on that site and you receive result. In other case the statement is executed in one site (usualy on the statement site). There are rules for optimizing distributed queries (See Oracle7 Server Tuning).
    Regards
    null

  • BT Infinity 2 Link speed issue

    Hello guys,
    It's the first time I'm posting here so I hope I'm doing everything correctly.
    I have BT Infinity 2 with the new Home Hub 5 since May. I live quite close to the cabinet, so my link speed has always been the maximum achievable (77.8/19.8). Real speed on 75/19, quite impressive.
    I have never seen any sync issues, disconnections or sync rate dropdowns. Not until today.
    This is ADSL checker for my number.
    Since about a week, I've lost about 10 mbits. These are the current BT Hub details. Looks like I've been downgraded on "Impacted".
    Is there any way to check my line and see if there are problems or stuff like these? In 3 months has been perfect!

    Hi,
    My line is stable so does not loose sync, plus I usually do not turn off the Hub overnight.
    I did that on friday night, and left it on since saturday when I woke up (very late). Nothing has changed...
    The BT Speed Test also shows an horrible upload speed, that however is not true. On Speedtest i manage to get 63/18, with a slighlty higher ping than usual. I've always managed to get 75/19 (or more)

  • Linked server issue

    Hello. It's been a while since I've worked with Oracle, and in my latest project, we're having an issue with a linked server we believe. We can log into both databases separately, we've verified that linked servers to other dbs are working, but when trying to pull information from this one particular db (wx) while in another db (sx) we're getting a timeout error. we've noticed that the dbf's are quite full in (sx) in the System and User tablespaces - but we're able to pull data from other linked dbs on this db (sx). On the other db (wx), the most full tablespace is only at 80%? Both of these dbs (sx and wx) are on the same Oracle server, so there isn't a network connection error. does anyone have any ideas on what else to check? We're using version 9i...
    Thanks!

    ORACLE_HOME is the database software install. Do you have one Oracle install on the server, or two ?
    What OS are you on ?
    To use "tnsping" you need to have $ORACLE_HOME and $PATH set. Then try to "tnsping xxxx" and see what the error is. If this fails, then check the hostname and port in the tnsnames.ora file, and compare it to the hostname and port in the listener.ora file.

Maybe you are looking for

  • Blue question marks in safari...

    I was changing around the layout of my blog and made a large image file as the header. I use firefox mostly, but I checked it on safari to see whether or not it was rendering correctly. In Firefox, the image displays fine. In Safari, the image displa

  • Can we maintain separate Profit center for each Storage location?

    Dear Friends My Org structure is like below: We have 10 profit centers, one plant and 5 storage locations. Now my requirement is these 5 storage locations belog to 5 different profit centers. Can we assign different profit center for each storage loc

  • CreateException error in UserAuthenticatorAction

    Below is my action class which acts like a client calling an entity bean. I start the jonas server, then I start my tomcate but my problem is it generates a CreateException error as I go to the login.jsp page. any ideas about the cause of the error?

  • System status _ complete

    Dear all, I've got a question concerning standard status management. Our client requirement is to have a final 'state' to the service request. In other word, when the service request is set to the user statuts 'Answered', the system status is complet

  • Packet drops caused by flapping FabricPath SSID's in MAC entries on N5K.

    Hi there, I have a strange issue in flapping MAC entries caused by ARP replies from the OTV AED for the HSRP vip address. Our Datacenter Infrastructure is build with N7K in the core with 2 VDC's, one for OTV and one for Fabricpath and vPC's. The acce