Playback control changes when animation is inserted into anothr movie

Hi,
I have created a couple of movies and used a specific
playback control. When these movies (saved in swf format) are ran
separately, everything is fine and the appropriate palyback control
is shown. However, when I insert these animation (swf) into another
project, the playback control are different of this animation are
different !!! Any idea ?

Hi,
The problem still exists even if I have re-created the child
movies (swf version 8) with other playback control.
I have removed the playback control of the child movies and
then just re-imported them back to the master movie. The master
moview has been then published to EXE and it is fine (the child
movies dies not show anymore the playback control).
Then i have re-inserted the playback control into the child
movie, and re-imported them back into the master, then the master
published to EXE. And the problem is back, the child movies are
showing a diffeent playback control (the same as dpierre - the skin
used is dark grey, align top left, and the buttons don't actually
work.)
Is there a way to clear any cache that exists in the files
(if the problem is the chache) ? I have a huge project with 20-25
child movies to import into the master movie. It looks like a bug
?

Similar Messages

  • ORA-01008 - not all variable bounfd when trying to insert into trigger

    Hi,
    Uisng Oraclle 11.2.0.3 and trying insert into table on remote schema.
    Tracked problem down to one column - the parent_num..
    Offending code
    a.mult_parent_num = ( select   nvl(MGrp_num, 0)
                                from     [email protected]
                                --where   MGrp_PARENT_num is not null
                                --and
                                where substr(upper(MGrp_DESCRIPTION), 2) = (select MULT_NAME
                                                                   from por_multiple p
                                                                   where p.mult_link_multiple_code = B.MULT_LINK_MULTIPLE_num)Complete truigger
    create or replace trigger POR_TRG_POP_IKNOW_MULTIPLE
    after INSERT OR UPDATE or delete   on por_MULTIPLE
    for each row
    -- tO ENSURE I-KNOW KEPT UP-TO-DATE WITH HOMIS MULTIPLE
    -- delib not delet form i-know as if has been used by customer cannot delete
    -- due to referential inetgrity constraints in i-know
    declare
    begin
    -- ensure if updating record one of attributes interested in for ho_issues_stg changed
       IF INSERTING OR UPDATING
       THEN
          MERGE INTO [email protected] a
          USING
           select
           :NEW.MULT_ANMW_MULTIPLE_CODE MULT_ANMW_MULTIPLE_CODE,
           :new.MULT_AUTH_REQUIRED MULT_AUTH_REQUIRED,
           :new.MULT_JMW_MULTIPLE_TYPE_CODE MULT_JMW_MULTIPLE_TYPE_CODE,
           :new.MULT_LINK_MULTIPLE_CODE MULT_LINK_MULTIPLE_num,
           :new.MULT_MULTIPLE_CODE MULT_MULTIPLE_NUM,
           :new.MULT_NAME MULT_NAME,
           :new.MULT_PROM_AUTH_REQUIRED MULT_PROM_AUTH_REQUIRED,
           :new.MULT_SELECTED_MULTIPLE MULT_SELECTED_MULTIPLE,
               'Y' MULT_active_flag,
           nvl(:new.MULT_JMW_MULTIPLE_TYPE_CODE, 0) MULT_CHANNEL_NUM--,
          -- :new.MULT_LINK_MULTIPLE_CODE MULT_PARENT_NUM
           from dual
           ) b
        on
           a.mult_multiple_NUM = b.MULT_MULTIPLE_NUM
    when matched THEN update set
           A.MULT_ANMW_MULTIPLE_CODE = B.MULT_ANMW_MULTIPLE_CODE ,
           A.MULT_AUTH_REQUIRED = B.MULT_AUTH_REQUIRED,
           A.MULT_JMW_MULTIPLE_TYPE_CODE = B.MULT_JMW_MULTIPLE_TYPE_CODE ,
           A.MULT_LINK_MULTIPLE_num = B.MULT_LINK_MULTIPLE_num,
           A.MULT_NAME =B.MULT_NAME,
           A.MULT_PROM_AUTH_REQUIRED=B.MULT_PROM_AUTH_REQUIRED,
           A.MULT_SELECTED_MULTIPLe=B.MULT_SELECTED_MULTIPLE,
               A.MULT_ACTIVE_FLAG = B.MULT_ACTIVE_FLAG,
           A.MULT_CHANNEL_NUM= B.MULT_CHANNEL_NUM
           a.mult_parent_num = ( select   nvl(MGrp_num, 0)
                                from     [email protected]
                                --where   MGrp_PARENT_num is not null
                                --and
                                where substr(upper(MGrp_DESCRIPTION), 2) = (select MULT_NAME
                                                                   from por_multiple p
                                                                   where p.mult_link_multiple_code = B.MULT_LINK_MULTIPLE_num)
    when not matched
    then insert
    A.MULT_ANMW_MULTIPLE_CODE,
           A.MULT_AUTH_REQUIRED,
           A.MULT_JMW_MULTIPLE_TYPE_CODE,
           A.MULT_LINK_MULTIPLE_NUM,
           A.MULT_MULTIPLE_NUM,
           A.MULT_NAME,
           a.MULT_PROM_AUTH_REQUIRED,
           a.MULT_SELECTED_MULTIPLE,
           -- NEW FIELDS ON I-KNOW
           a.MULT_ACTIVE_FLAG,
            a.MULT_CHANNEL_NUM,
             a.MULT_PARENT_NUM
    values
           b.MULT_ANMW_MULTIPLE_CODE,
           b.MULT_AUTH_REQUIRED,
           b.MULT_JMW_MULTIPLE_TYPE_CODE,
           b.MULT_LINK_MULTIPLE_NUM,
           b.MULT_MULTIPLE_NUM,
           b.MULT_NAME,
           b.MULT_PROM_AUTH_REQUIRED,
           b.MULT_SELECTED_MULTIPLE,
           -- NEW FIELDS ON I-KNOW
           b.MULT_ACTIVE_FLAG,
            b.MULT_CHANNEL_NUM,
         --   711-- parent to have parent_num group name of link multiple code
           ( select   nvl(MGrp_num, 0)
              from      [email protected]
                     --where   MGrp_PARENT_num is not null
                     --and
                       where   substr(upper(MGrp_DESCRIPTION), 2) = (select MULT_NAME
                                                                   from por_multiple p
                                                                   where p.mult_link_multiple_code = B.MULT_LINK_MULTIPLE_num)
    update   [email protected]
    set
      MULT_PARENT_num =   ( select   nvl(MGrp_num, 0)
              from     bidsaMULTIPLE_GROUPS
                     where   MGrp_PARENT_num is not null
                     and     substr(upper(MGrp_DESCRIPTION), 2) = MULT_NAME
          MULT_CHANNEL_num = nvl(MULT_JMW_MULTIPLE_TYPE_CODE, 0),
          MULT_ACTIVE_FLAG = 'Y'
    where
      MULT_PARENT_num is null;
    else
         update [email protected] p
         set  mult_active_flag = 'N'
         where  p.mult_multiple_num = :old.mult_multiple_code;
    END IF;
    EXCEPTION
         WHEN OTHERS THEN
            RAISE_APPLICATION_ERROR(-20010,'Error when writing to i-know multiple '||SQLERRM||' '||SQLCODE);
    END POR_TRG_POP_IKNOW_MULTIPLE;What am I doing wrong?

    Definitions bleow.
    Performanve fine - source table rarelyy changed - a temporary solution until the source system replaced with desination system.
    Error:
    Error when writing to multiple (sourec table) ORA-01008 - not all variables bound ORA-02063 - preceding line form bisapprd.
    - 1008 error during execution of trigger
    Source table upon which trigger acting
    -- Create table
    create table POR_MULTIPLE
      mult_multiple_code          NUMBER(4) not null,
      mult_name                   VARCHAR2(20) not null,
      mult_selected_multiple      VARCHAR2(1) not null,
      mult_anmw_multiple_code     VARCHAR2(3),
      mult_link_multiple_code     NUMBER(4),
      mult_jmw_multiple_type_code VARCHAR2(3),
      mult_auth_required          VARCHAR2(1),
      mult_prom_auth_required     VARCHAR2(1)
    )Destination tables being inserted into
    create table POR_MULTIPLE
      mult_multiple_num           NUMBER(4) not null,
      mult_name                   VARCHAR2(20) not null,
      mult_selected_multiple      VARCHAR2(1) not null,
      mult_anmw_multiple_code     VARCHAR2(3),
      mult_link_multiple_num      NUMBER(4),
      mult_jmw_multiple_type_code VARCHAR2(3),
      mult_auth_required          VARCHAR2(1),
      mult_prom_auth_required     VARCHAR2(1),
      mult_parent_num             NUMBER(4),
      mult_channel_num            NUMBER(4),
      mult_active_flag            VARCHAR2(1) not null
    create table MULTIPLE_GROUPS
      mgrp_num         NUMBER(4) not null,
      mgrp_description VARCHAR2(40) not null,
      mgrp_parent_num  NUMBER(4)
    )

  • RE:ora-28500 when trying to insert into SQL Server table

    Hi all!
    I'm getting this when i attempt to insert into my table test in a SQL Server database. As u can see from the select, the database link seems ok. Any ideas plz. Thnx..
    SQL> select "idAges" from test@try2;
    no rows selected
    SQL> insert into test@try2 ("idAges","nARAges","nAPAges") values(10,'','');
    insert into test@try2 ("idAges","nARAges","nAPAges") values(10,'','')
    ERROR at line 1:
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    [Generic Connectivity Using ODBC][Microsoft][ODBC SQL Server Driver][SQL
    Server]Cannot insert explicit value for identity column in table 'test' when
    IDENTITY_INSERT is set to OFF. (SQL State: 23000; SQL Code: 544)
    ORA-02063: preceding 2 lines from TRY2

    IDENTITY_INSERT on works only for particular session and for one table. It's not global variable.
    The only idea what I have is to create link from MS Sql to Oracle (right now You have oracle ->ms sql)and then before insert You will set identity_insert on and will run insert.

  • Look of photos change when import from D40 into iPhoto 6

    I'm using iPhoto 6 and have a Nikon D40. I'm having a problem when I import my photos -- the image quality changes when they go from the camera into iPhoto. The images look more contrast-y, more saturated. I mean, the reds and oranges are so intense it's crazy. They definitely did not look like that when I viewed them in the camera LCD.
    I've tried checking in preferences, but can't seem to find anything that would alter the images during transfer. Would this be a camera problem? Anyone using iPhoto 6 have the same problem as I am with their D40?
    Any help would be much appreciated!

    I am having the same exact problem... iPhoto 6 and Nikon D40. If I import the photos to a folder first, then import from the folder to iPhoto, I can open the iPhoto version and then open the folder version using Preview, just by clicking on the original. I then compare the two side-by-side on the computer screen. The original always looks fine in Preview, so it is clearly a problem with iPhoto over-saturating the photos. I have no solution, but only this observation.

  • ORA-00604 error when trying to insert into a XMLTYPE stored as BINARY

    Hi. Here's the scenario.
    Here's my Oracle version:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    The database is encoded as AL32UTF8.
    First I create the table...
    create table binary_table (the_field XMLTYPE) XMLTYPE COLUMN the_field STORE AS BINARY XML;
    Now I try and do an insert like this...
    insert into binary_table values (xmltype('<?xml version="1.0" encoding="AL32UTF8"?>' || chr(10) || '&lt;a&gt;b&lt;/a&gt;' || chr(10)));
    and I get this error:
    SQLState: 60000
    ErrorCode: 604
    Position: 122
    Error: ORA-00604: error occurred at recursive SQL level 1
    ORA-00942: table or view does not exist
    If I create the table with a CLOB storage option for the XMLTYPE, the insert works fine. If I repeat these steps in another database instance, same Oracle version, that's encoded as WE8ISO8859P1, it also works fine. It behaves the same in several clients. I also tried it with several different values for NLS_LANG and that didn't help.
    I do want to say that this database instance has just been set up especially for me so I can do some R&D on AL32UTF8 and XMLTYPE to see if it fits our needs. So it might be a problem with the database instance.
    Thanks for taking a look at this.
    Ralph
    Edited by: stryder100 on Jul 24, 2009 12:11 PM

    Hi,
    Use this
    Load data
    append Into TABLE HS_HRMIG_EMP_PER_20MAR07 fields terminated by "," optionally enclosed by '"'
    TRAILING NULLCOLS.
    Here optional enclosed by is for doubles quotes which should needs to place in single quotes.
    like '"'.
    try with this.
    --Basava.S                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • I can't grab iPhone movies to insert into my movie project

    Before I upgraded to iLife, i started a project in iMovie and had no problem finding my iPhone movies to insert into my project. However, after the upgrade, my iPhone videos don't appear to be available to insert into my project. Anyone else have this issue and who can offer any suggestions? I am making a movie of my son's 2nd year and his party is this weekend! help!

    Sorry to bust in on this thread but am pretty good with computers but feel like a real idiot here.
    I recently downloaded a video and converted it into mpeg-4 using videora which was done successfully. Now I opened Itunes and went onto library where all my songs are and clciked on 'file' and then 'add file to library' and double clicked on the video which said it was mpeg-4 and I cant find it in my library, nor is it listed when I go down and click on videos.
    I hope I'm doing something really stupid and missing something. Can anyone help??
    Thanks

  • Can you control changes when uploading?

    I would like to be able to control the changes made to the website when uploading through FTP and not business catalyst.  Apparently the feature is available on business catalyst, but not a 3rd party server.  What happens is that if I load the website from different machines, home and work, then all the progress and files uploaded at work get erased if I upload the site from home.
    A feature that would allow to keep work done, and only add new files would help my productivity a lot.  I am having to remote into office to work on site.

    I suspect you've misinterpreted behavior you've seen.
    The .muse file records when each page of your site was altered. When a site is uploaded (to BC or Upload to FTP Host) a file named muse_manifest.xml is written to the server. This file records the exact versions of all the files on your site.
    The next time you open the .muse file and upload to the same site, Muse reads the muse_manifest.xml file to determine which pages (and associated files) need to be regenerated and uploaded. As long as the same .muse file is used on the two computers, Muse will upload only the minimal set of files.
    What many don't immediately realize, is that when you take an update of Muse the code generation is likely to have changed (for performance improvements, bug fixes, compatibility changes for browser updates, bug fixes, new features, etc.). Since the code generation changes with a new version of Muse, and the files on a website are largely interrelated, all the files on the server need to be generated by the same version of Muse. If there's a change in Muse version, a large set of files will need to be uploaded.
    Perhaps you have slightly different versions of Muse at work and at home? That would cause a large number of files to be uploaded each time you switch between versions.

  • "The disk you inserted was not readable by this computer" box appears when printer cable inserted into USB connection.

    When I plugged my printer cable into my MacBook today I received a message "the disk you inserted was not readable by this computer" with options to Ignore or Eject. The printer worked fine yesterday but does not respond today. Additionally there is abox titled "All Messages" appearing on my screen which is producing new messages every minute or so the most common of which is disk1: I/O error and disk1:alignment error, SAM Multimedia: Read or Write failed.
    I tried unsuccessfully yeseterday to install a scanner on this MacBook.Everything seemed to progress normally during the install but the Scanner did not show in my applications after my attempt to install.
    Any ideas?
    Thank you in advance

    I uninstalled and reinstalled my printer and everything seems to work fine now.

  • Restricting a price change when converting a PR into a PO

    We have configured our system to copy the purchase requisition price into the purchase order when creating a PO with reference to a PR.  Now we'd like to restrict the user from changing the price to an amount greater than the PR dollar amount.  If they needed to decrease the amount that should be okay, but we wouldn't want them to increase the amount.  Is this possible?

    This can be done via user exit only. standard SAP doesn't support this kind of scenario.
    user the PO item user exit MM06E005

  • Colour changes when importing Illustrator graphics into Flash CS3

    Hi there!
    I'm creating a Flash site, and all the graphics are imported
    from Illustrator.
    Also, in the Illustrator file, there are some Phtoshop
    graphics with shadow effects on it.
    The problem is, that when I import the .ai into Flash, a
    pretty strong colour change occurs: everything becomes lighter. And
    the shadow, wich is black in Photoshop, turns white in Flash!
    Is there a way to solve this problem? I searched the net, and
    some people say it's an OSX thing, wich is pretty strange, because
    Mac is an obvious choice for loads of designers.
    I've attached an image preview.
    Preview
    Thanks in advance!
    Alex

    Thanks for the anwsers!
    However, the weird thing is, when I pick one of the photoshop
    graphics, asign the profile to it, and import it into Flash, the
    colors look fairly good. BUT when I import the complete Illustrator
    file with alle the graphics in it, I still get the color shift. I
    can now put all the graphics in the flash file, one at a time, but
    I think thats not the most easy way to do it..

  • Loosing D300 Picture Control settings when importing RAW files into CS3!!

    Hi there...I would really appreciate some help!!
    I have recently bought a D300/Tamron 17-50mm f2.8 which I love, however, I'm getting increasingly frustrated by either my lack of knowledge or some form of compatibility issue between the D300 and CS3!!
    When importing I am loosing all the RAW Picture Control settings!! - e.g. If I shoot using Picture Control "Monochrome" CS3 rips out all of the settings and returns the RAW image back to the default camera settings!! It doesn't seem to be the D300 as Picture Control settings are retained when viewing the RAW images on the camera's screen.
    Camera: D300/firmware - default install
    Computer: MacBook Pro Intel 2.4Ghz/2Gb RAM | Operating System: OS X 10.5.4 (9E17) | Software: Abobe CS3 with CameraRAW 4.4.1 plugin (also tried beta 4.5 but to no avail!!)
    Thanks in advance!!

    I am trying to open a NEF file (RAW format) from my card with PhotoShop CS3 and it does not work. These photos were taken with a Nikon D300. A window appears and the message read as follows:
    "Could not complete your request because it is not the right kind of document"
    Could someone help me?
    I have searched the online material and I have not found a solution as of yet.
    I have no issues opening JPEGs taken with a D300 and I can open NEF files that were taken with a Nikon D200...
    I appreciate your help.

  • Blurry Jpgs when displaying after insertion into project

    I am running Elements 10.  I have created a project with numerous video clips and pictures inserted.  I cannot seem to get the pictures to display clearly no matter what format (jpg, tiff, etc) I use.  The video clips seem to display ok.

    PrE 10 and Windows 7 64 bit, 8GB Ram
    Actually pictures range all the way up to 3136 x 2184
    Video seems to be clear on playback.   Here are the details of the clip I from which I used about two minutes:
    <?xml version="1.0" encoding="UTF-8"?>
    -<Mediainfo version="0.7.63">-<File>-<track type="General"><Complete_name>F:\Video\1989 Hilda Interview.mpg</Complete_name><Format>MPEG-PS</Format><File_size>2.11 GiB</File_size><Duration>35mn 12s</Duration><Overall_bit_rate_mode>Variable</Overall_bit_rate_mode><Overall_bit_rate>8 574 Kbps</Overall_bit_rate></track>-<track type="Video"><ID>224 (0xE0)</ID><Format>MPEG Video</Format><Format_version>Version 2</Format_version><Format_profile>Main@Main</Format_profile><Format_settings__BVOP>Yes</F ormat_settings__BVOP><Format_settings__Matrix>Custom</Format_settings__Matrix><Format_sett ings__GOP>M=3, N=15</Format_settings__GOP><Duration>35mn  12s</Duration><Bit_rate_mode>Variable</Bit_rate_mode><Bit_rate>8 180 Kbps</Bit_rate><Maximum_bit_rate>9 570 Kbps</Maximum_bit_rate><Width>720 pixels</Width><Height>480 pixels</Height><Display_aspect_ratio>4:3</Display_aspect_ratio><Frame_rate>29.970  fps</Frame_rate><Standard>NTSC</Standard><Color_space>YUV</Color_space><Chroma_subsamplin g>4:2:0</Chroma_subsampling><Bit_depth>8  bits</Bit_depth><Scan_type>Interlaced</Scan_type><Scan_order>Top Field First</Scan_order><Compression_mode>Lossy</Compression_mode><Bits__Pixel_Frame_>0.790</Bi ts__Pixel_Frame_><Time_code_of_first_frame>00:00:00:00</Time_code_of_first_frame><Time_cod e_source>Group of pictures header</Time_code_source><Stream_size>2.01 GiB (95%)</Stream_size></track>-<track type="Audio"><ID>192 (0xC0)</ID><Format>MPEG Audio</Format><Format_version>Version 1</Format_version><Format_profile>Layer 2</Format_profile><Duration>35mn 12s</Duration><Bit_rate_mode>Constant</Bit_rate_mode><Bit_rate>224 Kbps</Bit_rate><Channel_s_>2 channels</Channel_s_><Sampling_rate>48.0 KHz</Sampling_rate><Compression_mode>Lossy</Compression_mode><Delay_relative_to_video>-66 ms</Delay_relative_to_video><Stream_size>56.4 MiB (3%)</Stream_size></track></File></Mediainfo>
    Here is details from another clip, used a minute or so:
    <?xml version="1.0" encoding="UTF-8"?>
    -<Mediainfo version="0.7.63">-<File>-<track type="General"><Complete_name>C:\Users\Barry\Documents\My Documents\My Pictures\Genealogy stuff\Stadnitsky Project\Stadd Macavoz Pictures\Fiddler on the roof part 18.mp4</Complete_name><Format>MPEG-4</Format><Format_profile>Base Media / Version 2</Format_profile><Codec_ID>mp42</Codec_ID><File_size>23.5 MiB</File_size><Duration>9mn  59s</Duration><Overall_bit_rate_mode>Variable</Overall_bit_rate_mode><Overall_bit_rate>32 9 Kbps</Overall_bit_rate><Encoded_date>UTC 2010-01-03 01:13:19</Encoded_date><Tagged_date>UTC 2012-12-29 23:47:44</Tagged_date><gsst>0</gsst><gstd>600443</gstd><gssd>BADC23F64MH1356824360205454< /gssd><gshh>r16---sn-p5qlsn7z.c.youtube.com</gshh></track>-<track  type="Video"><ID>2</ID><Format>AVC</Format><Format_Info>Advanced Video Codec</Format_Info><Format_profile>[email protected]</Format_profile><Format_settings__CABAC> No</Format_settings__CABAC><Format_settings__ReFrames>1 frame</Format_settings__ReFrames><Format_settings__GOP>M=1,  N=30</Format_settings__GOP><Codec_ID>avc1</Codec_ID><Codec_ID_Info>Advanced Video Coding</Codec_ID_Info><Duration>9mn 59s</Duration><Bit_rate>218 Kbps</Bit_rate><Maximum_bit_rate>549 Kbps</Maximum_bit_rate><Width>320 pixels</Width><Height>240 pixels</Height><Display_aspect_ratio>4:3</Display_aspect_ratio><Frame_rate_mode>Constant< /Frame_rate_mode><Frame_rate>29.970  fps</Frame_rate><Color_space>YUV</Color_space><Chroma_subsampling>4:2:0</Chroma_subsampli ng><Bit_depth>8  bits</Bit_depth><Scan_type>Progressive</Scan_type><Bits__Pixel_Frame_>0.095</Bits__Pixel_ Frame_><Stream_size>15.6 MiB (66%)</Stream_size><Title>(C) 2007 Google Inc. v08.13.2007.</Title><Encoded_date>UTC 2010-01-03 01:13:19</Encoded_date><Tagged_date>UTC 2010-01-03 01:13:19</Tagged_date></track>-<track  type="Audio"><ID>1</ID><Format>AAC</Format><Format_Info>Advanced Audio Codec</Format_Info><Format_profile>LC</Format_profile><Codec_ID>40</Codec_ID><Duration>9m n  59s</Duration><Bit_rate_mode>Variable</Bit_rate_mode><Bit_rate>108 Kbps</Bit_rate><Maximum_bit_rate>156 Kbps</Maximum_bit_rate><Channel_s_>2 channels</Channel_s_><Channel_positions>Front: L R</Channel_positions><Sampling_rate>44.1 KHz</Sampling_rate><Compression_mode>Lossy</Compression_mode><Stream_size>7.75 MiB (33%)</Stream_size><Title>(C) 2007 Google Inc. v08.13.2007.</Title><Encoded_date>UTC 2010-01-03 01:13:19</Encoded_date><Tagged_date>UTC 2010-01-03 01:13:19</Tagged_date></track></File></Mediainfo>
    4. Yes, NTSC, current screen resolution is 1280 x 1024.  I would like advice on what format 4:3 or 16:9 to create/continue the project for playback via DVD on both TV screens and PC monitors.
    I can continue using the built in DVD creating program. 
    The above chart is correct
    Yes, .9091 comes after D1/DV NTSC
    I'm not clear what mp4 and mpg fields are.  One was recorded by me and one off the internet.
    5. 

  • In Quicktime 10.3, why can't I hide the playback controls? It is most annoying when giving a presentation to a large group to see the control panel appear. I just want them to see the movie. Thanks!

    How to hide playback controls?

    The problem is I don't want my audience to EVER see the playback controls, just like I don't want to see a TV station's playback controls onscreen when watching TV. Same in a movie theater. The movie should just appear and play.
    And not moving the mouse is not an option when going between a slide program and a movie program, which our presentations often if not always do.
    Is there a way to do what I want in my computer using Quicktime?
    There are no user preferences for any current version of QT X. If you must use "Full" screen mode, then start player playback before entering the "Full" screen mode and exit the "Full" screen mode before again moving the mouse to avoid seeing the controls when you do manipulate the mouse. Only other option might be to use a non-mirroring workflow strategy.
    Does Quicktime Pro have that ability?
    Yes and no. The QT 7 media player window normally displays the controls at all times. However, when keyed for "Pro" use, you can go to the "Properties" window and change the "Presentation" movie controller type to the "None Movie Controller" setting. In this setting all playing modes other than "Full" screen mode display the player with title bar above the viewing area but without side frame or controls under the display. If you are using the "Full" screen mode for your presentation, then you can open the "Preferences" window to the "Full Screen" tab and deselect display of the "full-screen controls." In both cases you will have to either use menu options to start/stop playback or double-click the display screen to start playback and single-click the display screen to stop playback manually. (NOTE: In the first instance the property setting is/can be saved to the file itself while in the second the setting is saved as a QT 7 Player preference to the player itself.)

  • How to send message when insert into table

    hi
    how i can send message to the users when some one insert data in table
    example :like outlok when when i have new message message comes to tell me
    that i have new message please help

    hi for all and thanks for replay
    the idea is not send mail.
    the idea is when some one insert into table new record i want a message comes
    to tell me that theres new record inserted but i dont want to intrupt my job on the form. i just want message to tell me that. without any action from me just like outlook or messenger
    i tried to make timer then from the when-timer-expired i show stacked canvse that comes from right down corner of screen.
    but i think its not a good idea becouse i have more that 30 form in my project
    i hope my question is clear

  • Exit button on Playback Control

    I'm using Captivate 1. All of the buttons work except the
    Exit button on the Playback Control. Any suggestions?
    Thanks,
    TILOTOHA

    TILOTOHA,
    If the Exit button on the playbar isn't working, I'm afraid
    there's not much to be done about that. We have no control over the
    functionality of the playback controls.
    That said, are you previewing the movie from a web server?
    Previewing locally or from a network drive imposes security
    restrictions on the browser and the Flash Player, which is the
    cause of most "it doesn't work" reports in these forums. The only
    way to truly know if something is working is to test your files
    from a web server, where the security restrictions are much
    lighter.
    Everybody Else,
    I'm assuming you're adding your own Exit buttons on the last
    slide? If so, there may be a better way. As most folks probably
    know, the "correct" way to close a window at the end of a project
    is to go into the Project Preferences and set the action for the
    Project end options to "Close project". This usually works.
    As a backup, you can also insert some Javascript code in the
    slide navigation for the last slide in your project. This will
    "double your chances" of being able to close the window, without
    the user having to click anything:
    1. Double-click the last slide and on the Slide Properties
    dialog, select Execute JavaScript from the Navigation dropdown.
    2. Click the Ellipses (...) button to the right of the
    JavaScript field and on the Javascript dialog, type the following
    code:
    window.top.opener = window.top; window.top.close();
    The extra bit of code at the beginning is an attempt to
    prevent IE from asking the user whether they want to close the
    window. It may not actually work, but it doesn't seem to do any
    harm to leave it in.
    Jill -
    If the slide navigation thing doesn't work for you, the
    "button" solution is simply to add a button to the slide,
    double-click to view it's properties, change the On success action
    to Execute JavaScript and then enter the code as shown
    above.

Maybe you are looking for

  • Netweaver 2004s SR3 PI 7.0 Installation Error

    Hi All, I am installing Netweaver 2004s SR3 PI 7.0 on Sun Solaris 10 and Oracle 10g, all the components are  64bit version. During the installation step 95 out of 98 prepare to install minimal configuration ended with error. please find here the belo

  • Problem with displaying figures in words

    dear members....I've used the Julian Date trick to display the figures in words n it worked very well as far as figures were in positive numbers, but it wasted alot of time of me when it was displaying error while figure was in negative(below to zero

  • Where exactly should i write API and function calls in OAF

    Can anybody tell me where to call the API's and functions and also please specify the reason for that so that i can understand properly. Thanks a lot in advance. kumar

  • Old emails that I archived suddenly appeared in my Inbox again

    Yesterday over 330 old archived emails suddenly downloaded back into my Inbox. I didn't make any changes to my Gmail account nor did I sync anything. This happened while I was on vacation, so its very bizarre. The emails start from 10 months back - a

  • ESSMSS docs required

    Can Any one send the latest ESS\MSS configration document.