Align text merchandise a Flash animation [was: Stupid Question?]

Bear with me, im pretty new to dreamweaver and web design.

I'm workin on a site and I need to know in the maincontent

How can I get content to sit next to each other.

I have a flash movie and I want to put the text beside him,

by default, the text is located beside it, but instead of starting at the top of the page

on the same line where is the top of the video, the text begins downstairs next door

the video, so there is a large white space between the top of the site and the beginning of the text.

I use floats so that it can align correctly or is there another way?

Sorry if I've explained very well

Thanks in advance

[Is not a stupid question, but a subject line empty - edited by Moderator]

Hello

First thing to do is to place your text inside the relevant tag)

or

/

). Then join this in a div in the main content div and float right, application of margin, padding, etc., depending on the needs.

PZ

Tags: Dreamweaver

Similar Questions

  • We use Flash Pro CC creating animations with legends and export to html 5.  We must translate the captions in other languages. How can we download translation of texts in our flash animations so we can use them in html5 using CreateJS?

    We use Flash Pro CC creating animations with legends and export to html 5.  We must translate the captions in other languages. How can we download translation of texts in our flash animations so we can use them in html5 using CreateJS?  I use the Flash on a Mac OSX 10.10.3

    Are you familiar with JavaScript?

    It does not completely answer your question, but the text displayed on the screen from any language (ActionScript/CreateJS / [insert the programming language]) generally all following the same path. Each language has a file stored in some form of key = value style, named through the language and the country of your choice, for example en_US.json

    Any language would allow the user to choose regional settings. The application would then grab the appropriate file and everywhere where the text is needed, the script must be using a (usually global or singleton) variable/service that can get the text of the requested key.

    for example if I wanted a user to have a confirmation of dialogue who said 'are you sure?"with buttons for 'Yes' and 'No', I would have (for me), an Englishman, USA base file en_US.json with these values, for example:

    en_US. JSON example:

    {

    'CONFIRM_YES_NO': ' are you sure?

    'YES': '' Yes. ''

    'NO': 'no '.

    }

    Then you use simply JS/AJAX to read this file. You analyze, or simply JSON decode in an object, or manually, depending on what suits your needs. When you want to display any text, you use the object (variable, maintenance, etc.) you have stored these values.

    for example calling to display function confirm dialogue:

    Nickname... but if you understand...

    and this comes from jQuery UI (see here)

    function confirmDialog() {}

    $(«#dialog-confirmer»).dialog({)

    Title: LocalizationObject ['CONFIRM_YES_NO'],

    buttons:]

    {

    text: LocalizationObject ["YES"],

    Click: function() {/ / do something for 'yes '.

    }

    {

    text: LocalizationObject ["NO"],

    Click: function() {/ / do something to the 'no '.

    }

    ]

    });

    }

    Please consider loosely. 'LocalizationObject' is a variable object or service that returns the appropriate text for the key that you provide. In this case, he provided the key 'CONFIRM_YES_NO', 'YES' and 'NO', which must be on the right answer for this key, localized.

    Again, this is not a manual on how to do it via Flash Pro but it's the general conceptual way you could do it in any language. There are a variety of other ways to do it, but it's a very simple way, as long as you keep your key names at least wake up verbose. A key name such as LocalizationObject ["ABC123"] is not really tell you what the key can be referred. Also nest them contributes greatly, as LocalizationObject ["UI'] ['DIALOGUES'] ['CONFIRM'] ['YES_NO'] = ' are you sure? It just shows I nested the title of the dialog within the user interface, because it is the text that appears in the user interface rather than content. Then inside dialog boxes that may contain a variety of different dialog boxes. Then inside her CONFIRM type of dialogue. Finally, the type is a dialogue YES_NO type (as opposed to OK_CANCEL or JUST_OK, etc.). Whole set makes it easy to understand what the text of reading: UI YES_NO confirm DIALOG boxes.

    I hope that from here you can see that you need to review everywhere you display text on the screen and centralize it in a sort of object (function or variable) of your choice. You must store the external language files to prevent unnecessarily load the other languages as well as an easy to modify Setup.

    The rest is just using basic JavaScript.

    Just be ready for the most difficult challenge. At least for me. The size of the text in several languages is very different, and in some cases requires the loading of special fonts. This can make layout in a very difficult dynamic environment. Always thinking all text how big or small can be in any particular and plan field on this size more and shrink so that to handle this situation correctly.

  • Flash animation does not correctly load in Internet Explorer only

    I have a simple flash animation which through text and pictures. I have a (AS3) preloader on frame 1, which sends the playhead to the frame 2, once the film is loaded 100%. For some reason, in Internet Explorer, the preloader bar will load completely, but fail to move the playhead to the frame 2, so it will just stay here with prestressing bar to 100%. However, this does not happen every time. For example, at the present time, the flash animation will play when I initially on the site, but when I click on another page, the same flash header (same swf on each page) just goes to show the preloader bar but will not play the rest of the film. Didn't help not reload the page. Close the browser and reopen it don't help. Clearing the cache of the browser did not help either. Thus, the flash animation will play correctly on the first page of the site I'm going to (be it the home page or another page) but then when I go to any other page that has flash animation, he won't play, he's there with the preloader bar showing. And then when to return to the original page, I entered the site, the flash movie play there anymore, either. I have not seen this problem in another browser than Internet Explorer (6 and 7). I checked in Firefox on Mac and PC and Safari on Mac. I use flash player 10.0.22.87 on my Mac and PC. The flash animation was made in Flash CS3, flash player 9, actionscript code 3.

    So to see the problem, here in Internet Explorer: http://demo.matthewpavkov.com/adairsolar . Wait for the movie to load and start playing. This works. Then go to one of the other pages and you will see that the same swf will not play. Go to the homepage, the swf file does not play.

    Here is the preloader code:

    import flash.display.*;
    this.stop();
    
    this.loaderInfo.addEventListener(ProgressEvent.PROGRESS, PL_LOADING);
    
    function PL_LOADING(event:ProgressEvent):void {
        var pcent:Number=event.bytesLoaded/event.bytesTotal*100;
        lbar.scaleX=pcent/100;
        lpc.text=int(pcent)+"%";
        if (pcent>=100) {
            this.gotoAndStop(2);
        }
    }
    

    , If I remove the preloader ActionScript flash animation plays correctly. You can see it here: http://demo.matthewpavkov.com/adairsolar/no-preload

    The .fla is available for those who want to take a closer look.

    mjjp,

    Can just that in IE, the ProgressEvent never triggers - because your content is already cached.  See what happens if you add the following lines again (end of the sample code):

    this.stop();
    
    this.loaderInfo.addEventListener(  ProgressEvent.PROGRESS, PL_LOADING);function PL_LOADING(event:ProgressEvent):void {  var pcent:Number=event.bytesLoaded/event.bytesTotal*100;  lbar.scaleX=pcent/100;  lpc.text=int(pcent)+"%";  if (pcent>=100) {    this.gotoAndStop(2);  }}if (this.loaderInfo.bytesLoaded >= this.loaderInfo.bytesTotal) {  this.gotoAndStop(2);}
    

    See what's happening?  In this way, even the Manager ProgressEvent never triggers, you always compare the bytesLoaded, bytesTotal property property.

    David Stiller
    Adobe Community Expert
    Dev blog, http://www.quip.net/blog/
    "Luck is the residue of good design."

  • Flash animations will not play after the flash update

    Hello

    It's really weird, but flash animations on most sites (sites like Ustream) will not play after that I updated the flash player. The funny thing is that on youtube play very well. I've tried disabling the addon of shockwave, relocation, etc., but nothing works. This problem is with firefox only because as the Chrome and Explorer the flash player works fine.

    Thank you.

    Thank you. In fact, it was not necessary because I have disabled protected mode flash and who did it. However, seems like it is not the best option but average tiem, I guess I have no choice.

    Thank you.

  • Bad job first elements 10.0. I made a flash animation and has decided to add sound in first - Elements.It turned jerks. How to fix this error

    Bad job first elements 10.0. I made a flash animation and has decided to add sound in first - Elements.It turned jerks. How to fix this error

    Dear Sirs. I ask you to give special attention that the frame rate vidio input and output cannot exclude more than 1 frame, otherwise the image will shake and blurry text. It is preferable to use the HD 720 P 25 sincerely Mikhail Osipov

  • 8.1 Windows and IE 11 will not play test the Flash animation

    I am running a fully patched/updated updated copy of 8.1 of Windows and Internet Explorer version 11 (on the desktop)

    If I try to run test movie to http://helpx.adobe.com/flash-player/kb/flash-player-issues-windows-8.html , I get the following message:

    Flash.jpg

    I've checked and checked that...

    • Flash Player is enabled
    • ActiveX filtering is disabled
    • Internet Explorer runs the latest version of Flash Player

    Can anyone give me any suggestions as to what I could try to fix this?

    Any help would be appreciated.

    IE11.jpg

    Neil_O wrote:

    Thanks Mike,.

    The context in which it was that we have a web site where we have historically used .swf and .flv movies.  A couple of customers have "complained" that they could not see the movies and, when we have tried on Windows 8.1 IE11, nor could I.  This leads me to the Adobe test page, where I only saw the film of test if I have activated the Caompatbility Mode (as you suggest - thank you).

    Our web site will not make .swqf or .flv movies regardless of the mode of Campatibility.  Next, I suppose, is to see if we can at least restore some features - even if it is 'encouraging' users to enable Compatibility Mode.

    SWF and SWQF even become obsolete.  A year ago I stopped using video and Flash animations and moved to HTML5.

    1. they need any plug-ins. Even with IE11.

    2. they are mobile and Internet accessible from more than half of all traffic is now in mobile phones or tablets (which cannot and do not run Flash), it makes no sense to develop content that is invisible for many viewers.

    Compatibility mode is that only a "band-aid" for an important screws upward to MS. HTML5 eliminates the need for Mode of Comaptibility, eliminating the need for plug-in that they SAMU changes inadvertently disable.

  • After the update of the Mavericks, I'm not able to sync audio in a flash animation.

    Hello

    After the update of the Mavericks, I'm not able to sync audio in a flash animation.

    I did:

    1 has created an animation

    2 Adding audio to the timeline

    3. Sync selected in the sound Properties window.

    According to what I've done was to adjust the animation to the sound and you press 'enter' plays the audio, it actually creates a noise.

    Hope you guys have my problum

    Please notify.

    Kind regards

    Rabi Raja

    The new update (version Flash Pro CC - November 2013) which has a fix for this 10.9 OSX sound hum issue is now available for you. This update of Flash CC will update your version of flash to 13.1.0.217.

    You can update the application Adobe Creative Cloud or Flash Pro CC help-> Update menu.

    You can find more information about the update: http://helpx.adobe.com/flash/using/whats-new.html

    Thank you

    -Reynaud

  • Implementation of my flash animations in my game

    I'm working on an independent game project.  I'm the artist, and my partner is the programmer.  We are using java.

    I have been using after effects to create my animations and export my creations to a png sequence so that my programmer can simply sequence through them to make the animation in the game. Well, since our graphics are HD (at least, they are not SNES) this method has become rather taxing on our loading time.  We have only a fraction of the animations, we plan to have and load time are get up for a minute.

    So, I was watching the games that usually have the same kind of graphic and animation that we are going to, and I found Castle Crashers.  It turns out that they use flash.  So, I'm looking to Flash to solve my problem.  Problem is, I'm new with it, so I know exactly how you GET your animations made in the game without going through a png sprite sheet.

    By the way - important detail - all my assets animation are files HAVE, so that they are vector images (at least until they're pixelated in sequels).

    Basically, my question is - is there a way traditional or generally accepted rendering of flash animations in a game?  I know that Castle Crashers stores their .swf animations, then when the game is loading, she rasterizes them.  It's way above my head, and they only did it to conserve hard drive space.  This isn't my problem.  Loading time is my problem.

    While flash can be used to create vector graphics (bitmap graphics) and it does not (IE, there is no point in using flash) because flash is a lower quality tool (illustrator to create less than photoshop and vector graphics to create bitmap graphics). and that's the only way flash fit into your workflow if you continue to use java.

    Flash is used to create games and applications (with relatively small file sizes and made effective) displayed in the flash player in a browser, mobile or desktop.  (the latest versions of flash also have a rudimentary ability to create applications html5.)

    I understand that you have encountered a problem with java, and a solution would be to stop the development of java and create your flash game, because the reduced file size is one of the main advantages of the flash animation. but you're not going to realize any benefits of small file size using the flash in your workflow and still create a java game.

  • Right-aligned text entry area

    I create an interactive demonstration that requires the user to enter text in

    a field. The standard text for the field simulated entry is

    right-justified. Is it possible to text in a right-aligned text

    input box?

    Darin

    Hi Darin,

    Create a button and submit them to the subject, is paused the slide. You wonder if you want to post? Or you want to just check if something was entered? In both cases, you can use the variable associated with the TAW, that is the reason why I made for the blog. If you have any questions, will try to help.

    Lilybiri

  • Flash animations stop after a random time

    The problem I encounter is that the flash movie files (each site) play for a moment or two, then will stop with little "loading" symbol turning constantly in the center of the screen. Flash movies used to work without problem, but in recent months, she went from does not to doesn't work do not at all. to a perhaps related problem sometimes downloads stop after a certain period of time and also seem to "hang on" to a random location. If I pause and then charging that restart the program or anything that will usually complete the download. It doesn't happen often but it happens. The flash animation, however, thing every time - no matter what browser I've tried. (Firefox, IE, IE with no Add-ons and Chrome in any case.)

    I tried the solutions I've found all over the internet, including Adobe and Microsoft forums, nothing helps. I unloaded flash with the Adobe uninstaller and reloaded flash. I tried different versions of flash - with and without a firewall on. I made sure I use the 32-bit version of Internet Explorer and even tried to run in "Administrator" mode. I've updated all the drivers that I can upgrade. I used a check of the register as a last resort. I even used the Dell partition to return my computer to the condition it was when I bought it and that has not changed anything either.

    Everything I've tried has made zero difference. In the hope that someone will have another idea for me to try, I put all the stats of my computer that I can think of below.

    Qwest internet operating at 20mbps

    Flash 10.1.102.64

    Shockwave 11.5.9.615

    Microsoft Security Essentials

    Tried both IE 9, IE with no Add-ons, and now have IE 8 when I restored it the image of the partition

    Name of the OS Microsoft Windows 7 Home Premium

    Version 6.1.7600 Build 7600

    System manufacturer Dell Inc.

    System model Inspiron 560

    Type of system PC x 64

    Processor Intel (r) Core (TM) 2 Duo CPU E7500 2.93 GHz, 2936 Mhz, 2 Lossnay, 2 logical processors

    Graphics - Intel G45/G43 Express Chipset

    -Realtek High Definition Audio sound

    Version of the BIOS/Date A00 Dell Inc., 06/10/2009

    SMBIOS Version 2.6

    Layer of HAL Version = "6.1.7600.16385".

    Physical memory (RAM) installed GB 8.00

    Total physical memory 7.96 GB

    Available physical memory 6.94 GB

    Total virtual memory 15.9 GB

    Available virtual memory 14.4 GB

    File of the page space 7.96 GB

    Hi, thanks for the info of Kill bits. I think an uninstallation/installation may be in order. However, I not to do this use the router, unplug it and use the modem directly.

    Use the administrator account.

    Download and SAVE to your desktop, the uninstall program:

    http://kb2.Adobe.com/CPS/141/tn_14157.html

    Download and SAVE to your desktop, the installation program to use IE installer EXE

    http://www.Adobe.com/products/flashplayer/fp_distribution3.html

    Close all the browser windows, you do not want to look on your desktop.

    Disable Messenger services, like yahoo, msn, etc. in the tray (area near the clock)

    Launch the uninstaller and when you are done, Reboot (restart) your computer.

    Run the installer for IE, run Setup for FF and when you're finished, restart.

    Then go to this site and test:

    http://www.Adobe.com/software/Flash/about/

    You can print these instructions to make it easier to follow. If you have any questions, let me know.

    I hope that since so many changes have been made, that a clean uninstallation/installation can run.

    And if he does so before using the router, that would be a problem. The Qwest ISP cannot be ruled out, but if you still have the problem after that, so needs.

    Thank you

    eidnolb

  • Flash animation is empty

    Hello

    I created a simple test animation.  It is approximately 300 pixels wide and 70 pixels high with nothing else than an occurrence of text that I hosted on the left side of the banner to the right of the banner.

    I've played the Flash animation using CTRL ENTER, and it plays very well.  However, when I export in any format (.avi, swf, etc.) and then open the exported file, it seems to play, but the text is missing.

    What I am doing wrong?

    Thank you.

    Keith

    If you are using a dynamic textfield then you will need to incorporate the police into the TextField.  Try to use a static textfield and see if it appears.

  • Spaces on the right aligned text

    Our users are trying to use spaces like text aligned to right fill but it does not work.

    I did a test with the same text in two supports various good text aligned, the second container contains the text that was in the first container as well as several nonbreaking spaces at the end.  When I debug the results of StringTextLineFactory.createTextLines the widths of the two lines of text are the same.

    It seems as if it were a question of FTES since FTE has no concept of right-aligned text, I could see it just remove extra spaces at the end of the text, but that's just a guess.

    It also looks that RichEditableText does the same thing.  In this video I go "asdf" then a bunch of places and it's not until I get another character that the blanks are recognized. http://screencast.com/t/NGMzZmNk

    You're right - spaces at the end of a line are ignored for the most part. This is consistent with most of the drivers of text (TextField, InDesign, Word). Why not use paragraphEndIndent?

  • Next to restless Captivate flash animations

    I use Flash animations in Captivate 3. The animations are published for Flash Player 6 before being incorporated in Captivate. The Captivate project is published for Flash Player 9.
    The animations look good in the Captivate SWF published when I run the SWF file directly into Flash Player. However, if I run the SWF in a browser (I tried both IE & Firefox, have Flash Player 9.0.45.0), the animations look very slow and jerky. What could be the reason?

    Kind regards
    Mohsin

    Kevin & Rick,

    Thanks for your replies. I diagnosed the problem. He had nothing to do with frame rates.
    What was actually happening, it's that my Captivate SWF was originally 1024 x 768, but when you open it in an HTML element, I was it NOT load at 100% of its size. Instead, I was loading to 880 x 660 in the my HTML OBJECT tag, which caused the outcome. Even when I was opening the SWF directly using IE, IE would resize the content to display fully, causing the animations play within the scale. This, somehow, makes look jerky.

    See you soon!
    Mohsin

  • Urgent! Table HTML - dependent screen browser Flash animation cell

    Hi all

    I wonder if anyone has experienced the same problem I have (note, Windows XP, Dreamweaver 4).
    Let's look at the HTML (gross) attached: a simple HTML table to a column and two rows is built to contain a link to the banner image and a link of banner animation Flash in each cell consecutively.

    The Flash animation works normally when the HTML page is seen in IE and Opera, until either it is placed inside a table cell.
    Inside the cell the flash animation seems to disappear, but I suspect that it is reduced to a pixel of image 1 in height, as it shows pretty much using Opera.

    Is there something I'm missing? Of course, the code looks right to me - maybe there's a browser setting I'm missing?

    Any help apprceiated - I need to implement this code...

    DAZ

    Hi Alan,

    Don't think it was the problem (percentages used nationally to the users browser?) ... If you have set thinking me!

    Tired before, only so just remember that when I was experimenting with the definition of the properties of Table image was sometimes visible!

    Short version: what formatting a cell that contains a Flash animation doesn't do not fill the field H or use % (even if you are supposed to!), use instead the pixels - Flash image collapses / disappearance. Blank and % are fine anywhere else...

    (I type a long answer before, but it was eaten by the monster of forum )

    Someone ' one/i will be probably understand why it is so or maybe I just rediscovered the wheel here - but this is not really important now - because my Flash animation now makes the same on IE, Opera and FireFox!

    So thank you for your help!
    Daren

  • disable the flash animation

    Hello! I have an existing flash movie and the video that was included in it has sound, just the flash animation is not touching anything I want just start cutting muted.

    Thank you!

    great! Global zero sound! Thank you very much!

Maybe you are looking for

  • Qosmio G30-117: HD DVD support?

    I bought the qosmio G30-117. It plays HD DVD discs? If this isn't the case, I can play HD DVDs doing the firmware update? Post edited by: dr.amon

  • My iPhone 6 is leaking. What could be?

    I noticed that my volume button was so I removed my case and saw that my iPhone was a leak this weird liquid. I bought about 5 months ago, so I was shocked to see this. I go to the apple store tomorrow as well.

  • Cursor jumps while typing on the Satellite A100

    While typing the cursor around the text breaks, it is virtually impossible to write everything you start typing anywhere. Its boring. I can't do anything normally. Help, please.

  • Equiem L40 XP Downgrade, Wileless LAN Card problem

    After the long task of finding the decommissioning WXP Vista drivers, one pilot left, the wireless card. It seems to be a long beach of problems with that, downgrade then the WLAN doesn t work. I've scoured the forums and tried everything, formatted

  • Delete the results if the user wants to redo the last test

    Hello I'm trying to implement a local user to ask them if they want to repeat the last test that failed. So then... Delete the result, and then rerun the sequence. Can you see what I'm doing wrong? Chris