Work size = 20 x 14 " (Inches) I need to select 30mm in from that. So like an inner border... how on earth do i do it?

Work size = 20 x 14 " (Inches)  I need to select 30mm in from that. So like an inner border... how on earth do i do it?
Thanks,
Gary.

30 mm is 1.18 inches. The trick is to convert 1.18 in to pixels, so under Image > Image Size, look at the pixels per inch value and multiply it by 1.18 to get the contract value amount in Pixels. Mark it down.
Select > All to Select your 20 x 14 work area
Select > Modify > Contract  and  Select Apply Effect at Canvas bounds, and Enter your contract pixel value. Click OK to apply.
Select > Inverse to get your border.  Fill it with the color of your choice.
Save your work and done.

Similar Messages

  • Old computer died, need to get my music from my ipod touch to my pc, how can I do this without losing music for free!?

    I have an Ipod touch with about 900 songs on it, i used to connect with my old pc until it recently broke. i have just bought a new pc and was wondering how i could get my music from my ipod to my new computer! the only thing i need is music , no videos or anything. does anyone know how i can do this for free? not very good with computers by the way!

    - Transfer iTunes purchases by:
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer
    - Transfer other music by using a third-party program like one of those discussed here:
    Copy music
    - If you have synced photos and some other items you will need a paid program like TouchCopy or PhoneView. They also do music.
    - Connect the iPod to the computer and make a backyp by right clicking on the iPod uder Devices in iTunes and select Backup
    - Then restore the iPod from that backup. 

  • Have a new mac with OS X 10.9.5 and my CS4 is Not Working anymore. It says to Contact Adobe Support regarding the licence- but that Seems impossible. Any idea how to solve this?

    I Have a new mac book pro with OS X 10.9.5 and now my CS4 is Not Working anymore. It tells me to Contact Adobe Support regarding the licence - but that Seems impossible. Any idea how to solve this?

    Use the web chat and just be patient.
    Mylenium

  • I need to select certain files from TM to transfel to my Macbook Pro

    I bought a new machine and installed my system from time machine. I HAD a macbook from 2005 that had the airport connectivity issue. Apparently the glitch transferred via TM to the new Macbook Pro and I couldn't connect wirelessly. I worked with someone and we tried everything, even a disk repair form the CD but the problem couldn't be resolved. I erased the HD and reinstalled OS X from the disk and didn't use TM (network issue is solved).
    Now I need to access my files, and some software, from TM and put them on the new machine. How do I do that? When I open TM, the computer wants to format a new drive. I tried opening the existing external drive and a "Mobile Me" message popped up. I closed that out and did not try to go any further.

    cbmgk wrote:
    Now I need to access my files, and some software, from TM and put them on the new machine. How do I do that? When I open TM, the computer wants to format a new drive.
    Do you mean using +Select DIsk+ on the Time Machine Preferences window? If so, then no, you don't want to set up Time Machine to do backups (yet).
    If the connectivity issue is solved, you should be able to use +Migration Assistant+ to transfer your apps, users, and data, from the last backup. See Using Migration Assistant.

  • Need to stop fire fox from asking me to update my browser how do I do this

    Fire Fox keeps telling me I need to update my browser, newer browser is not compatible with my banking system. I updated and could not access my bank account, so I went back to previous version but I keep getting notice to update it is very annoying, how do I stop this.

    You should always use the latest Firefox version for your daily browsing to have the best protection.
    If you really need to use an older Firefox version for specific websites then either install this older version alongside of the current Firefox release by doing a custom install and creating a new profile and desktop shortcut or by using a portable Firefox version.
    See:
    *https://support.mozilla.org/kb/install-older-version-of-firefox
    *http://kb.mozillazine.org/Creating_a_new_Firefox_profile_on_Windows
    *http://kb.mozillazine.org/Shortcut_to_a_specific_profile
    You can install a portable (ESR) Firefox version to access websites that do not work with the current Firefox release.
    The portable version comes with its own profile folder and doesn't interfere with the currently installed release version.
    *http://portableapps.com/apps/internet/firefox_portable
    *http://sourceforge.net/projects/portableapps/files/Mozilla%20Firefox%2C%20Portable%20Ed./
    *http://portableapps.com/support/firefox_portable#helper_apps

  • I need to put an image up that looks like tv turned on

    I need to put an image up of a television and have a video of something looping
    in the center the image of the tv would be just that and a player
    would really be under the image playing the video. I am a newbiie and would b very greatful if someone would walk me through this. I prefer to be emailed here at  [email protected] rather than my email used for the forum. Replies here are greatly encouraged because i will be checking back often.

    The skin (just a graphic) is something that can be created in PhotoShop or even in Flash. It needs to be able to have a hole in it for the video to show thru, so use something like a .png graphic with a transparent background. That graphic really has nothing at all to do with the palying of the video... it's just a skin, covering over the top of the video (which is on a lower layer in Flash).
    So use your imagination! Go thru those tutorials listed and you'll be able to add the controls and loader bar. then when you are ready, you can incorporate an xml playlist if you like.
    Here is an example of a simple video player with no skin... just controls and loading bar:
    http://www.exploreolympics.com/index.html
    Here is that same basic video player with a simple graphic placed over the top of the actual video. The graphic is on a higher layer in Flash, and has a hole in it so the video will show thru. This player has an xml playlist added... so the graphic has to cover over that playlist also:
    http://www.cidigitalmedia.com/video.html
    Here is that same simple video player, different type of skin. Open the menu and click on "Trailer" and you'll see a scrolling playlist added to that same simple little vid player.
    http://www.serenityfarmthemovie.com/main18.html
    Here is the code for the simple player. Of course the playlist players have added code to build and access the playlist. But start with the simple player and build on your skill from there.
    /* Video player created by CI Digital Media for educational purposes */
    var nc:NetConnection = new NetConnection();
    nc.connect(null);
    var ns:NetStream = new NetStream(nc);
    video_screen.attachVideo(ns);
    /* Name of your video, with correct path, goes here */
    ns.play("video1.flv");
    /* Comment out this pause line for use with auto start or leave pause to start with Play button */
    ns.pause();
    rewind_btn.onRelease = function() {
    ns.seek(0);
    play_btn.onRelease = function() {
    ns.pause();
    var videoInterval = setInterval(videoStatus,100);
    var amountLoaded:Number;
    var duration:Number;
    // Trace the metadata then remove the last comment tag from code below //
    ns.onMetaData = function(myMeta) {
    for (var i in myMeta) {
      trace(i + ":\t" + myMeta[i])
    /* cut the comment tag from line 35 and paste at end of this line so scrubber will work
    ns["onMetaData"] = function(obj) {
    duration = obj.duration;
    function videoStatus() {
    amountLoaded = ns.bytesLoaded / ns.bytesTotal;
    loader.loadBar._width = amountLoaded * 160;
    loader.scrub._x = ns.time / duration * 160;
    var scrubInterval;
    loader.scrub.onPress = function() {
    clearInterval(videoInterval);
    scrubInterval = setInterval(scrubit,10);
    this.startDrag(false,0,this._y,160,this._y);
    loader.scrub.onRelease = loader.scrub.onReleaseOutside = function() {
    clearInterval(scrubInterval);
    videoInterval = setInterval(videoStatus,100);
    this.stopDrag();
    function scrubit() {
    ns.seek(Math.floor((loader.scrub._x/160)*duration));
    //-------Sound Controls--------//
    this.createEmptyMovieClip("sound_mc",this.getNextHighestDepth());
    sound_mc.attachAudio(ns);
    var videoSound:Sound = new Sound(sound_mc);
    mute_btn.onRelease = function() {
    if (videoSound.getVolume() > 0) {
      videoSound.setVolume(0);     
      else
       videoSound.setVolume(100);
    cidm_btn.onRelease = function() {
    getURL("http://www.cidigitalmedia.com/video.html", "_blank");
    Best of luck!
    Adninjastrator

  • Junk mail filter in yosemite doesn't work. i can't find the 'mark as junk' selection or 'remove from previous recipients' which would help to filter out spam.

    junk mail filter in yosemite doesn't work. from the flags, i can't find the 'mark as junk' selection. Formerly clicking on the email address in question would allow one to 'remove from previous recipients' which would help to filter out spam. I've adjusted all the settings under mail preferences, but that is not helping.

    Hello Diane162,
    Welcome to the Apple Support Communities!
    I understand that you would like to be able to filter some of the junk mail that you are receiving in Mail. The attached article has a lot of great information on junk mail filtering, including how to mark as junk and adjust the junk filter.
    Mail (Yosemite): Reduce junk mail in your inbox
    Cheers,
    Joe

  • HT201272 i need to re download a song that i purchased and accidentally deleted. how?

    i need to download a song that i accidentally deleted. how do i do that?

    Yes, it tells you exactly how to do this:
    Open iTunes. (You can download the latest version of iTunes.)
    If you're not already signed in, choose Store > Sign In and type your Apple ID and password.
    If you're in the iTunes Store, click the Library button, in the upper-right corner, to go to your library.
    Make sure that you have "Show iTunes in the Cloud Purchases" enabled in your iTunes preferences by going to iTunes > Preferences in the Store tab and clicking OK.
    In your iTunes library, click the content type you wish to download using the content selector in the upper-left. Choose Music to download music, Movies to download movies, and so on.
    Locate the item or title you wish to download.
    Click the download icon to download that item.
    Note: The download icon for previously purchased movies is located to the right of the movie title. To download previously purchased apps and books, you'll need to navigate to the Purchased page under the Quick Links section in the iTunes Store. For more information, follow the steps outlined below for iTunes 10.7 or earlier."

  • Need to select specific backup from i cloud

    I choose the wrong backup when installing sim card to my replacement phone.  How do I restore to a backup from several days ago?

    You can use an app like My Contacts Backup to back up your contacts as a vCard that you email to yourself.  You would then need to find a process to import them to your android phone.  Once option is to set up a Gmail account and import them to Google contacts.  You could then sync them to your phone from Google.

  • My iPhone mobile set got damaged. Got a replacement. Need to recover my data from the last iPhone mobile device. How to do the needful?

    iPhone got damaged
    got a new set as replacement
    all data is lost
    how to recover the data?

    When setting up the new one, you need to restore it from a backup of the old one.
    If you had iOS 5 on your old one:
    Your new phone should also have iOS 5, so on the setup screens, wait until you get to the menu that allows you to select "Restore from iCloud Backup."
    If you did not have iOS 5 on your old one:
    You can plug in the new phone to iTunes, select Restore. Let it do it's thing, and when it's done, select Restore from Backup.

  • I installed software, but need to uninstall and reinstall now that I have the registration number, how do I do this?

    I purchased a program for my business, and it is intended for Apple. however the program has since told me to enter a registration number (which I did not receive upon purchase, shame on MTSO in Edmonton) and it wouldn't accept anything. so I want to uninstall the program so I can reload it again entering the registration number that has since been given to me. hoping this will work, otherwise will have to find a new Massage Therapist office program.
    any help would be greatly appreciated!!!
    thanks..
    AlbertanWench

    First see if it has an uninstaller. If not, delete the app and do a Spotlight search on the name of the program  and delete any preferences it may have set. Look for any files bearing it's name or the name of the company that created it and delete those. This is one area where Windows often is better than mac os where uninstalling programs is typically easier within windows.

  • I have a specific font set for my outlook emails. When I use "send link" and need to add a note in that email, the font changes. How can I stop the font change? Thanks.

    I know this it "nit-picky", but to me it is frustrating. Is there a way to lock my chosen font and keep it from changing when a link from the internet is added to the email? Thanks.

    I at first thought it might be a Mac thing, but I couldn't find a solution. I realized that the date only affected my email, so then I thought it must be a Mozilla problem.

  • Need help in passing parameter from base page to popup page

    Dear ALL,
    I have a requirement as below.
    I have a page having one LOV, I need to select one value from that LOV and select one button from the page then it should open a popup page with the required data in tabular format for the field i selecetd.
    so i created a lov in my page and able to invoke the popup page through java script but how i can execute the query in popup page by taking the parameter whta i selected from base page.
    Please help me out.

    Mukul's Oracle Technology Blog: JavaScript In OA Framework
    --Sushant

  • Plugin Container for Firefox has stopped working. Also Real Player says it needs update but when I try it says newest version is already insatlled.

    Constant crashes , Plugin Container for Firefox has stopped working. Also Real Player says it needs update but when I try it says newest version is already installed.

    Google Earth Plugin
    GEPlugin Outdated Version Update
    Plugin Icon
    RealPlayer Version Plugin
    6.0.12.69 Outdated Version
    Still saying I need updates but when I update it says I have current versions already.
    Also still keep getting plugin container for firefox has stopped working. But I'm not see a problem with anything.

  • Need of SQL query in selecting distinct values from two tables

    hi,
    I need a query for selecting distinct values from two tables with one condition.
    for eg:
    there are two tables a & b.
    in table a there are values like age,sex,name,empno and in table b valuses are such as age,salary,DOJ,empno.
    here what i need is with the help of empno as unique field,i need to select distinct values from two tables (ie) except age.
    can anybody please help me.
    Thanks in advance,
    Ratheesh

    Not sure what you mean either, but perhaps this will start a dialog:
    SELECT DISTINCT a.empno,
                    a.name,
                    a.sex,
                    b.salary,
                    b.doj
    FROM    a,
            b
    WHERE   a.empno = b.empno;Greg

Maybe you are looking for

  • BW settings required when we change the host name in R/3

    Hi All, we had a test system in R/3 and we are planning to change the Host name in R/3 and this is connected to bw test.after basis change the host name in r/3 test what are settings required to be done in BI . Regards, jasmine.

  • Change book size but keep layout

    I am halfway through creating a 6 X 8 book, including a couple of pages I custom designed. I just noticed that this book size is available only in softcover, but I think I may want a hardcover book. I tried duplicating the book, then changing the dup

  • How to copy Safari bookmarks to iPad2

    I have a macbook running leopard (so no iCloud syncing), and I want to sync (or even copy) bookmarks from the macbook to my iPad 2.  When I sync, in iTunes, it does not give the option to sync bookmarks, it just says they will be synced via iCloud, w

  • Able to use % to query data in Some self service pages but in some pages we

    Able to use % to query data in Some self service pages but in some pages we get error " Search string cannot start with % "

  • Configure 64 Bit System for Flash

    Newer 64 Bit Systems are becoming the norm - How can Adobe not not make flashplayer compatible? Are there instructions for configuring for a 32 Bit browser on a 64 bit system? This is so frustrating and renders newer computers useless for lots of app