Expand Stroke makes closed object

Expanding a stroke used to expand just the line. Now, it
expands the
line and makes an object with by closing the path. How can I
get the old
behavior back with FHMX?
TIA

Thanks for the reply. I don't know what happened. I have used
FH enough
to know how the expand stroke tool works. Yesterday, I had a
simple
curved path. When I tried to expand the stroke, FH made
"bowl", a
compound closed path object by connecting the ends of the
stroke. I drew
some more lines with the same results. I worked around this
to finish
the job. Now, this morning the expand stroke is working
correctly. It is
just making the path a simple closed object. Must have been
sunspots or
bad karma.
dp
Judy Arndt wrote:
> D. Plank wrote:
>
>
>>Expanding a stroke used to expand just the line. Now,
it expands the
>>line and makes an object with by closing the path.
How can I get the old
>>behavior back with FHMX?
>
>
> I can't remember FH's Expand Stroke Xtra ever producing
two open paths.
>
> Select the butt end cap in the Expand Stroke dialog.
Option-click the end
> paths to subselect and delete them.
>
> There is an intermittent bug in FHMX, though. Sometimes
instead of giving
> the expanded object a fill the same color as the
previous stroke, it will
> apply the previous stroke and no fill. Is that what
you're asking about?
>
> Judy Arndt
>

Similar Messages

  • Can I set the stroke of an object to be on top/in front and the fill on the bottom/in back?

    Can I set the stroke of an object to be on top/in front and the fill on the bottom/in back?  I asked this question before and was told to go to appearance and drag the fill and stroke around as if they were a layer, but this did not bring my stroke to the top of the image.  Did I do this wrong somehow or is there another method?

    Erin,
    The default stacking order for an object with fill and stroke, such as a simple path, is that the stroke is on top and the fill is beneath it.
    You may change that in the Appearance palette, but it should not be necessary.
    Can you show a screenshot with the object and the Appearance palette and the Layers palette with the relevant (part of the) Layer expanded and visible?
    If things are really wrong, you may start considering going down this dark road:
    The following is a general list of things you may try when the issue is not in a specific file (you may have tried/done some of them already); 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to 3 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • How to make the objects got even distance in the Blend?

    Wondering anyone has the same experience or not? I blend 2 circles together and adjust the spine from a straight line to wave curve line by adding points and adjusting the handles of the points. The space between the objects along the spine turn to uneven after that. I tried to use the "specified distance" in the option and add more points and modify the handles again. However, all in vain. Finally, I need to expand the blend and adjust the distance of those objects manually. Any suggestions to correct the stupid way? Thanks.

    There is not really any way to get even spacing in a blend when the spine path has uneven curvature. (What the Specify Distance option does is take the length of the path, and divide it by the requested distance to determine the number of blend steps, but then once it has that number, they get spread out by exactly the same algorithm that is used when the number of steps is specified by a fixed number or calculated from the color difference.)
    The length of the direction handles on a spine path affects the placement of objects, with longer direction handles pushing the blend steps away from the anchor point, and shorter direction handles pulling them in towards it. This tends to make the objects more tightly spaced when the path has sharp curves, and more loosely spaced where it is flatter.
    If the direction handles are of equal length, and the distance between the two direction points is the same as their length, such as occurs on a circle, then the "pulls" balance out and the spacing ends up even. But when the curvature varies, so does the spacing.
    This can be used to advantage to get non-linear gradations, by making a straight line and then pulling out direction handles that lie along the line. It can also be used to make objects on an elliptical orbit appear to be spaced in perspective, since they are closer together at the sharp ends of the ellipse and farther apart at the flat sides.
    Often, however, what is desired is spacing that is independent of the curvature, such as you get with scatter brushes.
    It was fully intended when live blends were implemented in AI 8 that even spacing would be an option, and would indeed be the default option, with logarithmic spacing and direction-handle controlled spacing being two other choices. The direction-handle controlled spacing was just implemented first not because it was most useful (it isn't) but because, believe it or not, it is
    easiest. (Points on the interior of a bezier curve are natively addressed by t-value, which is a fraction of the direction handle distance. To obtain a position that is a fraction of the path length, one must first flatten the entire path into a polygonal approximation, then find the position by adding up the lengths of the flat segments. In contrast, one can obtain a point at a given fraction of the bezier t-value without flattening the path. This is the reason, by the way, that while scatter brushes have more even spacing between objects, they do not fit as tightly to the bezier as blend steps do - they are being placed on a straight line approximation of the path instead of directly on it.) The intention was to get the easy case of t-value based spacing working, and then add the harder case that requires flattening.
    It turned out that we did not have time to add the extra options for AI 8, so it shipped as is. Then Macromedia sued us over live blends because Freehand had them first and as part of the settlement we had to promise to stop enhancing them. Now that the two companies have merged, that issue is moot, so enhancing blends is now a possibility for future versions of Illustrator. (All of you who complain about the cool features that Freehand has had for years and Illustrator hasn't, as if it were perverse and intransigent of Adobe not to follow suit, might want to keep in mind that copying the features of another company's software is often not allowed.)
    In the meantime, scatter brushes can be a good alternative if all your blend steps are the same, but obviously they won't work if your blended shapes are changing along the path.

  • How to make an object mutable?

    Can any one tell me how to make an object mutable?
    Following is Class X & Y?
    class Y
    public static void main(String arg[]) {
    X a1=new X();
    Object a=a1.get();
    System.out.println(a.toString());
    a1.set(a);
    System.out.println(a.toString());
    class X implements Serializable
    public Object get(){
    return new Object();
    public synchronized void set(Object o)
    o=null;
    In my class Y when i say
    a1.set(a);
    I want local Object a of main method should be nullified.
    Can it be possible if yes what is the way or code to be applied so that
    my next a.toString() statement will give me NullpointerException.

    Isn't it more accurate to say that object references are passed by value?
    OP -- Basically you can't to what you want to do. When you "pass an object" as a method parameter, what you're really passing is a copy of the reference that points to the object. You now have two refs pointing to the same object--one in the caller and one in the method being executed. Setting either of those refs to null does NOT affect the object itself, and does NOT affect the other ref. It just means that the ref that's been set to null no longer points to any object.
    If you want the called method to make a change that the caller can see, you need to either 1) return a value from the method, 2) encapsulate the object to be changed as a member of new class, or 3) pass the object to be changed as the single element of an array. I would STRONGLY recommend against (3) as a way to simulate pass by reference. Better to examine your design and determine whether (1) or (2) more closely matches what you're really trying to accomplish.

  • The requested transformation would make some objects too large.

    Please help.
    I load a PNG in Illustrator. However when it loads it doesn't load right. It loads HUGE. When I try and move it, it says:
    "Can't move the objects.The requested transformation would make some objects too large."
    I am pulling my hair out here. Why the hell can't Illustrator just open a bloody PNG and allow me to edit it?!
    Any advice would be appreciated. Thanks.

    I see, Christopher.
    It seems that something is seriously wrong.
    You may try the following (you may have tried/done some of them already) and see whether it helps (the following is a general list of things you may try when the issue is not in a specific file; 3) and 4) are specifically aimed at possibly corrupt preferences):
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to 3 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder http://www.bugge.com/Family-and-friends/Illy/illy.html (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • InDesign equivalent to Freehands "expand stroke" tool?

    Hi everyone, I'm busy with the painful uphill journey of converting from freehand to indesign for my page layouts. Does anyone know if indesign has an equivalent to the freehand "expand stroke" tool? Thank you in advance to anyone who replies.

    You have to use Illustrator to do that (outline or expand).
    You can copy paste the object between InDesign and Illustrator, getting
    the obect back editable in InDesign, if it is not too complicated.
    Regards Nina Storm

  • How to make an object getting out of the screen ?

    Hello everybody !
    I am creating a game introduction with Flash pro CS6 and here's is my problem.
    I want a object in my animation to leave the screen, but I dont know how to do it.
    Is there for example, a way to delimited the working area, so that when I make an object go out of this area, it does not appear in my final animation ( no matter the format, .avi, .mov, spritesheets ... ) or can eventualy be "cut" ( if I make my object half inside the working arear and half outside ) ?
    Is there an other way to do this ?
    Thanks !

    Using a mask might be one way.

  • How to make any object self-shining?

    hi,
    i guess thats an easy question, but i dont know where to look for the answer.
    so how to make any object self-shining like the infamous colorcube, so that one does not need to place any light?
    and am I right in my assumption that doing so will reduce the need of rendering power, since lights dont have to be computed?
    thanx,
    Usul

    I'm not sure what you mean here- if your object is lit then lighting will need to be calculated. If you don't want shapes to be lit, I think you can disable it by calling setLightingEnable(false) in their materials.

  • How to make an object distributed across multiple jres?

    Hi,
    We used cache data mechanism for performance tuning. It will store data in static variable (Hashtable) and get initialized when app starts . We are using IPlanet Application Server and
    Using 6 KJS engines. This object ( Hashtable) is not distributed across all JRES.It has to reinitialize data again when request goes to any other KJS.
    We avoid sharing data in session and request, as data is huge.
    Can any one help us how to make this object distributed across all KJSs?
    Thanks in advance.
    raj

    We used cache data mechanism for performance tuning.
    It will store data in static variable (Hashtable) and
    get initialized when app starts.
    We are using IPlanet Application Server and
    Using 6 KJS engines. This object ( Hashtable) is not
    distributed across all JRES. It has to reinitialize
    data again when request goes to any other KJS.
    We avoid sharing data in session and request, as data
    is huge.
    Can any one help us how to make this object
    distributed across all KJSs?When you say 'initialized when app starts' do you mean iPlanets StartUp classes, rather than the Servlets init() ? Given a 'huge' dataset, avoid the latter.
    I'd suggest that a better approach is to implement this as an Entity Bean and accessed from Session bean and using Value Objects to return the data subsets.
    Checkout the Java Pet Store
    http://java.sun.com/blueprints/code/jps13/datasheet.html

  • HOw to make an Object oriented alv respond to double click

    Hi all,
    HOw to make an Object oriented alv respond to double click.SAmple code will be helpful.
    Thanks in advance,
    Alex.

    Hi,
    1. Create a Control (for Custom and Split Containers only)
    2. Instantiate a Container Object (in case of Custom and Split Containers, specify the control which is created by us in Screen painter) CREATE OBJECT
    3. Instantiate an Object of the kind of report that has to be displayed (List, Grid or Tree). CREATE OBJECT . Here we need to specify the Parent Container as the so that it sits in that container.
    4. Call appropriate methods to display the report on the screen. CALL METHOD ->
    DATA : g_dock TYPE REF TO cl_gui_docking_container,
    g_split TYPE REF TO cl_gui_easy_splitter_container,
    g_cont1 TYPE REF TO cl_gui_container,
    g_cont2 TYPE REF TO cl_gui_container,
    g_grid1 TYPE REF TO cl_gui_alv_grid,
    g_grid2 TYPE REF TO cl_gui_alv_grid.
    i_mara is an internal table of structure MARA
    SELECT * FROM mara INTO TABLE i_mara.
    i_kna1 is an internal table of structure KNA1
    SELECT * FROM kna1 INTO TABLE i_kna1.
    To create an Object of type Docking Container
    CREATE OBJECT g_dock
    EXPORTING
    side = cl_gui_docking_container=>dock_at_top
    extension = 200 .
    To Create an Object of Type Split Container. Here we can see that the Docking *Container Created above has been used as a parent .
    CREATE OBJECT g_split
    EXPORTING
    parent = g_dock
    orientation = 1 .
    Easy Split container splits one Control into 2 manageable controls, each of them is used * to handle one GUI Container each
    g_cont1 = g_split->top_left_container.
    g_cont2 = g_split->bottom_right_container.
    To Create an Object of type Grid . Here we can see that the Left Split Container * Created above has been used as a parent .
    CREATE OBJECT g_grid1
    EXPORTING
    i_parent = g_cont1 .
    To Create an Object of type Grid . Here we can see that the Right Split Container * Created above has been used as a parent .
    CREATE OBJECT g_grid2
    EXPORTING
    i_parent = g_cont2 .
    The method of Grid Control Object is used to display the Data.
    CALL METHOD g_grid1->set_table_for_first_display
    EXPORTING
    i_structure_name = 'MARA'
    CHANGING
    it_outtab = i_mara[] .
    The method of Grid Control Object is used to display the Data.
    CALL METHOD g_grid2->set_table_for_first_display
    EXPORTING
    i_structure_name = 'KNA1'
    CHANGING
    it_outtab = i_kna1[] .
    Regards
    Hari

  • How to make an object of inner class and use it ?

    Hi tecs,
    In my JSF application i have a need to make an inner member class in one of my bean class.
    How can i make the object of this class?(what should be the entry in faces-config)
    And there are text box and check box (in the JSP) associated with the elements of this inner class. What should be the coding in JSP so that elements in the JSP can be linked with the corresponding members of the inner class ?
    Plz help.
    Thnx in advance.

    Hi
    I am havin 10 text boxes in my application.
    But out of 10 , 3 will be always together(existence of one is not possible without the other two.)
    Now i want to create a vector of objects ( here object will consist of the value corresponding to these three boxes),there can be many elements in this vector.
    So i m thinking to make an inner class which have three String variables corresponding to these text boxes that exists together.
    What can b done ?

  • Make an object look transparent in photoshop, low opacity

    Hi. Using PS CS4 on Windows XP.
    Below I have an image on the left with apples showing 4 that are transparent (opacity set to 50%). I am wondering if there is a way to make the apple look transparent, but not transparent to the others so that the apples look more like they do on the right (not going through each other). I understand these  are completely solid, but I was wondering if there is a way to make an object look like it's transparent, but not be able to go through another object. This was really hard for me to explain so please let me know if you have any questions.
    Thank you.

    Of course I figure it out after I write this post even though I have been trying to figure it out for a couple days.
    What I did was put a Levels adjustment layer (dragged the middle slider) on those apples that were fading away after putting the opacity back to 100%.
    The below picture is what I was trying to achieve:
    If anyone else has another solution, I'd be glad to hear it.
    Thank you!

  • Make an object blink or flash?

    Is there a way to make an object blink or start flashing in Catalyst?

    Basically I just want a SWF file that can be played after I add the repeatCount tags in Flash Builder.
    Here's an example from my code in Flash Builder.  It's an Action sequence alternating from State1 to State2 for 5-sec. that I want to repeat forever or atleast 2 min.
    I added the repeatCount tag based on your post, is it in the right place?
    Thanks!
    <s:Parallel id="Sequence4">
       <s:Parallel target="{customcomponent41}" repeatCount="0">
        <s:SetAction property="currentState" value="State1"/>
        <s:SetAction property="currentState" startDelay="500" value="State2"/>
        <s:SetAction property="currentState" startDelay="1000" value="State1"/>
        <s:SetAction property="currentState" startDelay="1500" value="State2"/>
        <s:SetAction property="currentState" startDelay="2000" value="State1"/>
        <s:SetAction property="currentState" startDelay="2500" value="State2"/>
        <s:SetAction property="currentState" startDelay="3000" value="State1"/>
        <s:SetAction property="currentState" startDelay="3500" value="State2"/>
        <s:SetAction property="currentState" startDelay="4000" value="State1"/>
        <s:SetAction property="currentState" startDelay="4500" value="State2"/>
        <s:SetAction property="currentState" startDelay="5000" value="State1"/>
       </s:Parallel>

  • How to make Shape3D object translucent

    Hi,
    How to make Shape3D object (like Box, Cylinder) translucent? I tried the below option but the box is not becoming translucent at all.
    final PhongMaterial redMaterial = new PhongMaterial();
              redMaterial.setSpecularColor(Color.rgb(10, 255, 15, opacity));
              redMaterial.setDiffuseColor(Color.rgb(10, 255, 15, opacity));
    final Box box = new Box(width,height,depth);
    box.setMaterial(redMaterial);
    When opacity is 1, the color of the box will be Green, when it is 0 the color becomes black.
    Is there any way the box can be made translucent?

    There is at least one unresolved issue concerning PhongMaterial's transparency: RT-28874.
    I'm neither able to get it working properly. My red Sphere also fades to black while varying the opacity value from 1.0 to 0.0.
    August

  • Error:  requested transformation would make some objects too large

    working in Illustrator CS2, and am getting the error "Can't move the objects - The requested transformation would make some objects too large." From reading another post (that I am unable to find to reply to) I gather this may have to do with some guides. I have unlocked all guides through View Menu. Interestingly, according to help I should have hte selection to "view" guides. I don't find it. My problem is, i can find the guides to either delete or convert to an object to see if this will alllow me to move the objects. it is a 1 layer artwork, with multiple groups (too many too count),and multiple paths under each group (again, too many too count). This artwrok is a map printed to .pdf from SMT Kingdom. Kingdom is not very powerful, and I often annotate and edit maps in Illustrator; I frequetnly get this error when I have a map with contours on it.
    Any ideas?

    Because of the nature of my map, I do tend to have "landgrid" and other type of data that "extend" way beyond my actual image. for example, print to 8.5 x 11, and i might have a river that is part of my landgrid, that extend beyond the page size. The software from which I am printing does not "clip" this river. I have many times attempted to select and delete all this extraneous stuff, to alleviate my problem with "make some object too large", but no luck. I can assure you I don't have an object WAY off the page...i have zoomed out to the moon.

Maybe you are looking for

  • Droid Mini notifications for email and text not working

    I am having a problem with notification sounds not working for email and text messages with my Droid Mini. I took my original phone to the Verizon shop. They did a factory reset. Sound worked for two days. Went back to Verizon and they reset it again

  • Router could not start

    Hello Experts, I reconfigured router and try to start but i got en error....... I paste dev_rout Ststus here trc file: "dev_rout", trc level: 1, release: "700" Wed Jan 05 02:20:50 2011 SAP Network Interface Router, Version 38.10 command line arg 0:  

  • Please assist: NoClassDefFoundError: com/sun/msv/datatype/xsd/IntType

    Hi, I've developed a very simple schema and used jaxb of jwsdp-1.2 to generate the related data model. After that, I created a number of generated objects, and marshaled them out to an XML file. It worked perfectly, however, after making some unrelat

  • Delete my current account

    Hi, I want to delete my current account because I want to create new one. Please tell me how to do this. Thanks. Noor

  • Item relev for div

    hi, 1) may i know what is the use of item relev for div (item relevant for delivery) in VOV7 (define item category). what is the implication if ticked or not ticked. 2) we have 1 standard item but this standard item category does not select this fiel