Text-wrap problem ID CS3 on Intel Mac

I've recently been upgraded to an Intel Mac workstation running Leopard and for the most part, the transition has been smooth.  However, I just noticed today that I cannot get "detect edges" to work on a text wrap around an object with a transparent background in a placed Photoshop file.  The detect edges only works if I have a white background.  I've never had this problem before, so I wonder if it's a result of my new computer.  I use this function of text wrap constantly, and I'm hoping someone knows if this is a known bug and if there is a work around.

You don´t have to use detect edges feature for extracted PSD-image.... just select a proper Contour Options Type, Alpha Channel for instance.

Similar Messages

  • Problems with Safari, Acrobat, Intel Macs, and Life Cycle Form Mgr.

    Here is my problem:
    A Mac user using 10.4.10, with Acrobat Standard Ed v.7.0.9 installed,
    is having to approve purchase forms through Adober Life Cycle Form Manager
    through Safari 2.0.4. When trying to approve the PDF forms, it tells her
    she needs to have Acrobat v.7 installed, and only shows a white page.
    Went back and launched Acrobat 7.0.9, and did the "Detect and Repair"
    setting to verify the Adobe PDFViewer plugin was installed.
    Said it was, checked the Library/Internet Plugins folder and it was.
    Launched Safari, Safari's list of plug-ins does not show it as being installed.
    Trashed the Safari .plist file, relaunched Safari, same thing.
    Read on the Apple site that people were experiencing similar issues,
    Read on Adobe's site that for Intel Macs, should be using v. 8.01.
    Downloaded the 8.01 Acrobat Reader and installed it.
    re-launched Safari, success, it says the plugin, v.8.01 is installed.
    Go back to Adobe Life Cycle Forms Manager, go to view a PDF,
    at 100% screen size, PDF shows correctly. Zoom in on details,
    PDF goes blank, will not show details. Zoom back out,
    PDF goes white page, no info displayed.
    My Questions:
    1. is it an issue with Adobe Life Cycle Forms Manager and Safari on Intel Macs?
    2. Is there a way to get a proper plug in for Safari, so that Acrobat will read the PDFs
    instead of the default Preview?
    thanks in Advance

    bump
    anybody running ALCFM and Acrobat 8 with an Intel Mac,
    are you running into issues with approval of PDF forms?

  • How to solve text wrapping problem in grid

    I have create a simple ui with grid  and contains a long paragraph text. However the text will not break line to another paragraph and expand the UI width.
    BView.xaml
    <UserControl x:Class="SimpleUI.Views.BView"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:resources="clr-namespace:SimpleUI.Properties"
    xmlns:view="clr-namespace:SimpleUI.Views"
    mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="300">
    <Grid>
    <Grid.RowDefinitions>
    <RowDefinition Height="Auto" />
    </Grid.RowDefinitions>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="Auto" />
    <ColumnDefinition Width="5" />
    <ColumnDefinition Width="Auto" />
    </Grid.ColumnDefinitions>
    <GroupBox Grid.Column="0" Grid.Row="0" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Header="{x:Static resources:Resources.Course}">
    <Grid>
    <Grid.RowDefinitions>
    <RowDefinition Height="10" />
    <RowDefinition Height="Auto" />
    <RowDefinition Height="10" />
    <RowDefinition Height="Auto" />
    <RowDefinition Height="10" />
    <RowDefinition Height="Auto" />
    </Grid.RowDefinitions>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width=".2*"/>
    <ColumnDefinition Width="2" />
    <ColumnDefinition Width=".2*"/>
    <ColumnDefinition Width="2" />
    <ColumnDefinition Width=".2*"/>
    <ColumnDefinition Width="2" />
    </Grid.ColumnDefinitions>
    <UniformGrid Grid.Column="0" Grid.Row="1" Columns="2" Grid.ColumnSpan="6" HorizontalAlignment="Center" VerticalAlignment="Center">
    <RadioButton Margin="0, 0, 10, 0" GroupName="ClassType" Content="{x:Static resources:Resources.ClassA}" />
    <RadioButton Margin="0, 0, 10, 0" GroupName="ClassType" Content="{x:Static resources:Resources.ClassB}" />
    </UniformGrid>
    <Border Grid.Column="0" Grid.Row="3" Grid.ColumnSpan="6" BorderThickness="1" Padding="9" BorderBrush="LightGray">
    <Grid>
    <Grid.RowDefinitions>
    <RowDefinition Height="Auto"/>
    <RowDefinition Height="10" />
    <RowDefinition Height="Auto"/>
    <RowDefinition Height="10" />
    <RowDefinition Height="Auto"/>
    <RowDefinition Height="2" />
    </Grid.RowDefinitions>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width=".3*" />
    <ColumnDefinition Width="10"/>
    <ColumnDefinition Width=".25*" />
    <ColumnDefinition Width="10"/>
    <ColumnDefinition Width=".25*" />
    </Grid.ColumnDefinitions>
    <TextBlock Grid.Column="0" Grid.Row="0" Text="{x:Static resources:Resources.MaterialA}" />
    <TextBox Grid.Column="2" Grid.Row="0" Width="120" />
    <ComboBox Grid.Column="4" Grid.Row="0" Width="120"/>
    <TextBlock Grid.Column="0" Grid.Row="2" Text="{x:Static resources:Resources.MaterialB}" />
    <TextBox Grid.Column="2" Grid.Row="2" Width="120" />
    <ComboBox Grid.Column="4" Grid.Row="2" Width="120" />
    <TextBlock Grid.Column="0" Grid.Row="4" Text="{x:Static resources:Resources.MaterialC}" />
    <TextBox Grid.Column="2" Grid.Row="4" Width="120" />
    <ComboBox Grid.Column="4" Grid.Row="4" Width="120" />
    </Grid>
    </Border>
    <view:MessageView Grid.Column="0" Grid.Row="5" />
    </Grid>
    </GroupBox>
    </Grid>
    </UserControl>
    MessageView.xaml
    <UserControl x:Class="SimpleUI.Views.MessageView"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:resources="clr-namespace:SimpleUI.Properties"
    mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="300">
    <Grid>
    <Grid.RowDefinitions>
    <RowDefinition Height="Auto" />
    <RowDefinition Height="10" />
    <RowDefinition Height="Auto" />
    </Grid.RowDefinitions>
    <TextBlock Grid.Row="0" Text="{x:Static resources:Resources.Error}" TextTrimming="None" FontWeight="UltraBold" />
    <TextBlock Grid.Row="2" Text="{x:Static resources:Resources.ErrorDescription}" TextAlignment="Justify" TextWrapping="Wrap" VerticalAlignment="Center" />
    </Grid>
    </UserControl>
    MainWindow.xaml
    <UserControl x:Class="SimpleUI.Views.MessageView"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:resources="clr-namespace:SimpleUI.Properties"
    mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="300">
    <Grid>
    <Grid.RowDefinitions>
    <RowDefinition Height="Auto" />
    <RowDefinition Height="10" />
    <RowDefinition Height="Auto" />
    </Grid.RowDefinitions>
    <TextBlock Grid.Row="0" Text="{x:Static resources:Resources.Error}" TextTrimming="None" FontWeight="UltraBold" />
    <TextBlock Grid.Row="2" Text="{x:Static resources:Resources.ErrorDescription}" TextAlignment="Justify" TextWrapping="Wrap" VerticalAlignment="Center" />
    </Grid>
    </UserControl>
    Target Result
    Download Sample Project

    Here is updated code for BView.xaml. It will fix the problem
    <UserControl x:Class="SimpleUI.Views.BView"
                 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
                 xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
                 xmlns:resources="clr-namespace:SimpleUI.Properties"
                 xmlns:view="clr-namespace:SimpleUI.Views">
        <GroupBox Header="{x:Static resources:Resources.Course}">
            <Grid>
                <Grid.RowDefinitions>
                    <RowDefinition Height="10" />
                    <RowDefinition Height="Auto" />
                    <RowDefinition Height="10" />
                    <RowDefinition Height="Auto" />
                    <RowDefinition Height="10" />
                    <RowDefinition Height="Auto" />
                </Grid.RowDefinitions>
                <UniformGrid Grid.Row="1"
                             Columns="2"
                             HorizontalAlignment="Center"
                             VerticalAlignment="Center">
                    <RadioButton Margin="0, 0, 10, 0"
                                 GroupName="ClassType"
                                 Content="{x:Static resources:Resources.ClassA}" />
                    <RadioButton Margin="0, 0, 10, 0"
                                 GroupName="ClassType"
                                 Content="{x:Static resources:Resources.ClassB}" />
                </UniformGrid>
                <Border Grid.Row="3"
                        BorderThickness="1"
                        Padding="9"
                        BorderBrush="LightGray">
                    <Grid>
                        <Grid.RowDefinitions>
                            <RowDefinition Height="Auto" />
                            <RowDefinition Height="10" />
                            <RowDefinition Height="Auto" />
                            <RowDefinition Height="10" />
                            <RowDefinition Height="Auto" />
                            <RowDefinition Height="2" />
                        </Grid.RowDefinitions>
                        <Grid.ColumnDefinitions>
                            <ColumnDefinition Width="*" />
                            <ColumnDefinition Width="10" />
                            <ColumnDefinition Width="*" />
                            <ColumnDefinition Width="10" />
                            <ColumnDefinition Width="*" />
                        </Grid.ColumnDefinitions>
                        <TextBlock Grid.Column="0"
                                   Grid.Row="0"
                                   Text="{x:Static resources:Resources.MaterialA}" />
                        <TextBox Grid.Column="2"
                                 Grid.Row="0"
                                 Width="120" />
                        <ComboBox Grid.Column="4"
                                  Grid.Row="0"
                                  Width="120" />
                        <TextBlock Grid.Column="0"
                                   Grid.Row="2"
                                   Text="{x:Static resources:Resources.MaterialB}" />
                        <TextBox Grid.Column="2"
                                 Grid.Row="2"
                                 Width="120" />
                        <ComboBox Grid.Column="4"
                                  Grid.Row="2"
                                  Width="120" />
                        <TextBlock Grid.Column="0"
                                   Grid.Row="4"
                                   Text="{x:Static resources:Resources.MaterialC}" />
                        <TextBox Grid.Column="2"
                                 Grid.Row="4"
                                 Width="120" />
                        <ComboBox Grid.Column="4"
                                  Grid.Row="4"
                                  Width="120" />
                    </Grid>
                </Border>
                <view:MessageView Grid.Row="5" />
            </Grid>
        </GroupBox>
    </UserControl>

  • Text Wrap Problems

    Hello,
    I am new to InDesign, and am doing a trial for work. I am trying to create a flyer which involves wrapping text around a background image. I have followed instructions found online but cannot get any further that 'wrap text around image' as for some reason I cannot click on the 'contour options' drop down to select 'detect edges'.
    I am trying to wrap the text around the leaves on the right hand side.
    Any help would be great, thank you!

    i am wondering if it could be something to do with the fact that I had to draw a rectangle over the part of the image I wanted to wrap the text around and work from this? I tried to following the instructions without the rectangle, selecting the whole leaf image, but when I selected 'wrap text around image' the text just vanished!

  • Need Help: PS CS3 on Intel Mac 10 .4.9 Cannot Open Any Files

    CS3 has been very stable for me. All of a sudden it will not open any type of file. I get a spinning beach ball and need to force quit. I get the "Photoshop Not Responding" message in the Force Quit Window.
    I've tried to open my own PS-made JPEGs and my own .PSD files with no luck. Happens whether I double click file or use open dialog. Tried files on different drives as well.
    I've repaired permissions on the boot disk but no luck. I've got Disk warrior but I'm at work and it is home.
    Any suggestions? I need to get a project finished here today.
    TIA
    Joe

    I am able to set up a new account and work but even after deleting all preferences the problem persists in my admin account.
    I'll try to look for any font corruption and clear font cache but having to reinstall the OS is a real drag. Not sure why PS should corrupt the OS, itself.
    Any chance I can uninstall and remove PS then install again?

  • Mighty Mouse problem with duo core intel mac mini & 26" LCD/TV display

    I have an Olevia 26" LCD/TV display connected to my Intel Duo core mac mini and I have been using a Mighty Mouse with it from the start but all of a sudden the mouse pointer will not come out of the upper right corner. It moves out a little and then pops back into the corner.
    I connected the Mighty Mouse to my g4 PowerBook and it tracks and scrolls fine. I've also cleaned it and tried it on a solid, dark service while connected to the mac mini and those things don't help either.
    Any suggestions anyone. I've been using the Mighty Mouse for months and I love especially the ability to scroll horizonitally as I use Final Cut Pro and that features is GREAT in the timeline window.
    I can't seem to find anything here in the discussions specifcally with this issue so any guidance would be appreciated!

    hi there--
    if all is fine on the install disk, run disk repair http://docs.info.apple.com/article.html?artnum=302672. if not, i would reset the open firmware. do this by holding apple-option-o-f on keyboard while you start up and you get a screen that says "welcome to open firmware". type in following commands, without quotations-- "reset-nvram" (hit return) and "reset-all" (hit return). second command restarts the computer. good luck.[:)]

  • DW CS3 on Intel Mac running slow

    I saw that there were some technotes on this. It said
    external images might be causing the issue, but I have none of
    those. Everything I have is pretty simple. One images and a number
    of divs.
    I also saw this technote and that might be my issue.
    http://www.adobe.com/go/tn_16104
    But it did not tell my how to modify the files in those
    locations or what they are called. So I don't know what to do. Can
    someone help me?
    Could this be something else? I have had this issue in the
    past and it went away after a while.
    Any help would be greatly appreciated!
    Brian

    do you have more then one hard drive, or an external hard
    drive setup that you are using for time machine? you'll notice when
    you first boot up, all of the connected drives will be indexed so
    when you do a search for an item it not only scans your main drive,
    but any device attached to the computer (pretty cool actually).
    this can cause slow performance.
    also, did you buy a computer that had leopard pre installed,
    or did you upgrade? if you upgraded, did you do an erase and
    install? upgrade install is asking for trouble anytime you change
    OSs, and although this may or may not be the issue, it's at least
    food for thought.
    Do you have programs running that are not necessary, like
    virus software? To be frank, it's pointless unless you want to save
    your fellow PC so turn that off.
    Have you run disk utility lately to repair permissions? You
    really should make this part of your routine after every update or
    install.
    I have mac and cs3... no issues.

  • Intel Macs & G5s: Problems when moving projects between them

    An earlier post* suggesting complete compatibility between the latest FCP in a G5 and in an Intel Mac may be in error.
    We are experiencing continuing crashes using our Intel Mac when we work on projects that were originally either imported or partially rendered in the G5.
    It has gotten to the point where we feel we must keep projects completely isolated from each other: Either it is a "G5 project" or it is an "Intel Mac" project. Moving projects back and forth between the two leads to problems such as:
    The Intel Mac does not recognize any renders done in the G5...
    The Intel Mac crashes when rendering 'G5' projects...
    The Intel mac crashes when compressor goes to work to export sequences to mpeg...
    The G5 works fine with Intel Mac-originated material: It is only in the Intel Mac where we have these problems.
    Both systems are up-to-the minute on their OS, security updates, and FCP versions. We are using variously 720p/30 from the JVC GY-100UA and 1080i/30 from the Sony Z1U.
    Our questions are:
    Is anyone else experiencing similar problems moving projects between a G5 and an Intel Mac?
    Is anyone moving projects between the two platforms and experiencing NO problems at all? That information would be just as valuable, and very welcome.
    Apple FCP development team: Is our experience unique or have you had other reports like this? Any idea what could be causing our problems -- and what we can do to fix them?
    * http://discussions.apple.com/thread.jspa?messageID=3604812&#3604812
    Intel MacPro Tower, 3gHz, 8mb   Mac OS X (10.4.8)   Also a G5 Tower, 2x2.5ghz, single core

    Scott,
    Welcome to the discussions!
    I have had no problems moving my G5 projects over to my MP.
    You can not move render files between machines.
    When you changed systems, did you use Migration Assistant to transfer your files over to your new Mac Pro? You might need to install from the disks in order to achieve native Intel performance. See if you installed Final Cut 5.1 on your G5 then it installed the PPC code... if you put that drive into your Mac Pro or used Migration Assistant to move the app over it is still the PPC code... When you install from the installation disk, Installer determines what system you are installing on (PPC or Intel) and that's what it installs. This goes for all of your "Universal Binary" apps...
    In the System Profiler app. under Software/Applications
    Final Cut Pro "kind" should be Universal on your MP.
    The FCP development team do not read these posts, only users do.

  • Text wrap option not working..

    Lately I have not been able to use the Text Wrap function in CS3. I feel like it's worked up until recently, but now when I open the Text Wrap window there are no options listed - it's just a blank gray box. When I click on the dropdown menu on the top right, the only two grayed-out options are "Show Options" and "Apply to Master Page Only".
    I tried selecting an object first to create the text wrap, selecting the text box, rearranging the objects, but nothing appears.
    Any idea why this might be happening or what I am doing wrong?

    trash you preferences:
    http://forums.adobe.com/thread/526990

  • Text Wraps on Interactive Report

    I created an APEX 4.1.1.00.23 application with some interactive reports. On the interactive reports I had a problem with text wrapping around so a string like this:
    505 EAST 144TH STEEET
    Would display as:
    505 EAST
    144TH
    STREET
    I corrected the problem with the following java script in the Execute When Page Loads page attribute:
    $('td[headers="ADDRESS"]').attr("style","white-space:nowrap");
    The user requested that the report break on two columns. I opened Actions>Format>Control Break, selected the columns, and saved the report. Now the java to format the address column does not seem to take effect. Before I applied the breaks the text would sometimes wrap and I could correct it by pressing the F5 key but this does not work anymore. How do I get the java script to take effect or otherwise correct the text wrapping problem?

    Comet wrote:
    I created an APEX 4.1.1.00.23 application with some interactive reports. On the interactive reports I had a problem with text wrapping around so a string like this:
    505 EAST 144TH STEEET
    Would display as:
    505 EAST
    144TH
    STREET
    I corrected the problem with the following java script in the Execute When Page Loads page attribute:
    $('td[headers="ADDRESS"]').attr("style","white-space:nowrap");
    The user requested that the report break on two columns. I opened Actions>Format>Control Break, selected the columns, and saved the report. Now the java to format the address column does not seem to take effect. Before I applied the breaks the text would sometimes wrap and I could correct it by pressing the F5 key but this does not work anymore. How do I get the java script to take effect or otherwise correct the text wrapping problem?See +{message:id=9208685}+
    With the control break the IR generates different mark-up, so you need to add another selector to the rules so there's a match on the column cells in both the standard and break report views.

  • Flash + Intel Mac + Leopard = CRASH!

    I've got an intel mac pro with 4 GB ram running the latest
    Mac OS 10.5.2. Its perfect and runs like a dream until I use CS3
    then it all falls apart.
    The worst app seems to be Flash. On average it crashes the
    mac about every half hour. It's like using OS8 all over again.
    What's going on? Every time I switch on the mac the Adobe Updater
    starts bouncing around in my doc and thats another 20 minutes gone
    downloading updates that don't seem to fix anything. There are some
    serious errors with CS3 on intel mac. Are Adobe aware of this? and
    are they doing anything about it?

    quote:
    Originally posted by:
    Spen
    I've got an intel mac pro with 4 GB ram running the latest
    Mac OS 10.5.2. Its perfect and runs like a dream until I use CS3
    then it all falls apart.
    The worst app seems to be Flash. On average it crashes the
    mac about every half hour. It's like using OS8 all over again.
    What's going on? Every time I switch on the mac the Adobe Updater
    starts bouncing around in my doc and thats another 20 minutes gone
    downloading updates that don't seem to fix anything. There are some
    serious errors with CS3 on intel mac. Are Adobe aware of this? and
    are they doing anything about it?
    Turn off the Adobe updater and download the stand-alone
    updaters. Then leave the auto update off. A good idea for just
    about everything.
    My copy of CS3 runs fine.

  • Text Wrap options not showing in InDesign CS3

    Using InDesign CS3 on a Mac 10.4.  I've had this problem for a couple of months now and it's getting past the point of annoying.  When I open my text wrap options pallete it's blank even when I expand options.  I can see the text wrap icons in my header panel, but I no longer have options to change the right/left/top/bottom margins.  Just a general "add wrap" and "remove wrap".  Is there any way I can get my pallete back?  I've tried defaulting my tools, but still it does not show up.  I don't know what to do to get it back.

    Did you try resetting preferences? While pressing Shift+Option+Command+Control, start InDesign. Click Yes when asked if you want to delete preference files. If you don't get the message about deleting preferences, you weren't fast enough.
    http://livedocs.adobe.com/en_US/InDesign/5.0/help.html?content=WSa285fff53dea4f86173837510 01ea8cb3f-6d1e.html
    Ken

  • Text wrap dialogue box is blank in CS3

    I am not able to view the options in the text wrap dialogue box - why? I have restarted InDesign and my computer but there are no options showing in the dialogue box. I use text wrap all the time so this is a major problem for me. Thanks for your help!

    Try resetting preferences. http://livedocs.adobe.com/en_US/InDesign/5.0/help.html?content=WSa285fff53dea4f86173837510 01ea8cb3f-6d1e.html
    Immediately after starting Indesign, hold down Ctrl-Alt-Shift (Shift-Opt-Cmd-Cntrl on Mac). If you don't get a message about deleting preferences, you weren't fast enough.
    Ken

  • CS3 bugs fixed for intel macs?????????

    CS2 when it came out was not designed for the Intel processor so there was problems until adobe managed to iron out the problems. The only issue is CS2 the performance is not as great as it should be due to this. Is CS3 fully compatible with Intel macs?
    On cs2 now and researching into whether its right to upgrade now or leave it a year?

    CS3 is made to run natively on the Intel machines. CS3 works best running under Tiger if you have an Intel machine that has Tiger CS3 will run great. If you need to get a new machine that is Leopard only, then there are a few issues.
    As Bob said there are many threads.

  • How can I delete PhotoCD.plugin from CS3/Intel Mac

    Hi -
    After using Photoshop CS3 for a few weeks I'm suddenly getting an error message about a plug-in not loading.  When I check it's the Kodak PhotoCD.plugin.  If I move the Kodak PhotoCD folder around - like to the Desktop or Trash - Photoshop finds it but doesn't load it.
    I read posts on this forum about how it's not compatible with Intel Macs and if I wanted to use it I could run PShop in Rosetta mode.  No thanks. No sweat.  I never used it and would rather just be free of the Photoshop error message than keep it around for the rare possibility that I will need it.
    Before I trash the Kodak PhotoCD folder and then empty the Trash, can someone tell me if that will make the Photoshop error go away?
    Will trashing it create any problems with Photoshop CS3?
    Thanks,
    jl

    I can't see how trashing the plugin would cause any problem. According to this TechNote (see link below) it wasn't originally installed with CS3 anyway.
    http://kb2.adobe.com/cps/400/kb400945.html

Maybe you are looking for