Move and/or Re-Size Opacity Mask with AppleScript

apologies if this is regarded as a dual post. I saw a thread about this but it only related to JavaScript.
Anyway, I cannot seem to re-scale or move the Opacity Mask of an object with Applescript. The vector item will behave just as it should, but the Opacity Mask will remain in place. As you can imagine, I have tried all manner of solutions, from trying to select raster items to move with transforming, etc. and nothing has worked. Any suggestions would be greatly appreciated.

I see...it seems to be a bug, the actual mask gets ignored. Probably to be consistent with the user interface, you can not select the mask with the mouse either.
maybe someone else has found a way to work with Opacity Masks, I haven't.
as a side note, there's no need to select the objects in order to size them or move them, you can just reference them. Also, there's no "Selected" object, change that to "selection".

Similar Messages

  • Opacity mask with gradient not printable?

    I am trying to use a background in Illustrator that is made from a new effect called Opacity Masks in Creative Cloud.
    It groups two layers which can have transparent areas and then gradates them with a gradient. They grow gradually more transparent revealing the surface of the tube below. My printer says I cannot do this on flex press. Will not work in pre-press? Is this true?

    Opacity Masks have been available in AI since at least CS3. CC might have made them easier to work with, but they're not new. They may have to be "flattened" to separate correctly.

  • .mov and .mpeg4 videos will not sync with iphone4

    I have tried getting some modest sized (<1GB) videos on to my iPhone4 using iTunes 9. I have tried both .mov and .mpeg4 formats which are supported in the tech specs. Using both sync, and manual management modes, I get the error:"MOVIE X was not copied to this iphone because it can not be played on this iphone."

    The movies were recorded on a Kodak ZI8. On a whim I tried WVGA, HD720P (30), and 1080P (30). An 8 second WVGA was able to be transferred. The 780P and 1080P formats would not copy. The other projects I tried to copy over were compilations primarily WVGA, that although they showed up as .mov, I am guessing they carried along some artifacts of other formats (stills?).
    The 720P should be supported although I can't honestly validate the "Main Profile level 3.1 with AAC-LC audio up to 160 Kbps, 48kHz" requirement. Greek to me.
    I am a bit surprised that the state of the art Iphone is unable to handle videos that are easily uploaded to facebook. c-est la vie.
    Thanks.

  • Certain movies and TV shows won't sync with my iPad 2

    I a unable to sync certain Movies and TV Shows from iTunes to my iPad 2.
    Some iTunes Digital Copies and TV Shows downloaded from iTunes sync perfectly well.
    However, when I attempt to sync my iTunes Digital Copy of Rise of the Planet of the Apes, or the two TV shows given away in the latest 12 Days of Christmas promotion, I get the message "XXX was not copied to the iPad because you are not authorized for it on this computer."
    They all play fine on my iMac. Both the iPad and the iMac are signed in with the same iTunes account.
    I have tried deauthorizing and re-authorizing my iMac, without success. The same message appears when I try to manually manage music and videos.
    Any ideas why these files in particular will not sync? Many Thanks.
    iPad 2 (iOS 5.0.1) and latest iTunes (10.5.2) on Intel Core i7 iMac (OS X 10.6.8)

    Check out this thread...basically, changing the extension from .m4v to .mp4 allowed me to move a TV Show in iTunes onto my iphone4.
    https://discussions.apple.com/thread/3477094?start=0&tstart=0
    Good luck!

  • Movies and TV Shows will not sync with iPod Video 80gb -

    Okay, here is the problem:
    I have an iPod Video. Previously, I have had roughly 20 movies that I ripped from my OWN DVD's to mp4 format. They all played fine and synced fine with my iPod.
    Then I updated my iTunes version to 7, and now I cannot get the Movies or TV shows to sync to my iPod. I get no error message. I cannot get them to sync manually or automatically. I spoke to tech support and they refused to help me because they only offer sync support for content purchased from iTunes. Of course, when I told them that I had purchased several TV shows from iTunes, they told me to send an email to the iTunes store and have them let me re-download the tv shows??
    What is going on here? It worked fine before? Same iPod, same computer? The movies are either mp4 format or h.264?
    Help!

    I'm having extremely similar problems with my ipod right now
    The only differences are: I have a 30gb and I already have movies on my ipod, it just won't let me add anything new to it!
    I have about 12gb of free space left (the movie I want to add isn't that big)
    I can manage (add/delete) songs and photos on it, it's just not letting me do anything with my movies! It keeps saying this whenever I try to copy my movie to it "[movie name] was not copied to ipod because it can't be played on this ipod." Which is total BS because there are already about 34 movies/music videos on it!
    Help!!
    Oh, ps, it's not letting me put album artwork on there anymore either... due to error code -50 (which I have NOT been able to find any help articles on!)

  • How can I recover movies and pictures from a formatted iPad with no iTunes backup copy

    I updated my ioS system and forgot to make a back up copy in itunes and preceeded to restore it to factory conditions. Is it possible to recover all Data if yes what sw would be recommendable?

    Let me get this straight.....You lost your phone.  You never backed it up, either to your computer or to a cloud service.
    How in the world would you expect to get data back?

  • Playing movies and changing format of DVD's with QT Pro

    I bought QT Pro and I seem not to understand the instructions on how to open up DVD's and converting them for my iPod.

    QuickTime Pro can't even play Hollywood (CSS protected) DVD's.
    It also can't extract audio from muxed (MPEG 1 or 2 and Flash) formats.

  • ICal move events from one calendar to another with AppleScript

    I made an AppleScript to clean up my calendars and thought I would share. My iMac had a calendar called "Home" and my iPhone had a default calendar "Calendar" so I ended up with all of my events spread across two calendars. Decide to clean up and move everything to one calendar.
    This script is admittedly not very efficient. The nested repeat loops means it takes a while to run. Feel free to take this as a start point. I have it checking each property for missing value before adding it to avoid errors. I could have added a line to delete the old event after creating the copy, but I was just deleting the whole old calendar after the script ran.
    I hope this is helpful to someone. Oh, this was created under Snow Leopard so if you are in Lion you might need to tweak things. I don't know how much the scripting library has changed.
    tell application "iCal"
              set thisCalOld to calendar "OldCalendarName"
              set thisCalNew to calendar "NewCalendarToMoveEventsTo"
              set cntrMatch to 0
              set cntrCopied to 0
              repeat with thisEventOld in events of thisCalOld
                        repeat with thisEventNew in events of thisCalNew
                                  set isOKtoProceedWithCopy to true
                                  if (start date of thisEventNew = start date of thisEventOld) and (summary of thisEventNew = summary of thisEventOld) then
                  --Don't copy
                                            set cntrMatch to cntrMatch + 1
                                            set isOKtoProceedWithCopy to false
                                            exit repeat
                                  end if
                        end repeat
                        if isOKtoProceedWithCopy then
                                  set theStamp to stamp date of thisEventOld
                                  set theAllDay to allday event of thisEventOld
                                  set theURL to url of thisEventOld
                                  set theRecur to recurrence of thisEventOld
                                  set theEndDt to end date of thisEventOld
                                  set theClass to class of thisEventOld
                                  set theStartDt to start date of thisEventOld
                                  set theDesc to description of thisEventOld
                                  set theSummary to summary of thisEventOld
                                  set theLoc to location of thisEventOld
                                  set theExcludeDt to excluded dates of thisEventOld
                                  set theSeq to sequence of thisEventOld
                                  set theStatus to status of thisEventOld
                                  tell thisCalNew
                                            set thePropList to {}
                                            if theStamp is not equal to missing value then
                                                      set thePropList to thePropList & {stamp date:theStamp}
                                            end if
                                            if theAllDay is not equal to missing value then
                                                      set thePropList to thePropList & {allday event:theAllDay}
                                            end if
                                            if theURL is not equal to missing value then
                                                      set thePropList to thePropList & {url:theURL}
                                            end if
                                            if theRecur is not equal to missing value then
                                                      set thePropList to thePropList & {recurrence:theRecur}
                                            end if
                                            if theEndDt is not equal to missing value then
                                                      set thePropList to thePropList & {end date:theEndDt}
                                            end if
                                            if theClass is not equal to missing value then
                                                      set thePropList to thePropList & {class:theClass}
                                            end if
                                            if theStartDt is not equal to missing value then
                                                      set thePropList to thePropList & {start date:theStartDt}
                                            end if
                                            if theDesc is not equal to missing value then
                                                      set thePropList to thePropList & {description:theDesc}
                                            end if
                                            if theSummary is not equal to missing value then
                                                      set thePropList to thePropList & {summary:theSummary}
                                            end if
                                            if theLoc is not equal to missing value then
                                                      set thePropList to thePropList & {location:theLoc}
                                            end if
                                            if theExcludeDt is not equal to missing value then
                                                      set thePropList to thePropList & {excluded dates:theExcludeDt}
                                            end if
                                            if theSeq is not equal to missing value then
                                                      set thePropList to thePropList & {sequence:theSeq}
                                            end if
                                            if theStatus is not equal to missing value then
                                                      set thePropList to thePropList & {status:theStatus}
                                            end if
                                            set theNewCopy to make new event at end with properties thePropList
                                  end tell
                                  set cntrCopied to cntrCopied + 1
                        end if
              end repeat
    end tell
    display dialog ("Exists(not copied):" & cntrMatch & "  New Copied:" & cntrCopied)

    That should not be necessary because I get the value of ID out of another table, where I generate ID with a sequence..
    So normally it should just tranfer that row from one table to another. But it doesn't !
    Knowing that I cannot create a row in the table wouter_published_posts(I can just move rows from the add_post table to the wouter_published_posts table), It should be inpossible that twice the ID appears. But yet he keeps trowing errors...
    help me, please

  • [AS] How can I move an object, specifically a Text Frame with Applescript?

    I'm converting some old Quark 8 scripts that we used to use for pagination over to Indesign and I'm stuck on how to move one of my elements.
    This is the WORKING script in Quark 8, which uses the "Origin" command.
                                                                                                        set origin of bounds of Ad_Box to {Position_Height, Position_Width}
    Is there a quick and easy way to do this in InDesign CS5? I've been searching Google and these forums and have had no luck.
    I played around with the Set geometric bounds function, but had no luck.
    Thanks!

    move Ad_Box to {Position_Height,Position_Width}

  • Cropping Images with Opacity Masks | Learn Illustrator CS6 | Adobe TV

    In this video you will learn a versatile method for cropping images in Adobe Illustrator CS6 and CS5. Using opacity masks allows you to retain the area of the image you cropped out, modify the clipping path later, and use complex blending modes, transparencies, and knockout groups.
    http://adobe.ly/V8tTZD

    Firstly great tutorial.
    Anyway I initially started a thread in the forums which lead me here regarding the use of opacity masks, I'm having real problems finding a solution to my specific problem.
    I've got 2 issues I'm trying to solve, the first is how do I show just a portion an object above another even though it sits in a layer behind.
    The second is I have an object with a linear gradient applied and I want to add yet another gradient just to a certain part of that object in order to make it fade out in a certain way.
    I've spent hours pouring through the help topics but nothing seems to fit my exact problem, sorry for asking questions here but I'm really stumped and I think an opacity mask would do the trick, I'm just not sure how to execute it.
    Thanks heaps.
    http://forums.adobe.com/message/5125695#5125695

  • Opacity mask shape shows in EPS file

    Hi guys, this might be a stupid question but for example: say I have text in illustrator and I put a white elipse over the text and then put an opacity mask on the elipse and paste the text onto the opacity mask so that the white elipse only shows up on the text, I then take the opacity down to create a glass effect so to speak. Well, when I save this as a PNG, it is all ok as all you can is the text with the glass effect, however, when I save it as a EPS file (which I need) it shows the WHOLE elipse in the background, as well as the text, how do I delete this white background that shows the elipse when saving as an EPS.
    Thanks

    There's a few ways you can do what you are doing.  You have not mentioned what color the text is.  But, yes you can do it by clipping.  Here's what I would do ( to bypass the Flattening issues ).  Copy the text and move it off the artboard.  Convert the copied text to outlines.  Position the ellipse over the text where you want it.  Select both the outlined text and the ellipse.  Go to the Pathfinder menu and select "Divide".  Now, select the elements inside the ellipse you want  to appear transparent.  Set the new color in the Color menu.  I'm thinking the text is 100% K ( Black ), where the ellipse appears inside the text, set the color to whatever transparency percentage you had used in the previous file ( er, let's say 40% K ).  As an option, you can delete any unwanted ellipse segments left behind.

  • Movies and videos on touch

    Is it possible to have both movies and songs on touch at the same time. Every time I synch a movie it erases my songs.

    Yes, absolutely.
    You may have more music or movies than can be stored on your iPod at one time, so you'll need to trim down what is actually synced to your device by using play lists, smart playlists, and modify the ipod sync selections for each of the types of media you'll be bringing with you.
    When your iPod is connected to iTunes, click on the iPod along the left column.
    Click the Music tab, and modify your selection to trim down the amount of music. Again do the same with Movies, TV Shows, Podcasts, and Movies.
    Hint: You can use "smart lists" to move a fresh selection of music every sync automatically - but control the amount of music by setting a size. This will let you reserve space just for music, but still leave room for movies and other goodies you should have with you.
    Hope this helps.

  • Migrating LONG RAW to BLOB and optimizing extent size

    Hi all,
    I got a quite fragmented table with a LONG RAW column I want to migrate to BLOB and defragment.
    DB version is Oracle9i Release 9.2.0.4.0 and this is a production environment.
    I know MOVE and/or CTAS are not possible with LONG RAW columns
    So, how can I do that? Is ALTER TABLE MODIFY the only possibility to migrate from LOING RAW to BLOB?
    Since ALTER TABLE MODIFY will lock the whole table preventing any DML operation, I need at least a rough estimate of the time needed for this operation. How can I do that?
    Since this table is quite fragmented, I also want to rebuilt it using a different extent size.
    I think I should issue a ALTER TABLE MOVE... after having performed the "ALTER TABLE MODIFY".
    Can I do something better to minimize unavailability to DML operations?
    thanks,
    andrea

    Hi,
    Is this an OCCI question?
    I don't see that "to_blob" is documented anywhere. The "to_lob" function can be used to convert long raw columns, but its use is pretty specific and certainly not for general query use.
    Regards,
    Mark
    EDIT1: Well, my local documentation set does not have "to_blob" in it at all. However, it is in the 11.1 SQL Language Reference on OTN:
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28286/functions186.htm#sthref2358
    Despite the fact that the documentation mentions "long raw" the function appears to only work with "raw" data in my 11.1 tests.
    What's your goal here?
    Edited by: Mark Williams on Jun 8, 2009 7:15 PM

  • Creating cut mask with live trace object?

    Hi, I was wondering if it´s possible to creat a "cut mask" (in my spanish version -mascara de recorte) using an object created with live trace without expanding it. I need this because whenever I expand it, the object is so big and has so many paths that is impossible for my computer memory to work properly.
    Thank you!

    No, that's not possible. You could only create an opacity Mask with that traced object. But you would get transparency then, this might make your workflow even more complicated depending on what exactly you're masking and what exactly the file will be used for afterwards.
    Isn't it possible to simplify the path?

  • Movie and TV purchases do not include closed captioning

    I just started using AppleTV for movie and some TV show purchases.  Before I used Netflix via AppleTV exclusively.  The problem I am encountering is ITunes movie and TV productes do not come with closed captioning. 
    To troubleshoot I went to Settings, Audio & Video and checked 'closed captioning' to "ON".  But still no luck. 
    With Netflix everything came with 'cc' and I would like to order more from ITunes but I won't until I can figure out how to get 'cc' working. 

    Closed captioning is not available on all content, check the information at the point of purchase to see whether content has closed captioning or not.

Maybe you are looking for