Make a new window repeat the image?

I have an image that I want to tile seamlessly. So I do the offset-thing and clone it. What I want to do now is to open a new window with the same image (Window > Arrange > New Window) for filename.ext and then tile the windows (Arrange > Tile), but then also make the new window to repeat the image so that I can see the edits I make reflect in the repeated image so I can get rid of unwanted patterns. I hope I'm not too vague about my question! Thanks!

antevante wrote:
Thank you for your answers! I didn't quite get it to work the way I wanted though.
Can I somehow get my left window to show my image in a non-tiled state so that I can edit it while my right window shows the same image but tiled and zoomed out and updates when I make the edits in my left window? It's a bit of a pain in the *** to edit my image, then copy it and pasting it in an array. Then going back and editing, array again. This is a hassle even with an action. There's maybe other texturing applications for this kind of workflow but I thought I was so close with the New Window-feature in PS
For the updating part you can use smart objects. There is one time setup that is more involved but then you can use this as a template for any future work.
I just did that myself and described the steps:
Create a canvas with a size that will fit perfectly many squares for example 1000 x 1000 to fit 100 squares with the size 100 x 100.
On a new layer at the top left corner create a 100 x 100 square with any color or image.
Right click on the layer with the square in the layer's palette and choose Convert to Smart Object.
Hold Alt and drag the layer on top of itself 9 times to have total of 10 copies of the layer.
On the canvas, make sure there is no selection, and with the Move tool drag one of the overlapping squares snapping it to the top right of the canvas (this is easy if Snap to Document Bounds is checked in the View > Snap to menu).
In the layers palette Shift click the first and last layers to select all layers with the square.
Make sure the Move tool is selected and in its options at the top of the screen click the "Distribute Horizontal Centers" button (the third from the right side).
While all layers are still selected in the layers's palette, press Ctrl + G to group them.
Duplicate  and distribute the group vertically in the same way you duplicated the squares but using "Distribute Vertical Centers" button instead. However, Alt+ drag a group doesn't work on a document with nothing but a single group, and I had to duplicate the first group by right clicking on it and choosing Duplicate. Then you can Alt + drag and drop between Groups.
If you whish, while all groups are selected press Ctrl + Shift + Group, to ungroup and then Ctrl + Group to have all squares organized in one group and that's  basically it with the initial setup.
Now edit a tile and update the image.
In the layer's palette, double click the icon of any of the smart layers with a square and this will open the square in its own window.
Change, create or paste new image on the image of that window and when you Save this will update all tiles in the other window.
Also in case you don't know, when you are editing the square of the smart layer, you can use Filters > Others > Offset with Horizontal and Vertical set to 50 pixels and for the Undefined Areas, check Wrap Around. to help you with creating a seamless tile. It creates seamless borders and all you have to do is eliminate the seams in the middle with the cloning or painting tools.

Similar Messages

  • I don't know what I downloaded that caused the problem, but now when I try to make a new folder on the desktop of my new Windows 7 computer, I have only the fol

    I don't know what I downloaded that caused the problem, but now when I try to make a new folder on the desktop of my new Windows 7 computer, I have only the following choices: Shortcut, Bitmap Image, Contact, Microsoft Word Document, Journal Document, Microsoft Powerpoint Presentation, Text Document, Microsoft Excel Worksheet, and Briefcase. No new folder choice. Anyone have any ideas how I can correct the problem?

    This support forum is for Firefox related issues. The volunteers on this forum can only help with Firefox issues.
    Please consider contacting another support service like [http://www.ask.com/answers/browse?o=0&l=dir&qsrc=321 Ask.com].
    Sorry.

  • Make a New Folder from the search field

    Tried searching all over, can't find the answer to this simple question.
    How can I use Automator to make a new folder with the same name as what I am searching for in Find Finder items?
    Basically I am working with large image sequences that are all being rendered in one folder, but then need to be sorted based on their Prefixes before an underscore. I'd love to not have to copy what I'm searching for into the New Folder field, too.

    I would particularly like to organize downloads by renaming them, and then they automatically get filed away in the correct folder.
    You might achieve something similar by using AppleScript. The example script below, while not meant to be a definitive solution, might provide a guide for you to work with.
    The script specifies paths to various existing folders, in this case Music Downloads and Movie Downloads. Once files passed to the script meet the required criteria ("if characters 1 through 5 of theName...") then the files get moved to their appropriate destination folders.
    To run this script as written you would first need to create a Music Downloads and a Movie Downloads folder, making sure to specify the exact paths to these folders, and replacing "username" in their paths with your actual short name. You would also want to rename your files so that they meet the required criteria: music files might be renamed music_1, music_2, and so on, while movie files could be named movie_1, movie_2, etc.
    The script below can be copied and then pasted into your AppleScript Script Editor to be saved as an application droplet. Once saved, you can drag and drop single or multiple renamed music or movie files, separately or in combination, onto the the saved droplet's icon. If all goes as expected, the music files will be moved to the Music Downloads folder while movie files get moved to the Movie Downloads folder.
    The script was written so that a warning dialog is issued if files passed to it don't meet the renaming criteria. Also, if any duplicate files exist in any of the destination folders, a dialog will appear offering the option to a) replace the item, b) don't replace but continue moving non-duplcates, or c) quit altogether.
    My preference would be for the AppleScript-only droplet approach. But if you'd like to use Automator and have the script available through a right-click contextual menu, you can create this single-action Automator workflow: *Run AppleScript* (from the Automator library). Simply remove the script from its "on open" command handler and insert the remaining code between the Run AppleScript action's default "on run" command handler. Then, from Automator's File menu choose "Save As Plug-in" > Plug-in for: Finder, with a name such as "Put Away" and you should be set.
    +The script:+
    *on open*
    *tell application "Finder"*
    *set theseItems to selection*
    *repeat with i from 1 to the count of theseItems*
    try
    *set thisItem to item i of theseItems as alias*
    *set theName to name of thisItem*
    *if characters 1 through 5 of theName is {"m", "u", "s", "i", "c"} then*
    *move thisItem to "Macintosh HD:Users:username:desktop:music downloads" -- Specify exact path; replace 'username' with your short name.*
    *else if characters 1 through 5 of theName is {"m", "o", "v", "i", "e"} then*
    *move thisItem to "Macintosh HD:Users:username:desktop:movie downloads" -- Specify exact path; replace 'username' with your short name.*
    else
    *display dialog "Only items which meet the criteria can be moved." & return & return & "The item " & (ASCII character 34) & theName & (ASCII character 34) & " cannot be moved" with icon caution buttons {"OK"} default button "OK"*
    *end if*
    *on error*
    *tell me to activate*
    *display dialog "An item named " & (ASCII character 34) & theName & (ASCII character 34) & " already exists in its destination folder. Would you like to replace it with the one you are moving?" & return & return & "Replacing the existing item will overwrite its current contents." with icon caution buttons {"Quit", "Don't Replace And Continue", "Replace Item"} cancel button "Quit" default button "Don't Replace And Continue"*
    *if button returned of result is "Replace Item" then*
    *tell application "Finder"*
    *if characters 1 through 5 of theName is {"m", "u", "s", "i", "c"} then*
    *move thisItem to "Macintosh HD:Users:username:desktop:music downloads" replacing yes -- Specify path and replace 'username' as above.*
    *else if characters 1 through 5 of theName is {"m", "o", "v", "i", "e"} then*
    *move thisItem to "Macintosh HD:Users:username:desktop:movie downloads" replacing yes -- Specify path and replace 'username' as above.*
    *end if*
    *end tell*
    *end if*
    *end try*
    *end repeat*
    *end tell*
    *end open*
    The above script worked for me in testing. Good luck.

  • Is there a way to open a new window from the "Go" menu in Mavericks?

    Before Mavericks, I was able to go from the Finder to the top menu "Go" -> "Utilities", or Applications or Home… and a new window would open.
    Now I have to manually open a new window to avoid loosing my existing window.
    Is there a way to open a new window from the "Go" menu?

    Before Mavericks, I was able to go from the Finder to the top menu "Go" -> "Utilities", or Applications or Home… and a new window would open.
    Now I have to manually open a new window to avoid loosing my existing window.
    Is there a way to open a new window from the "Go" menu?
    First, as others have already stated.....make sure the checkbox is deselected for "open folders in tabs instead of windows" in Finder Preferences.
    If you're like me and don't like tabs very much, there is a way to make folders always open in windows with a simple click (I'm using Mavericks 10.9.5).  Go to a root folder (for example, the Documents Folder), open it, and select View > Hide Toolbar, then all folders within that root folder will open in a new window.
    As an alternative method, any folder can be opened in a new window by holding down either Command Key while clicking the folder. But sooner or later you will forget to hold down that key, and then clicking on a folder will open in a tab (which will automatically resize the window and cause much aggravation).
    The Hide Toolbar trick will also work with any folder present on the Desktop. It will make all folders inside that folder open in new windows.
    To make the Applications Folder open in a new window when opening it from the menu bar at the top of the screen, you will have to open the main hard drive folder and use the Hide Toolbar trick. This will cause all folders inside it to open in new windows.
    Hope this helps.

  • Using Firefox 5 in Windows 7, once I have Firefox open, I can no longer open a new window using the start button. How do I fix?

    As I stated, I have Windows 7 on my laptop and have installed Firefox 5. I sometimes like to have multiple windows of the browser open. But, unlike any previous version of Firefox, now when I have the browser open, when I try to open a new window using the Start menu, it will not open one. I have to use Ctrl+N. Why did this change?
    This may seem insignificant but it really hampers my work flow. For one, with other applications, Shift+N is what opens a new window. For two, I've been doing with with my browsers for years now and it's like second nature for me - having to remember that in Firefox it's Ctrl+N is a pain in my tuccus.
    Firefox is my go to browser and I would like it to stay that way. Please find the solution for me! I have tried looking using Tools, Options, as well as looking at my start menu and taskbar options, and no dice.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Open new window in the same form

    Hi
    I created a form with 6 records displayed. I have a check box for each record. I would like to select a record and make the check box checked. Once I check a checkbox I would like to automatically open a new window in the same form with further details of the checked record. Could you please help me how I could work on this.

    Dear you have to create relation between the blocks then you can achieve this like:
    1) Create two canvases in your form (canvas1 and canvas2).
    2) Create a window in your form with name Window2 now you have two windows (Window1 and Window2).
    3) now set the property 'Primary Canvas' of each window (Window1 = Canvas1, window2 = Canvas2)
    4) Now create database block of you main table with (CAT, NAME, DEPT) fields and select the Canvas1 in the layout wizard.
    5) Create another database block with same table but this time select only 3 fields (CAT,SAL, DATE) and at the time of creation mention relation between blocks in the Data block wizard (block1.cat = block2.cat) and select the Canvas2 in the layout wizard.
    6) Now create check box field name MASTER_CHBOX in first block and set Database Item property no of this check box item and set the Value When Checked property to Y and N for Value When unChecked.
    7) Create a trigger on CheckBox Item and paste below code in it.
    if :MASTER_CHBOX = 'Y' then
    show_window('WINDOW2');
    go_item('SAL');
    end if;
    Regards.
    Omer

  • How can I open a new window with the same website like the one I have open?

    In safari I can open a new window with the same website like the one I have open, that makes it easy continuing to navigate on a website and to go back to the original website

    Hello Andieas
    Why open a new window for fast browsing??
    Open new tabs.
    Just right click on what you want to open and click "Open in new Tab"
    It is easy and doesn't consume memory from your computer as well as easy to navigate.
    Hope you'll like it

  • Firefox upon opening an image in a new tab, centers the image from top and bottom and surrounds the image with a grey frame. Just started having the problem today, searched Google to no avail.

    Firefox upon opening an image in a new tab, centers the image from top and bottom and surrounds the image with a grey frame. Just started having the problem today, searched Google to no avail.

    Oh wow, looks like a new feature.
    The "page" links in a stylesheet with the address "resource://gre/res/TopLevelImageDocument.css". If you remove that reference, then the image displays in the old style.
    '''''Edit: Please skip the rest of this post and check out the next one.'''''
    There might be a more elegant solution than that, but you could use a bookmarklet to strip out that link when you want to view the page in its old style. A bookmarklet is a snippet of JavaScript you save on the Bookmarks toolbar for quick access.
    First, copy the following code to the clipboard (it's all one long line):
    <br>javascript:var ssheet=document.querySelector('link[href="resource://gre/res/TopLevelImageDocument.css"]'); if(ssheet)ssheet.parentNode.removeChild(ssheet); void 0;
    Next, if you are not displaying the Bookmarks Toolbar, use View > Toolbars > Bookmarks Toolbar to display it. (If you aren't using the classic Menu bar, press Alt+v to call up the old View menu. Right-clicking the gray area just below the page address also allows you to display the Bookmarks Toolbar.)
    Right-click on the Bookmarks Toolbar (or Mac equivalent of right-click!) and choose New Bookmark.
    Paste the code into the Location box (the second box).
    Then type a useful name in the Name box (e.g., Oldstyle Picture) and click Add.
    Now, when you want to tweak the image display, click the button to run the script.
    Manual clicking is a hassle, so it might make sense to look into other solutions. (Greasemonkey didn't seem to work; I think it might not run on .jpg files.)

  • Repeating the Image for page optimization

    Hello,
    Pl. suggest how to repeat the image vertical / horizontal, to
    make the page optimization in Dreamweaver in Design mode.
    Ex. : with small dot (image) to make a line.
    Regards

    > Pl. suggest how to repeat the image vertical /
    horizontal, to make the
    > page optimization in Dreamweaver in Design mode.
    > Ex. : with small dot (image) to make a line.
    Could you explain what your ultimate goal is in a bit more
    detail?
    If you need a dotted line, the likely solution is a CSS
    border attribute.
    -Darrel

  • Moving new window in the form

    i have to copy the existing form to a new one and then the requirement is like:
    need to make a window on first page with graph as a window type.
    i have done till this.After this need to move the new window to the left of the form.
    here i am getting stuck.not able to view my window on the first page.
    Please tell me how to do this.
    i am using se71 transaction.

    Hi,
    After importing the graphic in SE78,you can upload it to the window by using the INCLUDE OBJECT command in the text elements of the window.
    Read the following posts
    Include graphics in SAPSCRIPT formular
    how to include a logo in sapscript
    Regards
    Avinash
    Edited by: Avinash Jagtap on Dec 1, 2009 11:18 AM

  • Open new window in the same Window

    Im developing a project in JavaFX where I wish to open the new window in the same window
    Here is my code :
    Stage st=(Stage)((Node)t.getSource()).getScene().getWindow();
    I tried this but its giving an exception

    It is possible to specifiy a named window instead of _blank.
    So you could use the following instead:
    web.show_document('html/hello.htm','my_window');
    where my_window can be anything you want to call that browser window.
    However, I have discovered that if you put this in a button trigger, the second time you press the button (if the window is still open) it will not take focus - ie. it remains in the background.
    You can get around this by closing the window if it is already open:
    web.show_document('html/close.htm','my_window');
    web.show_document('html/hello.htm','my_window');
    The close.htm needs to contain some javascript to close the window:
    <html>
    <body onload="closeit()">
    <script>
    function closeit()
    window.opener = top;
    window.close();
    </script>
    </body>
    </html>
    Apparently XP SP2 is a little stricter with javascript and may not allow this. Also, not sure if this works in all browsers, I only tried IE6.

  • How do I create a new window for the iTunes store?

    Hi,
    I have the latest iTunes update on a Windows PC, but I can't seem to open any new windows for the iStore like you used to be able to, so you have to come out of your iTunes library (annoying if you want to check that you haven't already purchased a song you're looking at etc.).
    Please tell me there is a fix (easy or difficult) for this!!
    Matt
    P.s. I have the latest iTunes update.
    PLEASE HELP!!!!

    Reboot the ATV and try it again. If it still won't play correctly, find the file in your iTunes store purchase history, click on the "Report a Problem" link, and report it to iTunes store support.

  • Can you delete an iCloud account but then make a new account with the same password?

    Me and my mum share the same iCloud account with her email address, but I can't make my own unless I delete my mum's account that I share with her. If I delete the account, will my mum be able to make a new account with the same password?
    Thank you!

    Yes.  You can use the same password for all your accounts (although it's less secure to do so).  You just have to use a different Apple ID to set up a new account.

  • How can I get a query in the search field to open in a new tab or new window from the current window?

    How can I get a query in the search field to open in a new tab or new window from the current window?

    If you are searching via the Search Bar on the Navigation Toolbar, this preference can be changed to have searches there open in a Tab.
    Type '''about:config''' in the Address Bar and hit Enter. Then answer "I'll be careful". Type this pref in the Search at the top.
    '''browser.search.openintab''' = double-click to toggle to '''true'''

  • Firefox not Mac OSX Spaces friendly - There is no right click option to open a new window in the curent space.

    Other browsers (Safari and Chrome) allow you to open a new window in the current space by right clicking the dock icon and choosing 'new window'. Firefox does not have this option in the right click. You must go to the other space that already has firefox open, create a new window there, and then drag it to the desired space. Please add the ability to launch a new window in the current space from the dock icon right click menu.

    I have gone to the link that you supplied . In the task manager-- ending the entry for Firefox.exec did not resolve the problem.
    I located my profile in the start menu In the run tab And entered %APPDATA%\Mozilla\Firefox\Profiles\as instructed.
    I received a cannot delete parent file is corrupted or unreadable. I then ran the Chkdsk (check disk )and tried the process again with no improvement . I have uninstalled Firefox, and redownloaded It. Still no improvement. I want my Firefox WHAAAAAAA

Maybe you are looking for

  • Ubuntu 13.10 on a T440 - Wifi, Sound, Fingerprint reader and TrackPoint issues

    I recently got my t440 and put Ubuntu 13.10 on it and have had a few problems pop up. Hopefully someone here can help, or I will find solutions and post here as things get working again. Wifi - I have a Thinkpad  11b/g/n 2x2 wireless card. I do not b

  • Unable to create database entry in the directory service. - TNS-04

    We run into this error when we tried to register an Oracle 10.2.0.4 database with OID server (10.1.4.3): Unable to create database entry in the directory service. - TNS-04409: Directory service error We use Oracle DBCA to register to the OID. Both Or

  • Swapping hard drive into external enclosure

    Hello. I just installed a hitachi 160gb hard drive in my macbook. No problems, easy as pie. So I wanted to install the original toshiba 60gb into a usb external enclosure, here's the problem. So the hard drive has a plastic part on it that covers the

  • How can I get iMovie 10 to see my iPhoto Library after I relocated it.

    How can I get iMovie 10 to see my iPhoto Library after I relocated it. I moved my iPhoto Library to a secondary hard drive, because my main SSD wasn't large enough. I then upgraded to IMove 10.0.4 and also moved my iMovie Library to the secondary har

  • OS Authentication problems during external procedure calls

    Hi, Here's our setup: Oracle 9i on Windows OS 1. Created an OS ID = TESTID on domain = MYDOMAIN MYDOMAIN\TESTID 2. Granted the necessary OS rights on MYDOMAIN\TESTID and assigned it to start/stop the external procedure listener service. The ID has "d