For the Seaon I Added an Animated Snow Globe to my Collage Toolkit

I  Updated my Photo Collage Toolkit for Photoshop Adding an Animated Snow Globe Action, Template and Video Demo.
If you just want the Animated Snow Globe I created a bare bone mini package you can download.
The SnowGlobe Zip file contains
  1.) SnowGlobe.atn - The action that drive the full process
2.) InteractivePopulateCollage.jsx - Toolkit script used to populate the Template
3.) Photo Collage Text Styles.asl - Text Layer style the script list
4.) Photo Collage Styles.asl - image layer style the script list
5.) SnowGlobe4x3.psd - Animated Photo Collage Template
The image files used in the video demo to populate the Background and Globe images
The demo also used the stamp Filename option th have the names stamped onto the images.
6.) Merry Christmas 2012.jpg
7.) Drink.png
Drop the Action .atn file and the layer styles .asl files onto Photoshop to load them into Photoshop.
Copy InteractivePopulateCollage.jsx into Photoshop's Presets\Scripts folder
Video Demo: http://www.mouseprints.net/old/dpr/SnowGlobe.html
Mini Package: http://www.mouseprints.net/old/dpr/SnowGlobe.zip
Toolkit: http://www.mouseprints.net/old/dpr/PhotoCollageToolkit.html
While the toolkit works with CS2 through CS6. The SnowGlobe template require CS5 or CS6 for easy moving.
There is also a Bug in CS6 Scripting. CS6 is the buggiest version of Photoshop ever released. Adobe failed to add "Bicubic Automatic" support into Photoshop's scripting DOM. If your Photoshop "Interpolation" preference is left set to Adobe's new default setting "Bicubic Automatic" some Photoshop Scripts will fail with an internal scripting error.
Before CS6 if you wanted to use a particular interpolation method transforming a layer you needed to change Photoshop Preference to do that. In CS6 Adobe has added an interpolation method to some forms of transform. However to use a particular interpolation method while transforming a smart object layer your still required to do this the old way. It is not possible to retrieve and restore a users Photoshop interpolation preference using Adobe's scripting DOM when the current setting is "Bicubic Automatic". The above script will fail in CS6 if your Photoshop interpolation preference is "Bicubic Automatic".

Hi
My first thoughts are
• iMovie ill behaving - Trash the iMovie pref file - use to set things right
• in reg. to Photos - Did You change iPhoto Photo Library - Then iMovie get's lost as it peeks into iPhoto on start up to see where photos are stored. Set iPhoto back to first Photo Library (when iMovie is not running) then start iMovie.
Yours Bengt W

Similar Messages

  • I Baught A iMac 2010 From Someone it came with lion but for the programs i use i need snow leopard but when trying to install it won't boot from usb or cd what can be the problem i've been at this for over 24 hours if anyone ca help it'd be greatly apprec

    I Baught A iMac 2010 From Someone it came with lion but for the programs i use i need snow leopard but when trying to install it won't boot from usb or cd what can be the problem i've been at this for over 24 hours if anyone ca help it'd be greatly appreciate it! Thanks!

    Downgrade OS X Lion To Snow Leopard [Video How-To]
    http://www.cultofmac.com/110614/downgrade-os-x-lion-to-snow-leopard-video-how-to /
    How To Downgrade OS X Lion To Snow Leopard: The Complete Tutorial
    http://www.redmondpie.com/how-to-downgrade-os-x-lion-to-snow-leopard-the-complet e-tutorial/
    How To Downgrade from Apple OS X Lion to Snow Leopard
    http://www.pcmag.com/article2/0,2817,2389334,00.asp

  • Populating the custom filed - added in BOM item.

    Hello Friends,
    I have a requirement like, for the custom field added in BOM item data, it should come filled while executing the CS02/CS03/CS12/CS73....transactions.
    I have added a field which is one of the field from MARA table. what I have to do is to pass the MARA record into the custom field added based on IDNRK.
    This should happen as soon as enter button is pressed after entering material, plant, bom usage value.
    Please let me know if any exit is there wherein I can put the code OR if any other way!
    Thanks.

    i have solved this issue by doing some R&D.

  • Hard case for the air?

    Hi all,
    I've ordered an entry level 13 inch macbook air with 4gb ram today. However, I've been trying to find a hard case for my new air for the last couple of hrs without any success.
    Can somebody please suggest to me some cases with a soft inner lining and hard outer shell? Or a hard shell case for the air?
    Thanks

    Hi David,
    Thanks for the suggestion. The Pelican case looks really good, but it’s a bit heavy when combined with the air. The total weight will be the same as my old 15” macbook pro, which defeat the point of me getting the air as a light weight laptop.
    I did found couple of interesting cases from a company called Cumpler.
    Hard Suit 13" Air:
    http://crumpler.co.uk/?product=HardSuit_17%27%27_wide&page=details&productline=983
    Hard Suit Special Edition 13" Air:
    http://crumpler.co.uk/?product=HardSuit_Special_Edition_13%26quot%3B_Air&page=details&productline=952
    They have a store in central London, so I’ll go and have a look this week.
    Hi n_n,
    I had an Incase hard shell on my macbook pro, and there were few cracks on the corners of the case after few months of use. So I want either a clip on hard shell or a carry case with hard top; bottom and edge protection for the air without adding too much weight.

  • Code to traverse through wpfgrid and click on the wpfimage for the corresponding in Coded UI

    Hi,
    I have a wpf application which has wpftable having columns as name, type, created date, modified date and an image. (On click on this image, edit and delete button will be displayed for each row).
    I am trying to do edit and delete operations for a row by giving input as the name as name is unique. I need coded ui test method  to traverse through this wpftable identify the row with the name provided, click on the image and select edit or delete
    options.
    Please refer the screenshot below:
    Please anyone provided me code for this in c# for coded ui test. Because for the wpfimage properties added in my respository are very less. Hence facing this issue.
    Thanks in advance.
    Regards,
    G.Madhavi

    Sure Edward.
    Below is the method I have used. As I have already described the input for my method is the WpfTable, the name for which I need to perform edit or delete options and columnindex (this is used because I need to click on the image. And I have such similar
    tables across the application and want to reuse the method. The rowindex changes based on the input name but the columnindex would be same).
    Please refer the screenshot above forbetter understanding.
    public boolVerifyEditing(WpfTableTargetTable, stringName, string columnIndex)
                 bool searchRes = false;
                 int rowIndex = 0;
                 foreach (WpfRow UIRow in TargetTable.Rows)
                     foreach (UITestControl cell in UIRow.Cells as UITestControlCollection)
                         var cellcontents = cell.GetChildren();
                         foreach (var content in cellcontents)
                             WpfText wpfText = content as WpfText;
                            if (wpfText!= null && wpfText.DisplayText.Equals(Name, StringComparison.OrdinalIgnoreCase))
                                 cell.Container = TargetTable;
                                cell.SearchProperties.Add(WpfCell.PropertyNames.RowIndex, rowIndex.ToString());
                                cell.SearchProperties.Add(WpfCell.PropertyNames.ColumnIndex, columnIndex);
                                var contents = cell.GetChildren();
                                foreach (var child in contents)
                                     WpfImage image = child as WpfImage;
                                     Mouse.Click(image);
                                     searchRes = true;
                                     break;
                                 if (searchRes)
                                     break;
                         if (searchRes)
                             break;
                     if (searchRes)
                         break;
                     rowIndex++;
                 return searchRes;
    I will use this method, which clicks on the row for which I need to perform edit or delete operations. Then I click on Edit or delete button.
    This suffices my requirement. Hope this helpothershaving same issue.
    Regards,
    Madhavi

  • Hacker problems so I reloaded Snow Leopard. Afterwards, Mac had to delete 798 items. Now looping on 4 items to delete for the past 2 weeks. Can't reboot, reload, or restart. I have to let the battery run down for it to turn off. How to fix this, please?

    I had hacker problems so I reloaded Snow Leopard. Afterwards, Mac had to delete 798 items. Now it is looping on 4 items to delete for the past 2 weeks. I can't reboot, reload, or restart. I have to let the battery run down for it to turn off. I think a big part of the problem is that someon one the internet (the hacker) was mirroring my hard drive. It seems to have locked up my system. I could be wrong about this guess, though. All I do know is that it is now looping on the last 4 iems, and I can't do anything.
    Well, I can get it to turn on, but all it does is continously try to delete the last 4 items. When I try to reload Snow Leopard, it tells me my hard drive is full and that I need to delete items.
    Can anyone help? I am so lost without my Mac. I am back on the PC, and though it works, I'm sure many of you will understand when I say it's just not a Mac.
    Thanks.

    I installed Snow Leopard using my Apple external Superdrive. I followed directions I found on the Apple site. Here is the article info:  Mac OS X v10.6 Snow Leopard: How to Erase and Install  
                     Article HT3910
                     located at: http://support.apple.com/kb/HT3910
    Everything was going smoothly until I got to the reinstall part. I had to choose to reinstall on a hard drive or network drive. I've never used a network drive; just the hard drive. It seems that's where the troubles began. I selected the hard drive. It seemed to go well, and then I got the message that I needed to delete some files because I was out of space. I chose to get rid of my music files, but, there were only 636. I don't know what the rest of the files were. I was using the Secure Empty Trash command.
    That was my first time doing an erase and install. I tried to do it again, but I now get a continuous error telling me that my hard drive is full and I must delete files. Only I can't delete files because 4 files are still being deleted and my computer won't let me stop the process.
    I found out about the hackers mostly by the fact that whenever I used to watch something like Hulu or Netflix, I never had problems with internet connection or speed. Lately, I had internet connection problems. I went in to check my settings for my internet provider and found out the settings had been changed to public and all these extra computers were connected to my network.

  • Two new iPhones 1 promotional gb for 24 mos finally added.  I have to jump hoops next year for the second gb (also 24 mos) owed to me.

    Here's the update.
    SO they finally added the extra gb for 24 mos on only one of two new iPhones that I bought in September. Count the months, it's been three months.  
    WHy is my issue only half resolved and they said it's going to stay that way?
    BEcause they said that, yes they have documentation from the rep that activated the first phone that it was her fault.  She did it in the incorrect order for the promo to work.  She was supposed to make sure that the right plan was on the acct before activating the phone. She tried to correct it that same day but she didn't have a way to do it so she advised me to wait for the delivery of my husbands phone (the second phone) and once I receive it, at that time I should try to correct her mistake. 
    I Knew it was fishy and right away I consulted with a manager at the local store where I had first heard of the promotion. He tried to help me for two months and came back empty handed because as he put it he has even less access compared to the reps in customer service. Eventually I gave him a break and also because promised calls from supervisors were not kept. So I called customer service myself and after one knowlegeable rep and one sympathetic supervisor the end result is a problem half resolved..  A second supervisor after that is the one that explained to me that they have no way of fixing the reps mistake and he suggested that I accept 1gb for a year instead of 2 years and that then I should call back once that expires and ask for it to be added back for a second year.
    I Said No.  I will not go through this again, it's not fair to me.  I said to him its been three months now since I started trying to get this resolved I'm not going to repeat that stress again next year.   As it is it never fails every two Years when I add on a new promotional phone, there's always some mess that I have to spend months clearing up.
    SO dissapointed.  I told him I was going to  give him a bit more time to make things right but I'm beginning to believe it's so hard for them that they prefer not to bother and instead try to fix it best they can within their department.  Unfortunately it adds to my inconvenience.  So I think im going to have to put a complaint with the public utility commission and the better business bureau.

    Here's the update.
    SO they finally added the extra gb for 24 mos on only one of two new iPhones that I bought in September. Count the months, it's been three months.  
    WHy is my issue only half resolved and they said it's going to stay that way?
    BEcause they said that, yes they have documentation from the rep that activated the first phone that it was her fault.  She did it in the incorrect order for the promo to work.  She was supposed to make sure that the right plan was on the acct before activating the phone. She tried to correct it that same day but she didn't have a way to do it so she advised me to wait for the delivery of my husbands phone (the second phone) and once I receive it, at that time I should try to correct her mistake. 
    I Knew it was fishy and right away I consulted with a manager at the local store where I had first heard of the promotion. He tried to help me for two months and came back empty handed because as he put it he has even less access compared to the reps in customer service. Eventually I gave him a break and also because promised calls from supervisors were not kept. So I called customer service myself and after one knowlegeable rep and one sympathetic supervisor the end result is a problem half resolved..  A second supervisor after that is the one that explained to me that they have no way of fixing the reps mistake and he suggested that I accept 1gb for a year instead of 2 years and that then I should call back once that expires and ask for it to be added back for a second year.
    I Said No.  I will not go through this again, it's not fair to me.  I said to him its been three months now since I started trying to get this resolved I'm not going to repeat that stress again next year.   As it is it never fails every two Years when I add on a new promotional phone, there's always some mess that I have to spend months clearing up.
    SO dissapointed.  I told him I was going to  give him a bit more time to make things right but I'm beginning to believe it's so hard for them that they prefer not to bother and instead try to fix it best they can within their department.  Unfortunately it adds to my inconvenience.  So I think im going to have to put a complaint with the public utility commission and the better business bureau.

  • I'm using a macbook pro, running snow leopard. Yesterday I got around to emptying my trash for the first time in quite awhile and was surprised by how much there seemed to be in there. Immediately after a question mark symbols appeared on all my hard disk

    I'm using a macbook pro, running snow leopard. Yesterday I got around to emptying my trash for the first time in quite awhile and was surprised by how much there seemed to be in there. Immediately after a question mark symbol appeared on all my hard disk folders. If I click on these question marks I get a message saying ' the item can't be found'.

    mpagan47 wrote: a question mark symbol appeared on all my hard disk folders.
    Not sure where these hard disk folders are located that you are referring to?  Finder, Finder tool bar, Finder side bar, Desktop, Dock? 
    More then likely they are  an alias that not longer point to the orginals,  thus the question mark.
    I would reboot.  Delete icons if an alias and just recreate by dragging from the source. Try right click (control) click to remove.

  • How do I delete a credit card from my iTunes account without adding another one? My friend bought an app with her credit card and I no longer have the info but every time I try to download a free app (ex: Instagram, Twitter, vine etc.)it ask for the info

    How do I delete a credit card from my iTunes account without adding another one? My friend bought an app with her credit card and I no longer have the info but every time I try to download a free app (ex: Instagram, Twitter, vine etc.) it ask for the credit cards security code. I can not find a way to delete that cards info without adding another cards info.

    http://support.apple.com/kb/ht1918
    http://support.apple.com/kb/ts5366

  • HT201209 How can I create an apple ID for my daughter, without adding a credit card to the account?

    How can I create an apple ID for my daughter, without adding a credit card to the account? I have tried to purchase a gift card online, but it just credits it to my account; I cannot use it to credit her new account therefore I cannot create that account.

    There are intructions on this page for how to create a new account without giving credit card details : http://support.apple.com/kb/HT2534
    e.g. log out of your account, find a free a free app in the store, click on its free 'price' :
    click on 'create Apple id' on the popup :
    Agree to the terms and fill in the details, and you should get 'none' on the payments screen.

  • My Snow Leopard 10.6.3 has Safari 4.0.4 but this cannot be used for the new features of iTune.  I tried upgrading to Safari 5.1.7 but it needs Snow Leopard 10.6.8.  Where can I get a version of Safari 5.1 that is compatible with Snow Leopard 10.6.3?

    My Snow Leopard 10.6.3 has Safari 4.0.4 but this cannot be used for the new features of iTunes.  I tried upgrading to Safari 5.1.7 but it needs Snow Leopard 10.6.8.  Where can I get a version of Safari 5.1 that is compatible with Snow Leopard 10.6.3?

    Hi..
    here can I get a version of Safari 5.1 that is compatible with Snow Leopard 10.6.3?
    Not possible. You need to update to v10.6.8
    Click your Apple menu > Software Update
    Or update using the this download > Mac OS X 10.6.8 Update Combo
    Then restart your Mac.

  • I deleted my old email address and added a new one, after my iPhone died iCloud keeps popping up asking for the password of my old email address. I can't remember my password and the account is still gone, it pops up every few seconds. How can I fix this?

    I deleted my old email address and added a new one, after my iPhone died iCloud keeps popping up asking for the password of my old email address. I can't remember my password and the account is still gone, it pops up every few seconds. How can I fix this?

    If you are unable to remember your password, security questions, don’t have access to your rescue address or are unable to reset your password for whatever reason, your only option is to contact AppleCare(or Apple ID Support), upon speaking to an operator you should explain that your problem is related to your Apple ID, this way you will not be charged for assistance, even if you don’t have an AppleCare plan.
    The operator will take you through some steps you may have already tried, however they need to be sure they have exhausted all usual approaches before trying to reset your account, so you should try to be helpful and show patience with the procedure.
    The operator will need to verify they are speaking to the account holder and may ask you some questions that only the account holder could know, and you will need to answer them if the process is to proceed.
    Once the operator has verified your identity they will send a message through to your device which contains an alpha numeric code, which you will need to read back to them.
    Once this has been completed they will send an email to your iCloud email address after a period of 24 hours, so you should check that mail is enabled in your devices iCloud settings.
    Upon receipt of the email, use the reset link provided to reset your password, after which you should be able to make the adjustments to iCloud that you wish to do.

  • Is there a way to simplify the published version of an animation, so it can be easily added into RealMedia ad service?

    When publishing an animation from Edge, I get given 1 x html file and 3 (or 5) js files. Is there an option to add the js inline, so that I am only left with 1 html file? This would make it a lot easier to add an animated file into RealMedia  ad service.
    At the moment I am left trying to work out what file paths to change in the js files and then making sure the html file is also looking at an uploaded addess for the js files.

    Here's a recent thread about this:http://forums.ni.com/t5/LabVIEW/LabVIEW-Version-of-Built-Executables/td-p/2162718
    In short, we found a way to read the EXE as a text file and performed a search for a specific pattern.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • I got the new iPhone5 back in Dec, I hooked it up to my computer for the 1st time this wk.  It deleted all new data added since Dec (notes,contacts,texts,pics, info in apps) and reverted back to all my old data.  How can I retrieve all the lost data??

    I got the new iPhone5 back in Dec, I hooked it up to my computer for the 1st time this wk.  It deleted all new data added since Dec (notes,contacts,texts,pics, info added to apps) and reverted back to all my old data (literally uploaded all of my old texts and 1400 old pics and deleted anything new).  How can I retrieve all the lost data?? Please help!!

    SkyDaughter29 wrote:
    My current situation: I have soooo many texts on my iphone and I haven't deleted many because I need the information contained in them for future reference and for legal purposes.  I would really like to find a means and way to save them other than on the phone itself. I've done searches for various apps yet I'm not finding what I think I would need.  It appears Apple does not sync the texts between the iphone and my MacBook Pro.
    Try the computer apps PhoneView (Mac) or TouchCopy (Mac & PC):
    http://www.ecamm.com/mac/phoneview/
    http://www.wideanglesoftware.com/touchcopy/index.php
    Best of luck.

  • How can I get a search bar added to my email archives screen to make it easier to search for the right archives folder, Samsung has one so I was surprised to see that I have to scroll up and down to find the right folder?

    How can I get a search bar added to my email archives screen to make it easier to search for the right archives folder, Samsung has one so I was surprised to see that I have to scroll up and down to find the right folder?

    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
    You can modify the pref <b>keyword.URL</b> on the <b>about:config</b> page to use Google's "I'm Feeling Lucky" or Google's "Browse By Name".
    * Google "I'm Feeling Lucky": http://www.google.com/search?btnI=I%27m+Feeling+Lucky&ie=UTF-8&oe=UTF-8&q=
    * Google "Browse by Name": http://www.google.com/search?ie=UTF-8&sourceid=navclient&gfns=1&q=
    * http://kb.mozillazine.org/keyword.URL
    * http://kb.mozillazine.org/Location_Bar_search

Maybe you are looking for

  • How to get the  bursting control file in xml publisher

    Hi All I am using oracle Apps r12 and Bi publisher 10g. I have followed these steps for Xml Bursting reports http://apps2fusion.com/apps/21-technical/251-xmlp-concurrent-program-revisited-with-bursting. I have created Data definition and now i need t

  • Adobe Bridge CS5 is frozen and will not open files?

    Adobe Bridge CS5 is frozen and will not open files?

  • Creating and writing in a form

    I have created multiple form boxes in a pdf. However, I am finding that some boxes I am not able to type into, but others I am. They all have the exact same options selected, such as multi-line, text size 12, Times Roman. Why am I able to fill in som

  • Firefox is lagging

    Hi folks, I hope this is right here, I've got a problem with my firefox since a few days. It is lagging for a while after starting it. It takes a lot of time longer for it to answer pressed keys or other input. After a few minutes after starting it,

  • Set cell background color conditionally?

    I want to set a cells' background colors conditionally, e.g., if the computer value is between 5 to 9, make the background red. Is there any way to do that?