Return-Path: X-Original-To: apmail-flex-issues-archive@minotaur.apache.org Delivered-To: apmail-flex-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0DD3311DF9 for ; Fri, 15 Aug 2014 03:35:19 +0000 (UTC) Received: (qmail 1748 invoked by uid 500); 15 Aug 2014 03:35:18 -0000 Delivered-To: apmail-flex-issues-archive@flex.apache.org Received: (qmail 1331 invoked by uid 500); 15 Aug 2014 03:35:18 -0000 Mailing-List: contact issues-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list issues@flex.apache.org Received: (qmail 1318 invoked by uid 99); 15 Aug 2014 03:35:18 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Aug 2014 03:35:18 +0000 Date: Fri, 15 Aug 2014 03:35:18 +0000 (UTC) From: "Shigeru Nakagaki (JIRA)" To: issues@flex.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (FLEX-34465) When all text are selected, RIGHT key is ignored MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/FLEX-34465?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14098108#comment-14098108 ] Shigeru Nakagaki commented on FLEX-34465: ----------------------------------------- I checked source differences between 4.11 and 4.13. NavigationUtil#adjustForOversetForward() was changed. 4.11 if (range.absoluteEnd > flowComposer.damageAbsoluteStart - 1) 4.13 if (range.absoluteEnd >= flowComposer.damageAbsoluteStart - 1) This is the reason RIGHT key does not work. But I guess there are some reasons because other TLF sources are changed. > When all text are selected, RIGHT key is ignored > ------------------------------------------------ > > Key: FLEX-34465 > URL: https://issues.apache.org/jira/browse/FLEX-34465 > Project: Apache Flex > Issue Type: Bug > Components: Spark: RichEditableText > Affects Versions: Apache Flex 4.13.0 > Environment: Windows 64bit Japanese, AIR14 > Reporter: Shigeru Nakagaki > Priority: Critical > > Case 1: > 1. Input some text into s:TextInput. > 2. select all text > 3. press RIGHT key > in Flex SDK 4.11 > it deselects text-selection. > in Flex SDK 4.13 > it does not deselect text-selection. > > Case 2 (Critical): > 1. Input some text into s:TextInput. > 2. set a cursor at right edge > 3. press HOME key with SHIFT key > 3. press RIGHT key with SHIFT key > in Flex SDK 4.11 > Cursor moves right. > in Flex SDK 4.13 > Cursor does not move! -- This message was sent by Atlassian JIRA (v6.2#6252)