The Transform Each Effect: more flexibility is needed please...

Is this really wishful thinking?
Hi,
I was reveiwing recently an episode on AdobeTV with Colin Smith regarding a very neat trick applying a style with Illustrator and repeating business cards on the same page. Very cool idea and way of using that effect indeed. I particularly like the fact that you can store and save that effect as a style so you can use it over and over again.
http://tv.adobe.com/watch/no-stupid-questions-with-colin-smith/illustrator-business-cards/
A question came up to my mind about an issue and some possible limitations of this "Effect", since it can only resize objetcs by entering  % values but nowhere can one can enter numeric values instead. Of course you can perform that task with the "Transform Pannel" but you cannot do it with the "Transform Each Effect". Let's say that you have many logos on a page that you would like to reduce/enlarge to a certain width or height for each one as 2" width for example, you would have to do the math first to figure our what would be the % and then transfer this result in % to the "Transform Each Effect" so it can do the task.
In such a case, you cannot use the "Transform Panel"  to reduce all the logos at the same time to a individual width of 2" because Illustrator  then consider the width of all the logos globally or as a "Group" but not each one of them. So you would end up with the wrong result. And, going futher with the math would means further steps and maybe involves then other "Trial an error" tests before acheiving what you are looking for.
For a better understanding, please view the above video where the author explain and debates quite clearly that point::
http://youtu.be/V4-Ee9mJAOA
Like the author says at the end of in his video, you can always make a small "Action Script" but it involves more steps andfurther testings. So more flexibility is needed here from the "Transform Each Effect" and I tend to agree with the gentlemen on that matter. As you may know, many of us who are involved in production the simple task of rearranging/transforming logos is performed many times for certain projects. By adding this feature to the "Transform Each Panel" would be a great help to us all. Also, just imagine if that feature could then be save as a "Style", what a great time saver it would be for all of us!
I know that you can first rezise one object with the "transform Panel" an then use the the "Transform again" command  in order to apply it to the others. But you cannot do it to all at the same time because Illustrator apply that transformation then globally. Also, if the some logos are let's say of various sizes it does not work at all.
Is there another way some of you may know how to do it simpler? Is there a special "Plugin" available with Illustrator that you may know who could perform that type of task?
May I finally point out that i'ts not a matter of doing that small task but the pain rather resides in doing it over and over again. So I do beleive that flexibility is needed here for us all...
Thanking you in advance and looking forward to read you,
Robert Marchand
P.S.:
Sorry, but English is a "Work in progress" in my case...

oh yeah. sorry. Two new errors were generated (same
type). ...Yeah, sorry I didn't look closely enough.
May I suggest a different approach? This is far from perfect, but is a big improvement of your current code:public class Inventory
    public static void main( String args[] )
        Iteminfo[] myItems = new Iteminfo[3];
        myItems[0] = new Iteminfo( 01, "Laptop", 15, 2000 );
        myItems[1] = new Iteminfo( 02, "Desktop", 25, 1500 );
        myItems[2] = new Iteminfo( 03, "Server", 10, 5000 );
        System.out.println("Inventory Program Part 2\n\n");
        displayItems(myItems);
        System.out.printf( "The total of all inventory is: $%.2f. \n\n", getInvTotal(myItems));
        System.out.printf( "The sorted inventory list is: ");
        sortItemInfo(myItems);
        displayItems(myItems);
    static void displayItems(Iteminfo[] myItems)
        for(int i = 0; i < myItems.length; i++)
            System.out.printf("Item "+(i+1)+": \n\n");
            myItems.displayInfo();
static double getInvTotal(Iteminfo[] myItems)
double total = 0.0;
// Do the same thing with the for-statement here as
// well, and add everything to the variable total.
return total;
static void sortItemInfo(Iteminfo[] myItems)
// your sort algorithm here
Try to finish it.
Good luck.

Similar Messages

  • I am using InDesign CS5. I have a body of text which is ranged left with tabbed indents. My client now wants the copy to be justifed, keeping the tabbed indents. Help and advice needed please!

    I am using InDesign CS5. I have a body of text which is ranged left with tabbed indents. My client now wants the copy to be justifed, keeping the tabbed indents. Help and advice needed please!

    Hi
    That screen grab helps a lot. There’s a much easier way of doing what you’re doing.
    Remove all your tabs and set the text in justified paragraphs.
    I’ve typed in dummy text in the example I made below, but after “19.1” put in a space and put your blinking cursor after the space and before the ’N’ of ‘Notices'.
    Then hold down the Command key and hit Backspace (on Mac at least - it’s the key between the Inverted commas/ apostrophe key and the return key).
    The text will jump into place the way you want it to.
    Hope that helps
    Paul
    PS You can set a tab, instead of using a space, in the description I gave above. So, after 19.1 or 19.2 or 19.185 etc etc insert a tab, then hit the Command Backspace after every paragraph number and they'll all line up exactly together. You'll find that editing text within the paragraphs
    after you've set it will be LOADS easier this way.
    You can put the tab anywhere you want it to be using 'Command-ShiftT' and putting a 'left align' tab just after the number. Just type the Command Backspace after the paragraph number and it'll work

  • More Newbie help needed please.

    Hello,
    I am attempting to sort an array which is defined in the main method, but the array must be sorted through the use of another method. From my understanding, this is tricky, because as I found out last night, you cannot use another method from within the main method (this kind of makes sense). I think I am pretty close but am getting non-static referrence errors. Here is the actual error and code. Thanks for looking at this.
    error:
    D:\School\IT315\Programs\Inventory.java:64: non-static variable sortItem cannot be referenced from a static context
              sortItem = ("myItem[0].getTotal()" + "myItem[1].getTotal()" + "myItem[2].getTotal()");
    ^
    1 error
    Tool completed with exit code 1
    public class Inventory
         // Begin main method
         public static void main( String args[] )
              int i;
              //Instantiate Iteminfo array
              Iteminfo[] myItem = new Iteminfo[3];
              // Create Item Info object
              myItem[0] = new Iteminfo( 01, "Laptop", 15, 2000 );
              myItem[1] = new Iteminfo( 02, "Desktop", 25, 1500 );
              myItem[2] = new Iteminfo( 03, "Server", 10, 5000 );
              // Display Program title and description.
              System.out.println( "Inventory Program Part 2" );
              System.out.println(); //outputs blank line
              System.out.println();
              // Display item info
              System.out.printf( "The first item is: \n\n" );
              myItem[0].displayInfo();
              System.out.println();
              System.out.printf( "The second item is: \n\n" );
              myItem[1].displayInfo();
              System.out.println();
              System.out.printf( "The third item is: \n\n" );
              myItem[2].displayInfo();
              System.out.println();
              System.out.printf( "The total of all inventory is: $%.2f. \n\n", getInvTotal(myItem) );
              System.out.printf( "The sorted inventory list is: %s", sortItemInfo(myItem) );
         } // End method main
         //method to total inventory
         static double getInvTotal(Iteminfo[] myItem)
              return myItem[0].getTotal() + myItem[1].getTotal() + myItem[2].getTotal();
         } //end method
         // method to sort array;
         String sortItem;
         static String sortItemInfo(Iteminfo[] myItem)
              sortItem = ("myItem[0].getTotal()" + "myItem[1].getTotal()" + "myItem[2].getTotal()");
         } //end method
    } // End class Payroll

    oh yeah. sorry. Two new errors were generated (same
    type). ...Yeah, sorry I didn't look closely enough.
    May I suggest a different approach? This is far from perfect, but is a big improvement of your current code:public class Inventory
        public static void main( String args[] )
            Iteminfo[] myItems = new Iteminfo[3];
            myItems[0] = new Iteminfo( 01, "Laptop", 15, 2000 );
            myItems[1] = new Iteminfo( 02, "Desktop", 25, 1500 );
            myItems[2] = new Iteminfo( 03, "Server", 10, 5000 );
            System.out.println("Inventory Program Part 2\n\n");
            displayItems(myItems);
            System.out.printf( "The total of all inventory is: $%.2f. \n\n", getInvTotal(myItems));
            System.out.printf( "The sorted inventory list is: ");
            sortItemInfo(myItems);
            displayItems(myItems);
        static void displayItems(Iteminfo[] myItems)
            for(int i = 0; i < myItems.length; i++)
                System.out.printf("Item "+(i+1)+": \n\n");
                myItems.displayInfo();
    static double getInvTotal(Iteminfo[] myItems)
    double total = 0.0;
    // Do the same thing with the for-statement here as
    // well, and add everything to the variable total.
    return total;
    static void sortItemInfo(Iteminfo[] myItems)
    // your sort algorithm here
    Try to finish it.
    Good luck.

  • The Viagra email. A little help needed please

    Morning All
    SWMBO has just checked her email account and noticed an email from an old friend.
    Upon opening it, it was blank except for a link.
    Clicking the link produced a page selling Viagra in $.
    She's just called her friend to tell her that this email is being sent out to many of her other friends (other email accounts visible).
    This friend uses Windows live and a @hotmail email address.
    She's tried to change the password but at this present time, it won't do anything.
    This friend also uses Facebook - possible means of a spammer getting the friends email details?
    How does her friend stop this?
    Thanks in advance.
    -+-No longer a forum member-+-
    Solved!
    Go to Solution.

    @ PheeragHfre. thanks for that
    @ Mordag.
    I'll pass this on as soon as I can make contact. I guess the friend can't find a charger.
    Her friend did say that she's having 'failed to send' emails in her inbox from what must be very old email accounts that are no longer in use. She knows of at least 2 that were 'throw away' accounts that are definatley not used.
    I did install CCleaner and malwarebytes on the friends machine last year and told her to use it at least once a month.
    She did say that she'd forgot to use them!!
    Outlook - I don't know but will hopefully find out soon.
    email header:
    From ***************** Thu Aug 26 12:17:44 2010
    X-Apparently-To: (the wifes email)@btinternet.com via **.***.***.**; Thu, 26 Aug 2010 12:17:45 +0000
    Return-Path: <****************@hotmail.com>
    X-YahooFilteredBulk: **.**.**.**
    Received-SPF: pass (mta1000.bt.mail.ird.yahoo.com: domain of ****************@hotmail.com designates **.**.**.** as permitted sender)
    X-YMailISG: 9vGpPtwcZAohT5j007z1KSb62PaRhaKRkbMsYEHC_OtOLVoy
     U3174SuewBxfVq1DlTiTfhaq9X0PKU6O8cMf_XhcMl_orx.zfOfAQjGiOS0w
     UKAGa.9vaG_.O6uRfcUhptHhQgs7xB7xyT.D6gGgoD_4qXhctzm_.rDjXcws
     QUV3FjLVJgx0qyXHxzejIcvB0zK9Nm0JYkr1TldJBSX8ekmrRm3Lho8ihiEK
     UcCzYT.DCcjJoSccQpxdZFW9xrkWAvnO5ddY8UNJ9L.xwTMoZp9hlJw5M4jm
     5hO4p1p4TITe5oTKNRudzQ12LxErAGBGa49_tSKTDhKBsWkA0k3eoM92KHMi
     YjKQ4udH6W9UUXK072fFzJ9QqFaG7WAi5S6maID3iNTNg42USoq3nzrB9hWG
     wkiyUbb3zRUk.Ud1W6Jekz6sHX5cKi95kclQ3XJjcWQ5amo2NjOYtPCL8vJH
     .reonHwz9BzQINZN3E17hFL072YxxaVI03avc5skzDHVBLJNXRsl6uqJltV8
     5FTadCcFuBx9.Bsb.gkBv0HPSsfpMA--
    X-Originating-IP: [**.**.**.**]
    Authentication-Results: mta1000.bt.mail.ird.yahoo.com  from=hotmail.com; domainkeys=neutral (no sig);  from=hotmail.com; dkim=neutral (no sig)
    Received: from **.**.**.**  (EHLO snt0-omc1-s49.snt0.hotmail.com) (**.**.**.**)
      by mta1000.bt.mail.ird.yahoo.com with SMTP; Thu, 26 Aug 2010 12:17:45 +0000
    Received: from SNT109-W60 ([**.**.**.**]) by snt0-omc1-s49.snt0.hotmail.com with Microsoft SMTPSVC(6.0.****.****);
         Thu, 26 Aug 2010 05:17:44 -0700
    Message-ID: <SNT109-W6092271********************@phx.gbl>
    Return-Path:****************@hotmail.com
    Content-Type: multipart/alternative;
        boundary="_8c0d692f-b753-4cc9-b652-346aad3108c1_"
    X-Originating-IP: [***.**.***.***]
    From: **************** <****************@hotmail.com>
    To: multiple email accounts deleted
    Subject:
    Date: Thu, 26 Aug 2010 13:17:44 +0100
    Importance: Normal
    MIME-Version: 1.0
    X-OriginalArrivalTime: 26 Aug 2010 12:17:44.0778 (UTC) FILETIME=[B031DAA0:01CB4518]
    Content-Length: 636
    I've scanned mine and upon first glance, I appear to be safe.
    All my antivirus is fully up to date.
    -+-No longer a forum member-+-

  • How to make restriction for the description of value in the transformation

    one infoobject AAAA which has value T001, T002, T003...
    the description of value
    T001 - Heywemay
    T002 - Heyrtya
    T003 - Tyuatyew
    I need to make routine in the transformation, when the description of value that contains "Hey", then we need to load it into infoprovider, otherwise we need to delete data package. Now the issue is  the filed in source is only Key, not description. But, we had maintained the description for infoobject AAAA. Anyboady know how to make restriction in the transformation, ?
    that means we only need to load data into infoprover once the description of value that contains "Hey". Should I add field 0TXTMD into infoprovider and make the link from infoobject AAAA? Thanks for any input.

    Hi,
    Write the Start routine to delete complete data packet whic won't have "Hey".
    DELETE SOURCE_PACKAGE WHERE TXTMD NP '"Hey'.
    If  you want load the data with blank for that InfoObejct if it won't contains "Hye".
    Write this code at TXTMD infoObejct level.
    if  SOURCE_PACKAGE-TXTMD NP 'Hey' .
          RESULT = ' '.
      elseif SOURCE_PACKAGE-TXTMD CP 'Hey' .
          RESULT = SOURCE_PACKAGE-TXTMD.
      endif.
    Note: In the above code I'm giving logic to do the same, but for code corrections please check with ABAPer.
    Thanks
    Reddy
    Edited by: Surendra Reddy on Aug 12, 2009 10:48 AM

  • How to outline the Round Corners effect?

    Hi,
    How do I outline the Round Corners effect?
    I have drawn a rectangle outline, and applied the Round Corners effect. I need to now outline both the stroke (easy) *and* the round corners effect. What I need is a path, containing the outline including rounded corners.
    I'm trying to export an illustration to XAML and it doesn't seem to support the round corners effect, thus it needs to be part of the path and not an effect.
    Any help would be appreciated.
    Thanks!

    A side note (probably already requested):
    Wouldn't it be coherent if the Expand Appearance command eventually were accessible right on the Appearance palette? That would be its native location, it seems …

  • What type of Mac do I need please?

    Hi ,
    I would like some advice on the type of Mac and Spec I need please for my business. I am unsure about whether I should get a macbook pro, imac or desktop mac pro. Most computer jargon goes straight over my head so please if you answer use small non technical words!!!
    This is what I need the computer for:
    1. Top quality Video Editing - Final Cut Pro. I will be using the computer for a lot of Video Editing. I need a computer that is capable of rendering video at fast speeds without compromising the performance too much.
    2. Multi-tasking - I want to be able to be working on photoshop, whilst encoding or compressing video, downloading something from the web and running a few programmes at the same time such as InDesign etc
    3. Disk Space - I will have a lot of video content (raw footage and edited that I need to store) but having said that, I'm guessing a slight upgrade to a 2TB hard drive would do.
    4. My business works with the latest Online Games such as World of Warcraft and so the Graphics Cards / Memory / Processor Speeds needs to be able to run these online MMORPGs at the optimal speeds, frame rates etc
    That is pretty much it. I am unsure about what type of Mac computer to get. My budget is tops £5k including VAT but I'd prefer not to spend that if I don't need to.....I just want a computer (27 inch screen) that can do all the above comfortably.
    Thanks very much for any help that is offered, much appreciated,

    MHz and GHz matter.
    Also, dual processor has overhead.
    6-core single processor is the equal or better and optimized even to an 8-core (which would be 2.93GHz and BTO$)
    Blame Apple for "hiding" the 6-core.
    Poor web site design: have a page for single processor configurations, not "Quad-core models" where there is BTO 3.33GHz for $1200 extra. Buy your own 2.8 and buy W3680 $600, then sell the 2.8, and you walk away with $900 saved.
    Buy the Special (not avail in UK) 2.8 for US$2119 and upgrade processor in under hour.
    Refurbished Mac Pro 2.8GHz Quad-Core Intel Xeon - Apple Store (U.S.)
    Offer a dual processor 12-core @ 3.33GHz for the high end most demanding (and US$7.5K or more?)
    That is what MPG and OWC Mac Pro Turnkey Program can do. And MPG does sell custom configs configured and tested.
    I would never recommend 8-core at this point. You spend $6200 for 2.93GHz x 8, ($2500 more than 6-core and still 400MHz slower per core);  2.4GHz is a joke, and even the 2.66 US$5000 is not even close! Nope.
    Build a workstation, that's another matter and gets interesting if your primary apps and OS run on Windows.

  • One more nugget: Chart zoom with the "Mouse Over" effect

    Hello all.
    Just read my signature first, it might explain a lot. I do not intend to compete with Darren and I don't think this "nugget" (at least it supposed to be one) will amaze any of the LV veterans and this forum is rich of them. But maybe it will bring some new ideas to some of you or maybe it will be useful for some LV beginners (like me). It is very likely, my code will have some lapses, but please be gentle pointing that out to me. If you feel a need, you can always optimize the code and develope it further. Just don't forget to share!
    So back to the point.
    I am developing a project using LV. In my program there is a waveform chart which has to show 4 plots. Depending on the length of the X Scale, it sometimes gets hard to see the plots clearly because of their density.So I decided that I need a tool, which would zoom the chart in. And this is what I have came up with after a few "Google" searches to check which part of the bike is already invented and also a bit of programming by myself. 
    Maybe you guys (at least the veterans) know the BetterVIEW Consulting LV example where they have implemented the Mouse Over effect. So a part of their example has been used in this tool and part of the credit must go to them. I thank them a lot
    This tool uses a cluster and its property of visibility to show/hide the cluster depending on if the current position of the mouse cursor is in the desired range or not. The program also gets the image of the chart and returns the subset of the image. The subset is taken for the area arounf the mouse cursor. So if you move the mouse, the zoomed in area will also chage in response. After that, the subset of the image is zoomed in for better view. 
    The user might chage the zoom factor during the execution. Also it is possible to turn the zoom option On or Off if you don't wish to see it for the moment. 
    This is how the front panel looks like:
    And this is the image of the block diagram (see the attached files for the vi, the VI Snippet tool distorts the code too much, so I haven't added it):
    I haven't found anything the same in the forum. Yet I'm a newbie here and I don't have that much experience surfing it. If it wouldn't be something new (in the forum, not necessarily to some of you personally), just ignore the thread. I hope this was worth your time and your attention. 
    Good coding
    Message Edited by Giedrius.S on 02-11-2010 12:46 PM
    While evaluating my code please have in mind that I am a LV novice. Therefore sometimes my code might violate some coding rules that I have to learn about myself. But how else could I do that...
    Chart zoom with "Mouse Over" effect
    Attachments:
    Zoom.vi ‏198 KB
    Mouse_pos.vi ‏20 KB
    Check_pos.vi ‏18 KB

    Very nice Giedrius.
    It takes guts to "step up to the chalk board" so I will do what i can to give you some ideas to think about. This is similar to the type of feedback I offer durring our in-house code reviews.
    1) The floating property nodes outside the loop are not sequenced by wires so they could execute after the loop starts. Sometimes this could cause weird errors. Seq with the error cluster.
    2) Property nodes can be re-sized so you can apply more than one property setting in the same call. Property node have to execute in the UI thread (which is single threaded) so using a single nodes will force a single context switch rather than one for each.
    3) Setting the same property repeatedly in a loop just burns CPU. THe Scale min for both X an Y can be moved outside the loop ?
    4) THe Wait Until Next ms" function does not get used in any of my code. It is not a way to get a fixed wait but rather a random wait. If you code completes 1 ms after the next multiple, the delay is double less 1 ms. If you have multiple loops using them and it f the delay for each are not unique prime numbers, then the "Wait until next ms multiple" is a good (cough cough) way of getting them all to wake up at the same time and fight for the CPU.
    5)An Event Struture to monitor mouse enter/leave and mouse move (this would have to be a sepearte loop) is easier on the CPU than polling.
    6) Is that math in the case to handle the Chart position on the FP? If so then using the property nodes for the chart to find its postion will let you code adapt to GUI changes.
    7) Right to left wires are not well recieved.
    8) A Bundle by Name is prefered over a "Bundle" since it is self documenting. I know the Picture function so I can see that is the rectangle you are specifying but reader not famliar with that function would not be able to "READ" the code without poking at it.
    9) THe event structure would also help with setting the Zoom factor. Only poke it when you have to.
    That is all that comes to mind at the moment.
    Again thank you!
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Need for more flexibility in deciding who can edit shopping carts and do GR

    Hello,
    Running ECS SRM 5.0
    As far as I know, there are two options when it comes to who can edit and change shopping carts and also do goods receipt.
    These two options are controlled by roles. The normal is that you can only do this with documents created by you, or you can do this for all documents by using admin role and central receiver.
    My business needs more flexibility here. We want to have ie one person in each organizational unit that can edit SC and do GR for  everybody in his unit (and only there).
    Is there a way this can be controlled, i.e. in a badi?
    I know about shop on behalf of and that is a workaround that we can use, but I am looking for a more smooth solution
    rgds
    GAR

    Hi
    Have you tried using the BADI - BBPWFL_LIST ??_
    Please go through this ->
    Re: How to limit what a Purchaser can see in the Sourcing Cockpit
    Re: Filtering content in the SRM confirmation worklist
    Re: Resctriction while displaying work items in sourcing cockpit..
    Please revert in the event of any query.
    Regards
    - Atul

  • The error message "No more virtual tiles can be allocated" appears when I try to use the effects in the quick editing mode in my Elements 13. The baton OK has to be pressed several times for loading all effect patterns. The error returns when selecting th

    The error message "No more virtual tiles can be allocated" appears when I try to use the effects in the quick editing mode in my Elements 13. The baton OK has to be pressed several times for loading all effect patterns. The error returns when selecting the particular pattern.
    The problem does not appear, if PH Elements 13 is executed in the administrator mode.
    The available computer resources are rather  large enough: CPU INTEL i7 4 cores,  16GB RAM, 1TB HDD + 32GB SSD, Windows 8.1.
    Please, advice how to solve this problem? Maybe, there is patch or updating available?

    Dear n_pane,
    Thank you for the quick answer. In the meantime I found other way to pass by the problem. I increased the cache level up to the maximum value 8.
    The errors reported as "No more virtual tiles can be allocated" vanish, but I still do not understand, why PSE 13 cannot work properly by the lower cache levels, having available maximum resources it needed (10443 MB RAM and 26.53GB SSD space for scratches), or cannot collaborate with the fast SSDs properly.
    I wish you all the best in the New Year 2015!

  • Is it possible to undo the Ken Burns effect on all photos at once in iMovie, rather than clicking "crop" and "fit" on each individual photo?

    Is it possible to undo the Ken Burns effect on all photos at once in iMovie, rather than clicking "crop" and "fit" on each individual photo?

    Hey Villiam,  Kevin is referring to setting a movement on a photo setting keyframes (like zoom out to in), right-clicking on Motion, and choose save as preset.  This will put that movement into your presets folder under Effects.  I am going to try this on my next montage and see if I can find some efficiencies.  Thanks Kevin, that was a great tip!!! 
    Also thanks to Jim.  I spent like 30 min looking at all the keyboard shortcuts.  It's a little overwhelming to establish a solid shortcut format that a team of editors can learn and use.  I'm going to be trying the FCP short cuts, then go back to the default.  It looks like the PR default has a lot of existing and helpful shortcuts assigned already.  It's just going to take getting used to a new platform. 
    I'm still looking for tools and/or methods to allow an editor to assemble a 60 second montage with 10 photos, VO and music in 30 minutes.  It's going to be a challenge but I think it's possible with the right innovative process.  I'll still challenge anyone to find a way to quickly assemble a montage in an assembly line or template-based fashion using Adobe Premiere CC where there's on-screen text, advanced transitions, timed to VO, etc. 
    I think I'm dreaming for a tool to automatically do this within Premiere, while I think the answer for now might just be customizing motion presets and creating a favorites folder of transitions that can be dragged onto each clip.  I'll see if there’s a way to apply a set of transitions or motion presets to a series of photos on the timeline opposed to doing it one by one.  I can see this solution being important as video montages are becoming more popular in our industry, and the faster we can make them using a professional software package like Premiere the more prosperous we will be. 

  • "After Effects error: RAM Preview needs 2 or more frames for playback"

    i7-980x, Win 7 64, 16 gb RAM
    I STILL get the "After Effects error: RAM Preview needs 2 or more frames for playback" and max allowed memory of 0.4, despite max usable memory listed as 15.99.  Sometimes if I run Premiere Pro, PS, AI, 3-4 QT movies and 5 or six other programs simultaneously, after effects will recognize Premiere Pro and allopw me 5-6 gigs active memory, but this can take an hour or two and is hit and miss.
    VERY FRUSTRATED here.
    This happens with and without the firewall turned on.
    Please help

    I get this error message when I accidentaly move my CTI (Current Time Indicator) to the end of the composition. If besides also the option "From current time" in the preview panel is checked, After Effects will see that I just marked less than 2 frames namely 1 (from the end frame of my comp to this end frame).
    Check therefore where your CTI is positioned!
    Also you could have the same problem, if this option "From current time" is not checked, but you have your work areas in- and out-points closer than 2 frames together.
    So condensed: Check your CTI and your work area and set the CTI on a previous frame or let your work area start earlier.

  • Have the developers considered randomizing the numbers for the passcode?  It is easy to watch the pattern when someone enters their passcode.  However, if the numbers appeared is a random order each time, it would enhance the security feature even more.

    Have the developers considered randomizing the numbers for the passcode?  It is easy to watch the pattern when someone enters their passcode.  However, if the numbers appeared is a random order each time, it would enhance the security feature even more.  Personally, I would prefer this option with security in mind.

    He slightly beat you Meg, and I'm in the same boat with you. If I used a passcode I believe I would go with the feature to use a longer alphanumeric passcode rather than a 4 digit number even with the random code entry.
    And of course if Apple did put this feature in they need to make it an option or we'll see lots of posts wanting to know how to get rid of it.

  • I just order 8 calendars from iPhoto and they came to me fine. Now I need to order two more but when I go thru the process I get a message  saying:unable to assemble calendar. There is a probleme with the photo with the file name"(Null)"   more........ .

    Would someone be able to explain to me the following issue with Iphoto?
    I ordered 8 same calendars for my soccer team and received them fine. Although a couple of pictures on it are a little off (out of focus). I need to order two more of the same calendars but when I go thru the process ireceive an error message saying:
    "Unable to to assemble  calendar" There is a problem with the photo with the file name "(Null)" The full resolution version of this photo either cannot be located or is corrupt. Please replace this photo or delete it from your calendar.
    How can  I fine this "corrupt" photo? How did it go thru with the first batch of calendars but won't go thru now?
    Thank you for your help.   

    Apply the two fixes below in order as needed:
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Since only one option can be run at a time start
    with Option #4 and then #1 as needed.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager and launch.
    2 - click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option.
    4 - In the next  window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments.  However, books, calendars, cards and slideshows will be lost. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • With the new actualization of my ipod, app store wont let me download apps like kik, tumblr and more, i really need kik cause theres were i text my friends, what is happening?

    With the new actualization of my ipod, app store wont let me download apps like kik, tumblr and more, i really need kik cause theres were i text my friends, what is happening?

    What does "new actualization" mean?
    Do you have Restrictions set that world prevent installing those apps? Settings>General>Restrictions

Maybe you are looking for