[JS](CS3) More EventListeners...?

I was wondering if they were more EventListeners. I am specifically looking more "Copy" & "Paste" and their specifics "Before " & "After".
Also,
1) What is the difference between [var xxx = app.eventListeners.add(...);] and [app.eventListeners.add(...);]. They both add the event. Obviously one has a pointer to the event. But how usefull is it when the event is associated to a function or pointing to a file to execute? I can't imagine the pointer to the event bein "manipulated" after the event has been defined (var xxx = ...).
2) Is the event "afterOpen" not supposed to trigger AFTER the document is opened? I have defined the event to execute a file and the script alerts me of "No Document Opened!!!". I understand the use of [event.parent] but that forces me to double the scripts that are tied to eventListeners. One regular version using app.activeDocument (accessable w/i User/Script Panel) & a modified version using event.parent (defined in the Startup Script). Are my assumption correct?
Any help appreciated, Alex.

Thanks, Harbs and Dave!
Before I saw your answers I came up with a (longer) solution:
var storyRef = app.activeDocument.stories;
var arrStories = [];
for(var j = 0; storyRef.length > j; j++){
    arrStories.push(storyRef[j])
    }//end for
var arrParas2 = [];
for(var x = 0; arrStories.length > x; x++){
    for(var y = 0; arrStories[x].paragraphs.length > y; y++){
        arrParas2.push(arrStories[x].paragraphs[y]);
        }//end for y
    }//end for x
But I am curious about something. Your solution and my solution both result in an array of all paragraphs in the document but the data browser shows these arrays in different ways. I am wondering how to intrepret them.
Your solution does not show the indexed paragraphs, mine does. See the images below.
Your solution:
My solution:

Similar Messages

  • Capturing HDV using Adobe Premiere CS3 - more than 20 minutes of video

    Hello,
    I'm facing a weird situation with Adobe premiere CS3, I use a canon XH-A1 video camera to capture video & recently started using adobe premiere for editing, the issue is if I start to capture HD video for more than 20 minutes, adobe is not able to capture the video (shows a red screen), but it works fine, if I capture upto 20 minutes of video.
    I have in the past had to break down a single tape into 3 halves, to successfully capture the video, this is NOT the ideal way, as I have to babysit the video capture, to limit the capture to 20 minutes & restart it.
    Has anyone faced this error? Any advice/pointers would be greatly appreciated.
    Regards,
    Kalyan.

    Could the reason be that you are capturing to an FAT32 format hard drive and it is only allowing you a limited maximum file size? Not sure but I think it is 4GB which would equate to 1/3 of a DV 13GB hour ...or about 20 minutes.
    If that is correct, and you should be able to tell because the capture window will display the file size limit as space available during capture, you could do one of two things:
    * reformat the drive as NTFS which removes the file size limitation (I have just done this on an external drive for exactly the same reason), but do look up online instructions for this and do it carefully.
    * if the material is not long continuous shots of over 20 minutes, switch on Scene Detect during capture; it's wise to cut material up into smaller chunks in any case as huge files become very unwieldy and handling them could slow your machine right down.

  • Thumbnails in Bridge CS3 for ACR 4.6 not available

    I have a problem, that I can open raw files per double click, but I dont get a preview in Bridge for my Canon EOS 50D.
    Also if I use the mouse button open in camera raw is not available. If I use open from the menu, the raw is opened in ACR 4.6 correctly.
    Also purging the chache was no success
    ANy tipps?
    I reinstalled until now two times without any success

    Hi Jim,
    I will check if I have another version in place. Maybe now I get a problem because I use Bridge for viewing the new pictures, classifying by tags. For searches later on I have Photoshop elements because of it´s fast database. For PSE I now need Version 7 with Camera Raw 5.2, for Bridge and CS3 (more complex actions for improving my pictures) I had to install ACR 4.6.
    From Bridge I can open the pictures with "open" and 4.6 appears before entering CS3. But in Bridge the option "open with camera raw" is not available.
    Hopefully I only have 2 ACR 4.x versions in the CS3 directories. This would be easy to solve. Otherwise it seems to get more and more enerving to find the error.

  • Too many eventListeners in nested form causes falsh cs6 debugging session to crash ?

    Hello all !
    The above video (http://www.youtube.com/watch?v=53vqkd5VLFw) is that of a simple sequential click game. The code works perfectly in a simple situation of just nine movieclips or even upto 20 movieclips or so. But when i increase the numbers of movieclips further and adds more eventlisteners in nested form, the flash cs6 debugging sessions seems to get overloaded and fails to give a result. It simply gets hanged.
    Working Code for a simple situation:
    startBtn.addEventListener(MouseEvent.CLICK, trigGame)
    function trigGame(e:MouseEvent):void{
    //n1 to n9 are the nine movieclips arranged in grid form
    n1.alpha = 1;          n2.alpha = 1;          n3.alpha = 1;
    n4.alpha = 1;          n5.alpha = 1;          n6.alpha = 1;
    n7.alpha = 1;          n8.alpha = 1;          n9.alpha = 1;
    startBtn.visible = false;
    //GRID SHUFFLE CODE:OPEN
    function randomSort(a:*, b:*):Number
        if (Math.random() < 0.5) return -1;
        else return 1;
    var positions:Array = [new Point( 158, 296),new Point(238, 296),new Point(318,  296),
    new Point( 158, 366),new Point( 238, 366),new Point( 318, 366),new Point(158, 436),
    new Point( 238,436),new Point(318, 436)];
    var mcs:Array = [n1,n2,n3,n4,n5,n6,n7,n8,n9];
    positions.sort(randomSort);
    var q:int = positions.length;
    for(var t = 0; t < q; t++)
        var mc:MovieClip = mcs[t];
        var point:Point = positions[t];
        mc.x = point.x;
        mc.y = point.y;
    //GRID SHUFFLE CODE:CLOSE
    {n1.addEventListener(MouseEvent.MOUSE_DOWN, alph1);
    function alph1(e:MouseEvent):void
    {{n1.alpha = .5;n1.removeEventListener(MouseEvent.MOUSE_DOWN, alph1);};
    n2.addEventListener(MouseEvent.MOUSE_DOWN, alph2);
    function alph2(e:MouseEvent):void
    {{n2.alpha = .5;n2.removeEventListener(MouseEvent.MOUSE_DOWN, alph2);};
    n3.addEventListener(MouseEvent.MOUSE_DOWN, alph3);
    function alph3(e:MouseEvent):void
    {{n3.alpha = .5;n3.removeEventListener(MouseEvent.MOUSE_DOWN, alph3);};
    n4.addEventListener(MouseEvent.MOUSE_DOWN, alph4);
    function alph4(e:MouseEvent):void
    {{n4.alpha = .5;n4.removeEventListener(MouseEvent.MOUSE_DOWN, alph4);};
    n5.addEventListener(MouseEvent.MOUSE_DOWN, alph5);
    function alph5(e:MouseEvent):void
    {{n5.alpha = .5;n5.removeEventListener(MouseEvent.MOUSE_DOWN, alph5);};
    n6.addEventListener(MouseEvent.MOUSE_DOWN, alph6);
    function alph6(e:MouseEvent):void
    {{n6.alpha = .5;n6.removeEventListener(MouseEvent.MOUSE_DOWN, alph6);};
    n7.addEventListener(MouseEvent.MOUSE_DOWN, alph7);
    function alph7(e:MouseEvent):void
    {{n7.alpha = .5;n7.removeEventListener(MouseEvent.MOUSE_DOWN, alph7);};
    n8.addEventListener(MouseEvent.MOUSE_DOWN, alph8);
    function alph8(e:MouseEvent):void
    {{n8.alpha = .5;n8.removeEventListener(MouseEvent.MOUSE_DOWN, alph8);};
    n9.addEventListener(MouseEvent.MOUSE_DOWN, alph9);
    function alph9(e:MouseEvent):void
    {{n9.alpha = .5;n9.removeEventListener(MouseEvent.MOUSE_DOWN, alph9);};
    {startBtn.visible = true}
    Can anyone please help.
    Thanks in advance
    with best regards
    shams

    @kglad
    i have copied and pasted the code as given below. Can you please point out
    if there is anything that needs to be completed. Or rather, how can i
    complete the "if" statement:
    var positions:Array = [new Point( 158, 296),new Point(238, 296),new
    Point(318,  296),
    new Point( 158, 366),new Point( 238, 366),new Point( 318, 366),new
    Point(158, 436),
    new Point( 238,436),new Point(318, 436)];
    var errors:int;
    var mcs:Array = ;
    startF();
    function startF():void{
    errors=0;
    shuffle(positions);
    for(var i:int=0;i<positions.length;i++){
    mcs[i].addEventListener(MouseEvent.MOUSE_DOWN,downF);
    mcs[i].x=positions[i].x;
    mcs[i].y=positions[i].y;
    mcs[i].alpha=1;
    function downF(e:MouseEvent):void{
    if(mcs.indexOf(e.currentTarget)==0 ||
    mcs[mcs.indexOf(e.currentTarget)-1].alpha<.8){
    e.currentTarget.alpha=.5;
    e.currentTarget.removeEventListener(MouseEvent.MOUSE_DOWN,downF);
    if(mcs.indexOf(e.currentTarget)==mcs.length-1){
    gameoverF();
    } else {
    errors++;
    function gameoverF():void{
    // display congrats if errors 0 or some other low number
    // when you want to restart the game, call startF().
    function shuffle(a:Array) {
        var p:int;
        var t:*;
        var ivar:int;
        for (ivar = a.length-1; ivar>=0; ivar--) {
            p=Math.floor((ivar+1)*Math.random());
            t = a[ivar];
            a[ivar] = a[p];
            a[p] = t;
    thanks a lot

  • Css upgrades in CS3

    Hi All,
    About to redesign or company website.
    A lot of the site is complicated layouts, we ahve used tables
    in the past, and css with varying results.
    Is CS3 more usable / effective in dreamweaver, and do I need
    to upgrade fireworks to make it work best.
    Would you do the upgrade for on (important) site?
    Thanks
    Dave

    > Is CS3 more usable / effective in dreamweaver, and do I
    need to upgrade
    > fireworks to make it work best.
    You mean CSS? It's been usable/effective since DW8, really.
    It's usually
    the operator that is not so effective as opposed to the
    implementation in
    DW. If you are comfortable with CSS, then DWCS3 will be a
    dream.
    > Would you do the upgrade for on (important) site?
    I would even do it for an unimportant one.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "redhill000" <[email protected]> wrote in
    message
    news:g1ga64$6o7$[email protected]..
    > Hi All,
    > About to redesign or company website.
    >
    > A lot of the site is complicated layouts, we ahve used
    tables in the past,
    > and
    > css with varying results.
    >
    > Is CS3 more usable / effective in dreamweaver, and do I
    need to upgrade
    > fireworks to make it work best.
    >
    > Would you do the upgrade for on (important) site?
    >
    > Thanks
    > Dave
    >

  • PS CS3 taking a long time to load and seems to "spin" when Reading Preferences.

    I've noticed this problem a few days ago, and am unsure what I should do about it. PS used to load very quickly, and now when launching, it will spin for a good 90 seconds while reading the preferences. Is there a way to reset the preferences? Is this a sign of something else?
    I'm running PS CS3 10.0.1 on OSX v. 10.4.11. Here's a cut & paste of the system info:
    Adobe Photoshop Version: 10.0.1
    Operating System: Mac OS 10.4.9
    System architecture: PowerPC G5 with AltiVec
    Physical processor count: 1
    Processor speed: 2000 MHz
    Built-in memory: 1024 MB
    Free memory: 384 MB
    Memory available to Photoshop: 979 MB
    Memory used by Photoshop: 67 %
    Image cache levels: 6
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
    Macintosh HD, 148.9G, 58.6G free
    Primary Plug-ins folder: Macintosh HD:Applications:Adobe Photoshop CS3:Plug-Ins:
    Additional Plug-ins folder: not set

    Not to answer for Buko, but he may be asking what happens if you were a brand new install? In other words when the PS application first creates the preference files.
    I have similar issues with PS and Illustrator CS3, more than any time before. Frankly they load a lot of crap. I noticed that this was especially pronounced for CS3 applications.
    Denise, my main machine is a G5 Quad Processor running at 2.5 Ghz and I have 16 gigs of RAM. It takes PS and Illustrator about 30 to 40 seconds to load. My point is that we have very similar machines but that I have a bit more muscle and I am getting a comparable time. Imagine if you had my machine you might get the slightly reduced start time. Its not a happy situation but our machines are getting slightly long in the tooth.
    A lot of modern apps on the Mac are now using XML files for prefs and they have a habit of getting damaged and corrupted. I would manually locate them in your User directory and remove all of them by hand. Then you should do something that most do not consider.
    Optimize your drives with a tool like Tech Tool or Disk Warrior. A fragmented drive severely affects PS operation in 3 ways:
    1st: If you watch the PS splash screen as it loads, its loading a long list of pieces, if those are scattered across many disconnected sectors, thats slow.
    2nd: If your scratch drive is pooched, that will slow down Photoshop. Don't forget what a scratch really is, its virtual memory, in other words fake RAM. BTW it never a good idea to have Photoshop and/or your OS on the same partition as your documents and scratch drive. If your hard drive is big enough, partition it or spring for another drive, they are cheap.
    3rd: If your image/PS documents are on fragmented drives, again slow pokes. PS struggles to pull the sectors together.
    Your info above was helpful but I could not tell what how much RAM you have, is it really 1 meg? Thats really small, more RAM will help a lot, then there is less scratch disk usage.
    Finally another factor in speed, what is your dives spindle speed and access time? Faster is better.
    Much luck.

  • From Premiere Elements 4 to CS3

    I am considering moving from Premiere Elements 4.0 to CS3 (on Windows Vista 32 bit). I have a couple of questions regarding the two, I'm hoping someone here may know.
    1) Can CS3 read Premiere Element 4.0 projects (windows versions).
    2) Is CS3 more responsive and less prone to crashing than Elements 4.0 with HD projects? While Premiere elements 4.0 renders quite quickly compared to elements 3, it seems quite a bit less stable and is more "swappy". If you load a 5-10 min HD project, it takes quite a while, and if you minimize it to go to your email or something, then go back to it, it takes quite a long time before it brings the window back up and is responsive. This really makes for a frustrating workflow. I've tried all the performance tips, changing registry entries etc, reinstalling nothing helps. It's just slow. I have a quad core Intel QX6700 processor, latest drivers for everything, 4GB of system RAM, and an NVidia 8800GTX video card, so the system is pretty fast. I'm hoping CS3 would perform better on the same system.

    1) Yes but beware that media used in an Elements project must be CS3 compatible - or it will simply show as offline / unsupported when you open the elements project in CS3
    2. Hmm.. My system is of lesser spec than yours but I dont have that problem. OK Premiere takes a while to load and open a project but if I then minimize it do some email (or whatever) and go back to PP - it is virtually instant - certainly less than a second. Maybe someone else here can suggest the cause

  • Thumbnails "hack" for cs3

    Is there a new "hack" for viewing psd thumbnails in windows explorer,? i have tryed the shell extention thingy, but it didnt work...
    Tnx

    Hi Jim,
    I will check if I have another version in place. Maybe now I get a problem because I use Bridge for viewing the new pictures, classifying by tags. For searches later on I have Photoshop elements because of it´s fast database. For PSE I now need Version 7 with Camera Raw 5.2, for Bridge and CS3 (more complex actions for improving my pictures) I had to install ACR 4.6.
    From Bridge I can open the pictures with "open" and 4.6 appears before entering CS3. But in Bridge the option "open with camera raw" is not available.
    Hopefully I only have 2 ACR 4.x versions in the CS3 directories. This would be easy to solve. Otherwise it seems to get more and more enerving to find the error.

  • Mini and Adobe CS3 vs G4 tower and CS2

    Graphic artist is using
    tower G4 Dual 1GHz
    2mb L3 cache per processor
    1.5 gb RAM with Creative Suite 2
    I am suggesting we move on to a MacMini 1.66GHZ with 1 gig Ram using CS3...
    Any opinions on relative speeds - I have CS2 on a Mini and it is slower than the G4, but I'd reckon CS3 on Intel would be quicker? All we would install would be Office and CS3.
    (more RAM is an option, but just out of the box - what do you think?)

    CS3 would indeed be quicker on an Intel mini since it's Intel native, thus runs without the memory and performance hit caused by Rosetta. I'd expect a 1.66 mini with 1Gb RAM and native software to outperform a dual 1GHz processor G4 by a notable margin, suffering only from a slower hard drive. However, since you note the intention to also use MS Office, which is NOT yet Intel native, I'd expect running that to cause the system a significant slowdown because it would require Rosetta to run in the background. Under that circumstance, I'd urge the system to be upgraded to the max of 2Gb RAM, which should allow enough room for CS3 to run well, and still provide sufficient RAM to get reasonable performance from MS Office. Alternatively, you could perhaps download Neo Office instead (it's fully MS Office compatible, free and Intel native) in which case 1Gb would be sufficient (2 would be better).
    And just to add to the possible complications, I'd also want to throw in an external, faster, FW drive, which could be set up to boot from and squeeze even more performance out of the system.
    Ooops - ON EDIT: Neo Office can be found at http://neooffice.org/neojava/en/index.php

  • Fonts not importing on CS3

    I am working on a machine that the fonts are not importing for the fonts folder in windows.   Some are coming over but some are not,  they are all coming over if i open say a word document.   Current version is adobe CS3 V10.0.  is there any fixes for this issue besides upgrading to a newer version, that is out of the question as of now.
    thanks

    You put that font into
    C:\Windows\Fonts
    Which version of windows are you using?
    As an aside, your still on photoshop 10.0 and there is an photoshop 10.0.1 update for photoshop cs3
    Adobe - Photoshop : For Windows : Adobe Photoshop 10.0.1 update for Adobe Photoshop CS3
    more cs3 updates
    (under creative suite 3)
    Adobe - Creative Suite : For Windows

  • Trying to move file in v1.0 - false error Mac OS 10.4.8

    I am a huge fan of LR. Well frikkin' done Adobe...and to the whiners and nay sayers and negative comments on this forum - remember most folk who are working pro photographers like me haven't got time in the day to write glowing fabulous comments to counter the silly stuff.
    You really nailed the work flow. We shoot about 250 gigs of data a month and have already shaved many hours per job off due to LR. So there.
    But I have a weird problem I need advice on.
    I am running the latest Mac OSX 10.4.8 on a MacBook Pro with 2 gigs RAM. I am a very experienced Photoshop user (since v3) and a savvy technical computer user on Mac and Win.
    I have come across a repeatable and for me show stopping bug - here's my workflow - I import images as per usual. Then I select some images and make them green with the 8 key, then choose to only view them with the filter.
    Next I want to move these heros to a separate folder. So I make a new folder using the + button. Then I drag the images over. Voila. Works perfectly and I can see the selected images in the finder etc.
    But sometimes and I dont know why only sometimes I get a mesage that states that a certain file name exists already in the folder I am copying to and the copy stops. This aint so, as the folder is brand new and has nothing in it. So now I have a mess of some images copied and some not and I don't know where all my heros are - some copied and some didnt. Now if I try to copy the remainder of the files over now the drag and drop wont actually allow me copy any files at all.
    But sometimes this works and then for no reason I can figure out some times this doesn't.
    Is this a known bug?
    Any feedback gratefully received...
    Will

    thanks for taking time to reply
    i tried restarting LR after restarting the machine, several times. no joy. it seems that LR is now confused about where the images are. there is no synch to the finder anymore. LR thinks the images are somewhere where the finder and bridge dont see them.
    the files are on an external new 100 gig 7200 rpm seagate usb 2.0 drive.
    this particular job is this - we are putting together a new web site and have gone through 4 years of photos to find the heros.
    these were all copied to this little external drive in a series of folders that match the way that the final web site will have galleries.
    the root foler was then imported into LR.
    each folder has around 200 images that we want to use LR to whittle down to the final 30 for each catagory.
    standard stuff. and LR has worked perfectly copying the chosen files to new "selected" folders within each category. but every so often as i say earlier it gets confused. and that REALLY messes up my day.
    also, I am finding that color tags set up in LR are not being seen by Bridge in CS3
    more as it happens
    will

  • Help photoshop cs4 novice

    hi
    i updated photoshop cs4  
    but i have some problems
    i used cs3 till yesterday
    may i ask some questions?
    1)
    what i don't like about cs4 is
    i can't enlarge for example the navigator palette , i can enlarge but only increase the donwn-right corner instead in the cs3 i can do clicking both the down right and left conrners , and have a nice navigator palette
    may i do with cs4?
    2)
    and is there a way to disable the move feature keeping on the gpu ON (enable the acceleration video card) ?
    i mean
    i don't like to use the hand tool and when i move the photos, it  moves like a video game often go out of the monitor
    thanks

    Mantralightroom - you can get Photoshop back to CS3 (more fluid and less 'restricted') in this way - Turn Window/Application frame OFF. Now you have your (now three) screen modes behaving openly with the documents behind the panels. Unfortunately the panels are not quite as easy to resize, and dock together as they were in previous versions - but its still OK, and this should help you with the Navigator panel.

  • Pdf naming slugs

    I have problems printing out page info when printing pdfs. Sometimes when I make a pdf by exporting from InDesign I can print the file out of Acrobat and i will print the crop marks and page info. Other times I have to go into "Advanced" and check off trim and page info. I dont know why this happens.
    The other issue is when Im printing out oversized docs... sometimes the crops are in the wrong place (almost looks like its trying to tile) and/or the page info is illegible or off the page.  I have tried printing with Auto Rotate & Center on and with it off-but still get the same results. i have a 44" x 156" banner that I made a pdf for to show the client. When I print... the slug is too small to see. Can I add a footer manually and get it to print outside of the crop marks somehow? Thanks for any help with this. Im using Acrobat 8.1.5 and Mac OS 10.4.11.

    Indesign CS3
    More info of the problem can be found here:
    http://www.layersmagazine.com/forum/showthread.php?s=1ea7a40e429318ae0029c8e5cc70d122&t=49 1&page=2
    The work around listed below seems to work:
    Apparently this is a huge problem that many designers who work with large workflows are frustrated with. It's actually not a bug but rather the way Adobe created InDesign.
    To fix the problem, export your file as an .INX exchange file. Then open that file (make sure nothing got messed up) and save it over your original .INDD.
    It's not a great fix, but it's the only one I've found. Apparently, this problem happens less with CS3.
    I discovered the cause and fix for this problem on an Adobe.com forum at http://www.adobeforums.com/webx/.3bc2ecf5/25

  • Mac - Windows

    I am brand new to Dreamweaver and need help with this
    question. My Town's main web site was originally set up using
    Dreamweaver 6 and a Windows based PC. I would like to help maintain
    the site along with another staff person. I have a MacBook Pro and
    she has a Windows machine with Dreamweaver 6 loaded. The question
    is can I interface with my MacBook Pro and a newer version of
    Dreamweaver or do we both need to use the same operating system?
    Thank in advance for any help you can offer!

    Not correct. Template functionality is identical in MX and
    CS3 (more or
    less). DW4 was the breakpoint.
    And using templates in a shared environment like this is a
    major PITA.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "PeteC" <[email protected]> wrote in
    message
    news:g6a4ji$f4j$[email protected]..
    > bjack43 wrote:
    >> I am brand new to Dreamweaver and need help with
    this question. My
    >> Town's main web site was originally set up using
    Dreamweaver 6 and a
    >> Windows based PC. I would like to help maintain the
    site along with
    >> another staff person. I have a MacBook Pro and she
    has a Windows
    >> machine with Dreamweaver 6 loaded. The question is
    can I interface
    >> with my MacBook Pro and a newer version of
    Dreamweaver or do we both
    >> need to use the same operating system? Thank in
    advance for any help
    >> you can offer!
    >
    > You can both work on the website (I suggest you use some
    sort of CVS, or
    > at least enable check-in/check-out in DW).
    >
    > The only issue I can see with the website is that if the
    website uses DW
    > templates, you may have difficulty. Template
    functionality is greatly
    > different between MX and CS3...
    >
    >
    > HTH,
    >
    > Pete.
    > --
    > Peter Connolly
    >
    http://www.kpdirection.com
    > Utah
    >

  • MacBook 2.16 C2D and PhotoShop

    Hi
    I recently purchased a MB C2D 2.16 and I have just started a 1 year course on PhotoShop and wondered if this cut's it for pure graphics etc and will it take me through the course as thing's seem ok at present.
    I use a PC for the course and the MB is no way as fast as that.
    cheers

    CS2 would run better with more RAM. 1 GB isn't really enough especially running in rosetta. You will be much happier if you either get more RAM (cheap fix) or get CS3 (more expensive fix).

Maybe you are looking for

  • Extract BW infocube data to a flat file

    Hi Folks, I have a requirement where  I need to extract data from Infocubes to a flat file. Please suggest me the ABAP programming methodology where i can use function module to extract data from cube and dump it to internal table. Your immediate hel

  • Using a Variable with BEX Java Applications

    If I put a variable into a query and try to run the query using anything Java based (e.g. Web analyzer) when I do a drop down on the variable in the query to make a selection I dont get a proper selection choice. For example if I have a variable on C

  • How to uninstall SAP NetWeaver 7.01 ABAP Trial Version on Vista

    I can't  uninstall SAP NetWeaver 7.01 ABAP Trial Version on Windows Vista, because installation didn't finish

  • Problems with Conditional Display and Read Only

    Hi Everybody, I have a form to Add/ Modify Table Info. I have column which stores numeric value (like no. of purchases, no.of returns etc.,) and I have a text field with this Database column as Source. In some cases the value is a foreign key (Id of

  • Business Graph Giving Dump.

    Hello Experts, I want to display some data in Business Graph . So i add the UI element in the view also created some node and attributes and bind it with the business graph properties (but not yet do any coding for fetching the data ). But after that