Problem with embeded movies

I recently got Dream weaver to promote myself as an animator
and am attempting to make my first website. While not the most
sophisticated looking page in the world, it is functional so far.
However, I've been trying to put my demo reel/animations onto the
pages and when I test the pages, they play automatically with no
option to pause, stop, etc. I thought that if controller was set to
true, I can toggle those kind of options? What am I doing wrong?
The movies I'm trying to put in are embedded quicktimes, if
that makes any difference. Thank you very much!

You need to work in Code view. Set Autoplay to "false" and
the controller
set to "true" Notice you will use both object and embed tags
to cover your
bases with all browsers.
http://www.mediacollege.com/video/format/quicktime/streaming/
Just so you know, many people do not have QT plug-in
installed in their
browser. If they don't have QT, they won't be able to see
your video. If
you want to reach the widest audience, convert to Flash. To
bring Flash
into DW, Insert menu > Media > Flash Video. Then put
page and all its
dependant files to server.
--Nancy O.
Alt-Web Design & Publishing
www.alt-web.com
"Erin0ko" <[email protected]> wrote in
message
news:g6o852$2sg$[email protected]..
> I recently got Dream weaver to promote myself as an
animator and am
attempting
> to make my first website. While not the most
sophisticated looking page
in the
> world, it is functional so far. However, I've been
trying to put my demo
> reel/animations onto the pages and when I test the
pages, they play
> automatically with no option to pause, stop, etc. I
thought that if
controller
> was set to true, I can toggle those kind of options?
What am I doing
wrong?
>
> The movies I'm trying to put in are embedded quicktimes,
if that makes
any
> difference. Thank you very much!
>

Similar Messages

  • Problems with embedding swfs into Director 11.5

    Hello everyone,
    I am hoping someone can help me and please bear with me - I don't know a lot about director - I can do some Lingo and get around in the program to make things work.
    Right now I am working on an interactive presentation where the user can click a button to view an animation. I am using Director 11.5 for my presentation and have made my animations in After Effects CS3 -- from there I converted my .mov files to .flv files using the Adobe Media Encoder CS4... then I took my .flv file into Flash and published it as a swf file.
    The problem that I am having is that when I play the presentation (within Director and after publishing the .app/projector file) the swf files are playing - but there is all this glitchy-artifact stuff all over them. Does anyone know why this would be happening? When I play the swf files in the flash player they look great. Before, when I was using Flash MX and Director MX, I never had any problems with embedding my swf animation files - and they played great - without any artifact. Any and all help would be much appreciated as this project is due in the next few days and I would prefer to figure out a solution rather than uninstalling Flash CS4 and Director 11.5 - and going back to MX.
    I toyed with the thought that my video card isn't good enough but I tested the .app file on another machine and the glitchy-artifacts were still there. I have attached a jpg showing the artifact that appears.
    I am running Mac OS X 10.5.7
    Dual 2 GHz G5 PowerPC
    ATI Radeon X800 XT
    Thank you!

    Sorry... here is the image again and I think the problem might be my machine -- it is very old (~4+ years) and when I tested my .app on a newer intel mac here it worked fine... but maybe I am missing something -- it seems odd that I can see the swf fine in flash player but it is glitchy when played through director or the .app projector file

  • Hi, I have problem with importing MOV files from SJCAM 4000. MOV files are in supported formats for Adobe Premiere Elements 11. But if I'm importing MOV file, only audio part is imported, video part is not imported. How can I solve this problem?

    Hi, I have problem with importing MOV files from SJCAM 4000. MOV files are in supported formats for Adobe Premiere Elements 11. But if I'm importing MOV file, only audio part is imported, video part is not imported. How can I solve this problem?

    haben
    From looking at the specifications of your camera (SJCam 4000), we know already what video compression your camera is using. It is H.264.
    A H.264.mov file should be supported by Premiere Elements 11. On what computer operating system is your Premiere Elements 11 running?
    Do you have the latest version of QuickTime installed on your computer? And, are you running QuickTime and Premiere Elements 11 from a
    User Account with administrative privileges? Please go to Premiere Elements 11 Publish+Share/Computer/QuickTime to confirm that you find
    presets there for the QuickTime choice there.
    What are the properties of these H.264.mov files - is it 1080p30 (1920 x 1080p30)  or something else? Do you know if this camera is recording with a variable or
    a constant frame rate?
    Please review and consider and then we will decide what next.
    Thank you.
    ATR

  • Problem with embedded objects

    Hi,
    I have problem with embedded objects which contained embedded objects.
    When I create an Object in the persistent memory and commit this object I get the following error:
    ORA-22805: cannot insert NULL object into object tables or nested tables
    In the constructor of my persisten object I create the embedded members in the transient memory:
    ATestPersObj::ATestPersObj() : m_count(0), m_lang(NULL), m_cost(NULL) {
      m_lang = new AEnumLanguage_OraType();
      m_cost = new AAmount_OraType();
    }Or when I dereference a reference I get this error:
    ORA-00600: internal error code, arguments: [kokeicadd2], [16], [5], [], [], [], [], []
    Can somebody give me a hint?
    I've defined the following Type:
    CREATE OR REPLACE TYPE AENUM_ORATYPE AS OBJECT (
                             VALUE  NUMBER(10,0)
                           ) NOT FINAL ;
    CREATE OR REPLACE TYPE AENUMLANGUAGE_ORATYPE UNDER AENUM_ORATYPE (
                           ) FINAL " );
    CREATE OR REPLACE TYPE ACURRENCY_ORATYPE AS OBJECT (
                             ISONR          NUMBER(5,0)
                           ) FINAL ;
    CREATE OR REPLACE TYPE AAMOUNT_ORATYPE AS OBJECT (
                             CCY        ACURRENCY_ORATYPE,
                             LO32BITS   NUMBER(10,0),
                             HI32BITS   NUMBER(10,0)
                           ) NOT FINAL ;
    CREATE OR REPLACE TYPE ATESTPERSOBJ AS OBJECT (
                             COUNT    NUMBER(4),
                             LANG     AENUMLANGUAGE_ORATYPE,
                             COST     AAMOUNT_ORATYPE   
                           ) FINAL ;
    oracle::occi::Ref<ATestPersObj> pObjR = new(c.getConnPtr(), "TTESTPERSOBJ") ATestPersObj();
    pObjR->setCount(i+2001);
    pObjR->setLang(AEnumLanguage(i+1));
    pObjR->setCost(AAmount(ACurrency(), 2.5));
    c.commit();
    c.execQueryRefs("SELECT REF(a) FROM TTESTPERSOBJ a", persObjListR);
    len = persObjListR.size();
    {for (int i = 0; i < len; i++) {  
      oracle::occi::Ref<ATestPersObj> pObjR = persObjListR;
    pObjR->getCount();
    pObjR->getLang();
    c.commit();
    With kind regards
    Daniel
    Message was edited by:
    DanielF
    Message was edited by:
    DanielF

    Hi,
    I have problem with embedded objects which contained embedded objects.
    When I create an Object in the persistent memory and commit this object I get the following error:
    ORA-22805: cannot insert NULL object into object tables or nested tables
    In the constructor of my persisten object I create the embedded members in the transient memory:
    ATestPersObj::ATestPersObj() : m_count(0), m_lang(NULL), m_cost(NULL) {
      m_lang = new AEnumLanguage_OraType();
      m_cost = new AAmount_OraType();
    }Or when I dereference a reference I get this error:
    ORA-00600: internal error code, arguments: [kokeicadd2], [16], [5], [], [], [], [], []
    Can somebody give me a hint?
    I've defined the following Type:
    CREATE OR REPLACE TYPE AENUM_ORATYPE AS OBJECT (
                             VALUE  NUMBER(10,0)
                           ) NOT FINAL ;
    CREATE OR REPLACE TYPE AENUMLANGUAGE_ORATYPE UNDER AENUM_ORATYPE (
                           ) FINAL " );
    CREATE OR REPLACE TYPE ACURRENCY_ORATYPE AS OBJECT (
                             ISONR          NUMBER(5,0)
                           ) FINAL ;
    CREATE OR REPLACE TYPE AAMOUNT_ORATYPE AS OBJECT (
                             CCY        ACURRENCY_ORATYPE,
                             LO32BITS   NUMBER(10,0),
                             HI32BITS   NUMBER(10,0)
                           ) NOT FINAL ;
    CREATE OR REPLACE TYPE ATESTPERSOBJ AS OBJECT (
                             COUNT    NUMBER(4),
                             LANG     AENUMLANGUAGE_ORATYPE,
                             COST     AAMOUNT_ORATYPE   
                           ) FINAL ;
    oracle::occi::Ref<ATestPersObj> pObjR = new(c.getConnPtr(), "TTESTPERSOBJ") ATestPersObj();
    pObjR->setCount(i+2001);
    pObjR->setLang(AEnumLanguage(i+1));
    pObjR->setCost(AAmount(ACurrency(), 2.5));
    c.commit();
    c.execQueryRefs("SELECT REF(a) FROM TTESTPERSOBJ a", persObjListR);
    len = persObjListR.size();
    {for (int i = 0; i < len; i++) {  
      oracle::occi::Ref<ATestPersObj> pObjR = persObjListR;
    pObjR->getCount();
    pObjR->getLang();
    c.commit();
    With kind regards
    Daniel
    Message was edited by:
    DanielF
    Message was edited by:
    DanielF

  • Does anyone have problems with iTunes movie rentals freezing in the middle of the movie?

    Does anyone have problems with iTunes movie rentals freezing in the middle of the movie, requiring a force quit, which causes your rental to disappear? This has happened multiple times to me recently. Last time Apple didn't refund my money after reporting the problem. I have been using iTunes for many years but am about to give up.

    Correction: I was refunded for the previous movie freeze.

  • Problems with goods movements cancelling network confirmations

    Hello experts,
    I'm having some problems with goods movement when cancelling network confirmations.
    I assign a component for a operation in the project builder (CJ20N). Then when I execute a confirmation for that operation in CN25 everything works correctly, I can assign the time for the confirmation and SAP automatically carries the component assigned to the operation. Once I have done the confirmation the goods movements and the hours have a correct account assignment.
    The problem is that if I cancel this confirmation, the hours are correctly cancelled but the component is still there. If I try to cancel the goods movement with MIGO it is no possible because the system says that must be cancelled with the corresponding transaction (CN29) but, as I have said, the system does not cancel it.
    On the other hand, If the goods movement goes to COGI transaction and then I post-process the error, If later I cancel the confirmation, everything works correctly.
    Does anybody know why this could happen?
    Thanks and regards
    Laura

    Hi
    I think this question was raised earlier also. The best way is to allot a fixed time slot for your users so as to avoid clash. I suppose i explained that the master data of any material is stored at one place only and if you schedule a background job for this then all your good movement transaction will be in que and performed in orderly manner.
    If automatic posting is not possible then use the time slot method.
    Krishna

  • Problems with embedding .flv files in DW CS4....

    I inserted an .flv file into my DW CS4 html page. I previewed it in my browser, and it worked for a little bit, but now it's not working in any browser, I'm not sure what happened. I included a screen shot in the attachments of what was happening in all the browsers.
    Thanks for any help,
    Thank you,
    Aza

    Not sure if that was meant for me
    You can tell who was the intended recipient by looking at the header of the message -
    6. Sep 10, 2010 6:50 AM in response to: FordGuy48 <<----
    Re: Problems with embedding .flv files in DW CS4....
    A link to the page would help us diagnose your problem.
    Safari tells me that this file -
    FLVPlayer_Progressive.swf
    is not where you have told the page to expect it.  Did you upload it?

  • HT203200 Is there a problem with redeeming movies from itunes?  I purchased some movies with digital copies.  But I can not download, due to Code redemption being temporary unavailable for the past 2 days.

    Is there a problem with redeeming movies from itunes.  I purchased some movies with digital copies.  But i can not download movies, due to code redemption being temporary unavailable.

    Hi there Cedric!
    I have an article here for you that I believe will help you out with this issue by reporting it to iTunes. That article can be found right here:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBookstore purchase
    http://support.apple.com/kb/HT1933
    Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

  • Export to MOV with embedded Movies -- sound erratic

    Help! I've trying to do too much with Keynote, I'm sure: I need to make a multi-media presentation with bg music, VO narration, standard Keynote transitions AND embedded movie clips -- then exported as a MOV file. When I do export it, and play the MOV file in QT, the embedded movie will play nicely, but only the first second or two of it's embedded audio will play.....can't figure this out. Anyone recognize this fail?
    Ultimately, I'm wanting to bring the file up into iDVD and make a dvd presentention for distribution; will it matter that this happens in the MOV file?

    Hi all.
    I do exactly have the same problem since Keynote 4.0 and was hoping that it's solved in Keynote 5.0.
    As soon as I try to export a previously recorded slideshow, (that has a quicktime-movie embeded on one slide) and one or two little textanimations on it. The embeded movie stops playing when the first animation starts in the exported quicktimemovie. When I view my recorded presentation, everything looks fine.
    I do also believe, that the Quicktime-Export-Function does not work correctly because of timeline differences or so.
    I would really appreciate a fix, specially becaused I upgraded in the hope that this should have been solved since around 10 months now....
    Too bad.
    P.S. As a workaround I am currently using also screenflow to record a recorded keynotepresentation to finally receive a movie. But that is kind of awkward too....
    Message was edited by: Joerg Klaas

  • Export to Quicktime bug with embedded movies

    Hi
    I'm having an annoying problem when having Quicktime movies inserted in slides, then recording a slideshow and exporting it to Quicktime. I do the following:
    1) Create a new slideshow
    1) Insert movie into first slide
    2) Create another slide
    3) Insert copy and paste movie into this slide as well and add some animated object (i.e. a shape with a motion path)
    4) Record slideshow so that the animated object appears while the movie still plays
    5) Export recorded slideshow to Quicktime
    *What happens when viewing the recorded slideshow:* Start of the presentation. The movie on the first slide starts playing immediately without clicking. *1st CLICK*. Second slide shows up. The movie on the second slide starts playing without clicking as well. *2nd CLICK.* The animated object is triggered, the movie and the animation play simultaneously.
    *What happens when viewing the exported movie:* The exported movie seems to ignore some of the recorded settings. Slideshow starts, the movie doesn't play. *1st CLICK.* The movie starts playing (when actually it was supposed to advance from slide 1 to slide 2). *2nd CLICK.* The presentation advanced from slide 1 to slide 2.
    It seems as if the export does not interpret all the settings the same way the direct presentation does, which is quite annoying as you don't get the same result in the exported movie you see on the screen.
    Workaround: Go to the "QuickTime inspector" button in the inspector window, select the movie, check the option "Start movie on click". Then, go to the "Build inspector", hit the "More Options" button. The movie object now appears in the list. Select it and select "Automatically after transition" in the lower "Start build" part of the inspector. This way, the movie will start playing also in the exported movie.
    Still there is another problem now.
    *What happens now when viewing the exported movie with workaround:* Slideshow starts, the plays. *1st CLICK.* The presentation advanced from slide 1 to slide 2. The movie on the second slide starts playing without clicking as well! YAY! *2nd CLICK.* The animated object is triggered, the animation plays but the movie stops as soon as the animation is triggered.
    So, instead of playing animation and movie simultaneously as in the normal recorded slideshow on screen, in the exported movie, the movie stops the moment the animation is triggered.
    It seems as if the "Play Slideshow" and "Export to Quicktime" have different timelines, or different parameters the two modes evaluate.
    This happened in iWork '08 and also happens in iWork '09. It's quite annoying. For me it's clearly a bug that should be fixed and is worth fixing. Please Apple, fix this bug.
    I also noticed a tremendous amount of crashes while using the export to Quicktime function. While I was trying Keynote in iWork '09 I exported several times to Quicktime and had several crashes just by using this function.

    Hi all.
    I do exactly have the same problem since Keynote 4.0 and was hoping that it's solved in Keynote 5.0.
    As soon as I try to export a previously recorded slideshow, (that has a quicktime-movie embeded on one slide) and one or two little textanimations on it. The embeded movie stops playing when the first animation starts in the exported quicktimemovie. When I view my recorded presentation, everything looks fine.
    I do also believe, that the Quicktime-Export-Function does not work correctly because of timeline differences or so.
    I would really appreciate a fix, specially becaused I upgraded in the hope that this should have been solved since around 10 months now....
    Too bad.
    P.S. As a workaround I am currently using also screenflow to record a recorded keynotepresentation to finally receive a movie. But that is kind of awkward too....
    Message was edited by: Joerg Klaas

  • Problems with Embedded classes mapping

    Hi,
    I'm experiencing problems for table generation with the following case:
    a class declares two fields; one of them typed as a subclass of the other; both fields annotated with @Embedded; the subclass uses the annotation @AttributeOverride to avoid column names duplication.
    When the tables are generated, one of the field (the most specialized one) is simply omitted by the JPA implementation...
    To illustrate my problem, here is an example:
    @Entity
    public class Bar implements Serializable {
         @Embedded
         protected Foo foo = null;
         @Id
         @GeneratedValue(strategy=GenerationType.SEQUENCE)
         protected long id = -1;
         @Embedded
         protected SubFoo subFoo = null;
         public Bar() {
                    super();
            // getters & setters
    @Embeddable
    public class Foo implements Serializable {
         @Column
         protected String bar = null;
         @Column
         protected String foo = null;
         public Foo() {
              super();
            // getters & setters
    @Embeddable
    @AttributeOverrides({
         @AttributeOverride(name="bar", column=@Column(name="subbar")),
         @AttributeOverride(name="foo", column=@Column(name="subfoo"))
    public class SubFoo extends Foo {
         public SubFoo() {
                    super();
    }The generated table BAR contains only 3 columns: ID, FOO, BAR...
    ...and what I expect is two additionnal columns named SUBFOO & SUBBAR!
    Can someone tell me: if I definitely need to go back to school (I'm obviously not an EJB expert), or how to make it work as I expect...?
    Thanks
    -Jerome

    I found the note in the EJB specs that clearly states that my issue has no solution at this time:
    "Support for collections of embedded objects and for the polymorphism and inheritance of embeddable classes will be required in a future release of this specification."
    EJB 3.0 specs - final release - persistence, page 23, note 10 in section 2.1.5

  • Full screen problem, with embedded flash player in a flash player

    Hi,
    I am having an issue with the flash video player embedded within a flash player movie. The issue is that when my main flash is in Full Screen mode and I try to open that screen where embedded movie player is, when it is opened the inner movie player covers the complete screen, on the other hands it should show that embedded player in normal condition with other background stuffs.
    Can anyone guide me what step should I take to avoid this or if it is possible to do this kind of scenario in Full Screen mode or not?
    Looking forward to your prompt help.
    Best regards,
    Irfan

    likeeak wrote:
     I want to know how to disable hardware acceleration by use ActionScript 2.0
    I don't know if this is possible; perhaps you should ask in the ActionScript forum?

  • Problems with image movement

    Hello everybody:
    First of all let me tell you that I am not a DVD wise person. I am starting to use iDVD and hope to soon be able to use DVD Studio Pro. The problem that I have is that I created a presentation in Motion using only photographies. The project was done using the Full HD(HDV1080p 30) format and saved as a quicktime file. When the file is played it looks great with smooth movements, but when transferred to iDVD the pictures still look good but the effects and movements are not smooth anymore, they stutter at times... This is the first time that I have this problem, maybe because I tried to do the project in full HD format? Or maybe is a problem of the speed of the data transfer? I know iDVD has a menu that allows to burn a DVD with Pro quality but I am still getting the same result.
    Also please...could someone recommend me some webpage o text regarding dvd recording for beginners?
    Thanks a lot for you help...

    Hi
    One thing
    iDVD - Can't do HD - not any version of it
    DVD Studio pro - most probably
    Roxio Toast™ - at least with Blue-Ray component to Blue-Ray burner/disks (DVD too but very short eg 20-30 minutes)
    Tutorials
    Some of them on internet
    iDVD 5
    www.kenstone.net/fcphomepage/idvd_5stone.html
    iLife6
    www.apple.com/ilife/tutorials/
    iMovie HD 6
    manuals.info.apple.com/en/iMovieHD_6_GettingStarted.pdf
    iLife08 and Mac OS X.5
    www.apple.com/ilife/tutorials
    iMovie08 and Mac OS X.5
    www.apple.com/ilife/tutorials/#imovie
    iDVD08 and Mac OS X.5
    www.apple.com/ilife/tutorials/#idvd
    Karsten Schluter
    karsten.schluter.googlepages.com/im08tricks
    Podcasts Apple
    - Find Out How - Document Apple
    - Find Out How - Mac OS X Apple
    - Find Out How - Movies Apple
    - Find Out How - Music Apple
    - Find Out How - Photos Apple
    - Find Out How - Web
    Books
    David Pogue's books
    • iMovie HD the Missing Manual
    • iMovie 6 & iDVD The Missing Manual
    • iMovie’08 & iDVD The Missing Manual
    • iMovie’09 & iDVD The Missing Manual
    Yours Bengt W

  • Opacity problems with exported movie

    Hi all
    I'm having an issue with Motion 5. My project is 3046x1080 @ 30fps with a transparent canvas as a background and I have my timeline with about 5 clips all placed in seperate layers. All I'm trying to do is fade from one clip to the next so I first tried the 'Fade in/out' behaviour on each clip at 30 (I'm working at 30fps so this is 1 second?) and nothing appeared to happen on the canvas.  It was only once I had the fade in time up to 100 when I started to see any fading on the canvas.  I tried an export to quicktime as a test, but all the clips that had a fade in didn't fade in at all the just cut.  So, I then went in and set all the fades manually - adjusting the opacity with keyframes only to have the same result as before.
    The exported movie does retain the transparent background however - Motion just seems to be ignoring the opacity levels I've set.  The only alternative I have found is to copy all my content across to my other machine and use Motion 4 - but that cripples that machine, certainly at this resolution I"m working at! Fortunately the clip I'm working on is only 30 seconds long....
    Anyone got any ideas? I've searched the board but haven't found anything...
    Many thanks

    Thanks for the reply!  I had checked to make sure everything was lined up but I double checked and indeed the fade in/out behaviour were indeed lined up to the clip.  The export was also set to Colour + Alpha.
    Upon further testing, as I don't really want to endure working at this resolution in Motion4, I've found my error - I didn't have the premultiplied Alpha enabled - I seem to remember I had a problem with that in the past hence turning it off.
    So that appears to have solved my problem.....

  • Problem with score movie

    Sorry my english, but I dont speak very well. I have a real problem with garageband. Whan I select "create new score movie", it appear a new menu to select a template, or something like that, and its impossible to create a new score movie. I have delte the all program, and reinstall, but the problem is the same. What can I do?

    I think you're confused about what you're seeing.
    Select "New Movie Score" and you're presented with a dialogue where you enter a name for the new file you are creating.
    So you're creating something, not selecting something.
    Hope that helps

Maybe you are looking for

  • Conflict between Logic pro 7.2.2 and DIGI002 using a macbook pro

    Hi. I'm running Logic pro 7.2.2 on a macbook Pro using a DIGI002 rack as audio interface. I experience an extremely bad performance from my computer and keep getting these warnings: "conflict between Logic Pro and external device (digi002)" and the a

  • Problem in calling standard view in nested view container

    Hi Experts, We have a standard SAP component in which there is view containing a TABStrip. In one of the tabs there is a View container. This view container calls another view containing a view container, which in turn calls another standard view of

  • I got a replacement battery, reset the SMC, and my computer will still turn off unexpectedly.

    Early 2011 15" Macbook Pro, 2ghz iz, C0*****F8V. My original battery wore down to the point where it would not be recognized as available and the computer couldn't power on without shutting down in a few minutes. I ordered a replacement battery, cert

  • VKOA Problem - Going to Dump

    Hello all, Can any one suggest hwo to over come problem with VKOA Dump....... I found a solution which says problem caused due to some change in the standard program SAPL089C, Some include Function is missing. the solution was for 3.0 version, can an

  • Object locked.  Urgent !!

    If one user is trying to create an InfoArea, and another also tries to create an infoarea with a different name, will creating the info area get locked? I'm facing that problem right now. even though i think i shouldnt, because we are using different