DW CS4 edit in FW CS4 privileges?

When I want in DW CS4 to edit a .gif in FW CS4 I click on the
little FW button below in the properties-panel. But now I get a
popup telling me:
quote:
Your user privileges do not allow Fireworks to update your
registry. Launch and Edit with Dreamweaver will not work properly
until Fireworks is launched while using Administrative privileges
The only way this popup will close is to double click and
then surprisingly it opens FW CS
3.
(I recently upgraded form CS3 to CS4)
Anyone an idea to solve this problem??
(I recently upgraded form CS3 to CS4)

Snow Leopard and CS4 are not the best of friends.
I might also recommend you visit the Apple forums, although I have not looked this topic up on that site.
I use CS4, I am not that experienced, but I have problems daily with CS4 freezing in Snow Leopard.
This is no help I'm sure, but wanted to let you know it is not your hardware, but in my opinion a conflict between Snow Leopard and CS4, whomever is responsible.
Thank you,
Dan

Similar Messages

  • Oracle Database 10g Express Edition (ORA-01031: insufficient privileges)

    Hello,
    I am new to 10g Express. I am working on Windows XP and I have Oracle App Server and JDev install on my box. I just installed 10g Express. When I try to connect to the database but I get the following error msg:
    SQL> connect sys/admin as sysdba;
    ERROR: ORA-01031: insufficient privileges
    I am also not able to see the homepage either.
    Can some please help.
    Thanks
    etnot

    Are you saying you can only have one instance of an
    Oracle Database install if you are going to use
    Oracle XE?Yes.
    Oracle Database XE is free for usage with the following limitations:
    • Supports up to 4GB of user data (in addition to Oracle system data)
    • Single instance only of Oracle Database XE on any server
    • May be installed on a multiple CPU server, but only executes on one processor in any server
    • May be installed on a server with any amount of memory, but will only use up to 1GB RAM of available memory

  • Cannot run workbook from desktop

    Greetings All,
    Discoverer version 10.1.2.0.2,
    Disco Admin has created business areas and workbooks. Admin has also shared workbook with a user. When user tried to run workbook user is not prompted for parameters. WHen user refreshes worksheet still not prompted for paramater and user gets a blank worksheet. Basically, cannot run any shared workbook.(NOTE: do not even get msg that query returned no data).
    When user tries to create a workbook by selecting items for a folder in business area, then again the same result - does not didplay any data (NOTE: do not even get msg that query returned no data).
    User has select from all tables priv.
    Any suggestion?
    JP.

    Hi,
    Does the workbook bring back data for any other user?
    Does this user have the Create/Edit query (Desktop/Plus privilege?)
    Thanks.

  • Assign multiple relationships at once

    Hi everyone...I am working in Primavera P6 Project Management Release: 7.0 Service Pack 3 (Build #: 00033036)
    When trying to assign multiple relationships at once, my computer will not allow me to capture multiple activities that have been assigned as either a predecessor or successor. I can highlight them, but when I click the assign button they all briefly flash as being captured then the assignment only shows the first activity in my complete schedule?
    I am able to log into a co-workers machine with my credentials and perform this task, but not on my machine. Do you have any suggestions?
    Thanks

    Hello,
    I assume this is all in the same project? It sounds like your project profile security settings could be different than your co-workers. I would see if there is a conflict between your settings from the admin perspective.
    Check these two lines in project security profile.
    Edit Project Activity
    Relationships
    Create, edit, and delete a project’s activity
    relationships.
    Add/Edit Project
    Activities Except
    Relationships
    Create and edit a project’s activity information, except
    activity relationships. To edit activity IDs, a user must
    also be granted the Edit Activity ID project privilege.

  • How to force my Web part to run regardless of users permissions

    I have created the following custom permission , which will allow users to Create items without being able to view,edit them:-
    $spweb=Get-SPWeb -Identity "http://vstg01";
    $spRoleDefinition = New-Object Microsoft.SharePoint.SPRoleDefinition;
    $spRoleDefinition.Name = "Submit only";
    $spRoleDefinition.Description = "Can submit/add forms/files/items into library or list but cannot view/edit them.";
    $spRoleDefinition.BasePermissions = "AddListItems, ViewPages, ViewFormPages, Open";
    $spweb.RoleDefinitions.Add($spRoleDefinition);
    $spweb.Dispose();
    then inside my "Issue Tracking List" i stop inheriting permission from team site , and i define the following permission for all users:-
    now users can add items and they can not view them ,, which is perfect :).
    But now i wanted to add a custom web part to my Create form which will hide certain fields if the user is not within specific group ,the web part looks as follow:-
    protected override void OnInit(EventArgs e)
    base.OnInit(e);
    InitializeControl();
    using (SPSite site = new SPSite(SPContext.Current.Site.Url))
    using (SPWeb web = site.OpenWeb())
    web.AllowUnsafeUpdates = true;
    SPGroup group = web.Groups["Intranet Visitors"];
    bool isUser = web.IsCurrentUserMemberOfGroup(group.ID);
    if (!isUser)
    SPList myList = web.Lists.TryGetList("Issue List");
    SPField titleField = myList.Fields.GetField("Category");
    titleField.Hidden = true;
    titleField.ShowInEditForm = false;
    titleField.ShowInNewForm = false;
    titleField.ShowInDisplayForm = false;
    titleField.Update();
    myList.Update();
    // web.AllowUnsafeUpdates = false;
    else
    SPList myList = web.Lists.TryGetList("Issue List");
    SPField titleField = myList.Fields.GetField("Title");
    titleField.Hidden = false;
    titleField.Update();
    myList.Update();
    // //web.AllowUnsafeUpdates = false;
    web.AllowUnsafeUpdates = false;
    then i deploy the web part and i add it to the Create form. but after doing so user are not able to create items and they will get the following error:-
    Sorry this site has not been shared with you
    so can anyone advice how to force my web part to run , without checking the users permissions or with minimal permssions ?

    in this case, use the elevated privileges to read/add/edit items with elevated privileges with below code.
    but make sure the page which you add this web part have at least read access to all user.
    SPSecurity.RunWithElevatedPrivileges(delegate()
    using (SPSite site = new SPSite(web.Site.ID))
    // implementation details omitted
    More: http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spsecurity.runwithelevatedprivileges.aspx
    Bistesh
    Ok after adding :-
    SPSecurity.RunWithElevatedPrivileges(delegate()
    users with the following permissions can create items:-
    "AddListItems, ViewPages, ViewFormPages, Open";
    and they can not edit/read them, which is great. but i am facing a caching problem , because if user is inside the "Intranet visitor" he will be able to see Category field as mentioned in my code, but if i remove him from the "Intranet Visitor"
    he still can see the field,, although in the web part i specify not to display the Category column if the user is not inside the "Intranet visitor " group... here is my current code:-
    protected override void OnInit(EventArgs e)
    base.OnInit(e);
    InitializeControl();
    SPSecurity.RunWithElevatedPrivileges(delegate()
    using (SPSite site = new SPSite(SPContext.Current.Site.Url))
    using (SPWeb web = site.OpenWeb())
    web.AllowUnsafeUpdates = true;
    SPGroup group = web.Groups["Intranet Visitor"];
    bool isUser = web.IsCurrentUserMemberOfGroup(group.ID);
    if (!isUser)
    SPList myList = web.Lists.TryGetList("Risk & Issue Management");
    SPField titleField = myList.Fields.GetField("Category");
    titleField.Hidden = true;
    titleField.ShowInEditForm = false;
    titleField.ShowInNewForm = false;
    titleField.ShowInDisplayForm = false;
    titleField.Update();
    myList.Update();
    // web.AllowUnsafeUpdates = false;
    else
    SPList myList = web.Lists.TryGetList("Risk & Issue Management");
    SPField titleField = myList.Fields.GetField("Category");
    titleField.Hidden = false;
    titleField.ShowInEditForm = true;
    titleField.ShowInNewForm = true;
    titleField.ShowInDisplayForm = true;
    titleField.Update();
    myList.Update();
    web.AllowUnsafeUpdates = false;
    so can you advice please ? is this a caching problem, or once the user add at-least single item he will be able to see all columns ?

  • Can't find the table when creating the form application

    Hi there,
    I have created a new table named lp_cschedule under a user named
    lptrain in users tablespace.
    I want to create a form application to view this table. However,
    I can find this table in the list.
    Don't understand why ? Any idea ?
    Regards,
    Maggie

    Perhabs, the application's owner does not have the previleges on
    the table you have mentioned. Follows the citation of the Forms
    (from tables or views) wizard help:
    Tables, views, and synonyms in the application schema where you
    have SELECT, INSERT, UPDATE, or DELETE privileges.
    Tables, views, and synonyms where SELECT has been granted to
    public users.
    You automatically have SELECT, INSERT, UPDATE, or DELETE
    privileges on a table or view if it is owned by an application
    schema where you have Edit or higher access privileges.
    You can check the owner (=schema) of the application from the
    Navigator clicking on the Edit action link against your
    application.
    Regards,
    Alexandre

  • Dreamweaver portal login problem

    We have successfully deployed the EAR file, correct the xml file and installed the installed the Dreamweaver extension.
    We configured the portal and test it successfully. When we tried to login we recive login incorrect... message.
    Any idea why?
    If we try to login to portal with this user (portal) everything works normal.
    The portal version is 9.0.2.30B, the Dreamweaver is version MX 2004. The EAR and Dreamweaver extension were downloaded today (11. 03. 2004) so we assume they are the latest version.
    Anybody had anything similar?

    Hi -
    UI Templates are Shared Components under the providers tab. As such the user you log in as must have the appropriate privs. From the documentation:
    To create or use a shared component, you must have at least one of the following privileges:
    * Edit or higher access privileges on at least one provider.
    * The CREATE ALL PROVIDERS global privilege, or higher.
    * The CREATE ALL shared components global privilege, or higher.
    * CREATE shared component access privileges, or higher.
    By default , all members of the PORTAL_DEVELOPERS or DBA groups have these privileges.
    Hope this helps,
    Candace

  • TS4118 I have synced outlook 2010 calendar with icloud, But....

    I now have 2 calendars; the outlook default personal .pst with no data and my icloud with everything in it.  If I create an appointment in the default calendar it does not sync to my iOS devices, and no appointments/tasks appear in the to do bar as they are all in icloud which isnt the default. If it is then imap mail accounts don't work. So I actually have to duplicate all appointments to get both things working!!
    It would seem to be that these are pretty fundemental bugs.  I want 1 calendar on my windows PC that syncs everything to my iPhone and iPad ..... does such a possibility exist? is Apple working on fixing these bugs.......any thoughts?

    Are you sure you are going about this the right way? Where are you seeing their names with the '!'?
    Go to your calendars at http://icloud.com and click on the Share icon for the calendar in question:
    In the pop-up pane choose 'Private Calendar' and enter the @me.com email address, hit return and then click 'View and Edit' to set write privileges:
    Click 'Share'.
    If this is what you are doing and it's not working, please describe exactly what happens (screenshot if possible).

  • Can't "Edit in CS4"  New LR 2.3 and PS CS4  in Mac OS Leopard

    I have just moved my LR2.3 and CS4 onto a MacPRo and have a problem I can't find a solution for when I have searched the Knowledge Base.
    When I have an open image in LR, and Photo> Edit In > Edit In Photoshop CS4 (or "open as a smart object in CS4"), then work on the image in CS4 and then try and "save" or "save as" in Photoshop CS4,  I get this error message.
    "Could not save (document name) because write access was not granted".
    Previously on my PC, this operation worked seamlessly??
    I am new to Mac and have only had the computer a few days.  Does anyone have any answers on how I can access and have read write privileges between CS4 and Lightroom?  I can't imagine why two adobe products aren't able to read/write to each other, but that seems to be what has happened.
    I'm using OS X Leopard on a MacPro.
    Thanks
    Ken Kennedy
    Seattle

    I have a solution to the problem.
    When you are using a PC the files are stored on your HD in FAT32 file format..
    When you are using a MAC the files are stored on your HD in a different format.  That means you can read your files on the Mac, but you can't write. 
    On my HD Seagate recommend using the OS Extended format when their HD is used on a Mac.
    The solution is to reformat your external HD and use the Applications-> Utility -> Disk Utility program on the Mac to reformat the external HD. 
    Before you do this you have to save your data on the external HD somewhere in the Mac or another HD that is connected to the Mac. 
    Once this is done start the reformating of the HD by following this sequence    Applications-> Utility -> Disk Utility.  A page opens up that has you select the drive that you want to reformat, and once you have done that, in the "Erase" window, select OS Extended (Journalized) or a format your HD manufacturer recommends.
    There is a second window called "Name" which allows you to name the drive that you are reformatting.  Once you have made these selections then you proceed with the reformatting, and once that is done, you can move your files onto the external HD that you had previously relocated to another HD. 
    The files on the reformatted HD are now Read/Write, and the problem of not having write permissions is fixed.
    So this isn't a problem with the Adobe products, but one where you have to reformat HDs when you are switching platforms from PC to Mac or the reverse.
    Ken Kennedy
    Seattle 
    Message was edited by: Kennewt

  • Lr 4.1 won't "Edit in Adobe Photoshop CS4" properly

    Hello,
    Using Lr 4.1 w/ Camera RAW 7.1 and Photoshop CS4 11.0.2... When I try to edit a RAW file in Ps as I always have in Lr 3.x (Right click film strip >> Edit In >> Edit in Adobe Photoshop CS4) I get the following message:
    This version of Lightroom may require the Photoshop Camera Raw plug-in version 6.7 for full compatibility.  Please update the Camera Raw plug-in using the update tool available in the Photoshop help menu. [Button options are: Render using Lightroom, Open Anyway, and Cancel.]
    Render using Lr just keeps me in Lr, doesn't open Ps.
    Open Anyway opens Ps, but not the image.
    Using Ps >> help >> updates: says there are no updates.
    But help >> About plug-in >> Camera Raw:  shows it is only Version 5.7.0.213
    Interestingly, if I go back to Lr and hit Edit in Adobe Photoshop CS4 >> "Render using Lr" and then immediately do it again, this time clicking "Open Anyway" it actually DOES open the image in Ps.  I can edit and then when I save it takes a long time to write the TIFF format (several times longer than when previously editing through Lr 3.x),
    Is there a fix for this so I don't need to do multiple steps to edit from Lr to Ps?  And is there a way to update the Camera Raw in Ps from 5.7.0.213 to 6.7 since Ps>>help>>updates doesn't catch it?
    Thanks!
    Mike
    System info from Lr>>system info:
    Lightroom version: 4.1 [829322]
    Operating system: Windows 7 Home Premium Edition
    Version: 6.1 [7601]
    Application architecture: x64
    System architecture: x64
    Physical processor count: 8
    Processor speed: 2.6 GHz
    Built-in memory: 12278.9 MB
    Real memory available to Lightroom: 12278.9 MB
    Real memory used by Lightroom: 1332.3 MB (10.8%)
    Virtual memory used by Lightroom: 1365.3 MB
    Memory cache size: 724.1 MB
    System DPI setting: 96 DPI
    Desktop composition enabled: Yes
    Displays: 1) 1920x1080

    You are going to have to render using lightroom in order to use the latest ACR updates since you can no longer get ACR updates for PS CS4.  But when you click on Render using LR, it still should open in CS4 I would think.  You might be able to fix this by telling LR that you have another editing program, CS4, and then select it instead of the generic photoshop at the top of the this.  But I would not think that you would have to do this. 

  • Premiere Pro CS4 - editing video from GoPro video camera

    I am having a problem trying to edit video from the GoPro camera in Premiere Pro CS4 (PP). Have not been able to get much help from GoPro - they just tell me to speak with Adobe. I think the video codec used by the camera is MJPEG (?). It won't play at all on the timeline. Interestingly it will in After Effects (AE) CS4 and if I export it out of AE as a Microsoft AVI file I can then play it in PP. However if I go straight to Media Encoder and import the clip and then try export the clip via ME as a Microsoft AVI the exported clip from ME won't play in Premiere Pro. I am confused. Does anyone know this camera, it's codec and why it just won't work when directly imported into Premiere Pro but it will when imported directly into After Effects. Any advise would be greatly appreciated.

    Please see a post I made this morning under my screen name BruceERoberts .... details below
    I just purchase Adobe Premiere Pro a few days ago - and subsequently updated it to Ver 4.2.1.  A started a new project - I tried to import some video footage I just shot with a GOPro Hemet Cam while skiing at our local mountain.  I can easlily see the clip using Real Media Player - or the Quick Time player.  It is a 10.9 MB ... 7 second MPEG-4 movie clip.  File name is "gopro0030.mp4"
    I created a "bin" called video .... then right clicked to import the file.  You can see the file name in the media browser.  But the file would not import.  I received this error message:  "109C ImporterProcessServer.exe  Application Error.  The instruction at "0x05efcac" referenced memory at "0x00000014".  The memory could not be read. CLick OK to terminate."
    This is very frustrating - I just purchased the software - and it won't import a 7 second video clip!  It did import still fotos with no problem.  What can I do?
    thank you for your attention to this.
    Bruce Roberts, Vernon B.C.
    March 14th 2010
    System Info
    MS Windows XP
    Version 2002 SP3
    Dell Dimension XPS
    Pentium 4 CPU 3.4 Ghs
    3.39 Ghz  3.00 GB of RAM

  • How to edit a PDF in Photoshop CS4

    Hi there,
    I'm having some real trouble trying to figure out how to edit a PDF in photoshop cs4. So i need to edit/change text, move things around, that type of thing.
    I work in Windows.
    Could someone give me a bit a low down on how this is done?
    Much appreciated,
    Victoria

    You can open them but you will totally rasterize everything.
    PDFs are not intended to be edited. They are a final format but as
    mentioned you can use Acrobat for some minor text edits or use it to
    extract the images to Photoshop for further editing.
    Bob

  • ID CS4 and Adobe Digital Editions

    One reason I purchased ID CS4 was for the ability to create ebooks using ADE. However, my first attempt to export to ADE has been far from successful.
    The project is a 152-page book. It was "created" in ID CS4 and is straight text except for the publisher's logo, which appears on the title page. Each chapter is its own file, as is each element of the front matter. Three fonts are used in the publication: Arial, Formata, and Palatino. The Formata and Palatino fonts are OT fonts; they were newly purchased as OT fonts for this client. Each use of italic or bold in the book's text, excluding heads, is by a character style that includes the font family name. For example, if the text is supposed to be Palatino Italic, the character style includes both bits of information, a generic Italic is not used.
    I combined all of the elements of the project into a single ID Book, which is what I used to update numbering, etc. When I export to PDF from the Book, everything works fine. When I export to Adobe Digital Editions from the Book, the following occurs:
    1. Arial and Palatino are embedded but Formata is not.
    2. The first and last files of the Book (i.e., the title page and the References) appear in the ePub file and are viewable in the ADE viewer, but everything between those two files, including all of the text chapters, are empty files that appear as blank pages in the ADE viewer.
    What am I doing wrong? How do I
    a. Get Formata embedded?
    b. Get the complete project into an ePub file?
    Another thought: Would the way to do this be to do each chapter as a separate export to ADE and then combine each of the separate files into a single ePub file? If so, how would one do this? I've noted that when creating an ePub file several additional informational files are created. It isn't clear to me how one would combine that information.
    Also, is there a good source and/or book (or several sources and/or books) that gives step-by-step instruction information on turning a project into an ePub file? Although this project has no graphics, tables, etc., future projects will have numerous graphics, tables, etc. and so any help will be appreciated.
    Thanks.

    You're not actually doing anything wrong. You're experiencing a bug. Hopefully it will be fixed in an upcoming update to InDesign CS4.
    The cause of the problem comes down to the spaces in the name of the font you've used in your document (i.e. Myriad Pro Bold). If an embedded font contains spaces in its name, it won't be used and Adobe Digital Editions will use its default font instead. The problem can be overcome by directly editing the EPUB file. I use Oxygen to open up the EPUB file directly, but you can also change the .epub file extension to .zip and then unarchive the package to gain access to the various files within it. Once you've opened the EPUB file, you need to modify three things: the template.css file, encryption.xml file, and the font files.
    Template.css
    At the top of the CSS file, you'll see font face declarations for each font you've used in your document. If your font(s) has spaces in its name, you'll notice that a %20 has replaced the space. Change each instance of the %20 to a hyphen. Here's an example:
    @font-face {
    font-family: Myriad Pro;
    font-style: normal;
    font-weight: bold;
    src:url(Fonts/MyriadPro%20Bold.otf);
    Change to:
    @font-face {
    font-family: Myriad Pro;
    font-style: normal;
    font-weight: bold;
    src:url(Fonts/MyriadPro-Bold.otf);
    Encryption.xml
    For each type style you've used in your document, there will be a <enc:CipherData> element. If your font(s) has spaces in its name, you'll notice that a %20 has replaced the space here as well. Change each instance of the %20 to a hyphen. Here's an example:
    <enc:CipherData>
                 <enc:CipherReference URI="OEBPS/Fonts/MyriadPro%20Regular.otf"/>
    </enc:CipherData>
    Change to:
    <enc:CipherData>
                <enc:CipherReference URI="OEBPS/Fonts/MyriadPro-Regular.otf"/>
    </enc:CipherData>
    Font Files:
    Within the EPUB package is a folder called "Fonts," where all the embedded fonts reside. You need to rename the files by replacing the spaces with hyphens.
    That's all there is to it. After editing and saving the files, you'll have to rearchive the package and change the .zip extension back to .epub. If you use Oxygen to edit the package, there is no rearchiving necessary. You can also use the free PDFXML Inspector, but I definitely prefer Oxygen since it provides many more tools and its not so clunky.

  • Hardware Upgrade Advice for HD editing and CS4

    Dear friends,
    I realize that there are many posts on hardware requirements, recommendations, etc... Perhaps this is my problem, there is too much info.
    Here is my scenario and I would love some expert advice.
    What I Have:
    I have been editing my home movies since Premiere 6.5 and have been using CS3 for the past couple of years.
    My current PC is an HP 9100t which has a ...
    Quad Core 6600 2.4GHz processor
    3GB RAM (max RAM is 8GB according to the stats for the motherboard)
    500 GB System Drive
    I recently added a 1.5 TB SATA Seagate Barracuda drive
    Also have external 1TB WD connected via USB
    Windows Vista Home Premium (32-Bit) OS
    What I Just Got:
    Recently purchased a Sony HDR-XR 500v and just love the HD picture quality. But now I want to edit the AVCHD files and thus upgrade to CS4
    What I'd like to Know:
    I'm tired of buying a new PC every couple of years, this machine is 16 months old and runs just fine.
    Do you think I can upgrade the processor, add RAM and move to Windows 7 64-bit and happily edit my HD movies?
    Or, do I need to once again try and convince my wife to let me buy a new PC
    My Upgrade thoughts:  I could Buy these items...
    Intel Quad Core 9600 processor  2.8Ghz (the HP motherboard supports the Intel Yorkfield processors)
    Max out the RAM at 8GB
    Upgrade to Windows 7 Home Premium 64-Bit (I actually pre-ordered this for $49 a few weeks ago)
    and of course upgrade to Premiere CS4
    DO you think a few hundred dollars spent on upgrades will extend my editing life for another year or two?
    Thanks so much!
    Paul

    but I was surprised to see you comment that it's pointless to upconvert video before working on it.
    It can easily be you misunderstood my intention. It is somewhat like people often thinking that converting from a compressed format to a lossless format will restore the original quality. That is nonsense, because what has been thrown away during compression, can never be regained by uncompressing. That is an expectation similar to orange juice being uncompressed will restore the original oranges.
    My intention with my remark was to emphasize that going from 4:2:0 to 4:2:2 will not restore original data or improve the image, only increase storage requirements.
    But clearly that is not what you meant. You are talking about chroma keying and similar being best done on 4:2:2 or even better on 4:4:4 material. You are completely correct, but keep in mind, and that is what I tried to convey, is that starting out from 4:2:0 and upconverting to 4:2:2 or 4:4:4 will not restore original quality, it will still be (slightly less than) the 4:2:0 quality, because of the rounding errors in the algorithms. You will increase storage space significantly by this upconverting, but if you want to do any chroma keying,  the quality of the keys will be significantly better than when performed on 4:2:0 material and the loss when again converting to 4:2:0 for final delivery will be significantly less than had you used chroma keys on 4:2:0 material.
    I hope this explains it somewhat.

  • Can I Edit SD and HDV footage at the same time in CS4?

    I have a Sony PD 150 camcorder and I'm looking at buying a Sony HDR-HC# HDV 1080i camcorder to use as a second camera on video shoots.  Can I edit footage from both cameras on the same timeline in CS4?    I'm using a PC, running Windows XP Home Edition, Version 2002 with an Intel (R) Pentium (R) 2.80 GB processor with 2.5 GB of RAM.  Thanks!
    Lewis B.

    Do you already have CS4 ?
    CS5 is days away.  9 Days for the first look.
    I have a Windows XP 2005 with 3.4GHz with 4GB of ram and it cant handle HDV for HD video.
    I have a Sony HVR Z1U and use the in camera down-rez and edit in SD just fine.
    Like said before you really need a new computer to edit the HDV but if your going to DVD then your only using SD anyway.
    But to answer you question you can mix formats with CS4.
    As you can see my system ranks second from last on Bills Benchmark tests.
    http://ppbm4.com/Benchmark.html
    Take the test to see how your system stacks up.
    ENjoy:  Glenn

Maybe you are looking for

  • Open Purchase Order Documents

    Using the DI API, how can I query the PO documents that have neither followup "Goods Receipt" nor "A/P Invoice" documents? That is, I'm looking for the open Purchase Orders. Thank you, Miklos

  • Socket for broadcast and receive?

    Hi all, sorry for cross post but I need an answer soon. The server need to broadcast an inviting message continuosly. and at the same time the socket is able to receive any messages from the client. I use 2 threads. One iniiated with Socket for liste

  • Can Lion Server replace Google Apps

    Hello, Our business has just one imac, but we use it to manage the diaries of 15 staff. We have been using Google Apps (with our domain) to create 15 users and it has been handy to schedule diaries in this way. I must now use Microsoft Office for Mac

  • Screen Flickering - 15-4000ee HP Spectre Touchsmart

    Hi, The screen on my HP Spectre Touchsmart 15-4000ee has started to flicker - it comes and goes, but affects the whole screen and lasts for 5 to 10 seconds then disappears. According to HP Support Assistant, my current video adaptor is Intel(R) HD Gr

  • Can you call external exe file from Flex Air Application like notepad.exe

    Im trying to make my Air Application open an External exe file anyone know if this can be done?