Maddening bug: Textbox weirdness on Large Nudge command

I'm having this problem in Fireworks CS4 on both Mac (brand
new MacBook Pro) and Windows (Brand new Vista from Dell).
This happens very frequently, on all sorts of files. The best
way to explain is to post pictures:
A: Text object
that needs to be moved.
I press the keyboard commands for Large Nudge Left [also
happens with up, down, and right], and I get something like this:
B: Bounding
box has moved, but text is offset within bounding box and is in the
wrong place
This is making me crazy. It makes it really hard to get work
accomplished quickly. The only way to "repair" is to edit within
the text box, which then realigns the boundary with the edge of the
text, which was in the wrong place anyway.
The text usually seems to be 10 pixels off (one nudge-unit)
when I do this. Sometimes it's way more than that. This also
happens when I nudge a group of items -- the text boundary will get
messed up and then I have to ungroup and fiddle with
everything.

Any updates on this, I have the same problem, it is really
unproductive and annoying.

Similar Messages

  • BUG: Last Image of Large Number Being Moved fails

    This has happened several times in organizing some folders.  Moving over 100 images at a time, it seems that one image near the end fails - I get the screen that Lightroom can't move the image right now.  It's always just one image.  I can move it on it's own just a second later and it works just fine.
    While the Move operation is being fixed, consider that it could go way faster than it does now if the screen didn't have to be refreshed after each file has been moved.  I can see the value of the refresh if it's just a few images being moved, but for a large number, the refresh isn't helpful anyhow.
    Paul Wasserman

    I posted on this last week, and apparently a number of people have experienced this.
    http://forums.adobe.com/thread/690900
    Please report it on this bug report site so that it gets to the developers' attention sooner:
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    Bob

  • How do I submit a bug? (Firefox blocks bluetooth headset commands.)

    I am using a Samsung Epic with Froyo 2.2.1, and a Sony MW600 playing mp3s with "Just Playlists Plus". Everything works as it should until I open firefox. It seeps like Firefox is capturing the pause, skip, etc. commands from the headset and not passing them on to the OS.

    Read Bug writing Guidelines
    https://developer.mozilla.org/en/Bug_writing_guidelines

  • Bug on section:xdofo:blank-on command resulting to extra page?

    Hi,
    I've used the following commands to do page rendering/ duplex printing (which is ok) but is getting an extra page ? Any idea why?
    <?section:force-page-count;'end-on-even-layout'?><?section:xdofo:blank-on;'even-skip-page-count'?>
    I've already tried minimizing the spaces but still get the same result... is it a bug?
    Thanks,
    Rownald

    In addition, we have applied patch#6416280, which supposed to fix such bug, but still get the extra page. Has this bug been solved in XML Publisher 5.6.3 (Oracle Applications 11.5.10.2)?
    Any idea please?
    Thanks,
    Rownald

  • WinRT bug report - ListView with large dataset being clipped

    I think I've found a bug in the Windows store (WinRT 8.1) version of the ListView (I've not tried on windows phone).
    When I create a page with a ListView and bind it to an ItemsSource with many items I find that as I start to scroll through these items the rendered ListViewItems will suddenly disappear as if they are hidden behind another control.
    I have created a simple example to demonstrate the issue.  Create a blank Universal app and replace the contents of the MainPage.xaml and MainPage.xaml.cs of the Win8 app with the code below.  Build and run the code and use the mouse to drag the
    scrollbar handle down to item 41351 and you will see that all items after that are not displayed.
    This looks like a bug to me but what does everyone else think?
    Does anyone know of a work-around?
    MainPage.xaml
    <Page
    x:Class="WinRTListViewClipping.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:WinRTListViewClipping"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    x:Name="Root">
    <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
    <ListView ItemsSource="{Binding Items}"/>
    </Grid>
    </Page>
    MainPage.xaml.cs
    using System;
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using System.Runtime.InteropServices.WindowsRuntime;
    using Windows.Foundation;
    using Windows.Foundation.Collections;
    using Windows.UI.Xaml;
    using Windows.UI.Xaml.Controls;
    using Windows.UI.Xaml.Controls.Primitives;
    using Windows.UI.Xaml.Data;
    using Windows.UI.Xaml.Input;
    using Windows.UI.Xaml.Media;
    using Windows.UI.Xaml.Navigation;
    // The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238
    namespace WinRTListViewClipping
    /// <summary>
    /// An empty page that can be used on its own or navigated to within a Frame.
    /// </summary>
    public sealed partial class MainPage : Page
    public static readonly DependencyProperty ItemsProperty =
    DependencyProperty.Register(
    "Items",
    typeof(List<string>),
    typeof(MainPage),
    new PropertyMetadata(new List<string>()));
    public List<string> Items
    get { return (List<string>)GetValue(ItemsProperty); }
    set { SetValue(ItemsProperty, value); }
    public MainPage()
    DataContext = this;
    for (int idx = 0; idx < 100000; idx++)
    Items.Add("Item: " + idx.ToString());
    this.InitializeComponent();

    I've noticed an annoying feature of the WinRT ListView and I've created a simple example to demonstrate the problem.
    With the ListView I'm experiencing unwanted clipping where a lot of items are displayed.  In the following example the ListView works fine on the first 41350 items but after that you cannot see them.  They still seem to be there because you can
    move the focus using the cursor keys, but you just cannot see them.
    Does anyone know why this happens and if there's a work around or fix for it?
    Windows Store Example - XAML
    <Page
    x:Class="WinRTListViewClipping.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:WinRTListViewClipping"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    x:Name="Root">
    <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
    <ListView ItemsSource="{Binding Items}"/>
    </Grid>
    </Page>
    Windows Store Example - Code Behind
    using System;
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using System.Runtime.InteropServices.WindowsRuntime;
    using Windows.Foundation;
    using Windows.Foundation.Collections;
    using Windows.UI.Xaml;
    using Windows.UI.Xaml.Controls;
    using Windows.UI.Xaml.Controls.Primitives;
    using Windows.UI.Xaml.Data;
    using Windows.UI.Xaml.Input;
    using Windows.UI.Xaml.Media;
    using Windows.UI.Xaml.Navigation;
    // The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238
    namespace WinRTListViewClipping
    /// <summary>
    /// An empty page that can be used on its own or navigated to within a Frame.
    /// </summary>
    public sealed partial class MainPage : Page
    public static readonly DependencyProperty ItemsProperty =
    DependencyProperty.Register(
    "Items",
    typeof(List<string>),
    typeof(MainPage),
    new PropertyMetadata(new List<string>()));
    public List<string> Items
    get { return (List<string>)GetValue(ItemsProperty); }
    set { SetValue(ItemsProperty, value); }
    public MainPage()
    DataContext = this;
    for (int idx = 0; idx < 100000; idx++)
    Items.Add("Item: " + idx.ToString());
    this.InitializeComponent();

  • Reboot unsuccessful after a stalled, large trash command

    Editing a video, I was alerted to not have enough disc space to perform a simple function.  Tired of getting this notice often, I decided to purge my MacBook Pro of unwanted space-hogging elements.  I went through the entire collection of the computers' items, ofter trashing files I did not recognize.  When I ordered a "Empty Trash:" command it began deleting what it said were over 3,000 items.  At one point it noted I could not continue because of some strange file I'd never heard of "still being used.".  Not knowing what that file was, nor do I now recall its name, I chose to engage the command "Secure Empty Trash", not knowing what the **** that meant either.  It seemed to reignite the trashing process.  Then it stalled at about 20% completion.  Hit "Restart" and guess what... no reboot.  Did I throw out the baby with the bathwater?  Attempt to reboot by holding down Shift upon chime didn't work.
       I'll welcome any advice to get back to where my entire life is waiting to be awakened.
    Thanks in advance for any help.
    Gerald 102

    Alas.  It's a day later and I'm still without my MacBook Pro. (Read: all my business and personal records)  I retrieved my Snow Leopard OSX installation disc and I've spent the last four hours trying to get the system working.  No luck.  I ran a repair on the HD which was succesful and proceeded to install the OS.  After whirring around for almost an hour each time, the farthest point I reached after four attempts was "17 minutes to go."  Then, the same sad report:  "Install Failed - MacOS X could not be installed on your computer.  The installer encountered an error that caused the installation to fail."
       I'll eagerly welcome any suggestions at this point.  My limited mental ability with computers suggests my next best move is to visit the "Genius Bar."  Any thoughts? 
    Gerald 102

  • New 7.2 bug - Trying to undo "Snip Time" command

    Hi- anyone else experience this - trying to "undo" a "snip time and move by locators" in the arr. window seems broken in 7.2 - I'm in the same project I was working on in 7.1 and have discovered trying to undo this action doesn't work in 7.2 ....

    yeah, thanks- I've already read those - Unfortuantely most of my work isn't done from 'autoload' type files - I typically work from templates from other scores that are very complex -
    I was glad to see I could transfer environment windows and complete audio config. from the 'old' corrupt file to the 'new' and still have a stable new file. The only thing that didn't transfer properly was the audio instruments (as part of an 'audio cofic copy), so I saved those as individual channel strips and opened them in the 'new' fixed file- Actually they did 'transfer' but the resulting 'new' file had the same corruptions as the 'old.'
    I'm just going to have to bite the bullet and systematically rebuild all of my various project files as 'new' fixed templates for the various setups etc - hopefully it will help with a myriad of other 'undo' bugs I've been dealing with as well. (esp. in the score notation window).

  • Bug in 10: Command 2 no longer works

    This is an annoying bug... I use command 2 for most video playback, as I find that playback at double resolution is a good viewing size on a large screen.
    Command 2 has worked for years, and it still works when viewing video from within iTunes. Using the new Command + to slowly increment size is much more inconvenient.

    I don't want to do either of those things...
    This is a UI inconsistency - every other video playback utility (pro, QT9, VLC, iTunes, DVD player) uses command 2 for double size.

  • "Open with External Editor" command bug?

    Seems to be a bug with "open with external editor" command. If I try it just after Aperture has been opened, it usually works (sometimes not). And then after a couple of photos being edited in photoshop, it sometimes stops working. When I try it, it simply gives me SBBOD for a few seconds (which it does when it's working as well), and then nothing happens. No new master created in Aperture, and nothing in Photoshop. If I restart the program, it usually takes care of the problem, and it will work again for a bit. Sometimes restarting the program doesn't even work, and I have to reboot. Very strange.
    Any one else getting this? Any ideas?
    I'm using 1.1.1 and Photoshop CS2.
    powerbook G4 1.5 Ghz   Mac OS X (10.4.6)   2 GB RAM, ATI Radeon 9700 (64MB VRAM), 80 GB ATA HD (5400rpm)

    Anyone out there? No one else experiencig this "bug"?
    Help, please.

  • Help Improve Premiere!  FR: Option for "Nudge Clip Selection Up/Down" commands...

    IF you've ever used the new nudge commands in PP CC to move video clips up or down a track, only to discover that their associated audio clips moved together by mistake...
    and IF you've been dumbfounded by the fact that nudging a video clip UP a track number (e.g. V1 to V2) makes it's associated audio clip move DOWN a track number rather than UP a track in unison (e.g. A2 to A1)...
    ...Then this feature request is for you!
    While some users might like the current behavior of these shortcuts, whereby selected video and audio clips are always nudged together in Opposite directions (Video nudged up a track = audio nudged down a track, and vice versa?!?), other users like myself don't!  When I nudge video clips, I only want the video to move, not the audio, regardless of if the audio portions are also selected or not.  If the clips I want to nudge are already selected with both video and audio, I don't want to have to take the extra step to reselect their video portions using the Alt-modifier before nudging.
    Since different users require different workflows, how about Adobe let us the users decide if we want the new nudge shortcuts to work on just one or both portions of selected clips at a time?
    Here's my official FR for this.  Please copy/paste as your own FR or use it as a model for a request of your own.  Every voice counts so if you agree that choice and logic is better, please let your voice be heard by Adobe!
    *******Enhancement / FMR*********
    Brief title for your desired feature: Option for "Nudge Clip Selection Up/Down" commands to only nudge Video or Audio at a time
    How would you like the feature to work? 
    99% of the time I want to nudge video clips, I don't want their associated audio to move together.  Of course users can Alt-select video clips, but this adds an extra keystroke and also an extra step if clips with audio were already selected.
    A new checkbox option in the Preferences window could make these new commands much better, i.e.:  'Nudge Clip Selection Up/Down' shortcuts nudge both video and audio.
    If checked, the behavior would be the same as it currently is, with the IMPORTANT EXCEPTION that video/audio clips would nudge in the Same LOGICAL Direction! (i.e Video nudged UP a track, V1toV2 = Audio nudged UP from A1toA2).
    If UNchecked, using the commands on selected video clips with audio would only nudge the video portion while the cursor/mouse pointer is over any video track, and would only nudge the audio portion while the cursor is over any audio track.  This would make it very easy for users to decide on a case by case basis what gets nudged, only the video or only the audio.  Since 100% of the time a user lasso selects video clips, the cursor is already over the videos tracks, this solution would not require any additional steps for moving the cursor prior to nudging.  Ditto for audio.
    Why is this feature important to you?
    These new nudge shortcuts are a great idea but with a bad implementation that leads to extra keystrokes, steps and mistakes.  Giving users the option of how they want these new commands to work, and making them work logically (i.e. Video up a track = Audio up a track) would be the best way to address everyone's needs and workflow requirements!
    The idea behind these new shortcuts is great and a welcome addition to Premiere CC.  Unfortunately, the implementation is God-awful.  Please send FRs of your own to help this get fixed asap!

    Agreed, the term 'nudge' is technically incorrect and therefore confusing.
    Dictionary.com's definition of nudge:
    verb (used with object)
    1. to push slightly or gently, especially with the elbow, to get someone's attention, prod someone into action, etc.
    So to 'nudge' a clip up would be to move it up just 'slightly', not all the way up to the next track.  'Move to Higher/Lower Track' makes a lot more sense.
    Jim, you say 'That is the way it should work'.  If that's the way that works best for your workflow, great!  For me, the way it should work is the way described in my FR.  That's why I'm such a big proponent of Adobe giving us choices to decide what works best for our own workflows, so we can all be happy.
    Please feel free to forward this FR to Adobe, if for nothing else, so that clips move up/down in the relative, not absolute sense as you aptly point out.

  • First iTunes 7 bug?

    I have just upgraded to iTunes 7 and tested the new Get Album Artwork command. I have an iTunes store account on the UK iTMS store. The album I used for testing is ¨The Greatest Hits - Why Try Harder?¨ by Fatboy Slim [UK edition]. Despite the fact that the UK iTMS store shows the correct artwork (for the UK edition of the album) and despite the fact that the link from the album in iTunes goes to that correct album on the UK iTMS store and despite the fact my login is set to use the UK store, the Get Album Artwork command actually downloaded the US edition artwork and not the UK edition.
    The URL for the correct UK edition is http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?id=155936130&s=14344 4
    The URL for the INCORRECT US edition is http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?id=158138249&s=14344 1
    Either it should download the correct artwork or it should let a user choose if there is more than one possibility.
    Unfortunately this looks like yet another example of Americans forgetting the rest of the world exists.
    I also note (this is not really a bug) that the Get Album Art command runs through your entire library even if you only have a single album selected. Users with much larger collections than me will probably find this painfully slow as a result. Fortunately I had already laboriously searched for and applied correct UK artwork to all my other albums and iTunes correctly left them alone rather than replacing them with more incorrect US versions.

    If you look at the download button it should say "Download iTUnes 7.0.1" which is the currect version. To see what version you have installed NOW goto Help>About in itunes.
    The first version of itunes & releast was 7.0.0.70
    The latest bersion is 7.0.1,8

  • Keyboard shortcut in photoshop giving dual command

    Hey All,
    Using the new alum. wireless k-board. Seems to work great except one bug. In Photoshop, a common used keyboard command of commandoption0 for a full size view of a image is not only enlarging the image to full size (as it should) but is also giving a 'nudge' command. If you have more than one layer created on a image, it will nudge the selected layer one pixel, often without you knowing and really screw you up affter you have continued to work on you image.
    My apple wired keyboard does not do this. Is it a keyboard bug, or some mapping going on?
    thanks,

    Turn off the ALL CAPS option in the character palette that you forgot about turning on...

  • Workaround for JSFL shape selection bug?

    There seems to be a bug in the document selection reporting in JSFL in  CS4 (haven't tested earlier versions).  I submitted it as a bug to Adobe  but I'd really like to find a workaround for it.  I've included my bug  report below.  Has anyone else encountered this?  If so, have you  figured out a workaround?  It's pretty annoying, making the tool I'm  working on really difficult to manage.
    ******BUG******
    After performing a publish preview, fl.getDocumentDOM().selection  reports an incorrect selection of raw shapes.
    Steps to reproduce bug:
    1. Create a JSFL command with the following contents:
    doc = fl.getDocumentDOM();
    fl.trace("there are " + doc.selection.length + " items selected");
    2. Start the authoring environment fresh, with a new document.
    3. Draw several shapes on the stage, not touching each other, all in  the same frame and layer.
    4. Select one of those shapes but leave the others unselected.
    5. Run the previously created JSFL command.  It will send the following  text to the output panel, as one would expect:
    "there are 1 items selected"
    6. Do a publish preview (either Flash or HTML).
    7. When it comes up, close the preview window.
    8. Deselect all and then select one of the shapes (again, keeping the  others unselected).
    9. Run the JSFL command again.  This time, it will say that there are n  items selected (where n is the number of shapes you drew in step 3).   So if you drew three shapes, it will print out the following:
    there are 3 items selected
    Note that this result will be the same even if you go to a different  document, do a publish preview on that document, then return to the  original.  It seems that simply doing a publish preview alters Flash's  state to report the selection incorrectly.
    Results: The JSFL command reports that all the shapes are selected,  despite the fact that only one of them is.  The only way I've found to  get Flash back to its normal behavior is to restart the authoring  environment.
    Expected results: In the steps above, the JSFL command should always  print out that there is one element selected.  There's no reason that  doing a publish preview should change that.

    When selected all shapes in selection are treated as one. You can see it if you run this script with selected multiple shapes:
    fl.trace( fl.getDocumentDOM().selection[0].contours.length );
    It will output you twise bigger number then selected shapes (because each Shape has two contours - one clockwise, other counterclockwise).
    Of course this. implementation is strange for me too. Thats how i found your post

  • Is this a bug in the header?

    I searched the forum for something on this, but I couldn't find anything. Here are the steps to recreate the problem:
    1) Create a Welcome page.
    2) Select "Show Layout" from the View Menu.
    3) On the Page palette of the Inspector, create a 200 pixel header.
    4) Place the Title text box in the header.
    5) Try to move it out of the header.
    It seems that objects get "stuck" in the header, at least for me. I'm hoping I did something wrong because I will have to scrap some pages if not. The real problem is not the getting permanent items, like the Title text box, stuck in the header, but an associated bug. I have found that text boxes in the body of the page now add extra blank space at the bottom of the text box, dependent upon the number of paragraphs. Having no header, or having it free of certain objects, solves this problem.
    Could someone else try this before I report it as a bug?

    Charles
    Press the Apple (Command) key while you are dragging the Title Box out of the header.
    Will

  • Linking multiple textboxes in a form Acrobat Pro 9?

    Hi all,
    I'm making an electronic form with Acrobat Pro 9.
    The setup was made in Indesign CS3 after which the form boxes were detected by Acrobat Pro 9. There is a larger text area which consists of multiple lines of text (to be filled in by the user).
    For this area there are 2 options:
    1- Have multiple textboxes linked together so the text flows to the next box automatically when the current one is full.
    or.
    2- Have 1 multiline textbox with a larger linespacing.
    The problem with 1 is, I can't seem to link multiple boxes together in Acrobat Pro 9. The problem with 2 is, I have no idea how to increase the linespacing.
    Does anybody have any idea how to accomplish either 1 or 2?
    Thanks in advance,
    Bas

    Linking the text boxes is not really possible, at least in a seamless manner. I've seen a few approaches using JavaScript, but none that are very well implemented. My usual suggestion is to redesign the form to get rid of the lines and just use a single multiline text box, perhaps with a faint border to indicate to the user where the field is.
    If you need the lines because the form might be printed and filled by hand or some other means, then you can set up the field with a bit of JavaScript to set the background color to white if the user enters any text, and transparent otherwise. That way, when the document is printed, the lines won't appear if any text is entered, but will if not. You will not need to be concerned about the line spacing of the field matching up with the lines.
    George

Maybe you are looking for