Enormous bug with intel and hdv

dear Friends,
I discovered a bug testing my octocore intel with compressor.
Unfortunately, encoding a file from hdv to m2v, an intel processor is 4 times slower than a non-intel processor,
...only in this case...!
An 1,30 minutes clip needs 12 minutes with a power book and the same file needs 45 minutes with an octocore 3.00 ghz...i tried other solutions swapping the disks (system and storage) from one machine to another but the problem remain in the same machine....
...awaiting for an apple resolution....

What version of Compressor are you using? I seem to recall some post about this awhile back...don't remember if an update helped...I think it did.

Similar Messages

  • Problem FCP6. It is impossible to create multicamera clip with DV and HDV.

    Problem FCP6. It is impossible to create multicamera clip with DV and HDV. I wish to create the multicamera clip from files dv and hdv. But the program informs that it is impossible because the different size frame. Video dv and hdv in the multicamera are incompatible? (Excuse for possible errors in the text)

    Ken Summerall, Jr. wrote:
    Do I need to export this as a movie before I can use it to be allowed to Multiclip with the DV footage?
    How else are you going to use it?
    I thought somehow there was a way to use the sequence itself into the multiclip.
    Like a nested sequence used as a clip.
    Thanks for your help.

  • Final Cut Studio 2 Impressions with HV20 and HDV Impressions

    Ok, so I got FCS 2 up and running Monday evening. I took work off yesterday to watch all the tutorials and to play with all the new software. I got a good grip of Motion 3, FCP6 and Soundtrack. I didn't bother with DVD Studio Pro, and Color is confusing as all get out. I'll be focusing more time on Color this weekend since I hear I should probably read the whole manual.
    The camera I'm currently using is a Canon HV20 which is an HDV camera. I've found that the cadence issue is still not resolved (not that Apple said they would, but in case anyone was wondering, it's all the same) and the drop frame issue during capture, especially batch capture, ALSO hasn't been resolved (again, not that Apple said they would).
    If you're upgrading from FCP 5 to 6 thinking your HDV issues or HV20 issues will go away, you're mistaken. It's all exactly the same. Batch capture can be finicky and the cadence issue still needs you to either import through AIC (Apple Intermediate Codec) OR you have to batch capture then export all your clips as AIC so you can remove each clip's interlaced frames. The resulting clips will be true 24p, and they look awesome for such a cheap camera. However, you have to figure out which process works best. I like logging and capturing if for no other reason just to be organized. However, with an HV20, importing the whole tape through AIC, removing the interlaced frames and then, within Final Cut, cutting up the scenes you need might actually take less time. It's up to you.
    The silver lining comes in with the new software: Color. AIC tends to wash the image out just SLIGHTLY. It's not too noticeable, but it's definitely there. With Color, you can take your AIC'ed clips and tweak them to look as good (or better depending on how good you are) as the image would've looked had it come in via HDV codec. Of course, there's technicalities and there's still some quality loss no matter what, but Color is superbly powerful as my friend showed me.
    ProRes codec isn't very good, IMHO. I imported some clips on my buddy's computer as ProRes and I even made some of my HDV clips at home with ProRes, and there seems to be a lot of artifacts especially around any movement in the scene. I actually don't like the codec at all. Maybe it's just me.
    Otherwise, I really love FCP 6. The multi-codec timeline is pretty freakin fun, and I love some new interactions with Motion. Time tweaking is more approachable this time around through Motion AND Final Cut. It's fun to play with.
    I found that smooth cam's a bit annoying. Even on an original imported clip that was only a minute long, the subclip that was only 20 seconds, took 10 minutes to analyze. I understand that it's analyzing the full clip, but Apple should figure out a way to have it simply analyze just the subclip in the timeline. Also, you have to know when to use smoothcam. There were a few tests I ran, and some resulted in BIZARRE movement and others the thing worked nicely after some tweaking. So be aware it's not something you can always fall back on.
    That's all I can think of right off the bat. If you have questions or more comments, please post

    I've found that the cadence issue
    is still not resolved
    Well, I'm not a very technical person, so I'll explain this the best I can. The HV20 can record at 1080/24p. However, no matter what, it'll always record to tape in 60i, but it does so by recording 3 progressive frames and 2 interlaced frames. I'm not sure why, but that's how they figured how to do it. Which means, when you import it to the computer, it doesn't recognize your 24p as 24p, it sees it as 60i.
    So now you have a few extra steps you have to accomplish. In order to do a reverse telecine on the sequence, you have to use Cinema Tools so you can take out the interlace frames and leave the progressive frames leaving you a true 24p sequence. But Cinema Tools can't do that to a strictly HDV encoded sequence, so you either have to import it from your camera using AIC (Apple Intermediate Codec) or via HDV 60i which you then have to take those clips and turn them into AIC clips. When you capture using AIC, you can't batch capture, you have to capture chunks at a time, but when you capture using HDV you CAN batch capture (although it has some issues), but you then have to make those clips into AIC anyway.
    Then you'd take the AIC clips, put them into Cinema Tools, figure out the Cadence of the clips (I(Interlaced)I_P(Progressive)_PP) etc and choose a reverse telecine setting which would then remove the interlace frames. This takes more time than one would like, and I was hoping FCP 6 might have dealt with that issue.
    the drop frame issue during capture,
    especially batch capture, ALSO hasn't been resolved
    HDV cameras in general have problems in FCP it seems. When you try to batch capture, FCP says it can't find the right timecode even though there's no timecode breaks or anything. Frankly, when it tells you it can't find the right timecode, you simply tell it to look again and, oops, there's the right timecode. Not sure which end has the problem, but it's annoying.
    This will help you with the Cinema Tools Cadence settings:
    http://file.meyersproduction.com/hv20/reverse%20telecine%20READ%20ME.rtf
    And this is another thread that might be useful to you:
    http://discussions.apple.com/thread.jspa?messageID=4297639&#4297639

  • Compiler bug with generics and private inner classes

    There appears to be a bug in the sun java compiler. This problem was reported against eclipse and the developers their concluded that it must be a problem with javac.
    Idea also seems to compile the example below. I couldn't find a bug report in the sun bug database. Can somebody tell me if this is a bug in javac and if there is a bug report for it.
    https://bugs.eclipse.org/bugs/show_bug.cgi?id=185422
    public class Foo <T>{
    private T myT;
    public T getT() {
    return myT;
    public void setT(T aT) {
    myT = aT;
    public class Bar extends Foo<Bar.Baz> {
    public static void main(String[] args) {
    Bar myBar = new Bar();
    myBar.setT(new Baz());
    System.out.println(myBar.getT().toString());
    private static class Baz {
    @Override
    public String toString() {
    return "Baz";
    Eclipse compiles and runs the code even though the Baz inner class is private.
    javac reports:
    Bar.java:1: Bar.Baz has private access in Bar
    public class Bar extends Foo<Bar.Baz>
    ^
    1 error

    As I said in my original post its not just eclipse that thinks the code snippet is compilable. IntelliJ Idea also parses it without complaining. I haven't looked at the java language spec but intuitively I see no reason why the code should not compile. I don't think eclipse submitting bug reports to sun has anything to do with courage. I would guess they just couldn't be bothered.

  • Wierd bug with menus and subtitles on Intel mac

    I have found DVDSP4 will not let me place buttons on a menu!! The mouse clicks don't do anything in the menu viewer. I suspect some system incompatibility is this is also why I can't drop a subtitle into the subtitle streams either with DVDSP4 enev though it works fine on DVDSP3 on my G5 machine. Has anyone seen this strange bug before?
    I use a Wacom Intuos tablet, have a four-core Intel MacPro with 4GB of RAM, and use a LOT of graphic applications (FC5, Motion, Maya, Poser, Vue, Illustrator, Photoshop, and many molecular modeling packages)
    Has anyone seen this problem before (and is there a remedy)?
    Thanks
    tom hsu

    Do you have the Universal Version of DVD SP? I know you mentioned it is academic but did not recall if you have the proper one for the Intel Macs(?)

  • Just got some bugs with Dock and Dashboard

    Hi!
    Been using my mac for 1 year now. Sudden some bugs just came by.
    I was using two widgets; "Ordbok" and "TriTrans".
    When I now try to use TriTrans I get this: http://bildr.no/view/75953 and I can't enter a search.
    When I try to use Ordbok i get this: http://bildr.no/view/75954
    I tried to make a new account just to see if I got the same problem and I sudden did. Then I went back to my main account and deleted the Dock, Desktop and Dashboard pref files (in Library/Preferences). Rebooted and tried again. Didn't work.
    When I made a new account I also noticed that the Dock had an icon with the "question mark" (this ting: ?). When I hovered it I got: "iMovie". Some icons to the left I got a working "iMovie HD". Where does the iMovie (wannabe) icon come from? (It was a new account).
    Anyways, someone now how to fix some of these?
    Thanks!
     MacBook   Mac OS X (10.4.9)   2 Ghz Intel Core Duo, 1 Gb RAM

    Ahh, that solves my widget problem. Thanks!
    Btw, someone who got any idea of the "question mark" icon I get in the dock when deleting the Dock config file or add new user? It says "iMovie" but beside it I got the "iMovie HD" icon, working.

  • Possible Bug with Drag-and-Drop Being Published via HTML5 - Getting "Undefined" Error When Dragging Object

    Hello,
    I came up with a way to use drag-and-drop interactions that will take advantage of file input so that I may create a drag-and-drop interaction that uses one draggable object over and over allowing multiple scoring/tracking possibilities.  Example use...is having the draggable object be dynamic in that it randomly changes its text so that a learner can drag a term it's possible classification.........thus allowing the possibility of having many terms easily loaded without having to redo a drag-and-drop interaction for each needed terms/classifications updates/changes.
    My Issue: When using a variable to represent the text for a draggable Smart Shape object, I'm getting the error message "undefined" when, clicking/pressing on the object, as well as during the drag of the object. This issue occurs when publishing the project in an HTML5 format.  Flash interestingly enough seems to work perfect...but we are not interested in publishing via Flash any longer.
    To better help you explore this error message, I've set up a test project so that you can see when and how the "undefined" message shows up during a drag-and-drop interaction.  I've also included the Captivate 8 project file used to make the exploration project I'm sharing in this post.
    Link to Captivate project I created for you all to explore "undefined" error message": http://iti.cscc.edu/drag_and_drop_bug/
    Link to this Captivate 8 Project file: http://iti.cscc.edu/drag_and_drop_bug.cptx
    It's pretty interesting how things react in this demo, please try the following actions to see some interesting happenings:
    Drag the Yellow (or variable drag box) to the drag target.
    Drag Black Hello square to Drag target and click undo or reset - watch the undefined message come up on the Yellow (or variable drag box).
    Drag the Yellow (or variable drag box) to the drag target and then use the undo or reset.
    Move both draggable boxes to the drag target and use the undo and reset buttons...
    Anyhow, I know you all are sharp and will run the demo through its paces.
    I'd really be very honored if anyone help me figure out how I could (when publishing out to HTML5) no longer have the "undefined" error message show up when using drag-and-drop with a variable for shape text. This technique has been well received at the college I work at...and I have many future project requests for using such an idea on a variety of similar interactions. I'd love see a solution or see if this might be a bug Adobe may be able to fix!
    I tried to find a solution to the issue documented here for quite some time, but I was not able to find anyone with this problem much less attempting the idea I'm sharing in the help request -  save the darn "undefined" message that comes up!
    Many thanks in advance for any help and/or direction that you all may be able to provide,
    Paul

    Hello,
    I just wanted to supply a minor update related to my drag-and-drop question/issue stated above:
    I did another test using Captivate 7, and found that the undefined error (publishing as HTML5) does not appear and the variable data remains visible - except the variable data turns very small and does not honor any font size related settings.
    I did go ahead and submit this to Adobe as a possible bug today.
    Thanks again for any help related to this issue.  If the issued documented above is solved, it will allow many amazing things to be done using Captivate's drag-and-drop for both regular type projects as well as interaction development for iBooks! 
    Matter of fact if this issue gets fixed, I'll publish a Blog entry (or video) on way's I've used Captivate's drag-and-drop to create dynamic learning activities for Higher Ed. and for use in iBooks.
    ~ Paul

  • Possible bug with TREAT and EXECUTE IMMEDIATE

    Hello, i experienced a strange behavior which seems to be a bug.
    Consider following definitions:
    CREATE OR REPLACE TYPE T_Base FORCE AS OBJECT (
      DummyProperty NUMBER
    ) NOT FINAL;
    CREATE OR REPLACE TYPE T_Child UNDER T_Base (
      AnotherDummyProperty  NUMBER
    CREATE OR REPLACE FUNCTION SpecificValidation (iValue T_Child) RETURN NUMBER IS
    BEGIN
      -- some specific validation is done here, not important for the example
      RETURN NULL;
    END;
    CREATE OR REPLACE PROCEDURE ValidateIt (iValue T_Child) IS
      lResult NUMBER;
    BEGIN
      -- The principle used here is that each client can have its own implementation of validation function, and when it does not exist, we do not care.
      -- In reality we put functions and procedures into packages, I narrowed it to a minimal working example.
      BEGIN
        EXECUTE IMMEDIATE 'BEGIN :lResult := SpecificValidation(:iValue); END;'
          USING OUT lResult, IN iValue;
      EXCEPTION WHEN OTHERS THEN
        IF INSTR(SQLERRM, 'PLS-00201') = 0 THEN
          RAISE;
        END IF;
      END;
    END;
    CREATE OR REPLACE PROCEDURE Process (iValue T_Base) IS
    BEGIN
      -- in fact we know that iValue must be of typ T_Child, it is checked using IS OF ( ) operator and exception is raised if this check fails
      -- This does not work for some reason.
      -- It fails in EXECUTE IMMEDIATE with PLS-00306. I don't really get why, because ValidateIt accepts a value of type T_Child and it passes it to the validation procedure, which also expects value of type T_Child.
      ValidateIt(TREAT(iValue AS T_Child));
    END;
    CREATE OR REPLACE PROCEDURE Process2 (iValue T_Base) IS
      lChild  T_Child;
    BEGIN
      -- The only difference here is that result of TREAT is saved to a variable.
      -- This works as expected.
      lChild := TREAT(iValue AS T_Child);
      ValidateIt(lChild);
    END;
    In reality it is much more complex, I narrowed it to a minimal working example.
    Now when running this:
    DECLARE
      lItem T_Base := T_Child(5, 2);
    BEGIN
      BEGIN
        -- This call will end up with PLS-00306 error.
        Process(lItem);
        dbms_output.put_line('Process completed successfully.');
      EXCEPTION WHEN OTHERS THEN
        dbms_output.put_line('Exception when calling Process.');
        dbms_output.put_line(SQLERRM);
        dbms_output.put_line(DBMS_UTILITY.FORMAT_ERROR_BACKTRACE);
      END;
      BEGIN
        Process2(lItem);
        dbms_output.put_line('Process2 completed successfully.');
      EXCEPTION WHEN OTHERS THEN
        dbms_output.put_line('Exception when calling Process2.');
        dbms_output.put_line(SQLERRM);
        dbms_output.put_line(DBMS_UTILITY.FORMAT_ERROR_BACKTRACE);
      END;
    END;
    then call to Process fails with PLS-00306 on EXECUTE IMMEDIATE.
    The only difference between Process and Process2 is that in Process2, result of TREAT is saved to a variable of type T_Child.
    Is this behavior documented somwhere or is it a bug?

    That's interesting. I would say it is, or should be, a bug.
    Also interesting is, when I re-write your example to eliminate dynamic SQL and instead rely on dynamic method dispatch, the problem goes away... first, the changes:
    drop type T_Child;
    drop type T_Base
    CREATE OR REPLACE TYPE T_Base FORCE AS OBJECT ( 
      DummyProperty NUMBER 
    ) NOT FINAL
    CREATE OR REPLACE TYPE T_Child UNDER T_Base ( 
      AnotherDummyProperty  NUMBER 
    create or replace type T_Base_Processor as object (
      dummyProperty    number
    , static FUNCTION GetClientProcessor(iClientId varchar2) RETURN T_Base_Processor
    , member FUNCTION SpecificValidation (iValue T_Child) RETURN NUMBER
    , member PROCEDURE ValidateIt (iValue T_Child)
    , member PROCEDURE Process (iValue T_Base)
    , member PROCEDURE Process2 (iValue T_Base)
    ) NOT FINAL
    create or replace type T_Another_Processor under T_Base_Processor (
      overriding member FUNCTION SpecificValidation (iValue T_Child) RETURN NUMBER
    create or replace type body T_Base_Processor
    is
      static FUNCTION GetClientProcessor(iClientId varchar2) RETURN T_Base_Processor IS
    BEGIN
      return    case
            when upper(iClientId) = 'ADMINISTRATOR' then
                new T_Another_Processor(null)
            else
                new T_Base_Processor(null)
            end;
    END;
      member FUNCTION SpecificValidation (iValue T_Child) RETURN NUMBER IS 
    BEGIN 
      -- some specific validation is done here, not important for the example 
      dbms_output.put_line('T_Base_Processor.SpecificValidation');
      RETURN NULL; 
    END; 
      member PROCEDURE ValidateIt (iValue T_Child) IS 
      lResult NUMBER; 
    BEGIN 
      -- No more need for dynamic SQL, instead rely on dynamic dispatch
      lResult := SpecificValidation(iValue);
    END; 
      member PROCEDURE Process (iValue T_Base) IS 
    BEGIN 
      -- in fact we know that iValue must be of typ T_Child, it is checked using IS OF ( ) operator and exception is raised if this check fails 
      -- This does not work for some reason. 
      -- It fails in EXECUTE IMMEDIATE with PLS-00306. I don't really get why, because ValidateIt accepts a value of type T_Child and it passes it to the validation procedure, which also expects value of type T_Child. 
      ValidateIt(TREAT(iValue AS T_Child)); 
    END; 
      member PROCEDURE Process2 (iValue T_Base) IS 
      lChild  T_Child; 
    BEGIN 
      -- The only difference here is that result of TREAT is saved to a variable. 
      -- This works as expected. 
      lChild := TREAT(iValue AS T_Child); 
      ValidateIt(lChild); 
    END;
    end;
    create or replace type body T_Another_Processor
    is
      overriding member FUNCTION SpecificValidation (iValue T_Child) RETURN NUMBER
    is
    begin
      -- some other specific validation is done here, not important for the example 
      -- You could even call the overridden method as well using
      --   treat(self as T_Base_Processor).SpecificValidation(iValue)
      dbms_output.put_line('T_Another_Processor.SpecificValidation');
      RETURN NULL; 
    end;
    end;
    And again with slight modifications, your test block:
    DECLARE 
      lProcessor T_Base_Processor := T_Base_Processor.getClientProcessor('JOE');
      lItem T_Base := T_Child(5, 2); 
    BEGIN 
      BEGIN 
        -- This call no longer throws a PLS-00306 error. 
        lProcessor.Process(lItem); 
        dbms_output.put_line('Process completed successfully.'); 
      EXCEPTION WHEN OTHERS THEN 
        dbms_output.put_line('Exception when calling Process.'); 
        dbms_output.put_line(SQLERRM); 
        dbms_output.put_line(DBMS_UTILITY.FORMAT_ERROR_BACKTRACE); 
      END; 
      -- Demonstrate dynamic dispatch by choosing a different processor
      lProcessor := T_Base_Processor.getClientProcessor('ADMINISTRATOR');
      BEGIN 
        lProcessor.Process2(lItem); 
        dbms_output.put_line('Process2 completed successfully.'); 
      EXCEPTION WHEN OTHERS THEN 
        dbms_output.put_line('Exception when calling Process2.'); 
        dbms_output.put_line(SQLERRM); 
        dbms_output.put_line(DBMS_UTILITY.FORMAT_ERROR_BACKTRACE); 
      END; 
    END; 
    T_Base_Processor.SpecificValidation
    Process completed successfully.
    T_Another_Processor.SpecificValidation
    Process2 completed successfully.
    Gerard

  • Anyone else found BUG with Photoshop and Lightroom capture time?

    Has anyone else experienced this or can you replicate it?
    *The problem:
    Changing the capture time of an image in Lightroom and then exporting to Photoshop causes a program error in Photoshop when saving.
    *My environment:
    Mac Intel - OS X 10.5.2 - Lightroom V1.3 - Photoshop CS3 10.0.1 - Canon 20D RAW files
    *Steps to reproduce
    Import several RAW images in to Lightroom (tested using 20D RAW files)
    Modify the capture time for one of the images
    Export to Photoshop using Photo -> Edit in Photoshop CS3
    Change the image slightly
    File -> Save
    You should get a program error
    Try again but for an image with an unmodified capture time.
    Can anyone else replicate this on Mac and/or Windows? Also what about CS2 and different RAW formats from other cameras.
    Does anyone know what is causing it and is there a work around.
    Thanks

    This forum is actually about the Cloud, not about using individual programs
    Once your program downloads and installs with no errors, you need the program forum
    If you start at the Forums Index http://forums.adobe.com/index.jspa
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says ALL FORUMS) to open the drop down list and scroll
    http://forums.adobe.com/community/photoshop

  • Parrellels with intel and vista vs XP

    I have parrellels and I installed it on my intel G5. I had XP installed (this was the upgrade version from W98) but everything crashes programs won't run at all. I think it's because I don't have the XP second edition native. If I buy Vista will I be in better shape or should I try to find a copy of XP? Anyone with hints? I'd appreciate advice.
    Leslie

    Leslie,
    Just a quick note, the G5 Processor is not an Intel Mac...the G5 Processor was the predecessor to the current generation of Intel Macs, they are not the same thing.
    Please note that the Apple Support Forums are designed to provide support for Apple or Apple Branded products and not third party applications or hardware, for specific support regarding a third party product you may be better off contacting the manufacturer for support.
    Per the requirements for Parallels you need to have an Intel Processor to properly run the application...
    http://www.parallels.com/en/products/desktop/sr/
    You may simply be having problems due to the fact your G5 isn't truly compatible.
    Hope this helps,
    David

  • Very strange bug with AIR and native process (Windows 7, EXE)

    Hello to everyone!
    The situation is:
    I've made an AIR Application, inside of that is running a native process - EXE file.
    I'm using Flash CC as IDE and tried to use compile that as EXE with AIR 2.6 and 3.6 - results are same.
    So I've insert inside a checking if Native Process is supported or not and the Native process is supported all the time.
    When I've just installed the application and run it - the very first attempt is good - everything is working as a must: internal EXE is called by my Application with necessary parameters as many time as I'm need.
    However if I'll close the App and then will run it again - internal EXE is not starting at all, doesn't depends on number of attempts to re-start of the App.
    So only way is to uninstall, install it back and then you'll be one more session of successful internal EXE-requests, till the next re-start of the App.
    That's it.
    I've tried to "google it" but unsuccessful. Probably the bug is very rare.
    Help me please?
    Update: at compilation with Flash CC IDE it's working all the time with no any issues.
    Update-2: when I'm running installator-EXE, there is going a notification "Same version is installed, etc." and then selected "Run Now" - there is also working with no problems.

    Well, I've found the solution and answer by myself and here is it please:
    In case with same situation as above you need to add just one line in your AS3-code
    nativeProcessStartupInfo.workingDirectory = File.applicationDirectory;
    And you will be happy so much

  • Apple - PLEASE fix the graphical bug with Dock and Stacks! PLEASE!

    Using popular Mac games such as Diablo II, Freeverse's Wingnuts, Ambrosia's Aperion, and Blitwise's Super DX-Ball (as well as a LOT more) results in a common graphical glitch with the Dock and stacks, making fan stacks totally useless until I restart my iMac. Killing and relaunching the Dock doesn't fix it. Only restarting my Mac temporarily sorts it out. This is a highly annoying bug most often set off by games that Apple STILL hasn't fixed as of 10.5.3. So I let every developer (who I do not blame, BTW) know whose product results in this bug, in the hope they will apply pressure to Apple. Leopard has been the buggiest release since 10.1 IME and Apple is taking there sweet time about crushing such crippling bugs. Suffice to say it's really ******* me off.
    Here is a screenshot from another 24" iMac afflicted by this bug after running a game:
    <http://img231.imageshack.us/img231/5324/corrupteddockandmenuletpk1.png>
    Notice the open stack is just grey bars. The icons and names are not
    showing.
    Regards,
    Jamie Kahn Genet

    Hi Wizardling
    These forums are User to User technical forums Apple employees do not often read these forums. You can do 1 of two things.
    1. Send feedback to Apple via http://www.apple.com/feedback or
    2. Sign up for a free developer account and open a bug report with Apple through http://bugreporter.apple.com
    Hope this helps
    J.C

  • Adobe connect - bug with powerpoint and the apostrophe

    Hi folks,
    when i'm using Adobe Connect for web presentations and upload
    a Powerpoint file, there seems to be a bug where adobe connect
    displays extra spacing after an apostrophe is used. For example
    when my .ppt has "country's" but when it's loaded into adobe
    connect and shared, it displays, "country' s"
    i'm using XP and Powerpoint 2003.
    anyone else seeing this problem?
    danke!

    Alec,
    From what I remember, TinyMCE does not work with ADDT form validation. So you can integrate TinyMCE, but you will have this issue if you make the text area a required field with ADDT's form validation.
    For a workaround, you can use a custom trigger to check that something was entered into the text area and throw an error in the trigger if nothing has been entered. This won't do the client side check, but it will do a server side check.
    Shane

  • HP computers with Intel and ATI/AMD switchable graphics

    Hi,
    Product Name: HP Pavilion dv6-6093ex
    Product Number : LM610EA#A2N
    From HP website, I have downloaded :
    'ATI Radeon Graphics Driver_ Software Packaging Number()_Driver Packaging Version 8.810.4.1000(2010)'
    'AMD High-Definition Graphics Driver_ Software Packaging Number(SP55092)_Driver Packaging Version 8.882.2.3000'
    I have installed a new version of Windows 7, and then got these adapters before installing any drivres::
    I have installed  ''ATI Radeon Graphics Driver_ Version 8.810.4.1000".  However, while  installing ''ATI Radeon Graphics Driver' packaging version  8.810.4.1000(2010)'  on my laptop, I found that that  'ATI adapter driver' is in the packgage as in this screen shot.
    Then, after installation completed, the device manager was:
    I have  removed the existing drivers to where I have it down to 2 VGA adapters and the big icon screen I describe in the first screen shot, then install the 'AMD High-Definition Graphics Driver_ Software Packaging Number(SP55092)_Driver Packaging Version 8.882.2.3000'.
    However, when I have installed 'AMD High-Definition Graphics Driver_ Software Packaging Number(SP55092)_Driver Packaging Version 8.882.2.3000',  I found that  AMD adpater driver is in the packgage as in this screen shot.
    After installation completed, then the device manager became:
    If we make a comparission between two installations, we will find that
    In the first installation:
    Mobile Intel(R) HD Graphics
    Radeon(TM) HD 6770M.
    In the second installtion:
     Intel(R) HD Graphics Family.
    Radeon(TM) HD 6770M.
    Thus, my question is as follows:
    First: is there any difference between 'Mobile Intel(R) HD Graphics' and 'Intel(R) HD Graphics Family.'
    Second: Why is 'ATI Adapter driver'  shown in the first installation, and in the second "AMD adapter driver", however,  in either instllation,  'Radeon(TM) HD 6770M'  and 'Intel graphics' were installed? In other words, neither 'ATI' is listed in the device manager nor 'AMD'  listed on the device manager.

    Thanks a lot,
     you asked me about sending my SN before and now you are asking me about  what  the Guest machine model I have is. I think   the Guest machine model will do nothing with what I am looking for. No problem with   the Guest machine model I have if you have a look again at that thread of mine.
    But I am really so afraid to say that you  didn't take some of your precious time out to either read my enquiry in this thread or in the other one mentioned to at this thread.
    Also, if you checked again my firt post, you will see that I've been asking why while I was installing ATI Radeon Graphics, there was ATI adapter driver.
    However, when I was installing 'AMD HIgh Definitioni Graphics', there was 'AMD adapter driver'
    Simply, if you have kindly a look again at my very post at this thread you understand me well that I don't have any problem with installing the latest AMD driver found in HP website, however, all AMD drivers found in HP website are not newer than what I downloaded two yeras and a half ago.
    I think that  HP people don't keep abreast with updating their drivers and software.
    I  downloaded my drivers and software form HP about two years and a half ago, but when I now visited the HP website, I found no drivers newer than what I downloaded two years and a half.

  • Triple monitor with intel and SenseVision Club 3d usb to hdmi adapter

    Hi,
    I have an all in one machine with a single intel VGA:
    00:02.0 VGA compatible controller: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor Graphics Controller (rev 09)
    I also have an external monitor which works fine. I would like to use a third monitor through the SenseVision Club 3d usb to hdmi adapter (Chipset: DL-195).
    http://www.club-3d.com/index.php/produc … apter.html
    I'm using the udlfb module with the option: fb_defio=1
    The monitor attached to the usb to hdmi adapter turns green when the machine starts.
    The problem is that I'm able to use only one adapter at the time. So I can use the integrated monitor and the external one attached to the intel VGA or the monitor attached to the usb to hdmi adapter but not all of them together.
    Here is my xorg.conf:
    Section "Device"
    Identifier "intel"
    Driver "intel"
    # BusID "PCI:0:2:0"
    EndSection
    Section "Device"
    Identifier "dl1"
    Driver "fbdev"
    # BusID "PCI:0:3:0"
    Option "fbdev" "/dev/fb1"
    EndSection
    Section "Monitor"
    Identifier "monitor0"
    EndSection
    Section "Monitor"
    Identifier "monitor1"
    EndSection
    Section "Monitor"
    Identifier "monitor2"
    EndSection
    Section "Screen"
    Identifier "screen0"
    Device "dl1"
    Monitor "monitor0"
    #DefaultDepth 16
    #DefaultDepth 24
    EndSection
    Section "Screen"
    Identifier "screen1"
    Device "intel"
    Monitor "monitor1"
    #DefaultDepth 16
    DefaultDepth 24
    EndSection
    Section "Screen"
    Identifier "screen2"
    Device "intel"
    Monitor "monitor2"
    #DefaultDepth 16
    DefaultDepth 24
    EndSection
    Section "ServerLayout"
    Identifier "multihead"
    Screen 0 "screen0" 0 0
    Screen 1 "screen0" LeftOf "screen1"
    Screen 2 "screen1" LeftOf "screen2"
    Option "Xinerama" "on"
    EndSection
    Switching the screen0 and screen1 positions in the xorg.conf makes work the intel vga. The current configuration enables only the usb monitor. The screen2 is discarded by the xorg stating that none monitor is attached to the device.
    I also tried to tinker with the BusID values. Specifying BusID "USB" makes the xorg crash.
    Is it possible at all to use three monitors at the time with the current state of art? Any success story with this setting?
    Could you please share your working xorg.conf if you have any?
    Any suggestion?
    Thank you very much.
    Last edited by ArchArael (2013-02-28 09:52:05)

    Apparently yes,
    According to the thread:
    To restore to the old behaviour, put this in your ~/.drirc:
    <driconf>
      <device screen="0" driver="i915">
        <application name="Default">
          <option name="vblank_mode" value="0" />
        </application>
      </device>
    </driconf>
    But I don't come back to the same perfs as before (tested with eternal lands).
    I noticed that in my /var/log/Xorg.0.log:
    (WW) intel(0): Register 0x61200 (PP_STATUS) changed from 0xc0000008 to 0xd0000009
    (WW) intel(0): PP_STATUS before: on, ready, sequencing idle
    (WW) intel(0): PP_STATUS after: on, ready, sequencing on
    (WW) intel(0): Register 0x71024 (PIPEBSTAT) changed from 0x00020202 to 0x00020000
    (WW) intel(0): PIPEBSTAT before: status: VBLANK_INT_ENABLE VSYNC_INT_STATUS VBLANK_INT_STATUS
    (WW) intel(0): PIPEBSTAT after: status: VBLANK_INT_ENABLE
    There seem to be some problem with mtrr
    I found this problem which seems related but I only have 2GB of memory
    Last edited by sebcactus (2008-11-30 21:20:22)

Maybe you are looking for

  • Data Recovery from an encrypted Time Machine HD

    Does anyone have eny experience with having data retrieved from a time machine hard drive that is encrypted? I've clean installed Mountain Lion and now can't get at my time machine to restore files. Apple support recommended I posted here and explore

  • Problem with Russian translation

    Yesterday I took in to rent a movie "we Millers"! However, no Russian track. Just a silent movie! This is not the first time Same problems i'd have with "Machetto killes" movie . What's the matter?

  • Problem reading Photos on 6230i

    I have a 6230i and have taken,read and saved photos in the past using Lexmark P6350 printer with MMC slot. This time printer says it cannot find any photos and the card should be formatted. How do I do this? Can it be done without losing the photos?

  • How do I edit an email saved as a draft?

    I saved an email while I was on my iphone to do at a later time on the computer. I can see my saved email but I do not see how to edit it so that I can finish and send it.

  • InDesign Eyedropper Tool Problem or Bug?

    I am running InDesign CS3 on Snow Leopard. Issue: I working merrily on my way in a project when all of a sudden the Eyedropper Tool blitzes out on me by not copying text attributes correctly. Though I cannot replicate the problem at will it happens m