Fire/Explosion Effects Availible for CS4.0?

I'm new to premiere and need a fire/explosion effect/plugin, this is for a school project so quality is not really of relevance.
Buying expensive software is not out of the question, but $100 is the limit. Freeware is preffered.
I am using CS4.0

I know of nothing like that for PrPro, but there are, or at least were, some for AfterEffects. Seems that Alien Skin had a plug-in suite for AE, with at least fire.
Maybe others will know of something that will work for you.
Now, one possible option would be to look for some stock footage (free if possible), and then superimpose fire, or explosion footage, over your regular footage. Similar is often done by Hollywood, when the subject cannot be set aflame, or blown up.
Good luck,
Hunt

Similar Messages

  • Explosion effect  for single Image in CS5

    Hello All,
    I was hoping for assistance on how to recreate an explosion effect like Flash 8 adn MX used to have.  It seems to be missing now.  It is not in the presets.  I tried to break apart  but something is missing.  How can I  accomplish this?  I am trying to explode and IMAGE not TEXT.   Particle tutorials seem to explode into hundreds of parts.  Im looking for 12 to 16 exploded pieces. I'm not the great at AS2 or 3 but any assistance would be appreciation.    Again this is for an image not text so the simple Break apart doesnt seem to be working.  Please note I am Using Flash CS5.
    Thanks in advance.

    http://active.tutsplus.com/tutorials/effects/create-your-own-pixel-explosion-effect/

  • Explosion effect  for single Image in  Flash CS5

    Hello All,
    I was hoping for assistance on how to recreate an explosion effect like Flash 8 adn MX used to have.  It seems to be missing now.  It is not in the presets.  I tried to break apart  but something is missing.  How can I  accomplish this?  I am trying to explode and IMAGE not TEXT.  Particle tutorials seem to explode into hundreds of parts.  Im looking for 12 to 16 exploded pieces. I'm not the great at AS2 or 3 but any assistance would be appreciation.    Again this is for an image not text so the simple Break apart doesnt seem to be working.  Please note I am Using Flash CS5.
    Thanks in advance.

    Thanks for the response but that is not what I need.  I need to explode or better yet Break apart a simple image into maybe 12 or 16 pieces and move them off the screen.  This used to be done by a Explode effect that was in an older version of Flash. I do not want to download additional software (tweenmax?). but I am ready to try simple AS3 or AS2 code if there is not way to do this.  Again this in NOT text and I already tried to break it apart in small symbols but the whole image moves instead of the small piece I broke apart.  Please help
    Thanks in advance.

  • Premiere CS4 effect switch for each video channel

    Premiere CS4
    Windows
    Gentlemen !
    Does anyone know if there is a Master Effect Switch for each individual video channel
    What I am saying is, is there any way to turn Off or On the effect for each individual video channel
    Let's say I wanna turn Off all video effects for video channel 1
    Just similar to the icon of the eye or lock for each channel
    I have about 40 clips on channel one's timeline , I wanna turn all effect Off for a minute, check something the turn it back On !
    Thanks

    With the Nested Sequences, turning thing OFF for performance would be easy, but Nesting does take some additional Resources.
    For a Feature Request, see this LINK.
    Good luck,
    Hunt
    BTW - some Effects hardly seem to slow things down, while some are quite resource heavy. For playback, Rendering the Timeline normally makes things very smooth, at the expense of the time to Render.

  • Explosion effects

    hi,
    does anyone know of any simple ways of adding explosion effects to a game? i've got some spaceships that need to explode (leaving a bit of smoke would also be cool)
    my guess is that there are basically two options (?)
    1) pre-render a number of explosion sequences (might look naff?)
    2) render in real time a small explosion
    (2) would be great if there is a v. fast routine
    the classical fire demo might be a starting point, or is this too ambitious?
    also real-time smoke/fog would be nice
    does anyone have any experience with this sort of thing in java?
    thanks v. much,
    asjf

    what kind of game is it ?its a simple vertical shoot-em-up
    in most of the games, you can't use such heavy effects
    as my fireball. it would be too tricky to clip
    everything and it would be a lot of code for a very
    small effect. I think some bilinear pre-generated
    explosions would be fine, or you can build a 2D
    particle system. I got an example of this in my
    asteroids game (http://www.mandrixx.net/astro.html).
    this particle system could be a lot nicer with some
    little filtering, I made this a long time agoi've tried a simple particle test (included below), but was hoping for something a little more fireball like. agree that your fireball code is a bit too ambitious :) but would be interested to see how near to a fireball-like-effect java could get (the code below is more like fireworks..)
    good luck with your gamethanks
    asjf
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    public class CanvasTest6 extends JComponent implements Runnable {
       java.util.List ps;
       Color [] intensity;
       class Particle {
          double x,y,dx,dy,ey;
          double e;
          int frame;
          Particle(double ox, double oy) {
             e=255D;
             ey = -Math.random()*4;
             double angle = Math.random()*Math.PI*2;
             dx = Math.sin(angle)*(-ey)/2;
             dy = Math.cos(angle)*(-ey)/2;
             double lig = (Math.random()*5)-2.5;
             x=ox + dx*lig + (ey>-1 ? lig : 0);
             y=oy + dy*lig + (ey>-1 ? lig : 0);
             frame=0;
          public void frame() {
             x+=dx;
             y+=dy;
             frame++;
             e+=ey*6;
             if(e<0) e=0;
          public boolean isDone(){return e<50 || frame>50;}
          public void paint(Graphics g) {
             int i = frame>30 ? (int) (e-(Math.pow(1.1,(frame-30)))) : (int)e;
             i = i < 0 ? 0 : i;
             g.setColor(intensity);
    g.fillOval((int)x,(int)y,6,6);
    public void run() {
    try {
    while(true) {
    if(Math.random()<0.075) {
    double ox = Math.random()*getWidth();
    double oy = Math.random()*getHeight();
    for(int i=0; i<75; i++) {
    ps.add(new Particle(ox,oy));
    for(ListIterator i = ps.listIterator(); i.hasNext(); ) {
    Particle p = (Particle) i.next();
    if(p.isDone())
    i.remove();
    else
    p.frame();
    repaint();
    Thread.sleep(10);
    } catch(InterruptedException e) {
    e.printStackTrace();
    public CanvasTest6() {
    super();
    ps = new ArrayList();
    intensity = new Color [256];
    for(int i=0; i<256; i++) {
    intensity[i] = new Color(i,6*i/7,i/7);
    public static void main(String [] arg) {
    JFrame frame = new JFrame("CanvasTest");
    frame.setSize(320,256);
    CanvasTest6 ct4 = new CanvasTest6();
    frame.getContentPane().add(ct4);
    new Thread(ct4).start();
    frame.show();
    public void paintComponent(Graphics g) {
    g.setColor(Color.black);
    g.fillRect(0,0,getWidth(),getHeight());
    for(int i=0; i<ps.size(); i++) {
    ((Particle)ps.get(i)).paint(g);

  • I have a question about the downloads for CS4.

    I had to go back to CS4 Master Suite after my card was deactivated, because adobe got hacked and my credit card was compromised. Since I was in the middle of traveling and I'm still in a bad situation, because of it I am still on CS4. Which sucks for my workflow now.
    Well, anyway... Sorry, still very frustrated.
    When all that happened I had to download CS4 Master Suite from your site, because the disks are not with me. Photoshop continuously shutdown on me. If I attempt to move a layer up or down in the layers panel it froze and shutdown every freaking time. After Effects and Premier Pro could not export or render anything. Illustrator did what it's supposed to do most of the time. Photoshop, Illustrator, After Effects, and Premiere Pro are the only programs I use really. They are essential to my freelance work and I have had to turn away projects ever since this whole ordeal started last year.
    About a month ago removed CS4 and downloaded Creative Cloud again, because I thought I was in a place were my bank could send me a card. Some how I received another monthly trial and everything was awesome again while I waited for my card. My card didn't come. The trial ended and now I'm right back to not being able to integrate with Cinema 4D and so on. Now that is not your fault. So, I'm not going there.
    I did, once again, download the install file for CS4 Master Suite and install the same programs. They are just as problematic as they were the first time I used the .dmg file from your downloads site.
    Now I know you are far away from CS4, but that is what I am on until I can get back to the US and get another card, because you don't accept paypal or anything else.
    Is there anyway I can get an actual proper working install of CS4. I can work around all the features I lost if I can get a download that actually has everything it's supposed to have in it. I do not pirate software, which is why I went backwards. So, please, please, please, please do something about that .dmg that doesn't have everything need to make the program work properly.
    Thank You,
    From

    Your technical issues have zero to do with the installers. Whatever is at play is rooted on your system, but you have not provided any specific system info nor crash logs. Pardon me, but "Photoshop is crashing" is a useful as my 88 year old grandma telling me her phone doesn't work...
    Mylenium

  • Can someone please tell me a simple but effective method for burning a slideshow to DVD? Now that the connection between iPhoto and iDVD no longer exists, I can't figure out a way to get there with an acceptable quality result.

    Can someone please tell me a simple but effective method for burning a slideshow to DVD? Now that the connection between iPhoto and iDVD no longer exists, I can't figure out a way to get there with an acceptable quality result.

    Export the slideshow out of iPhoto as a QT movie file via the Export button in the lower toolbar.  Select Size = Medium or Large.
    Open iDVD, select a theme and drag the exported QT movie file into the open iDVD window being careful to avoid any drop zones.
    Follow this workflow to help assure the best qualty video DVD:
    Once you have the project as you want it save it as a disk image via the File ➙ Save as Disk Image  menu option. This will separate the encoding process from the burn process. 
    To check the encoding mount the disk image, launch DVD Player and play it.  If it plays OK with DVD Player the encoding is good.
    Then burn to disk with Disk Utility or Toast at the slowest speed available (2x-4x) to assure the best burn quality.  Always use top quality media:  Verbatim, Maxell or Taiyo Yuden DVD-R are the most recommended in these forums.
    If iDVD was not preinstalled on your Mac you'll have to obtain it by purchasing a copy of the iLife 09 disk from a 3rd party retailier like Amazon.com: ilife 09: Software or eBay.com.  Why, because iDVD (and iWeb) was discontinued by Apple over a year ago. 
    Why iLife 09 instead of 11?
    If you have to purchase an iLife disc in order to obtain the iDVD application remember that the iLife 11 disc only provides  themes from iDVD 5-7.  The Software Update no longer installs the earlier themes when starting from the iLIfe 11 disk nor do any of the iDVD 7 updaters available from the Apple Downloads website contain them. 
    Currently the only sure fire way to get all themes is to start with the iLife 09 disc:
    This shows the iDVD contents in the iLife 09 disc via Pacifist:
    You then can upgrade from iDVD 7.0.3 to iDVD 7.1.2 via the updaters at the Apple Downloads webpage.
    OT

  • Which NVIDIA graphics card for CS4 & CS5.5 Premiere?

    I just upgraded to CS5.5 Production Premium but I'm still using XP 32bit. That means I had to load the CS4 version of Premiere and After Effects. Sooner or later I'll upgrade to 64bit Win but in the mean time which graphics card will give me the best bang for the buck and still be useful for CS5.5 later? Money isn't an issue, I just don't want to pay for something and not benefit from it. What's worse is Adobe doesn't even list cards newer than the 8800 and Quadro FX for CS4! Weren't GTX cards available before CS5 came out? Do I need to update a file in CS4 apps to make them accept cards for GPU processing?
    Adobe and NVIDIA keep pushing the Quadro cards but when you look at the benchmarks it looks like the GTX cards do just as well. I will use the system for gaming sometimes so DX11 is a must. I have a watercooled i7 920 OC @ 4.0GHz and very stable, temps never go above 60C under full load. I have 6GB RAM and use a memory handler to access the RAM over what XP can use, and use it for virtual mem and caches etc. But my current graphics card is a slightly OC'd 9800GT w/512MB. My system doesn't like to scrub video that isn't rendered unless it's at lower resolutions and obviously I'd like rendering to be as fast as possible.
    Looking around I see:
    GTX560-TI @ $240
    GTX570 @ $300
    GTX480 @ $300
    GTX570 @ $300
    GTX580 @ $460
    Quadro 4000 @ $550
    Quadro 5000 @ $1200
    So what's the secret? Where's the sweet spot?
    TIA

    function(){return A.apply(null,[this].concat($A(arguments)))}
    JEShort01 wrote:
    The "secret" to MPE bliss is to get the video card AND Win7 64bit AND load your CS5.5. I really don't think that the video card would help much running CS4 on 32bit. Regarding which card, I'd say the sweet spot since you want to game and use CS5.5 would be to go with a GTX 480 with two or three fans (single fan reference design is too LOUD). Also, if you are not going to Win7 right away, delay your purchase and the next GEN of NVidia will be closer or out and you may either want one of the new smaller die-size cards or you could benefit form lower prices on what's available today.
    Jim
    So you're saying on Win32 and CS4 Pr, Ae, AME, the graphics card doesn't matter at all? That I won't see any improvement over my 512MB 9800GT?
    If I was to narrow it down even farther, the most important aspect would be in the "preview" performance. I can always render when I'm not using the system but sometimes the preview windows hang while working on a project. The problem worsens as the resolution increases or as the project gets more complicated. I had the same problem with PP1.5 which is why I decided to bite the bullet and upgrade to see if a newer version would help.
    Cooling isn't an issue as long as a water block is available for my next card. I've read the 570 & 580 may be the same reference layout and use the same coolers, I'm still looking into that. I know I can liquid cool the 480, 560TI, 580. I have no idea about the Quadro's, I've never seen a block for those.
    I'd like to go to Win64 but other software etc is keeping me from getting there soon. I'm looking into dual booting but have read about lots of problems with folder/file sharing issues when going from XP to Win7. I keep all files/projects on a seperate drive and some are shared over a network. If MS hasn't solved the sharing issues I'm forced to stick with XP. I have too many files that need read/write access and Win7 is stated to set all shares to read only. I'm still researching if it's been resolved.
    So it's important to know if anything will help CS4 because as stated above, it'll make more sence to wait for the next gen cards for use in CS5.5.
    The bottom line is, I built this system from the ground up just a few years ago before Win64 was so popular. I used the very best components (the 9800GT is actually the lowest componet I bought because gaming wasn't that important at the time). I'm running steady overclocked @ 4.0 and boot from an SSD drive. The data drives are 7200RPM and I bought the fastest RAM I could at the time. Obviously people were editing happily a few years ago on equipment inferior to mine. What's the catch? What am I missing to run smoothly on Win32? I'm assuming it's the graphics card because it's the only place I skimped. Maybe I have a software conflict keeping any version of Pr from working smoothly.
    Being 3 gens behind, and mediocre at that, I thought the card might be a good place to start.

  • I cannot save custom lighting effects in Photoshop CS4

    Under Filters>Render>Lighting Effects.
    Whenever I try to save a custom lighting effect in Photoshop CS4 an error message pops up saying "An error occurred while trying to save the style."
    I am using an iMAC.
    Video display card / driver version: ATY,RadeonX1600
    Thanks for any help.

    I solved the problem by deleting my original user account, but saving all my files first.  I created a new account with adminstrative access, then opened up my old user files from the Deleted User folder and dragged them over to my new user account.  The problem with saving custom lighting effects in Photoshop is fixed.  Thanks for the tip leading me to realize it was the user profile causing the problem and not Adobe PS.

  • Benchmark Results for CS4, attn. Bill Gehrke

    Bill (and others interested),
    I have now tweaked my system a bit and done some simple benchmarking to see if I did it right. There is not yet a PPBM+ benchmark available to see how this system fares in comparison to others, but if you make it available for CS4, Bill, I will submit the data.
    Anyway, here are the results for the time being:
    b PassMark 7.0: 4338,1 (only second place due to Vista 64, which adds a 5-10% performance penalty in comparison to XP-32).
    b Cinebench R10: 5670 single CPU / 22338 multi CPU / 5154 OpenGL.
    b HDTach 3.0.4 long (32 MB): Single disk burst 233 / Avg 99, 2 disk raid0 burst 4275 / Avg 177, 8 disk raid30 burst 1045 / Avg 671.
    This is a budget system with i7-920 @ 4.0 GHz, 12 GB RAM, ATI 4870 video, 150 GB boot Velociraptor, 2 TB Raid0 for pagefile/scratch, 2 x single disk 1 TB for audio, stock footage and export, and 8 TB Raid30 for media (Areca-ARC 1680iX-12 with 2 GB cache and BBM) plus 2 BR burners.
    Bill, how are you coming along on the PPBM+ CS4 version?

    Agreed up to a point. The raid controller, cache memory and BBM, which I would have wanted for any system, be it low budget, mid range or high budget, takes out an enormous heap. I could have gotten four i7 CPU's for that. If you add the disks as well, yes, it does get expensive. However, that investment may well outlive several generations of mobo's and CPU's and gives me your much coveted RAID30 array of effectively 6 TB (8 TB raw) and some more.
    In the old days, people used to say that the system you wanted is around $ 5K. Nowadays when you want top-of-the-bill $ 5K is not enough; that is IMO a high budget system. A low budget system IMO at least for NLE is somewhere around $ 1-2K and medium is around the $ 2-4K bracket and anything higher than that is top material. That leaves my system in the medium bracket, nice, but not top-of-the-bill.

  • Upgrade path for CS4 Academic

    I bought CS4 Design Premium Academic back in October because I wanted Photoshop CS4 and Acrobat. I have tried Final Cut Express and Premiere Elements before to try out the lite versions of the their parent suites. I have found that Premiere to my liking, so I'm looking to get Premiere Pro.
    Here is the issue I'm having: Premier Pro is $350; that would make my purchase $949 total for CS4 DP plus Premier Pro; for only $50 more I could have bought the Master Collection instead.
    I can't justify paying $350 for one piece of software I will only be using a few times especially if I had not bought Design Premium back in October I would have Master Collection which includes everything; basically if I want to go to Master Collection, I have to pay $1499. I don't run a business with any of this software, so I don't want to just throw money around. Master Collection would also give me Soundbooth and After Effects, both good additions for Premiere.
    Buying Production Premium will not work either since I would end up with duplicate copies of software (again I don't have money to throw around).
    I have tried calling sales, but they said they can't help me (because they don't deal with Academic) and have directed me to the website which doesn't give me any options. Strangely they told me there is no license difference between Academic and Student (which I know is different in licensing).
    There is no way I can sell the Academic version of CS4 either.
    What can I do here?

    I already tried calling Customer Service; the guys there told me only sales can help me; I will call again and ask to speak with a supervisor.

  • I lost the installation disks for CS4 master collection. Where can I download the installation file?

    Hello,
    I lost the installation disks for CS4 master collection polish version. Where can I download the installation file?

    Hi filmowka,
    Welcome to the Community!
    Go to http://prodesigntools.com/download-adobe-cs4-and-cs3-free-trials-here.html and choose Master collection CS4 from the list.
    Follow the Very Important Section else the download will not start.
    Thanks!
    Ankit

  • How to Package Photoshop Extension for cs4/cs5 with manifest.xml

    Hello,
    tl;dr: How can I package my extension for both cs4 and cs5 in a way that respects the extension's window geometry?
    I have a panel that specifies window geometry in it's manifest.xml. When the panel is installed into Photoshop's panels/ folder, the geometry gets ignored, so I'm trying to package the panel as an extension to be installed via the Extension Manager. I have run into different problems for each CS version. I've read quite a few pdfs about the Extension Manager, UCF command line packaging, etc, and have not been able to find a solution that works for both platforms.
    My understaning
    My trial and error research has lead me to understand that the extension's files must eventually end up in the (mac) /Library/Application Support/Adobe/<CSversion>ServiceManager/extensions/ directory. In CS5, if the extension's folder contains a manifest.xml file (ex: /extensions/GuideGuide/CSXS/manifest.xml) that specifies window geometry, Photoshop will respect that window geometry when the panel opens. However, in CS4, this is not enough. From my tests, Photoshop CS4 doesn't seem to do anything with the manifest.xml file. Instead, I had to modify /Library/Application Support/Adobe/CS4ServiceManager/ServiceManifest.xml and add my extension to it's contents. Once I did this, Photoshop CS4 launches my panel and respects it's window geometry.
    The problem with this is that it's a manual installation. I can't ask my users to dig around in their system files to install my panel. In addition, since it's unsigned using this method, it won't work if they're not flagged for debugging. I've started exploring using the Extension Manager, but I have run into problems that I cannot find ansers in the few pdfs about packaging that I've been able to find.
    CS5 Problems
    If I use the UCF command line tool, I can package and sign my file. It installs fine and does what I want. However, using this method, I haven't been able to find a way to specify the author and description that shows up in the Extension Manager.
    CS4 Problems
    The UCF command line tool doesn't appear to make packages that can be installed by CS4, and I haven't been able to find one that is compatable. I've had to result to using the Extension Manager to package my extension based on a .mxi file. The problem I have here is that installing files this way limits me to putting them in the /panels directory, which then causes the panel to ignore the indow geometry. Is there a way with an .mxi file to install in the /Library/Application Support/Adobe/<CSversion>ServiceManager/extensions/ directory and modify the /Library/Application Support/Adobe/CS4ServiceManager/ServiceManifest.xml file?
    There must be, because Kuler and other extensions are installed there.
    Thank you SO much for any help you might provide. I've spent weeks trying to get this to work and have run into nothing but dead ends and wild goose chases.

    Your extension is a CSXS extension. For CSXS extension it's introduced in Extension Manager 2.1. (You can download Extension manager 2.1 from http://www.adobe.com/exchange/em_download/em20_download.html)
    In Extension Manager CS2.1 only MXP package is supported. In Extension Manager CS5 CSXS extension must be packaged by ZXP format. So you have to generate two packages for CS4(mxp) and CS5(zxp)
    For CS5, you can use ucf.jar to generate the zxp package.
    For CS4, you have to create an MXI file and package it by Extension Manager 2.1 to mxp package. Here is a sample CSXS mxi file:
    <macromedia-extension
               name="CSXS_TEST_EXTENSION"
               version="1.0.0"
               type="Command"
               requires-restart="true">
              <author name="Macromedia" />
              <products>
                        <product name="Dreamweaver" version="10" primary="true" />
                        <product name="Fireworks" version="10" primary="true" />
                        <product name="Flash" version="10" primary="true" />
                        <product name="" version="11" familyname="Photoshop" primary="true" />
                        <product name="Illustrator" version="14" primary="true" />
                        <product name="CSXS" version="1" />
              </products>
              <description>
              <![CDATA[
              CSXS extension sample.
              ]]>
              </description>
              <ui-access>
              <![CDATA[
              Extension Name: kuler
              ]]>
              </ui-access>
              <license-agreement>
              <![CDATA[
              ]]>
              </license-agreement>
              <files>
                        <file source="test_extension" destination="" />
              </files>
    </macromedia-extension>

  • Error Message FMBAS202 Year of cash effectivity mandatory for budget cat 9G

    Hi all,
    I activated BCS and use update profile 000350 (Separate PB/CB budget lines; standard), we tried to post simple FI posting and the error come up
    ==============================================================
    Year of cash effectivity mandatory for budget category 9G
    Message no. FMBAS202
    Diagnosis
    The FM update profile does not support the year of cash effectivity for commitment/actual values (posting ledger 9B). However, the year of cash effectivity is mandatory in BCS budgeting for budget category 9G and FM area 0100: the minimum value in this case is 2009.
    System Response
    Processing of the commitment/actual data record stops.
    Procedure
    Deactivate the year of cash effectivity for the corresponding budget category 9G and FM area 0100 in the IMG activity Choose Budget Category.
    ===============================================================
    So I click the link and it goes to Define Budget Category screen where we assign budget category (9G) and time horizon (1) to a FM area, but not mention of deactivating year of cash activity.
    My question is:
    1. Where is the button to deactivate the year of cash effectivity?
    2. What's the difference between budget category 9B and 9G? Both are Commitment Budget.
    3. I dont remember assigning budget category 9B to an FM area. Where is the setting?
    Thanks

    Hi,
    When you go to IMG - Public Sector Management - Funds Management Government - Budget Control System (BCS) - BCS Budgeting - Basic Settings - Definition of Budget Data - Choose Budget Category, what's the settings for 'Time horizon' field? It should be blank for 9G(commitment), if you don't work with cash effectivity.
    9B is posting ledger, while 9G is budget ledger. You don't have to assign 9A/9B to FM area.
    Regards,
    Eli

  • Hi  - I recently purchased a new iMac. I have a registered cs5 design premium package which is an upgrade - I have no disc for cs4 but have the qualifying serial number for it. I have installed cs5 via download onto my iMac but it is not accepting the ser

    Hi  - I recently purchased a new iMac. I have a registered cs5 design premium package which is an upgrade - I have no disc for cs4 but have the qualifying serial number for it. I have installed cs5 via download onto my iMac but it is not accepting the serial number. Can anybody help. Does anybody else think that Adobe will loose a lot of customers by not providing any chat or call support for cs5 users??

    You can support serial number and activation support.
    Mylenium

Maybe you are looking for

  • How to get a kerning value in JavaScript

    How to get a kerning value(distance between two characters) using javascript?

  • Why does this Update not work?

    update f03012 set aiac10 = 'WST' from f03012 a, f0116 b where b.aian8 = a.alan8 and b.aladds = 'CA'; Getting SQL command not properly ended.

  • Named Native Query Problem

    I am running JDev 11g patch 2 (11...3) on a windows 7 machine. JDK 1.6_18 @NamedNativeQueries({ @NamedNativeQuery(name = "MenuFolders.findFolderByUser", query = "SELECT * FROM menu_folders where mf_id is null and id in (select mf_id from userfoldervw

  • Smart collection - stacked pictures & parent keywords

    Hi everyone! I'm playing around with smart collections and am wondering it there is a possibility - to filter for stacked photos and / or the first (front) picture of a photo stack... - to filter for a parent keyword that is not attributed itself - i

  • One calendar missing after Lion update

    I upgrated to Lion recently. Did not have an active Mobile Me account, though I did a trial of it a few years ago. I did go ahead and set up an iCloud account for iCal, Addresses, etc, but quickly got upset and confused when there was double everythi