Why "align" does not works in IE ?

I need to align my SWF file to right side. In HTML code I m
useing align=right ....
It works in Firefox, but not in IE 6 (7). I tried to load SWF
with java, but it also does not work.
IE 6 (7) does not know "ALIGN" ? How can I to align my SWF to
right side ?

Thank you for your help, but it is not what I need.
I dont need align SW to right, or left side of HTML page.
What I need is...
For example : When I use frames. Left frame is FLASH menu and
this SWF is bigger than frame - usualy SWF is displayed from left
side. But I need to align this MENU to the SWF right side.
This code works in Firefox, but not in IE :
<object classid="clsid:d42122....."
width="600"
height="580"
id="mySWF"
align="right">
<param name="movie" value="mySWF.swf" />
<param name="quality" value="high" />
<embed src="mySWF.swf" quality="high" wmode="transparent"
bgcolor="#ffffff" width="600" height="580" name="mySWF"
align="right" type="application/x-shockwave-flash" pluginspage="
http://www.macromedia.com/go/getflashplayer"
/>
</object>

Similar Messages

  • Why facetime does not working with any carrier in u.s expect att although the iphone is factory unlocked

    why facetime does not working with any carrier in u.s expect att although the iphone is factory unlocked

    Facetime only works via WiFi. Are you trying to set up Facetime with a T-Mobile account?

  • Why condition does not work.

    Hi Pros,
            in my bex query, there is a CKF OT hours, having a value 30.000, when I set a condition for 'OT hours = 30.000', but get no result out. could you please tell why condition does not work.

    HI,
    please check the "Characteristic Assignment" Tab in change condition window.
    In that tab default  selection as "All Characteristic in the drill down independently" change that selection  as "Individual characteristic and Char. combinations"  and choose the particular characteristic. for ex OT hours against employee means select employee alone.
    Regards
    Sureshkumar C

  • Why RSS does not work with my OS X 10.8.2?

    Why RSS does not work with my OS X 10.8.2? There was no problem before the upgrade to the Mountain Lion.

    By clicking on the RSS icon I'm getting a message:
    "No RSS reader is installed. Safari can't open the feed because Safari can't display RSS feeds"
    In Chrome I get xml file of the RSS site.
    Should I buy something what I didn't need with the Snow Leopard?
    Thanks for your help.
    Message was edited by: PZA22

  • I don't understand why ePrint does not work on emailing photos - Discard - Looked like a spam/ virus

    I don't understand why ePrint does not work on emailing photos - Discard - Looked like a spam/ virus

    Thanks. The problem was solved when I inserted a word in the subject line. Previously I was keeping it blank.

  • Why it does not work as Hyperterminal?

    I use Hyperterminal & setup:
    COM3, Baudrate = 115200, 8 bit, 1 Stop Bit, Parity = None, Flow = None 
    When I type the "*debug" & hit 'Enter' key in the Hyperterminal, it received & showed a lot of Ascii text continously on the dialog (then I close the Hyperterminal)
    But when I tried to the same with my vi (please see the attachment), when run the InQ & the Read String dialog box show nothing return!
    - I did use the NI Measurement & Automation Explorer to config the COM3 with 115200 successfully (just make sure NI driver can see it)
    - Even I change "*debug" or "*debug\r" or "*debug\n" or "*debug\r\n" it still does not work!
    Can anyone know why?
    Thank for any help
    Attachments:
    COM3 Serial Write and Read.vi ‏35 KB

    Remember that if you are going to use '\' codes your text control must be in the right mode. Right click  on the control and select '\' code display. If not you will only send \n as two normal ascii char. \n is most often the correct term char
    Besides which, my opinion is that Express VIs Carthage must be destroyed deleted
    (Sorry no Labview "brag list" so far)

  • Why this does not works??? (I use jsp: include. to contain two jsp files)

    I have a main.jsp, and in this main.jsp, I have two part, leftButton.jsp and view.jsp, I want to include the leftButton.jsp and view.jsp to main.jsp.
    The code of main.jsp is like follows:
    <%@ page language="java" contentType="text/html" %>
    <html>
    <head>
    <title>JSP include element test</title>
    </head>
    <body>
    <table>
    <tr>
    <td><jsp: include page="leftButton.jsp" flush="true"></jsp: include></td>
                             <td>     <jsp: include page="view.jsp" flush="true"></jsp: include></td>
                        </tr>
         </table>
    </body>
    </html>
    Why the include does not works? by the way, I embeded a flash.swf file in view.jsp.

    Hi Mellon,
    You might be better off using a JSPF segment for leftButton.jsp & view.jsp and the <%@ include file="relativeURL" %>.
    Be careful that the included file does not contain <html>, </html>, <body>, or </body> tags. Because the entire content of the included file is added to the including JSP page, these tags would conflict with the same tags in the including JSP page, causing an error.
    Note: It is conventional to put JSP segements under the WEB-INF/jspf/ folder so the file cannot be accessed directly by a URL
    Note: JSPF files end with .jspf, so your files would be leftButton.jspf and view.jspf.

  • Why Rpad does not work in non-English characters...????

    Ηι ,
    I have the classic table of emp in user scott....
    When i insert another row containing non-English characters the rpad function does not work......
    SQL> select ename , rpad(ename,12,'.') from emp;
    ENAME                          RPAD(ENAME,12,'.')
    SMITH                          SMITH.......
    ALLEN                          ALLEN.......
    WARD                           WARD........
    JONES                          JONES.......
    MARTIN                         MARTIN......
    BLAKE                          BLAKE.......
    CLARK                          CLARK.......
    KING                           KING........
    TURNER                         TURNER......
    JAMES                          JAMES.......
    FORD                           FORD........
    MILLER                         MILLER......
    SCOTT                          SCOTT.......
    ADAMS                          ADAMS.......
    ΠΑΝΑΓΙΩΤΟΥ ΠΑΝΑΓΙWhen i convert it to English characters then it works....
    PANAGIOTOU PANAGIOTOU..
    How can i make it to work....????
    I use 10g v.2
    Many thanks...
    Sim

    Hi ,
    SQL> select length('ΠΑΝΑΓΙΩΤΟΥ') from dual;
    LENGTH('ΠΑΝΑΓΙΩΤΟΥ')
                      10
    SQL> select vsize('ΠΑΝΑΓΙΩΤΟΥ') from dual;
    VSIZE('ΠΑΝΑΓΙΩΤΟΥ')
                     20When i issue the command
    SQL> select ename , rpad(ename,25,'.') from emp;
    ENAME                          RPAD(ENAME,25,'.')
    SMITH                          SMITH....................
    ALLEN                          ALLEN....................
    WARD                           WARD.....................
    JONES                          JONES....................
    MARTIN                         MARTIN...................
    BLAKE                          BLAKE....................
    CLARK                          CLARK....................
    KING                           KING.....................
    TURNER                         TURNER...................
    JAMES                          JAMES....................
    FORD                           FORD.....................
    MILLER                         MILLER...................
    SCOTT                          SCOTT....................
    ADAMS                          ADAMS....................
    ΠΑΝΑΓΙΩΤΟΥ                     ΠΑΝΑΓΙΩΤΟΥ.....It worked.... setting as 25 characters for padding.....
    Thanks....for the useful remark
    Sim

  • Why listeners does not work?

    I have the problem with starting sqlplus session.
    I have created database mybase.
    When I start listener with command:
    lsnrctl startand then I try to log into ma database with the command:
    sqlplus SYSTEM/MYPASSWORD@mybaseit does not work, although the listeners claims it's OK.
    BUT
    if the listener the application 'dbca' is started and I choose in it to modify my database without any changes (I suppose it just raises the oracle engine up),
    then every think works fine.
    Could anyone help me with the problem? How to work without the calling 'dbca' each time?
    Thank you.
    Waldemar

    It is an error! It should be added BEFORE:
    ...BUT
    if BEFORE the listener the application 'dbca' is started ...
    Waldemar

  • Why UDO does not work more  in SAP B1 P16?

    Someone of you has tried to use UDO in SAP B1 Patch 16?
    It does not work more what worked in patch 14 created by code.
    I have also created master and detail tables (from menu Options…)
    and the object by hand but I do not succeed to make to work it!
    Can you help me?
    Message was edited by:
            Andrea Scavazza
    Message was edited by:
            Andrea Scavazza
    Message was edited by:
            Andrea Scavazza

    Hi everybody,
    I am using SBO SP1 PL16 and I have problems with Update in Default Form.
    1. I create a Master Data Table and a Lines Master Data Table
    2. I create an UDO using Default Form
    3. When I test it I get the following behavior:
    a) When I add master data an lines at the same time, there is no problem.
    b) When I update any data in master or lines, I press Update Button and the message "successfully" is displayed but automatically it gets the old information
    c) I tried to find the right information in the table but it was not saved.
    Anyone has the same problem?

  • Why Skype does not work with the new OS for iphone

    Since I downloaded the new OS, skype for iphone does not work at all. Nobody can hear...

    Have you tried deleting the app then reinstalling it? If not, give that a try.

  • Why this does not work?

    Hi all,
    I got a very basic question. Why does not the constructor not_a_public() get called in the code below?
    class not_public
         public static void main(String[] args)
              System.out.println("Hello World!");
              not_a_public nap = new not_a_public();
    class not_a_public
    void not_a_public() {
              System.out.println("Not a public!!!");
    Regards
    Aditya

    Because that's not a constructor. Constructors can't have a return type. Remove the void and it will work. You also need to make one of the classes public.
    package sandbox;
    public class not_public {
        public static void main(String[] args) {
            System.out.println("Hello World!");
            not_a_public nap = new not_a_public();
    class not_a_public {
        not_a_public() {
            System.out.println("Not a public!!!");
    }

  • URGENT : why get_file_name does not work in forms 9i ?

    Hi all
    We use oracle 9i 9.2 Developer Suite in our organization ; and I am developing a forms 9i application which includes a get_file_name(save_file) built-in in a when-button-pressed trigger of a button.
    The problem is that when I run the application, then the save_file dialog box does not appear when I click on the button which calls the get_file_name built-in ? We had already tested this application with R6i and it worked succesfully.
    Why does it so ?
    Thank you very much indeed.

    Hello Andy!
    I supossed that you are using Webutil 1.0.2 to do the operations in the client machine...In Webutil the get_file_name was changed by client_get_file_name.
    If you aren't using Webutil download it from:
    http://otn.oracle.com/software/products/forms/files/webutil/webutil_102.zip
    When unzip the file you can read the "Familiarization Manual" (doc folder) and installa and configure Webutil to do the client-side operations that you require.
    Hope its help
    Beatriz.

  • IPad 3 Why 3G does not work after being on WiFi

    When I take my iPad 3 out of my house, I have to reboot it to get a 3G connection. The 3g icon shows that it is connected but when I try and access any connection it says no internet connection. My iPad 1 seemed to work ok. I've also tried putting it in Airplane mode and back again but this has no effect.
    Any suggestions please? Many thanks.

    All of you are not ALONE ! Most of us here in Singapore be it with Singtel, Starhub or M1 3G network, all of us with the "NewiPad" are sharing the same pain of this "Cellular data not connected" problem. When this problem occurred, one must power cycle or at least reset network setting to get the 3G data connection work again. A daily of power cycle 3~5 times for my new iPad was need. All methods like below tried but still DOES NOT fix the problem.
    1. Reset Network setting.
    2. Reset iPad back to default.
    3. Changed Singtel APN name from "e-ideas" to "internet" still the same.
    4. Changed a complete brand new sim card.
    My current fixed was, called up Singtel ISP to reset my iPad 21Mbps 3G Line in their system. In my end, I need to power off my new iPad to complete the cycle. So far it has been working fine for 42 hours now.
    By looking at the "General > About > Cellular Data Number" was "Unknown". This lead me to think it might be a bug in current new iPad iOS 5.1. To be more precise, it might narrow down to the "Big & Bad Qualcomm Radio chipset Driver" problem?
    If that was true, jess.. I truly dislike "Qualcomm inside" devices. It make me come to remembered Dopod/HTC D810 the most funniest released WM device in history. When D810 first hit the market, it does not features any gps function at all when in true fact D810 did come with "Qualcomm" GPS chipset built-in since day 1. Dopod/HTC took more than 6 months to release a very crippled firmware that included Qualcomm GPS chipset driver with lots of trouble and start announce all the customers in the world, including those who's bought D810 more than 6 months ago. What a joke!
    That's not all the "Qualcomm" funny facts. They then hit the wall again with Dopod/HTC Tytn-II, another WM cellphone with "Qualcomm 3D Graphic chip built-in, BUT WITH NO 3D DRIVER BUILT-IN". Hahaha.. what another big "QUALCOMM" historical joke of all time.
    Anyway, hopefully Apple can found the actual trouble or fixed "might be Qualcomm driver problem again?" in the next iOS 5.2 release.
    Until then, I've wishes everyone with the cellular data connection trouble eventually manage to solved your headache in any solutions provided by many and living happier with your new iPad, the same for me.

  • Flash plugin works well on Chrome, but why it does not work on Firefox? :(

    I've updated Flash Player quite a number of times, but whenever I try to play a video on Youtube or any other websites, the same line of words appears asking me to download Flash Player. I've got the Adobe Flash Player installed not long ago and it works just well on Chrome. The flash plugin in Internet Explorer is not working too..
    please help ~

    Google Chrome comes with its own version of the Flash Player plugin.
    Your system details list doesn't show that the Shockwave Flash plugin is installed and enabled.
    You can find the latest Flash player versions for Firefox on this page.
    *http://www.adobe.com/special/products/flashplayer/fp_distribution3.html

Maybe you are looking for

  • Why is the power nap not supported by my 2012 macbook pro 13" ?

    I tried to download the power nap update from the apple website but it keeps on saying to me that my laptop is not supported. I just downloaded the OS X mountain lion. I read in the website that it is supported by macbook pro (retina. mid 2012) does

  • Mail not send to multiple users even Multiline container element has value

    Hi, I have collected the AGENTS to send mail notification in a multiline container element using a background step. The method collect the agent and return in to a container. I use this container in the following mail step using expression. The type

  • Fetching data slow from MSEG and BSEG table

    Dear Experts, Out  MSEG and BSEG are major tables which are very slow and taking 5-10 minutes in fetching just 20/30 records. Why this table taking more time and how I can fatch fast  data from these table. regards

  • Photo library way too big

    ive delet almost all the photos from my iPad, and yet the photo library is still 4.1GB?  How so?  The deleted photos album is empty - so are my photos being stored somewhere secretly?

  • Solaris Dektop über Windows Remote Desktop freigeben

    Hallo, ich habe folgende Frage: Für eine Schulung für FachinformatikerInnen (AE und SI) zum Thema Unix/Linux möchte ich den Solaris Desktop präsentieren. Gibt es einen Client für Remote Desktop und welche Einstellungen muss ich vornehmen, um ihn zu a