Page 1 of 1

cursor in StyledText field misbehaving

PostPosted: Tue Sep 08, 2015 7:24 pm
by Stefan Ihringer
Fusion 8 beta 1 on MacOS 10.9.5:

I've added character level styling to a Text+ tool's styled text field and I'm viewing the tool in a viewer.

Whenever I type a character into the text field, the cursor jumps back to position 1 so I'm basically typing in reverse...

Here's a copy of the tool:

Code: Select all
{
   Tools = ordered() {
      Text2 = TextPlus {
         CtrlWZoom = false,
         Inputs = {
            Width = Input { Value = 1920, },
            Height = Input { Value = 1080, },
            ["Gamut.SLogVersion"] = Input { Value = FuID { "SLog2", }, },
            Font = Input { Value = "Arial", },
            StyledText = Input {
               SourceOp = "CharacterLevelStyling2",
               Source = "StyledText",
            },
            Style = Input { Value = "Bold", },
            ManualFontKerningPlacement = Input {
               Value = StyledText {
                  Array = {
                  },
                  Value = "",
               },
            },
            ShadingGradient1 = Input {
               Value = Gradient {
                  Colors = {
                     [0] = { 0, 0, 0, 1, },
                     [1] = { 1, 1, 1, 1, },
                  },
               },
            },
         },
         ViewInfo = OperatorInfo { Pos = { 327, 15, }, },
      },
      CharacterLevelStyling2 = StyledTextCLS {
         Inputs = {
            Font = Input { Value = "Arial", },
            Style = Input { Value = "Bold", },
            Text = Input {
               Value = StyledText {
                  Array = {
                  },
                  Value = "noisuF",
               },
            },
            RightClickHereToAnimateCharacterLevelStyling = Input {
               Value = StyledText {
                  Array = {
                  },
                  Value = "",
               },
            },
         },
      },
   },
   ActiveTool = "Text2",
}