Studio 11 still freezing

This posting is a follow-up to the Mar 1 posting entitled:
Studio 11 freezes when using external editor. Gordon kindly
responded to that posting with a request for instructions on
how to recreate the problem. Those instructions follow.
1. Create a directory containing the makefile and two source
files appended to this posting.
2. Run Studio 11.
3. Set the External Editor to be GVIM.
4. Build the executable from the appended files.
5. Load the resulting program into the debugger.
6. Run (e.g.) "func getCtype" in the debugger window.
All Studio 11 (sub)windows freeze except the GVIM window.
This happens consistently on two machines at our site. Here
are the details from one of them:
Sun Studio 11: (Build 20050910)
IDE Versioning: IDE/1 spec=3.42.1 impl=20050910
SunOS host 5.9 Generic_118558-19 sun4u sparc SUNW,Sun-Blade-100
Java: 1.5.0_01
VM: Java HotSpot Client VM 1.5.0_01-b08
Here are the Studio 11 processes left running after the freeze:
host{user}: ps -ef | grep -i studio
user 15363 588 0 12:03:24 pts/4 0:00 /bin/bash /usr/local/SunStudio/SUNWspro/bin/sunstudio
user 15414 15398 1 12:05:03 pts/4 0:01 /usr/local/Studio11/SUNWspro/bin/gvim -n -nb -fg #000000 -bg #ffffff -xrm
user 15411 15398 1 12:04:59 pts/11 0:01 /usr/local/Studio11/SUNWspro/bin/../prod/bin/sparcv9/dbx -g sync,stdio -c
user 15398 15363 0 12:03:26 pts/4 0:40 //bin/java -classpath /usr/local/Studio11/netbeans/3.5V11/lib/ext/boot.jar
Thanks for looking into this.
Gary Hall
*************** start bootype.cpp ***************
This file is a part of the OsiDylp LP distribution.
Copyright (C) 2005 Lou Hafer
School of Computing Science
Simon Fraser University
Burnaby, B.C., V5A 1S6, Canada
[email protected]
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2 of the License, or (at your option)
any later version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin St., Fifth Floor, Boston, MA 02110-1301 USA
Simple C++ program to determine the size of a bool.
Rather than go through the bother required to get this string into the
binary, we'll settle for a comment.
sccs: sccsid[] = "@(#)booltype.cpp 1.2 09/25/04" ;
svn/cvs: svnid[] = "$Id: booltype.cpp 22 2005-11-09 02:51:34Z lou $" ;
#include <iostream>
#include <string>
extern "C" const char *getCtype(int bytes) ;
int main (int argc, char *argv[])
{ bool verbose = false ;
if (argc > 1)
{ if (argc == 2 && argv[1] == static_cast<std::string>("-v"))
verbose = true ;
else
{ std::cout << "usage: " << argv[0] << " [-v]\n" << std::endl ; ;
exit (1) ; } }
if (verbose)
{ std::cout << "C++ bool is " << sizeof(bool) << " bytes." << std::endl ;
std::cout << "Matching C type is "
<< getCtype(sizeof(bool)) << std::endl ; }
std::cout << getCtype(sizeof(bool)) ;
exit (0) ; }
*************** end bootype.cpp ***************
*************** start boolequiv.c ***************
This file is a part of the OsiDylp LP distribution.
Copyright (C) 2005 Lou Hafer
School of Computing Science
Simon Fraser University
Burnaby, B.C., V5A 1S6, Canada
[email protected]
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2 of the License, or (at your option)
any later version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin St., Fifth Floor, Boston, MA 02110-1301 USA
Rather than go through the bother required to get this string into the
binary, we'll settle for a comment.
sccs: sccsid[] = "@(#)boolequiv.c 1.1 10/18/02" ;
cvs/svn: svnid[] = "$Id: boolequiv.c 22 2005-11-09 02:51:34Z lou $" ;
This routine accepts a single numeric parameter and matches it to the
appropriate C data type. It's used with boolcheck.cpp to return the variable
type that should be used to define BOOL in the makefile.
const char *getCtype (int bytes)
{ if (bytes == sizeof(char))
return ("char") ;
else
if (bytes == sizeof(int))
return ("int") ;
else
if (bytes == sizeof(short int))
return ("short int") ;
else
if (bytes == sizeof(long int))
return ("long int") ;
else
return ("<error>") ; }
*************** start boolequiv.c ***************
*************** start makefile ****************
booltype: boolequiv.c booltype.cpp
cc -g -c -o boolequiv.o boolequiv.c
CC -g -c -o booltype.o booltype.cpp
CC -g -o booltype booltype.o boolequiv.o
clean:
rm booltype booltype.o boolequiv.o
*************** end makefile ****************

Hi Gordon,
You neglected to put the path to the tuning parameters page in your posting.
I found http://performance.netbeans.org/howto/jvmswitches/index.html. Was
this the one? It refers to a netbeans.conf file. I have one in system-wide (NFS
mounted) installation of netbeans-4.0 but cannot find one in the Studio11
netbeans directory.
I neglected to use --userdir when conducting my previous test. When
I do, the problem disappears.
Here's a diff of the ide.log files from the two runs (>: with --userdir, <: without):
2c2
< >Log Session: Thursday, April 6, 2006 12:18:10 o'clock PM PDT
Log Session: Thursday, April 6, 2006 12:09:53 o'clock PM PDT11c11
< IDE Install; User Dir = /usr/local/Studio11/netbeans/3.5V11; /home/user/.sunstudio/11-SunOS-sparc
IDE Install; User Dir = /usr/local/Studio11/netbeans/3.5V11; /tmp/xyz18,19d17
< org.netbeans.core/1 [1.12.1 20050910]
< org.netbeans.core.windows/1 [1.1.1 20050910]
22a21,23
org.netbeans.modules.extbrowser/1 [0.7.1 20050910]
org.netbeans.core/1 [1.12.1 20050910]
org.netbeans.modules.settings/1 [1.3.1]28,29d28
< org.netbeans.core.execution/1 [1.2.1 20050910]
< org.netbeans.modules.debugger.core/3 [2.8.1 20050910]
31a31
org.netbeans.core.execution/1 [1.2.1 20050910]33,40c33,34
< org.netbeans.core.ui/1 [1.1.1 20050910]
< org.netbeans.modules.externaleditor [1.4 20050910]
< org.openidex.util/2 [2.6.1 20050910]
< org.netbeans.modules.settings/1 [1.3.1]
< org.netbeans.modules.utilities/1 [1.13.1 20050910]
< com.sun.tools.swdev.toolscommon [1.15 ${buildnumber}]
< org.netbeans.modules.autoupdate/1 [2.7.1 20050910]
< com.sun.tools.swdev.sunstudio/1 [1.2 051013]
com.sun.ffj.modules.registration/1 [1.4.1 2005/10/13]
com.sun.tools.xdplugin/7 [8.2 20051013]41a36,40
org.netbeans.core.ide/1 [1.2.1 20050910]
org.netbeans.modules.group/1 [0.1.1 20050910]
com.sun.tools.swdev.toolscommon [1.15 ${buildnumber}]
com.sun.forte.st.mpmt/1 [8.2]
org.openidex.util/2 [2.6.1 20050910]44,45c43,46
< org.netbeans.modules.welcome/1 [1.4.1 20050910]
< com.sun.forte.st.mpmt/1 [8.2]
org.netbeans.modules.autoupdate/1 [2.7.1 20050910]
org.netbeans.modules.debugger.core/3 [2.8.1 20050910]
com.sun.tools.swdev.javadisabler/1 [1.2 051013]
org.netbeans.modules.usersguide/1 [1.12.1 20050910]47c48,49
< org.netbeans.core.ide/1 [1.2.1 20050910]
org.netbeans.modules.utilities/1 [1.13.1 20050910]
org.netbeans.modules.text/1 [1.11.1 20050910]48a51,55
org.netbeans.modules.externaleditor [1.4 20050910]
org.netbeans.core.windows/1 [1.1.1 20050910]
org.netbeans.core.ui/1 [1.1.1 20050910]
org.netbeans.modules.welcome/1 [1.4.1 20050910]
com.sun.tools.swdev.sunstudio/1 [1.2 051013]50,53d56
< org.netbeans.modules.text/1 [1.11.1 20050910]
< org.netbeans.modules.usersguide/1 [1.12.1 20050910]
< org.netbeans.modules.group/1 [0.1.1 20050910]
< com.sun.tools.swdev.javadisabler/1 [1.2 051013]
55,57d57
< com.sun.ffj.modules.registration/1 [1.4.1 2005/10/13]
< org.netbeans.modules.extbrowser/1 [0.7.1 20050910]
< com.sun.tools.xdplugin/7 [8.2 20051013]
60,61d59
< Failed once...
< Failed once...
Gary

Similar Messages

  • Not Running on the Event Dispatch thread, but UI still freezes

    The environment: I am currently working on an application that requires some heavy lifting in response to user input on a UI. To do this I am using a version of SwingWorker that was backported from java 1.6 to java 1.5 in conjunction with a slew of custom threads.
    The problem: I am currently running into an issue where I am not operating on the Event Dispatch thread (checked by doing a javax.swing.SwingUtilities.isEventDispatchThread()) but the UI is still freezing during this section. The operation involves a loop with about 2000 iterations and contains several file accesses. I have thought about how to make a new thread to perform the same operation, but I do not see how it would be any different since as it is I am not on the EDT. The call is being made from doInBackground and specifically the piece that is slowing things down is the File Accesses (2 for every iteration of the loop). At this point I am not sure how to go about resolving the issue. Any one have any suggestions?

    I am not operating on the Event Dispatch threadThat is the problem. Use multiple threads for GUI, which should delegates to the EDT, and your app logic.

  • Unable to change Still/Freeze Frame Duration in User Pref Edit tab

    Process-selected new project, change Still/Freeze Frame Duration in user preferences on the edit tab.
    Need to change to 10 minutes. Typed in the field 00:10:00:00. When I hit ok, I get a beep and it defaults back to what was in there, 01:00:00:00. So tried a larger number 02:00:00:00. Same result. A beep.
    So went ahead with project and opened a sequence and tried to change it from the viewer. Same issue.
    Trashed prefs and started from scratch. Same issue.
    Ideas?

    Trashed prefs rebooted originally.
    Process as follows for trashing prefs. First time through I had opened a project. This time did not.
    Open Home Folder
    Open Library
    Open Preferences
    Delete com.apple.finalcutpro.plist
    Open Final Cut Pro User Data
    Delete Final Cut Pro 5.0 Prefs
    Delete Final Cut Obj Cache
    Delete Final Cut Prof Cache
    Run disk utility to repair permissions.
    Reboot.
    Did not open a project this time.
    Same issue but now I am able to put a slug in the time line and by selecting clip properties, can set the duration (was not able to do this before so some progress). Still can't set duration though as earlier described from edit tab on the user preferences page for still/freeze duration.

  • Thought I had it fixed, by iMac is still freezing sometimes on boot up

    In an earlier post, I thought we had my iMac fixed but now it's still freezing up on boot up, occasionally.
    Sometimes I'll just get a grey screen with no logo after the boot up chime, sometimes it'll take a good minute or two for my iMac to fully boot up, and sometimes it'll boot just fine.
    Usually, when I get just the grey screen I have to use the Command-Control-Power button to reset the Mac just to boot.
    Any ideas as to why? I've repaired the hard disk after the first time this happened and it found no errors.
    I read my console log and there's nothing glaring out that looks like a massive error.
    I have been getting the following errors, could they be the problem?
    BootCacheControl: could not stop cache/fetch history: Cannot allocate memory
    vmnet: Hub 1 does not exist, allocating memory.
    Any help would be greatly appreciated.

    As a follow up to this.
    I booted from CD and ran disk utility. I repaired the disk and said everything was A-ok. I tried to repair disk permissions and it the progress bar froze a 1/3rd of the way in saying "1 minute remaining" and never moved after that.
    ideas?

  • My apple ipod classic 80gb says there is no music - anything on my ipod, but says it only has 37gb free. Then i try and plug it into my pc with iTunes on (i've set it to do not automatically sync devices) but it still freezes every time. can't restore.

    my apple ipod classic 80gb says there is no music - anything on my ipod, but says it only has 37gb free. Then i try and plug it into my pc with iTunes on (i've set it to do not automatically sync devices) but it still freezes every time. the only way to unfreeze it is by detatching the ipod or resetting with menu/centre (until it loads up again, where it immediately unfreezes and comes up with a load of messages saying "cannot read iPod" and when i try and restore it by pressing menu/centre button while it's plugged in, it says "cannot restore as it is being used by another program" or "error 1415". Any ideas how to sort this out? hope i haven't majorly screwed it up. thanks.

    Sorted it out. If anyone has this problem i reccommend visiting http://forums.ilounge.com/ipod-classic-ipod-5g-video/237546-ipod-classic-80gb-fr eezes-itunes-need-restore-plz-help-2.html#post1403546 there's some pretty good advice on it. have to go into control panel and re-format iPod into NTFS file. good luck.

  • Acrobat PDF Printer STILL freezes when pasting filename into Save dialog

    Ref: Acrobat Printer Freezes on Save when CTL+V is used
    No change in Acrobat X.  Printing system still freezes up entirely when pasting a filename into the Save dialog, when printing to Adobe PDF printer.  Most often from Firefix (all versions through 28.0) but from other programs as well (also happens from MS Outlook 2010 32 bit).
    Any chance of an update from Adobe?
    Acrobat Pro X on Win 7 64 bit.  Multiple systems exhibit same behavior.
    Same issue occurs in Acrobat XI Standard.
    Workaround is possible by manually typing in filename, or renaming, but clearly this should not be happening.  If you forget, it requires a lot of steps (or a reboot) to try again.

    If you copy text directly from FireFox (or Word, or pretty much any program, other than Notepad), and try to paste into the Save Dialog to save your PDF, guaranteed crash.
    HOWEVER, if you paste the text into Notepad first, and then copy it again, you can then paste into the Save dialog no problem.  This is why the "test" that the Adobe rep did to recreate the problem was pointless: He managed to re-create the one workaround method that DOES work, instead of actually trying to do things the way that were causing the issue to show up.
    The problem appears to be related to any sort of "rich" text.  Windows ignores the "rich" information and only keeps the text if you paste into a filename in the system.  So Windows handles it just fine, it's Adobe's save dialog that can't handle it.  Copied text from Firefox is usually pretty clean (IE is worse), but there must be some formatting remnants in there that are giving Adobe fits (instead of properly ignoring them).  It may have something to do with 64-bit Windows and 32-bit Firefox and 64-bit Acrobat all coming together?  Copying and pasting between 64-bit and 32-bit programs usually has no issues, but in this case, it does (although the 64/32 bit relation is pure speculation on my end).
    But by "washing" your text through Notepad first, it completely strips it down to truly pure plain text, which can then be pasted into Adobe's Save dialog without a crash.  This adds an extra step, and should be entirely unnecessary, but it does work.  At least until Adobe fixes their program.

  • My computer has been seen at Genius bar 6 times for freezing up, reloaded all original settings and even went to the apple shop where they replaced the battery and logic board. Still freezes after I try to reload iTunes stuff and app stuff from apple

    my computer has been seen at Genius bar 6 times for freezing up, reloaded all original settings, all of their diagnostics, and they even sent it to the apple shop where they replaced the battery and logic board. Still freezes after I try to reload iTunes stuff and app stuff from apple, especially iPhoto which is seems to refuse to load and then begins freezing up all over again. Anyone else have this problem. Other than this, I have had absolutely no problems with this computer. Now, it's a file of junk.

    Hi Ronald ...
    Have you checked lately to see how much free space there is on the disk? Especially since iPhoto freezes at launch ...
    Click your Apple menu icon top left in your screen. From the drop down menu click About This Mac > More Info > Storage
    Make sure there's at least 15% free disk space.
    And make sure the OS X software is up to date.
    Click the Apple  top left in your screen.
    From the drop down menu click:   Software Update
    If you have anti virus software installed or are using third party Mac cleaning utiliites, that may be part and parcel of the your problems.

  • My mac keeps freezing, i checked my ram fine, checked if SMART was verified it was, i reinstalled my software a few times and my RAM is 8gb used memory clean to make sure it wasnt a RAM probkem and my macbook is still freezing my RAM is 8gb i have

    My mac keeps freezing, i checked my ram fine, checked if SMART was verified it was, i reinstalled my software a few times and my RAM is 8gb used memory clean to make sure it wasnt a RAM probkem and my macbook is still freezing my RAM is 8gb i have 4.50/4.80 gb left and Mid -2012 model Macbook Pro what could be the problem also it started freezong when i upgraded to Yosemite and now my mac freezes once im logged into and sometimes has problem booting up either freezing or agent secuity error black screen??!!!!

    My mac keeps freezing, i checked my ram fine, checked if SMART was verified it was, i reinstalled my software a few times and my RAM is 8gb used memory clean to make sure it wasnt a RAM probkem and my macbook is still freezing my RAM is 8gb i have 4.50/4.80 gb left and Mid -2012 model Macbook Pro what could be the problem also it started freezong when i upgraded to Yosemite and now my mac freezes once im logged into and sometimes has problem booting up either freezing or agent secuity error black screen??!!!!

  • Safari still  FREEZES when I click on iTunes Store Links!!!

    Originally this Thread was called: Safari 4.0.3 PPC = FREEZES when I click on iTunes Store Links!!!
    Wish I didn't specify the version, so that I could have continued it all as One Thread after the next update, 4.0.4... This Discussion Board doesn't allow the Author of the Top to Edit the Title of the Title of the Topic... Now that Safari 4.0.4 Update has been released, when people see 4.0.3 in the Topic Name, they might be more likely to ignore it. Lesson learnt...
    Please review the Original Topic http://discussions.apple.com/thread.jspa?messageID=10469114 and Reply HERE http://discussions.apple.com/post!default.jspa?forumID=876 so it could be unified as One Thread...
    The latest:
    After Sleeping my PB G4 during the night, the problem still exist. After Restart, the problem is gone... I'll continue to watch this, and hopefully it won't be happening too often...

    So, I thought that starting a New Topic, without a specifying the Old Version 4.0.3 would be a safer bet...
    Then you should close the old topic by marking it as Answered or Solved; don't leave them open.
    If Safari still freezes, try this:
    1. Go to Home/Library/Cookies and delete the Cookies.plist file.
    2. Go to Home/Library/Caches/com.apple.Safari and delete the contents of that folder.
    3. Go to Home/Library/Caches/com.apple.Safari/Web Page Previews and delete the contents of that folder.
    4. If you don't want to use the Top Sites or Cover Flow features, open Terminal and paste in this command:
    defaults write com.apple.Safari DebugSnapshotsUpdatePolicy -int 2
    then press Enter or Return and quit Terminal
    5. Go to Home/Library/Caches/Metadata/Safari and delete the contents of that folder.
    6. Go to Home/Library/Caches/Safari and delete the contents of that folder.
    7. Go to Home/Library/Safari and delete these files (if you have them):
    Downloads.plist
    History.plist
    Form Values
    LastSession.plist
    WebpageIcons.db
    Then Repair Permissions, restart Safari and see if the problem continues.

  • IPhoto 9.6.1 printing still freezes

    After the update today printing still freezes iPhoto.
    I have 1 old print in the queue. If I try to print a new one or try to go to the printing queue iPhoto freezes.
    Is there any way to delete the print in the queue or to fix this problem?

    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  
    Regards
    TD

  • OK, I now own a legal copy of Premiere pro , NOT the trial, and the program is still freezing

    I am not running the trial version of this program, but I am still experiencing freezing of my computer when either exporting or rendering.  Does anyone know what could possibly be causing this?  I have 2.8 dual core processor, nvidia geforce 8600 gts, and 4 gigs of ram.  I am running windows 7 64 bit.

    I believe the source footage was avchd .mts file.  It's from a Canon Vixia HF M30 camcorder.
    I have a SATA hard drive , 7200 RPM, 250 gig.  About 50 gigs are free.  I have a western digital my book 500 gig hard drive that is external connected through USB 2.0 but that only has about 10 gigs left on it.  I wasn't able to install more memory but I have 4 gig, I just upgraded last week, maybe I need to go to 6.  The thing is I'm able to edit without any hiccups or choppyness in the video so I'm not sure if memory is the problem but I am probably wrong.
    I just ordered a western digital 2 terabyte internal hard drive. Maybe If I dedicate that to media cache things will run smoothly?
    I was using the scratch disks on the internal hard drive, then tried to split it up by putting previews and things like that on the external but there was still freezing.
    If the problems still persist after I get the hard drive I'll order some extra RAM.
    I hope that gives more information.  Thank you for taking the time to post.

  • Safari still freezes when accessability voice over is on and blue tooth keyboard still doesnt work when accessability voice over is on, Help

    Hi Apple,
    iphone 5s latest updates , safari still freezes when accessability voice over is on and blue tooth keyboard still doesnt work when accessability voice over is on, Help

    Hi,
    If you are absolutely sure that neither the sound output of the Macbook nor the sound output of VoiceOver are muted then try to reset VoiceOver.
    1. Open VoiceOver Preferences.
    2. From the File menu choose "Reset All VoiceOver Preferences …".
    3. Click "Reset.
    4. Turn VoiceOver Off and On again. (hold command and press F5 twice).
    If you still don't hear anything then it could be that the main sound output of the Macbook got muted somehow. I find that I often hit the mute button on my Apple wireless keyboard without noticing. So just make sure that its not muted and also hit the "Volume Up" a few times. Its so terribly obvious I know but its also very easy to miss. Lots of people do that.

  • 8.1 still freezes

    8.1 still freezes while typing or during autocomplete when will this known issue be fixed ?

    Nobody here works for Apple. This is a User to user support forum. Since Apple hasn't addressed this publicly, there is no way of knowing if they even consider it an issue.
    Have you done any troubleshooting at all in order to try to fix the problem? Have you addressed Apple via any of the feedback links to let them know of your concerns?

  • My ipod touch still freezing even after restoring it

    plz i need help....my ipod touch still freezing even after restoring it...plz send me email to [email protected]

    If you did not restore to factory defaults/new iPod do that. If yuo are still having problem then an appointment at the Genius Bar of an Apple store is in order. You likely have a hardware problem.
    You are not addressing Apple here. We are just users like yourself.

Maybe you are looking for

  • How can i get the month and year of the current  open Periode?

    At the beginning of each month the booking period for the new month was not open,but i need to book material automatically with the last day of the old month. The booking period will change at the first working day between 13 and 17 a clock. when the

  • Issues in looking up a ejb deployed on glassfish from tomcat.

    Hi all, I have followed the steps mentioned in the EJB FAQ in the glassfish site and was able to lookup a remote ejb deployed in glassfish from a standalone client. In case of standalone client, i set the appropriate jndi properties in the initial co

  • Fonts not embedding when making PDF from PM 7.1

    In making a PDF from a PM file, I am having trouble getting the fonts to embed.  The interesting thing is that the fonts that are not embedding are Times Roman and Arial; other fonts are being embedded.  These fonts are installed and I have the "Embe

  • Can't open iphotos

    My wife recently accessed my iphotos from her iMac and now I get the message "you can't open your current photo library using this version of iPhoto.  You have made changes to your photo library using a newer version of iPhoto.  Please quit and use l

  • Boris FX : differences in packages?

    I intend to purchase one of the packages from Boris FX. I found out there two packages which have similarities : RED en BLUE. I, myself, am not really good in seeing the differences between the packages allthough I believe the BLUE version seems to s