Centre a pattern within a shape

Hey guys,
So I'm probably missing something very basic, but when I create a pattern using the new pattern maker and I apply it to say a rectangle, how can I make sure that the pattern is centred?  For example I have a chevron pattern that I want to fill a rectangle, but I want to make sure that the chevron pattern is dead centre - I have messed around with this for ages and cant figure it out.
Thanks

Thanks Wade - I actually found a way that works slightly better, although a tad fiddly.  I created my pattern, then applied it to a rectangle - I then went into the general preferences and unticked 'Transform Pattern Tiles' and made my keyboard increments really small.  This allows me to move the shape in very small increments and the pattern doesn't move with the shape, so I can line my shape up with the pattern as I like.  Once I have it in the right spot, I just go back into the general preferences and tick the 'Transform Pattern Tiles' checkbox again which keeps the pattern lined up as I want and I can move my shape around with the pattern moving.
It's a bit fiddly, I'm sure there must be an even simpler way than this, but until I find out, I'll just have to do it this way.
Anyway, thanks again

Similar Messages

  • How can I rotate a pattern within a shape?

    How can I rotate a pattern within a shape?

    To the left of the 1 key, right below the esc key. Has the ~ and ` on it.
    That key has ° and ¨ on it on my keyboard and it doesn't work.
    But I found it by holding down the < key (to the left of Z).
    So now I can rotate etc. patterns manually after about 3 decades of doing it numerically through the dialogue :-)
    You live and learn.
    Thanks Scott,
    Steve.
    (Maybe this helps other people with funny keyboards. What say Jacob and Monika? Or maybe theirs are even funnier.)

  • How do I "lock" a pattern fill within a shape?

    I want to stop my pattern fill from shifting within its shape.  It (the pattern fill) seems to move when I send my file to another user to work on. I have tried "expand" but that, at times, changes the pattern fill entirely (lines get skinnier or fatter)! I am using CS2. Thanks.

    It shouldn't move when someone else just opens the file. But when the object is copied to a different file, the pattern will most probably move. You can prevent it from moving in the same file when you check the option "Transform pattern" in the preferences.
    Could you show an example of what's happening when you expand the pattern?

  • How can I write a text (paragraph, etc.) within a shape?

    I know that this should be an easy one, but I have not been able to figure it out.  I tried searching the online manual but I have not been able to succeed. I need to write several paragraphs within different shapes (circle, etc.), even personalized shapes. Can any body help?  Thanks.

    You can do type inside a path and also type along a path.
    (sometimes finding stuff in help manual can be tricky cause
    it's not always where you expect to find it)
    If you use the help application from within photoshop (Help>Photoshop Help)
    you can use the search to find stuff.
    http://help.adobe.com/en_US/photoshop/cs/using/WSfd1234e1c4b69f30ea53e41001031ab64-75baa.h tml
    Added: just in addition to emil emil's post.
    MTSTUNER
    Message was edited by: MTSTUNER

  • Mask one path within a shape layer

    Hi I'm having trouble which something which is probably extremely basic..
    I've brought in a comp from Illustrator, created shapes from Vector Layers and now I am attempting to mask 1 path within the Shape Layer.
    When I attempt to mask the path it masks the whole layer... Can anybody help me with this?
    Cheers in advance,
    Shaun
    Ae CS6

    Apply a Merge oprator and draw your path within the shape group. Otherwise duplicate the layer, delete the other items and use a mask. Several ways to go about this...
    Mylenium

  • Finding a pattern within a String

    How can I find a pattern within a string using Java? does Java has the ability to do this or do I have to write a function?

    The String API documentation shows how to do it.

  • How can I use SQL to search for a pattern within a field?

    Hello, Frank, Solomon, ect
    I am now faced with this particular scenario, I've got the SQL to search through a field to find text within the field, but I have to know what it is before it can look for it.
    What I have to do is this:
    Search through a field, for a pattern, and I won't know what the data is I am looking for. Can this be done in SQL?
    For instance, Here is my SQL this far, I was helped allot in order to get to this point.
    select table_name,
           column_name,
           :search_string search_string,
           result
      from (select column_name,
                   table_name,
                   'ora:view("' || table_name || '")/ROW/' || column_name || '[ora:contains(text(),"%' || :search_string || '%") > 0]' str
              from cols
             where table_name in ('TABLE1', 'TABLE2')),
           xmltable (str columns result varchar2(10) path '.')
    When you execute the above SQL, you have to pass in a value. What I really need is to alter the above SQL, to make it search for a pattern that exist's within the text of the field itself.
    Like for instance, lets say the pattern I am looking for is this" xx-xxxxx-xxxx" and it's somewhere in a field.
    I need to alter this SQL to take this pattern and search through all the schemas and tables to look for this pattern match.
    Can be done?

    When you use something dynamically within a function or procedure, roles do not apply and privileges must be granted directly.  So, you need to grant select on dba_tab_cols directly.  If you want to do pattern matching then you should use regular expressions.  The following example grants the proper privileges and uses regexp_instr to find all values containing the pattern xxx-xxxx-xxxx, where /S is used for any non-space character.  I limited the tables in order to save time and output for the test, but you can eliminate that where clause.
    SYS@orcl> CREATE USER test IDENTIFIED BY test
      2  /
    User created.
    SYS@orcl> ALTER USER test QUOTA UNLIMITED ON USERS
      2  /
    User altered.
    SYS@orcl> GRANT CREATE SESSION, CREATE TABLE TO test
      2  /
    Grant succeeded.
    SYS@orcl> GRANT SELECT ON dba_tab_cols TO test
      2  /
    Grant succeeded.
    SYS@orcl> CONNECT test/test
    Connected.
    TEST@orcl> SET LINESIZE 90
    TEST@orcl> CREATE TABLE table1
      2    (tab1_col1  VARCHAR2(60))
      3  /
    Table created.
    TEST@orcl> INSERT ALL
      2  INTO table1 (tab1_col1) VALUES ('xxx-xxxx-xxxx')
      3  INTO table1 (tab1_col1) VALUES ('matching abc-defg-hijk data')
      4  INTO table1 (tab1_col1) VALUES ('other data')
      5  SELECT * FROM DUAL
      6  /
    3 rows created.
    TEST@orcl> CREATE TABLE table2
      2    (tab2_col2  VARCHAR2(30))
      3  /
    Table created.
    TEST@orcl> INSERT ALL
      2  INTO table2 (tab2_col2) VALUES ('this BCD-EFGH-IJKL too')
      3  INTO table2 (tab2_col2) VALUES ('something else')
      4  SELECT * FROM DUAL
      5  /
    2 rows created.
    TEST@orcl> VAR search_string VARCHAR2(24)
    TEST@orcl> EXEC :search_string := '\S\S\S-\S\S\S\S-\S\S\S\S'
    PL/SQL procedure successfully completed.
    TEST@orcl> COLUMN "Searchword"     FORMAT A24
    TEST@orcl> COLUMN "Table"     FORMAT A6
    TEST@orcl> COLUMN "Column/Value" FORMAT A50
    TEST@orcl> SELECT DISTINCT SUBSTR (:search_string, 1, 24) "Searchword",
      2               SUBSTR (table_name, 1, 14) "Table",
      3               SUBSTR (t.column_value.getstringval (), 1, 50) "Column/Value"
      4  FROM   dba_tab_cols,
      5          TABLE
      6            (XMLSEQUENCE
      7           (DBMS_XMLGEN.GETXMLTYPE
      8              ( 'SELECT ' || column_name ||
      9               ' FROM ' || table_name ||
    10               ' WHERE REGEXP_INSTR
    11                     (UPPER (' || column_name || '),''' ||
    12                  UPPER (:search_string) || ''') > 0'
    13              ).extract ('ROWSET/ROW/*'))) t
    14  WHERE  table_name IN ('TABLE1', 'TABLE2')
    15  ORDER  BY "Table"
    16  /
    Searchword               Table  Column/Value
    \S\S\S-\S\S\S\S-\S\S\S\S TABLE1 <TAB1_COL1>matching abc-defg-hijk data</TAB1_COL1>
    \S\S\S-\S\S\S\S-\S\S\S\S TABLE1 <TAB1_COL1>xxx-xxxx-xxxx</TAB1_COL1>
    \S\S\S-\S\S\S\S-\S\S\S\S TABLE2 <TAB2_COL2>this BCD-EFGH-IJKL too</TAB2_COL2>
    3 rows selected.

  • Centre aligning images within picture frame using XML file

    Hi
    I am using a flash file that uses an xml file to upload a
    series of images one at a time into a picture holder.
    There are two different widths of the images. The height is
    always the same. Is it possible to set this up so every image that
    the xml file calls is centre aligned within the picture frame.
    At the moment when using the xml file to load the image it
    always left aligns the image when it brings it into the picture
    frame even if you change the alignment to centre align within in
    the align panel.
    Does anyone have a suggestion why this is happening or how to
    fix it?
    Thanks for the help

    You're welcome. Pleased it worked.
    All it does is use the MovieClipLoader class to load the
    images into your holder_mc. Because loading takes time, and because
    you can't check or adjust the size or position of images until they
    have loaded, the MovieClipLoader class gives you a handy option to
    run some code whenever its finished loading something you told it
    to load.
    That's what the addListener instruction does... it says
    whenever myLoader has something new to tell me about the status of
    the load requests I ask it to do... make it run some related code
    in the listener object (which is called loadListener in this
    code... it could equally be called something else). You 'listen'
    for different events or updates of status. All I 'listened' for
    here was the onLoadInit event.
    The onLoadInit is the 'final' status update after loading. It
    occurs when something has loaded and its properties are accessible
    (_x, _width etc). The target_mc that is an argument for the
    loadListener.onLoadInit is a reference to the clip that was loaded
    into.
    The best way to learn about this stuff is probably to read up
    on MovieClipLoader in the livedocs and try google to see if there's
    an online tutorial somewhere. Then give it a try yourself in
    another new fla.
    cheers
    GWD

  • Help with making buttons work within mc/shape tween

    hi,
    i've created a movie clip for a navigation link named
    "Products". when you mouse over the "Products" mc, the movie clip
    has a sub-navbar that tweens horizontally out of the movie clip.
    when the subnav is done coming out and stops, i have buttons that
    appear that i would like the user to be able to click on.
    everything works out fine until i roll over the button the rollover
    state doesn't work. i have a feeling it is because the button is
    nested, but not sure.
    i set up a simple example here:
    http://kurtcom.com/examples/jeannettes_damn_navbar.html
    let me know if you want me to email you the file as well,
    thanks!

    A single Path would just be an out line of your three shapes.  As you knew to create  the above using vectors requires three shape layers.  Shapes can only be filled  with a single color or pattern.  They also can be stroked and have layer styles added. Additional strokes may be need to highlight the green area like you show above..
    With CS6 you can merge shape layers into a single shape layer your result would be a single color shape however the merged paths would be the outlining path you seem to want. you can save the path in the path palette when the merged shape is the active layer.
    adding an empty layer and stroking the merged path,
    Message was edited by: JJMack

  • Brush, Pattern, Font, Custom Shape Tool, gradient, etc organization

    On record, I have over 1,000 brushes, over 1,000 fonts, and I'm making other resources on the fly. I have an issue here: I can't find anything!!
    (I also have a second issue with resources and crashes, but I'll get to that later.)
    Is it that hard to ask Adobe to put in some font organization, tags for brushes and a search engine for them? Sometimes it's a pain trying to find the right font, but say, I think, "Hmm.. I want a font that is remotely Western, probably serif" there is no way in Adobe Photoshop to get through all of those fonts in a timely manner which means I'm spending about 2 hours shuffling through the fonts trying to find the right one. Sure there is a panel where you can select your favorite ones, but that's not by category... there is no sane way to find the font just for you.
    Same thing for brushes. Often the problem with brushes is that people lose where they've come from, meaning no credit to the brush maker and when you want, say, fairies because you need some, you can't remember where the hell they are. And if you do, you have tons of brushes to sort through. People have a compulsion to not label their brush sets properly, which drives me nuts because they also expect you to give them credit. How about Adobe gives them a leg up? Give them a space not only to name the brush, but give it tags, a name and a website where it was found at. (Not required, but can be used or even expanded down.) And give it search capability. (So I type in birds, then the brushes menu retrofits to show all brushes with the tag of birds, I delete the search line, all the brushes come back, I type in standard. All of the round brushes come up, etc. I type in spiritsighs and all of her brushes come up... and so on). Gradients, etc should be the same.
    Sure you can clear your brushes, but do you know how many brush packs I have to sort through, then load to get the right one? --;; A pain. (Plus brush packs are often lost in computer crashes, harddrive wipes, etc.)
    So I'm asking for a way to organize and find these resources more easily, with better searching abilities, because while the guys on Photoshop TV can afford to dump their probably thousands of brushes for a demo, isn't it kind of odd that they often say, "Where is it? "Ah there it is" in their tutorials? They've apologized at least a dozen times for the "ah there it is" and the "I'm sorry Adobe doesn't give a font organizer", but here is a crappier alternative.
    I'd like this in other programs in the CS suite too. Especially the Historyless Illustrator (Illustrator needs History) and InDesign. InDesign should have had font management a long time ago--most of it is about type setting anyway.
    Second part:
    Crashes. You've spent 2 hours making the right brush, stayed past your bedtime, made the brush, and voila, Photoshop crashes. You've just lost 2 hours of work, your files, which in your artistic daze you forgot to save and any chance of getting that brush file back.
    So I propose three fixes which are already out there in Computer land that Photoshop hasn't implemented. (And other Adobe products should also implement).
    1. The auto save. When the user isn't using the screen, or at x intervals it will ask the user if they want to save, which is settable by the user (prompting and the auto-saving). Microsoft has it, Most Mac programs have it, Adobe Photoshop should also have it.
    2. Generated back up files. At some intervals, instead of a full save, in case of a crash, Adobe Photoshop, when prompted will create back up files.
    3. A way for Photoshop and Illustrator when creating brushes, etc to auto-save said brush when the brush is created, rather than generating a pack. Like it updates a file in Photoshop when one creates a brush. This means it will hard save to the computer and one doesn't have to make a brush pack or shut down photoshop to get the brush to save. I think this would save a lot of people heartbreak.
    Minor peeve, but when I hit undo often it jumps to the previous layer I was at. I'd like an option to turn this "feature" off.

    not sure if anybody mentioned  this.
    tumasoft.com has a product for viewing and organizing your  brushes patterns etc. 25 bucks.
    This should be native to Photoshop rather than from an external program. It's in many other programs,so I don't understand why Photoshop doesn't have a system native to it.
    To be blunt: If that has happened more than once to you and you still  don’t save useful, newly created brushes regularly you should, in my  opinion, improve your workflow.
    Saving a brush into a set should be doable  in something like 15 seconds, less if you use Keyboard Shortcuts.
    Even  less than that if one automates the task with a Script (which could  then be invoked either via a Keyboard Shortcut or Configurator Panel).
    Let  me know if you want to give it a try.
    You misunderstand me. I save the brush into the brush panel, and I may have the brush in up and working, but to save the brush permanently, you have one of these options:
    1. Quit Photoshop between each brush made. The Save Brush Preset was NOT a permanent solution. It should be automatically saved to a file. Such as "all". Illustrator has a similar feature, though this really needs to be streamlined for Illustrator as well.
    2. Save as a brush pack. However, if you have a bunch of brushes planned, this becomes a pain to do. This means out of say the 100 brush packs you have to find it every single time and add it and even if Photoshop crashes, the brushes you saved won't show up in the brush menu, because Photoshop doesn't remember any of the brushes you made until you quit Photoshop. This means then, if you're in the middle of making a brush and Photoshop crashes, you have to bring up said brush pack.
    Do you really make brushes? 'cause I do. I make lots of brushes and it annoys me to no end that when I save the brush to the brush panel it's not a permanent save, but temporary. It should be permanent and I shouldn't have to shut down Photoshop to get it to save automatically to the Photoshop Brush palette.
    I spend a lot of time refining my brushes by testing them, making them, and then testing them again. When I get the brush perfect, and find that something big has happened, I expect the brushes I saved to the brush palate should have saved permanently. But test it... You can force quit Photoshop, after saving to a brush to the brush palate and find that it's not at the end of the brush palate anymore. This is wacky and should be fixed. I view it as an internal bug rather than a "feature" i.e. something they didn't think about when they gave users the ability to create their own brushes. This is very programable as other programs can do it and as you pointed out it, it is minor. Especially with the advent of workable backup files, it has become ten times easier. Since Photoshop remembers on shut down, it may be even more minor--just shifting some code from the shut down process to the "save to Brush palate" process. I wouldn't mind say 5-10 seconds more of waiting while it saves if the  save ends up in a permanent save.
    But as for organizing Brush Presets  and Brush-name search capabilities Photoshop could indeed do with some  improvements. (I still work with CS4, so I don’t know what changes  exactly CS5  brought in that respect.)
    Fonts on the other hand … I suspect  the risks connected with implementing any expanded font-capabilities in  Photoshop may be significant.
    Font organizers already exist. And programs have implemented them with success without hindering the work flow. I'm proposing this in addition to the "favorites" and the type-in pull down menu, not instead of it. As there are working examples, I doubt it will be that difficult to mock up. This isn't like a new fangled idea--so making it isn't as difficult. It should have been in In Design a long, long time ago... All the Adobe Products need one. I wouldn't even mind if it was an external program that worked with the suite. (Similar to Font Book for Mac with the Coco Products)

  • Creating a pattern around a shape

    Hi,
    How can I take these groups of white dots and have them go around the entire object while also taking it's shape?
    Thanks!

    Thanks.
    -Do you have to create the scatter brush, or is that a default?
    -Also, how do you enable it so that scatter brush can be selected for the stroke (like you have an additional dropdown to the right of the stroke dropdown where you can see it says the word "Scatter."
    If you don't mind my asking, how do you do the same effect with a regular white line stroke (again with some space from the edge)? I tried playing with adding an inner stroke from the appearance palette and then another fill on top but that didn't work.
    Thanks!

  • How to centre an image within tab control on front panel in LabVIEW 10 (Mac Version)?

    Hello,
    I would like to centre an image on the front panel. The image is on a tab control that is fit to the pane. I can't seem to find a way. I'm working with LabVIEW 10 on a Mac. Any suggestions would very much be appreciated.
    Thanks,
    Michelle
    Solved!
    Go to Solution.

    Thanks Gita_A. 
    I have attached the relevant part of my program. It's not to do with the size but position of the image - I would like the image to be right in the centre of the tab control. 
    Attachments:
    pic on tab control.vi ‏6 KB

  • Change the blending mode on the gradient fill within a shape layer?

    I can't seem to figure out how to do this, if it is possible.  I have a shape layer with a gradient fill,  that gradient fill layer needs to be set to multiply, by default its normal.  can the be done with scripting?

    Indeed it is not that easy to modify the blending mode.
    The blending mode is property(1), or property("ADBE Vector Blend Mode"), of the gradient fill.
    Normally the blending modes are listed in the BlendingMode object, and mutliply corresponds to BlendingMode.MULTIPLY
    But it doesnt work for shape graphics: if you try myGradientFill.property(1).setValue(blendingMode.MULTIPLY); you are out of range.
    The value to enter is actually the occurrence of the mode in the dropdownmenu, counting separators...
    so
    myGradientFill.property(1).setValue(4);
    Xavier

  • Distance for Strokes within a shape but also on the outside?

    Hello,
    I would like to ask, how do I go about creating a stroke, but i want it on the inside of a wavy line, but a little further in the shape.
    Just say for example a blue rectangle and say I would like for the stroke to be white, but more inside the shape rather than just near the outer edge of the rectangle is there a way opf setting the distance.
    How about in reverse - I know there is convert to shape - but what if the shape is curvy or wwavy?
    Is this able to be done also?
    Thankyou,
    GaNa85

    Either Object>Path>Offset Path
    Or as an Effect you use Effect>Path>Offset Path
    a negative number moves it inside a closed path a positive moves it to the outside of the path
    if you use the Appearance panel and add new strokes you can have one inside and one outside or serval inside and several outside.

  • Centreing a graphic within a variable width div

    Hi
    at the link below
    http://www.system2security.co.uk/template.php
    the header contains three graphics that I have placed in
    individual div.
    The page uses a flexible width and I need the centre logo to
    be centred on
    the page regardless of the page width.
    I seem unable to acheive this, has anyone any sugestions?
    thanks
    Ian
    [email protected]
    http://www.edwards-micros.co.uk

    Keep a back-up copy of your original file then try this
    combination of
    css for your 3 <divs>
    div.img_1
    float: left;
    width: 180px;
    div.img_2 {
    margin: 25px 134px 0 182px;
    text-align: center; }
    div.img_3 {
    float: right;
    width: 134px;
    Ian Edwards wrote:
    > Hi
    >
    > at the link below
    >
    >
    http://www.system2security.co.uk/template.php
    >
    > the header contains three graphics that I have placed in
    individual div.
    >
    > The page uses a flexible width and I need the centre
    logo to be centred on
    > the page regardless of the page width.
    >
    > I seem unable to acheive this, has anyone any
    sugestions?
    >
    > thanks
    >
    > Ian

Maybe you are looking for

  • ISE Guest CWA with Smart Phones

    I've configured the Guest Web Authentication in the ISE and I've tested and every thing is working fine. I got the redirect url, I could authentication and then got an access. However, If I got the redirect url and then disconnect from the guest SSID

  • Users have to change GW mode every morning

    Hello, I hope someone can help me. I'm a level 1 IT support guy in a governmental institution (5000 employees). I'm responsable for level 1 support for 550 users. We've been using Groupwise 7 and Webaccess for a few years now. Recently, I've had 3 us

  • Regarding Repository Consistancy Check

    Hi All,          Its very urgent that i have ODI 10.1.3.5 version right now but i am planning to upgrade to 11g. Do i need to Upgrade my ODI to 10.1.3.6 for running RCC or can i directly run RCC on ODI 10.1.3.5. Thanks

  • Refresh ALV list?

    Dear experts, I have used REUSE_ALV_GRID_DISPLAY to display some data of an internal table. I modified it and I need to display the refreshed data again. How can I do that? Thank you... Roxani

  • Error in stock transport order

    Hi Sap Fans i have created a stock transport oder from plant to depot  for that first i have created a stock transport order in me21n and later i have done outbound delivery in vl10b and after i have done replenishment delivery in vl02n and after tha