Remove ActiveX borders

Hallo friends,
I am new user of Dreamweaver and recently i had to deal with
the following problem:
I am developing a page for one client and in that page i
included an swf file.
Well the page runs just fine, but when the cursor comes over
this specific object - i mean the swf file i inculded to the page -
then a thin white border appears around the object and the cursor
changes shape to the "known" hand.
If the visitor "clicks on" then this border disapears and
never shows again, except if the visitor refresh the page.
If anyone of you know a script or a way to remove this
"border" in order never to show when a user opens this page, please
post me the solution and the details how to accomplish it.
Best regards

It's IE-only behaviour as a result of changes Microsoft made
several
years ago to their browser, regarding how Active Content
(Flash, Quicktime
etc)
is handled, after losing a high profile court case. (They
plan to reverse
this behavior soon, as a result of the case being appealed
and overturned)
http://blog.deconcept.com/2005/12/15/internet-explorer-eolas-changes-and-the-flash-plugin/
Background:
http://en.wikipedia.org/wiki/Eolas
See also
http://www.adobe.com/devnet/activecontent/
If you're running Dreamweaver 8.0.2/CS3, the fix is already
built into DW's
interface.
If not, try
http://blog.deconcept.com/swfobject/
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"kelebribor" <[email protected]> wrote in
message
news:fohcdr$30$[email protected]..
> Hallo friends,
> I am new user of Dreamweaver and recently i had to deal
with the following
> problem:
> I am developing a page for one client and in that page i
included an swf
> file.
> Well the page runs just fine, but when the cursor comes
over this specific
> object - i mean the swf file i inculded to the page -
then a thin white
> border
> appears around the object and the cursor changes shape
to the "known"
> hand.
> If the visitor "clicks on" then this border disapears
and never shows
> again,
> except if the visitor refresh the page.
>
> If anyone of you know a script or a way to remove this
"border" in order
> never
> to show when a user opens this page, please post me the
solution and the
> details how to accomplish it.
>
> Best regards
>

Similar Messages

  • How do you remove the borders from a table item

    In OAF I have a set of data stored in a table that I must display. However, I must make it look like it is not in a table. I can't use a tablelayout because it is a set of records and records are constantly being added. How do I remove the borders and the pagination from the table?

    I think you can't do anything about this.
    Change you design as per Browser Look and Feel standards.
    http://www.oracle.com/technology/tech/blaf/index.html
    --Prasanna                                                                                                                                                                                                                                                                                                                                                       

  • Remove window borders in gnome?

    Is there a way to remove window borders in gnome for certain apps?

    http://www.gusnan.se/devilspie2/ should let you do that.

  • •When cropping images, completely remove the borders to reduce excess light interference.

     In the maunual, this is the last line in the instructions.  "When cropping images, completely remove the borders to reduce excess light interference."
    What does this mean?  Do you have to remove the fromes from the slides before scanning or does the attachment hold the slide in it's frame?  What does cropping images refer to -  the digital copy or the original frame that you are copying from?

    Hello Gingerlee, and welcome to the HP Forums, I hope you enjoy your experience!
    I see you have questions about cropping options.  I would love to try and help you, but I do need a little information first. I am linking a few HP Support documents below that will show you how to find your product number. Also, please include which operating system you are using. Also, if you're using Windows, please include whether your operating system is 32-bit or 64-bit. With this information and the product number we can provide you with accurate information.
    How Do I Find My Model Number or Product Number?
    Mac OS X: How Do I Find Which Mac OS X Version Is on My Computer?
    Which Windows operating system am I running?
    Is the Windows Version on My Computer 32-bit or 64-bit?
    Please let me know what you find.  Thanks for posting on the HP Forums!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • How to remove ActiveX control on my website

    Hi~
    When I create a Website, I used a behavior (pop-up menu)
    function on my main menu bar. When I run the webpage with IE, it
    shows ActiveX control message on the top of the webpage showing
    “This site might require the following ActiveX control
    How can I remove or avoid this message appearing on my
    website?
    Please give me an advice.
    Think you.

    ghleo wrote:
    > When I create a Website, I used a behavior (pop-up menu)
    function on my main
    > menu bar. When I run the webpage with IE, it shows
    ActiveX control message on
    > the top of the webpage showing ?This site might require
    the following ActiveX
    > control ? ??.
    This occurs only during local testing. It doesn't happen when
    the page
    is deployed on the Internet.
    To get rid of the message for local testing, use Commands
    > Mark of the
    Web in Dreamweaver CS3. If you're using an older version of
    Dreamweaver,
    Google "mark of the web".
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Ole Word Automation, Remove Table Borders

    Hi All,
    I have created a new word document with a table of 3 rows and 3 columns using the ole. I want to remove vertical lines. The borders property enable only shows or disables the borders. I want to remove any border I want.
    I recorded a macro at Word. But I couldn't managed to adopt in ABAP. I will be glad if you can help. Thanks.
    Word Macro :
    Selection.Borders(wdBorderRight).LineStyle = wdLineStyleNone
    ABAP code :
      GET PROPERTY OF gs_actdoc 'Tables' = gs_tables .
      GET PROPERTY OF gs_selection 'Range' = gs_range .
      CALL METHOD OF gs_tables 'Add' = gs_table
      EXPORTING
      #1 = gs_range
      #2 = '3'
      #3 = '3'.
      GET PROPERTY OF gs_table 'Borders' = gs_table_border .
      SET PROPERTY OF gs_table_border 'Enable' = '1' . "With border

    Hi,
    I've found a solution.
    After creating table and enabling borders, you can select cells and delete borders.
      GET PROPERTY OF gs_actdoc 'Tables' = gs_tables .
      GET PROPERTY OF gs_selection 'Range' = gs_range .
    **--Adding a table with 3 rows and 3 columns
      CALL METHOD OF gs_tables 'Add' = gs_table
      EXPORTING
      #1 = gs_range " Handle for range entity
      #2 = '3' "Number of rows
      #3 = '3'. "Number of columns
    **--Setting border attribute for the table
      GET PROPERTY OF gs_table 'Borders' = gs_table_border .
      SET PROPERTY OF gs_table_border 'Enable' = '1' . "With border
      CALL METHOD OF gs_table 'Cell' = gs_cell1
      EXPORTING
      #1 = '1' "first row
      #2 = '1'. "first column
      CALL METHOD OF gs_cell1 'BORDERS' = borders
        EXPORTING
        #1 = '2'. "1 top, 2 left, 3 bottom, 4 right (border)
      SET PROPERTY OF borders 'LineStyle' = '0'.

  • How to remove black borders from picture?

    http://www.homeofthenutty.com/twilight/screencaps/albums/TwilightPart2/Twilight1833.jpg
    Is there a Photoshop tool that can easily remove the black borders from pictures like this? Anyway to extract the image from the black background?

    You may be able to use the Image - Trim feature, though it requires exact pixel color matches, which may not be true with lossy compression (e.g., JPEGs).
    Another way is to use the Magic Wand Selection Tool with some tolerance (e.g., 24), select the borders, invert the selection, then use Image - Crop.  It will cut off all fully selected rectangles of pixels.
    Watch your copyright issues if modifying copyrighted works
    -Noel

  • Removing table borders

    Is it possible to remove the line borders for a table? I have a document that has 2 columns. In one of my columns I want to have a section that has 2 columns in it. I could not figure out how to do that so I decided to use a 2 column table. Now I would like to turn off the borders to just get the (sub) 2 column effect. Don't see how to do that.
    1. Is it possible to have a 2 column section inside an existing column of text.
    2. How do I turn off the line borders for a table?
    Thanks,
    Alfredo

    Hello Alfredo Jahn,
    1) You can have a three column layout between two two column layouts on a page and you can adjust it so it looks like a two column layout with a little section of two columns in one of the big columns. See this multi-column page image:
    Insert two layout breaks (menu: "Insert/Layout Break"). Set the text cursor into the second layout and show the layout inspector. Set the column count to three and deactivate the option for same column with. Now set the width of the columns and spaces between them manually in the list, so it looks like you need them.
    But you have no text flow between the different column layouts, because there are layout breaks.
    2) When the table is selected, show the table inspector and press in the tab "Table" in the bottom section the left button of the button row titled "Borders". Now all borders are selected. Show the graphic inspector and disable the line appearance in the pull-down menu.
    You can select every border of every cell by option-click on them (for multi-selection hold the shift key).

  • Remove crosstab borders with CSS

    Hello,
    I am trying to remove all the borders of my crosstabs with CSS. I found the following link http://scn.sap.com/community/businessobjects-design-studio/blog/2013/07/21/design-studio which is already very helpful with all the borders except for the external borders. The following code removes all of the internal borders, but not the external ones. Does anybody have an idea?
    .myCrosstab{
    font-size: 16px;
    background-color: white !important;
    color: red;
    border: 0px !important; 
    .myCrosstab * .sapzencrosstab-DataCellDefault, .sapzencrosstab-HeaderCellDefault { 
    border: 0px  !important; 
    .myCrosstab * .sapzencrosstab-HeaderCellDefault { 
    border: 0px  !important; 
    .myCrosstab * .sapzencrosstab-TableDiv { 
    border: 0px  !important; 
    (I tried this with a CSS stylesheet that contains many other classes and one that was completely blank except for the code above, same result in both cases).

    Hi Tammy and David,
    thank you for your quick responses, I am already a step ahead but not yet at the desired state.
    @ Tammy: Your crosstab is exactly what I want mine to look regarding the borders, unfortunately mine don't look like yours.
    @ David: I added the 3 lines and it looks better now.
    As you can see on the following pictures some of the borders are still showing, especially the ones with data cells. The first crosstab is a mix of data and text cells, the second one only has data cells:
    This is my code (I experimented a bit more in the meantime compared to my code above):
    .myCrosstab{
    background-color: #F7F7F7 !important;
    border: 0px;
    .myCrosstab .sapzencrosstab-TableDiv {border: 0px;}
    .myCrosstab .sapzencrosstab-TableDivBackground {
    background-color: #F7F7F7;
    border: 0px;
    .myCrosstab .sapzencrosstab-VScrollTable {border: 0px;}
    .myCrosstab .sapzencrosstab-HScrollTable {border: 0px;}
    .myCrosstab * .sapzencrosstab-ColumnHeaderArea .sapzencrosstab-HeaderCellDefault, 
    .sapzencrosstab-ColumnHeaderArea .sapzencrosstab-HeaderCellAlternating, 
    .sapzencrosstab-DimensionHeaderArea .sapzencrosstab-HeaderCellAlternating, 
    .sapzencrosstab-DimensionHeaderArea .sapzencrosstab-HeaderCellDefault,
    .sapzencrosstab-DataCellDefault .sapzencrosstab-TableDiv,
    .sapzencrosstab-DataArea .sapzencrosstab-RowHeaderArea,
    .sapzencrosstab-DataCellDefault .sapzencrosstab-DataCellContentDiv,
    .sapzencrosstab-DataCellAlternating {
    font-size: 16px; 
    background-image: none !important; 
    background-color: #F7F7F7 !important;
    border: 0px #F7F7F7 !important;  
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F7F7F7', endColorstr='#F7F7F7') !important; /* For IE users */ 
    Any more ideas?

  • Remove image borders from Wiki's

    I feel silly even asking this but how can I remove borders from images I upload into Wiki's served on OS X Lion Server? The Wiki homepage has a number of large icons that don't have borders. I am looking to put together my own index page with a few custom images but they all get added with borders.
    Any help locating the tick box or button I need will be greatly appreciated! Thank you all.

    I'd love to know about that as well...

  • How to remove the borders of JTabbedPane

    hi,
    when we create a tabbedpane, we get dark barders. i am usign the system look and feel .
    is there some way to make the borders flat that means the tabbed pane shuld bot be seen raised but flat..
    cheers
    deepak saini

    what do you mean by msm?

  • Removing white borders????

    My girlfriend did something to her Lightroom so that now all her pictures have white borders on them when output to jpg. In lightroom, they don't have borders on them. Only in the output jpg. Also when she prints it has the border. How does she turn that off?  I have the same program on my PC and it's not doing that mess.

    It's 2.7. She was trying to print to a jpg which makes no sense to me but that's how she was taught in a stupid online LR class she took, so I can't tell her any different.  She didn't make this post either, cause she doesn't do anything I tell her, so I hadda do it so she'd quit yappin about it.
    She finally did try exporting, but then all her jpgs came out the size of a postage stamp.  So we were getting nowhere.  Then she scrolled down and found she had set resize to fit at some time in that stupid class.  Now it works.  I think the question didn't have an answer because she was doing it wrong.  Or maybe that was the answer.  Thanks.
    Ha!

  • [SOLVED] Remove toolbar-borders in gtk-theme

    Hi, I've tried stuff with ythickness = 0 but now I'm done with it and posting here: how to remove the lines above and below the toolbar like indicated in the screenshot? Gtkrc here, it belongs to Cobra-Orange but I modified it to have transparancy and stuff. Get that Cobra theme and replace the gtkrc if you want to try for yourself.
    Last edited by VCoolio (2011-01-07 14:49:27)

    tydell wrote:I have question about something different, but also about gtk theming.
    Can you tell me how to change this one thing (that triangle in red circle)?
    That's the resize-grip. Tweaking depends on your theme engine. If it's pixmap you can gimp the .png file, else you'll need to find the right class to tweak, probably somewhere near the statusbar section. Search for "function = RESIZE_GRIP". You can disable by
    GtkStatusbar::has-resize-grip      = FALSE
    Post your gtkrc if you need more.

  • Removing page borders when printing

    I seem to be stuck. I'm attempting to print a 4 page spreadsheet in numbers, but it keeps putting about a 1 inch page border around the pages so each page runs on to the next. I cannot find a way to adjust the size of the border in Numbers. Is this even possible? If so, how do I go about doing it? Thanks in advance.
    Cheers.

    It may be surprising, but the Numbers User Guide available to every users from the Help menu describes (page 42) the use of Inspector > Sheet to set the margins.
    Yvan KOENIG (VALLAURIS, France) dimanche 13 septembre 2009 20:12:31

  • How to remove graph prompt borders in OBIEE 11.1.1.6 (BP1)

    Hello,
    I have a requirement to remove the borders of a graph prompt that we have in place. The version for OBIEE is 11.1.1.6 (BP1).
    Just, to make my question clear, I understand it is not similar to_ OBIEE 11g – Remove Border Around Section Prompt. Also, as it depends on the CSS-Javascript formatting, I was hoping to find some info on this.
    The only source I found that had a small note (on page 19) was: http://www.rittmanmead.com/files/biforum2012/masterclass/RM_BIForum12_Cust2.pdf
    I appreciate any information/ideas/scripts that can be shared here.
    Thanks.

    Use the below code in Text object in your page and tick the box for ‘contains HTML markup’.
    For permanent, site-wide solution would be to modify views.css
    <style>
    .PTPageControl { border:0px; padding:0px; }
    .PTPageEmbedded { border:0px; }
    </style>
    in .css file
    looks for the text as below
    border:solid 1px
    put 0px instead of 1px
    Pls mark if helps

Maybe you are looking for

  • Adaptor for projector

    i need to present in a conference and i would like to ask if this product Apple M9320G/A Mini-DVI to VGA Adapter will be compatible with my macbook core 2 duo? thanks a lot.

  • The data in the table HRP1001 is inconsist with trx: ppoma_crm

    Hi gurus: I create a standalone Structure Model in SAP CRM for service scenario. I have an organizational unit that has two positions; one is a leader position and the other is normal position. We are using a function RH_STRUC_GET with relation u201C

  • Map in iMovie not available in dutch

    When I change Mac language in English, I have maps in iMovie. Language Dutch: no maps. In version before latest, no problem in Dutch.

  • Trouble getting photos from iphoto to iPhone

    A few months back I had updated my iphone to 4.3.2 (somewhere around there) and it began transferring only a very small subset of the photos from photo to my phone.  After the sync, it would say something to the effect of "Image "DSC_00112" could not

  • Synchronize Folder ... does not work

    I am using Lightroom 4.1 on a PC. I have added some jpg photos to an existing folder already indexed Lightroom using Windows Explorer. In other words there were some photos in there and then I added some using Windows Explorer. When I right click on