Flash - everything revolves around

All this is quite new to me - Fireworks, Dreamweaver and Flash.  Every book and video tutorial that I look at seem to have a different approach.  All I want to do is to click on the text and has the video playback in a blank browser page.  I have encoded an mp4 to an flv, imported video in Flash, given the file an instance name of vidPlayer, recorded, released it and exported to my site folder in Dreamweaver.  I linked each line of text in a .swf file and target file as _blank (which is supposed to open in a blank browser window).  Now, like many others here, he plays in the browser through Dreamweaver, but when actually going to the site, he plays not - or at least with the first link you can see that he transferred data, but I didn't think it was supposed to work this way.  I thought he ran everything just like iTunes.  Am I wrong?

Other tutorials tend to use the path of insertion/media, but this allows to insert the video on a page - that this route works well with the path I have chosen.

This is the site: http://www.pmcgvideoportfolio.info/ I mentioned earlier this morning, but no one answered.  I have probably not not the sentence my questions correctly.

What should I do here?  (The site file is on the edge of becoming a mess with all these different attempts...)

Thanks in advance

For best results, don't link to the SWF file.  Put your media on a single page web vanilla.

(1) open a blank HTML page in DW.

2) Save as Media1.html

(3) insert media > Flash Video > progressive download.

(4) find the FLV file in the folder of your local site.

(5) choose a look of the player.  Click OK.  Save the page.

(6) download files Media1.html and nobody to load on your web server (folder Scripts, SWF, FLV, etc...)

(7) change the link on your homepage to Media1.html

Repeat steps 1 through 7 to Media2 and medias3.

Nancy O.
ALT-Web Design & Publishing
Web | Graphics | Print | Media specialists
http://ALT-Web.com/
http://Twitter.com/ALTWEB

Tags: Dreamweaver

Similar Questions

  • Qosmio F50 - 10Z revolves around 80oc degress

    Hi guys,.

    Have a very little bit of trouble with my Qosmio F50 - 10Z, the GPU (9600M GT) revolves around 80 ^ o ^ c degrees when using, the system has been cleaned with air compress and is in perfect condition of the art, I use the laptop on a table computer as well to ensure air flow.

    Thank you very much.

    AFAIK Qosmio F50 is old enough laptop model and if you use every day on base maybe is time for cleaning professionals. Compress the air is OK but more of dust is just inside and cold air and cooling rack may be blocked by dust.

    I've seen repeatedly disassembled portable and it is raise what it looks like inside after two or three years of use. In my old notebook I found cat s hair.

    What is with cooling fan? It runs at maximum speed?

  • Flash Math... planet revolve around Sun

    I used a bit of math to do my planet move in a circle... but it's across from t he sun... I want to it to go behind the Sun... on the half back of the circle... How can I do

    You are welcome. the code I used trade depths when the plane of the orbit of Earth moves first above smile and when he is first below smile for each rotation.

  • Flash video, cut around a person (floating)

    looking for a way...   I would like to save someone who speaks and somehow cut around the person to use in Flash.   So I can fill the background or put the person on a picture or something.  Any ideas about the software or the people who can do this? Thank you very much

    probably the best way would be to use items first.

    Search this product and "green screen", you will find some tutorials.

    Basically, you shoot your video with a green screen behind a person.

    the video program deletes all green and leaves "space transparent."

    You can composite this video on anything and it will show through.

  • I would like to down load 6 CC lightroom, but I received only 4 cubes revolve around a long time, without sign down load. I have windows 7, my name and my password

    I would charge him lightroom 6CC. I had only 4 cubes around in circles for a long time without any sign of low load.i have my name and my password... my computer is windows7

    If you had purchased subscription, you can download via Adobe Creative Cloud app:

    Click on the link below and download the creative Cloud configuration file and use it to install the creative Cloud Desktop application.

    https://ccmdls.adobe.com/AdobeProducts/KCCC/1/Win32/CreativeCloudSet-up.exe

    Note:

    About 4 cubes, clear cookies n browser cache and try again or try using a different browser.

  • Flash api bug around design work?

    Hello, I came across a bug in api drawing flash where if you draw several things layers light opacity (24) get blotched especially if you use bitmap.draw (). I read somewhere that it is how the draw method has been coded, but I see no wrapper work. Any ideas?

    I am considering the implementation of a custom drawing (AS3 or PHP) method to create the blotched and images...

    Here are the solutions that work. Obviously, it is not limited in itself.

    Your methodology did not work because you redraw graphics for the same object. In order for alphas to stick properly, it must create new objects.

    The most important thing to make it work is set cacheAsBitmap true or draw the Bitmap. The two variants are presented below. If you change cacheAsBitmap false it stops working.

    With very low alpha (0.01), you will need to run more than 2000 iterations of the loop to make transparency resulting opaque. My material does not very well

    Also, even if it is not related to this topic, I noticed that you use instances of MovieClip. MovieClip is much heavier than the Sprite or shape. So, for this kind of testing, it is best to use the form - it is the lightest. Even in general, avoid as much as possible the MovieClip instances. Sprite must be the most used DisplayObjectContainer.

    So, here's the code that extends your methodology.

    This example uses forms directly with cacheAsBitmapset to true.

    var rad:int = 10;
    var s:Shape;
    
    var rct:Shape = new Shape();
    rct.graphics.beginFill(0xff0000);
    rct.graphics.drawRect(0, 0, 100, 100);
    addChild(rct);
    rct.x = stage.stageWidth * .5 - 50;
    rct.y = stage.stageHeight * .5 - 50;
    
    container = new Sprite();
    container.x = stage.stageWidth * .5;
    container.y = stage.stageHeight * .5;
    addChild(container);
    
    var sTimer:Timer = new Timer(100, 1000);
    sTimer.start();
    sTimer.addEventListener(TimerEvent.TIMER, onTick);
    
    function onTick(event:TimerEvent):void {
         rad += 5;
         s = new Shape();
         s.cacheAsBitmap = true;
         s.graphics.beginFill(0x000000, .02);
         s.graphics.drawCircle(rad, rad, rad);
         s.x = s.y = -rad;
         container.addChild(s);
    
         if (event.target.currentCount == 24) {
              var label3:TextField = textField("24");
              label3.x = 50;
              label3.y = 100;
              addChild(label3);
         }
    }
    

    This makes the bitmap:

    var rad:int = 10;
    var s:Shape;
    
    var rct:Shape = new Shape();
    rct.graphics.beginFill(0xff0000);
    rct.graphics.drawRect(0, 0, 100, 100);
    addChild(rct);
    rct.x = stage.stageWidth * .5 - 50;
    rct.y = stage.stageHeight * .5 - 50;
    
    container = new Sprite();
    container.x = stage.stageWidth * .5;
    container.y = stage.stageHeight * .5;
    addChild(container);
    
    var sTimer:Timer = new Timer(100, 1000);
    sTimer.start();
    sTimer.addEventListener(TimerEvent.TIMER, onTick);
    
    function onTick(event:TimerEvent):void {
         rad += 5;
         s = new Shape();
         s.graphics.beginFill(0x000000, .02);
         s.graphics.drawCircle(rad, rad, rad);
    
         var bmd:BitmapData = new BitmapData(s.width, s.height, true, 0x00000000);
         bmd.draw(s);
         var bm:Bitmap = new Bitmap(bmd);
         bm.x = bm.y = -rad;
         container.addChild(bm);
    
         if (event.target.currentCount == 24) {
              var label3:TextField = textField("24");
              label3.x = 50;
              label3.y = 100;
              addChild(label3);
         }
    }
    
  • HP printer LaserJet revolve around when printing

    Dear Experts,
    In my office we have a HP Laser Jet, logged in as a local printer with a laptop has the following features:
    -Intel Corei5
    -Windows 7 x 64
    -8 GB RAM

    The problem is that:
    When we print documents with this printer, it is always very slow extreme and that I have to point the mouse in the word box, it becomes will not respond...

    Here is what I tried did fix.
    1 uninstall the driver for this printer and load a new driver from HP official
    2 - windows update
    3 download from HP site Web HP printer doctor to solve printer problems

    but these ways still not help.

    But when I remove this printer and connect with another pc, it works very well...

    Another model of printers in this laptop as network printer work properly.

    What should I do?  Please let me know.

    Madam, Sir, I just got it works because the driver of HP does not, I tried to load the driver from the original DVD, it works fine now... and after this work... I had another problem is:

    Igfxext Module has stopped working

    There always bored at every windows startup or log on to windows...

    Could you help me please

  • After installing CC and trying to open the CC Isee the framework and a revolving around the circuit for hours.

    After installing and starting I see that the framework with a rotating Tower circuit for hours. No points for applications or any other sign.

    What I've done wrong?

    best regards from Ferdinand

    Hi ferdinand,.

    Please see the below help document to solve the problem:

    Does not open App | Wheels of progress turn continuously

    Kind regards

    Sheena

  • How to do everything scroll around the player

    How can I make for where the player moves and substantive movement with him. I also have an order of gravity for so, what is the code that tells the other objects to detect if the player moves, and if it moves in the direction of what ever... no they can be added to the arrow keys for movement. already tried and it does not, because when he goes things don't scroll.

    Add it to the guy_mc x enterframe loop, where the properties there are updated.

  • ICloud drive is slow for anyone else?

    I had this problem in the last days. It all started during the July 4th weekend. I tried to add a 34 KB PDF file reader iCloud on my end 2007 27 "iMac running the most recent version of Yosemite. When I did, he began the process of synchronizing the file to iCloud (with the symbol of the cloud after the name of the file), but he never knew. All I saw was a progress bar gray who moved for hours. So, I out of the iCloud folder and tried to download it directly through iCloud.com. This time, I saw the file appear on my Finder but with the brand "always download" (a cloud with an arrow pointing down) and once more a bar of growth that does not seem to move for hours.

    Long story short, after trying all the usual steps to solve the problems with iCloud, (turn on iCloud drive in the preferences system/turn off; exiting/entering my account iCloud; as well as some yet more "BOLD" steps such as the abolition of the CloudDocs folder in my library system, quit the 'cloudd' and 'bird' processes using activity monitor) (, then rebooting my iMac), I have now several files I had stored in iCloud drive being perpetually stuck "Download". Curiously, all these files are the app third party in their library respective App except for a RTF file created using TextEdit. The files that I saved in TextEdit on iCloud synced within a reasonable (although slow to KB of size of plain text files).

    Moreover, I also reset my modem wifi and cable, but without any change in the result.

    My Console is showing many connection errors, delays in waiting, and other stuff that I don't understand not everything revolving around iCloud associated services or processes. So, I think that something is happening with iCloud himself. I read a few threads on other sites that there is a possibility that this could be a problem with sandboxing, but I have no confidence the fix that was suggested, so I hope that someone here will have some clues or tips. If it's a matter of Sandboxing, this could explain why the files are not downloaded/uploaded are third-party applications.

    Yes, a couple other posts commented on files do not download or upload to iCloud by car since nearly 30 June - 4 July.

  • Adobe reader dc save troubleshooting

    Hello I made a form of player compatible adobe and when open in adobe reader dc and hit the Save as a box comes up and says Save as in the top right corner and a symbol of windows 10 returns in the middle and everything revolves around?

    Hi kevinl82487336 ,

    Try to perform the steps in this link:"save in" box pop up does not allow me to save the document.

    Let us know the results.

  • Java or adobe flashplayer, should I install everything first?

    is one of these prominent?

    It depends on what you want to do first. Adobe flash player is necessary for various online games and videos and does not accelerate the download of java. Java has uses that generally revolve around a better idea than the adobe flash player and was probably required by your computer to use in direct relation to your question. It will also not to accelerate download for adobe flash player. None of them are make from the point of view, but personally, I think Adobe has more uses in most common situations that java.

  • Flash layers

    Hello people, I really need your help!

    So I have a character of building a studio, it is the whole character on a layer inside it is the head and other parts of the body and inside these layers there are touches of different hands, flashes, revolve around the character.


    I moved all the keys to all layers up to now and I've picked up what I need to copy paste the key on frame 1 the parts of the building

    but when I created my second key to the character in box 5, t

    He's hitting inside parts of the body show me I'm at images 5 for both my key 1 and 5 of my body parts.

    So in short, when I change my 2 of my character keys he change my key 1

    Why? : ()

    You can change what is displayed on a key frame simply by going into the properties panel when a key is elected and changing the property of closure to the image you want to display.

  • Layer panel display in PSD & I import the file into Flash CC?

    Hi guys,.

    You guys at Adobe, you always did an excellent job. I love all of your software. Your reputation is awesome.

    However, I want to encourage you to add layer view panel in Flash CC in CS6.

    I just installed Dlash CC and I found out that I can't use it for what I do.

    The new features and the black interface are all great, I love them. The only thing that bothers me are the features that were dropped from earlier versions. It's really something that forces me to use Flash CS6.


    I am a developer of flash games and I do things all around active graphic preparation in hiking & animations in Flash.

    This is my workflow CS6:

    In Photoshop

    1. I prepare all the graphics in Photoshop. I also have the folder structure already in Photoshop so when I import into flash, everything is as I need and I did not bother with nesting of videos or distribution of symbols to the layers.

    Then in Flash

    1. I press the import library in Flash, locate the PSD and then I'll put stuff in the display of the control panel in the window layer import
    2. I select the layers I want to import (this way I don't have to edit the PSD in Photoshop whenever I import, moreover, sometimes I forgot to turn off the visibility of a layer and I do when importing)
    3. I put quality individually for certain assets (time-saving, but I'll check again, in any case in the properties of the active)
    4. I set the record (in the Center) of the symbol individually as I need for each symbol (huuuuuuge time saver, having is not the ability to do so is a killer CC for me)
    5. I put the name of the instances for the selected clips (saves time)
    6. I select the files I want to import as a symbol (huge time saver)
    7. ... now I press the import.
    8. then I'll animate everything (using the Motion Editor, who is also absent BTW but that's another topic)

    And this is a HUGE timesaver. Otherwise, I have to do it one by one, after importation.

    Almost none of this, I am able to do in Flash CC.

    Individual establishment registration is particularly important. That I regard as the biggest problem. Objects that are imported are different. And having to set the record eventually ruin the position of each symbol completely.

    This dream would be to have the features that were available in CS6:

    • Select the layers I want to import
    • addition of Instance names for selected layers
    • possibility to adjust the quality individually
    • option to make a unique symbol or import bitmap
    • option to make a folder symbol
    • option fors defining the (record) Center of the symbol

    And also, allows to make it even more impressive, think similarly to add more features :

    • option to import a symbol with the type - button / video / graphic


    Well, I just hope that all the features have been abandoned because you built CC Flash form scratch and just not had enough time to complete all the features.

    So, is it possible that you will develop in Flash CC?

    Thank you for reading my message.

    Kind regards

    Edit #1: Here I am adding screenshots with my thoughts.

    1.png3.png4.png

    2.png

    Adam

    Hi all

    The new version of animate CC (15.2) that brings to import advanced options for AI and PSD import dialogue.

    See here for more information: https://helpx.adobe.com/animate/using/whats-new.html#adv_PSD

    Update your copy of animate CC using the creative application of cloud and try it!

    Thank you all for sending your feature requests.

  • Flash on an old PC

    My parents computer is really quite old now, but since I'm em a new monitor they want to watch some of the things sometimes for something they could of missed on BBC iPlayer, and maybe a little Justin.tv thrown in for good measure, however, it is juddery as hell as soon as the flash takes more than half of the screen , fullscreen is almost unwatchable and seems chugging along at about 3 images / per week.

    1 GHz AMD Thunderbird
    7xxMB PC133 RAM
    GeForce 2 MX 32 MB
    Windows XP

    : E

    I know a new PC seems the most sensible option, but I'm hesitant since for some reason, the boot speed is incredibly fast and for general day to day stuff, that's probably as fast as my 3 GHz Core 2 Duo with 2 GB of RAM and for example last night I managed to execute a 720 p Quicktime video without any problem While the other buffer three in the background - super smooth and without problems.

    If, for example, I load an online casino too, they have a basic game in a pretty small window, the base map animations are laggy as hell, it doesn't make sense that something so simple would go so slowly.

    Is there anything else I can try before you buy just a new PC? It's Christmas coming so I guess now would be a good time for me to get one for them, but also weird as it may seem, other than Flash, everything works surprisingly fast (very surprisingly) on this computer.

    Thank you!

    Some flash content can be extremely hostile CPU. For example, video HD could play well on old computer as if it were a flash format of HD movie even a new powerful computer could not manage.
    The problem of casino game you mention is a typical example of heavy scripts: this may sound very basic, but in fact, it loads the CPU like hell, because he must calculate too much by image (which is something from 24 to 100 times per second)
    Thus, it is not the drive itself, this is what you play with him, bad designed flash content (and particularly bad or too script) will be heavy, there is no way around it.
    In any case, I advise you not to buy a new PC just because someone made a bad flash movie. The problems you mention could mean that there are loops endlessly in the scripts, so even a new PC doesn't help, you don't need to spend $2000 just to make sure.

Maybe you are looking for