Getting a dotted line around .swf files in my flash site now. this is new as of Firefox 3. Using 4 on a MacBookPro. tried "style outline none" fix. doesn't work. any help?

Question
getting a dotted line around .swf files in my flash site now. this is new as of Firefox 3. Using 4 on a MacBookPro. tried "style outline none" fix. doesn't work. any help?

/* stops annoying focus-selection boxes in FF3 */
*:active, object:focus, embed:focus
outline: none;
}

Similar Messages

  • HT1386 Accidentally deleted my music. Tried syncing in iTunes, but doesn't work! HELP!

    My two year old grandson deleted a few apps on my phone, including my music.  I synced my phone, and everything seemed to syc ok, including my music.
    When I checked my phone, the deleted apps were back on except my music. When I clicked on the Music icon, there was no music there, just a message saying "No Content".  You can download music from the iTunes Store.  Have tried a few times to get my music back on, but to no avail.  Even tried re-setting my phone, but this didn't work either.  Can anybody help me?  Can't think of what else I can do.
    Pearl1947

    I had the same problem today.  Previewed several songs on my Mac (Mountain Lion & signed in with Apple ID). Preview history of what I just played synced to my iPad 3rd generation and iPhone 4 (both IOS 6.0.1) ok but history did not show up in iTunes 11.0.1 ("You don't currently have any preview history"). Then previewed songs on my iPad.  Once again, previews showed up on iPad and iPhone but not on Mac.  I then cleared the Preview History on my iPad, which also cleared the phone.
    I then previewed several songs on the iPad.  WONDERS!  Now the iPad previews are syncing to the Mac!  I previewed several songs on the Mac and these previews now show up in my Mac Preview History, as well as the iPad and iPhone histories.
    See if clearing all your History works for you!

  • Hi, My Ipod Touch 5th Gen stuck on recovery mode, i tried to download the update using itunes many times, after downloading the update it doesn't work PLEASE HELP!

    Please Help guyz.

    how will i restore my ipod??? the update wont work, i tried it many time after downloading nothings happen, is it because my ipod was jailbroken?? should i go to mac center?? coz my ipod have warranty!!

  • My iPhone 4S just replaced the names of my contacts in text messages and my favorites with only their phone numbers. Names are gone. The option to add new contacts also appears to be gone. I tried the *228 and it did not work. Help!

    My iPhone 4S has replaced the names of my contacts in text messages and under my favorites- only their phone number shows. I updated today but this actually happened beforehand. I have tried restating the phone, and also *228. Neither have worked. Can someone help me??

    My wife is having the same problems as a reciever. She works in a school as a teaching assistant and her teacher sends messages that are mixed with previous texts from ages ago.
    Can anyone shed some light on this problem or is it only her and this poster?
    2m42s

  • HT2305 i have just bought a iphone 5 and am trying to back my 4 up so i can transfer everytghing on to my 5. it has said i need to update my itunes which i have tryed to do but still isnt working any help please

    i have just upgraded my iphone 4 to a 5. and was trying to back my 4 up on the computure so i could get all my pics and music on to my 5. but its saying i need to update my itunes which i have tried to do and is still not working any help please i have been trying for hours

    how is it not working?
    what version of itunes?
    what ios on iphone4?
    does it give an error msg?

  • When browsing a new library that I created, the browser shows dotted lines around grey rectangles, no images. When I double click on a rectangle the image appears. How do I get images to appear in the browser rectangles?

    When browsing a new library that I created and exported onto an external hard drive, the browser shows dotted lines around grey rectangles, no images. When I double click on a rectangle, the image appears, but all the other rectangles remain empty - no image. How do I get images to appear in the browser rectangles? I am viewing this on a second computer (an older intel duo iMac), not the one I created the library on (a MacBook Pro). Both computers have Aperture 3.2.4 installed. When I return the external to the MacBook, all images appear in browser rectangles. What's happening on the iMac?

    You may have a problem with the permissions on your external volume. Probably you are not the owner of your library on the second mac.
    If you have not already done so, set the "Ignore Ownership on this Volume" flag on your external volume. To do this, select the volume in the Finder and use the Finder command "File > Get Info" (or ⌘I).
    In the "Get Info" panel disclose the "Sharing & Permissions" brick, open the padlock, and enable the "Ignore Ownership on this Volume" flag. You will have to authentificate as administrator to do this.
    Then run the "Aperture Library First Aid Tools" on this library and repair the permissions. To launch the "First Aid Tools" hold down the ⌥⌘-key combination while you double click your Aperture Library. Select "Repair Permissions" and run the repair; then repeat with "Repair Database". Do this on the omputer where you created the library and where you can see the thumbnails.
    Then check, if you now are able to read the library properly on your iMac.
    Regards
    Léonie

  • Dotted line around image frame in active state mode.

    In my active state, I have the button set to open in a new window once it's clicked on, which it does. But when I go back to the page, there is a dotted line around the image frame that doesn't go away. Any help would be greatly appreciated!

    Hi
    I believe you are using Firefox to view the site, as this occurs only on firefox.
    This is a known issue on their end as the selection for page object remains when we return to page.
    The details can be found on this link :
    https://developer.mozilla.org/en-US/docs/Tools/Page_Inspector
    where it is mentioned that they would be taking this off from Firefox 29 onwards.
    From Muse we cannot control this as its a browser specific selector function.
    Thanks,
    Sanjit

  • How to get the content in embed swf file in Swf Loader on run time

    How to get the content in embed swf file in Swf Loader on run time
    [Bindable]
    [Embed(source="assets/index.swf")]
       private var SWFSRC:Class;
    <mx:SWFLoader id="_swfloader" source="{SWFSRC}" />

    Hi Flex harUI,
    Throw the error.
    Access of undefined property content

  • How do I get a dotted line to connect nodes in a JTree?

    I am trying to recreate a Windows Explorer application, does anyone know how they get the dotted lines to connect the nodes in the JTree????

    JTree uses a specific line style to represent the edges between nodes. The default is no edges, but we can set JTree�s lineStyle client property so that each parent node appears connected to each of its child nodes by an angled line:
    myJTree.putClientProperty("JTree.lineStyle", "Angled");
    We can also set this property such that each tree cell is separated by a horizontal line:
    myJTree.putClientProperty("JTree.lineStyle", "Horizontal");
    To disable the line style:
    myJTree.putClientProperty("JTree.lineStyle", "None");
    As with any Swing component, we can also change the UI resource defaults used for all instances of the JTree class. For instance, to change the color of the lines used for rendering the edges between nodes as described above, we can modify the entry in the UI defaults table for this resource as follows:
    UIManager.put("Tree.hash", new ColorUIResource(Color.lightGray))
    Hope this serves your purpose.
    Regards,
    Sachin Shanbhag

  • The logos on some of my bookmarks are now blank squares witha dotted line around them

    I updated Firefox and now the logos on some of my bookmarks and tabs are blank, dotted line squares.

    If you go to the site, do they actually have a favicon, or did you create them in you bookmarks with the help of an extension because you didn't like non descriptive bookmark icons and folder icons.
    Did you lose them in the bookmarks sidebar("Ctrl+B")
    On the toolbar for the Bookmarks toolbar, I display only text and try to key most of them to 1-2 letters (or 1 non-letter character) for those that appear directly on the toolbar. Most are in folders there.
    * Bookmarks Toolbar Blue/Folders, Red/Bookmarks - Themes and Skins for Browser
    *:http://userstyles.org/styles/9091
    I had just answered this elsewhere 1/2 hour ago but couldn't find it.
    The was another answer there that suggested to Restart Firefox, good but you had them for a long time so I hadn't mentioned it.
    You basically have to use them again sometimes, but I've not seen them disappear. Since they are stored both as a bitmap and reference to the web page favicon it seems that they would not be deleted.
    I don't really have total recall that I could remember exact working and retype consistently -- but I do have and extension to help me when this site drops what I typed if I go to another page using same tab and come back. I could have searched on content or title (or mess it up again trying and restore like I just did again for the second time).
    Textarea Cache :: Add-ons for Firefox
    *:https://addons.mozilla.org/en-US/firefox/addon/textarea-cache/

  • So Wat to do? Is there any way to get out as a single swf file from captivate.

    Dear friends,
    I am beginner in Adobe Captivate. We have a E-learning
    project. We are using Dockers as our LMS. Previously we were using
    Flash for all. Now we are trying Captivate for better and faster
    results. I have few swf files and i inserted al files in Captivate
    and i published. So instead of getting single output, am getting
    all the swfs, skin swf and html file. Html file is accessing all
    swfs and works. But it is not working in Dockers. Single swf will
    only work in Dockers. So Wat to do? Is there any way to get out as
    a single swf file from captivate. please Help mee.
    Thanks
    Flashlover

    If 'Dockers' cannot handle a .zip file as the content and
    instead
    requires a single, uncompressed content file, then it is not
    SCORM-compliant. The SCORM specification requires the LMS to
    handle a
    'pif' file (most common is .zip) which contains the lesson
    and the
    required manifest file. If Dockers doesn't support that then
    you can't
    do SCORM-compliant content.
    Erik
    loverflash wrote:
    > Dear friends,
    >
    > We are using
    > Dockers as our LMS.
    > So instead of getting single output, am
    > getting all the swfs, skin swf and html file. Html file
    is accessing all swfs
    > and works. But it is not working in Dockers. Single swf
    will only work in
    > Dockers.
    >
    > Thanks
    > Flashlover
    >
    Erik Lord
    http://www.capemedia.net
    Adobe Community Expert - Authorware
    http://www.adobe.com/communities/experts/
    http://www.awaretips.net -
    samples, tips, products, faqs, and links!
    *Search the A'ware newsgroup archives*
    http://groups.google.com/group/macromedia.authorware

  • No dotted line around wrapper

    I'm on only the 7th step of part II of "creating your first website" and already I've ran into problems. My wrapper has a solid line around it instead of a dotted line around the placeholder text. Afraid this will cause problems down the road even if I can still delete and put in the proper text. Using DW 2014 with PC. Need to find out quick so I can decide if this product is for me. Code below.
    Thanks,
    Howard
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>SRBC Pastor</title>
    </head>
    <body>
    <div id="wrapper">Content for  id "wrapper" Goes Here</div>
    </body>
    </html>

    Duh!! That did it. Jeez, I was going nuts trying to figure that out.
    Many Thanks,
    Howard
    In a message dated 10/31/2014 4:02:06 P.M. Central Daylight Time, 
    [email protected] writes:
    no  dotted line around wrapper
    created by Jon Fritz II (https://forums.adobe.com/people/JonFritzII) 
    in  Dreamweaver support forum - View the full  discussion
    (https://forums.adobe.com/message/6888227#6888227)

  • I am unable to use Muse in-browser editing. I have an active site, but when I enter my site plus /admin, the graphic dots move but the site goes nowhere and I am never given a chance to enter my email and password. I would greatly appreciate any help. I a

    I am unable to use Muse in-browser editing. I have followed the activation instructions both in Muse and invited users. I have an active site, but when I enter my site URL plus /admin, the graphic dots move but the site goes nowhere and I am never given a chance to enter my email and password. I would greatly appreciate any help. I am thanking you in advance, Bleu

    I'd keep trying the other way. You may have hit it when BC was doing an update or something. If it works one way it should work the other way. But sometimes BC can be kind of temperamental and you have to do a little dance or something to get it to work. But it generally comes around and fixes itself in short time.
    Have you tried the other way again?

  • How can I import a .swf file in Adobe Flash CS4?

    Hi,
    How can I import a .swf file in Adobe Flash CS4?
    Thanks.

    you can use file/import but that would be a mistake.
    you should "load" your swf, not import it.
    if you want to load it and need help, are you using as2 or as3?

  • SWF File in Adobe Flash Player

    I've created a flash animation (the backgroung is moving horizontally and vertically according to the movement of the mouse), the problem is that when I open my SWF file in Adobe Flash Player 10.0 the whole animation is shaking. (In Adobe Flash in preview mode it looks fine)
    Any ideas how to fix this ?

    Hi,
    When you mean by shaking does it mean that the animation does not run smooth or it actually cuts frames? You might want to check if the same thing happens to the animation if you export it as an html(File--> Preview--> HTML). If that is happening it can be three things:
    Video Card Driver problem: maybe update your video card drivers or something might be going on with the video rendering software
    Computer Speed(which I really don't think)
    Flash Driver problems: try uninstalling the flash player program and installing the latest version(I also don't think you will have problems there)
    Hope this helps you,
    Vicente Tulliano

Maybe you are looking for

  • Belkin F8Z492TTP Bluetooth Music Receiver & LG Cosmos 2

    Hello -- My LG Cosmos 2 won't connect with my Belkin Music Receiver. It pairs successfully, but when it asks me if I want to connect and I attempt to do so, it says "BLUETOOTH CONNECTION FAILED." Has anyone experienced this problem? Is there a soluti

  • Infinity connection died... what should I do?

    I'm posting from the 3g on my phone. Is there anywhere I can check the service status for Northolt exchange? My modem and router are both on, but the link light next to the power light on the modem switched off around 35 minutes ago, and now I don't

  • Problem in using Nested TABLE

    Hi , I created 2 Nested Table & tried to insert the data in Table through Procedure but it gave an err msg. create type name as object (fname varchar2(20), mname varchar2(20), lname varchar2(20)); create type address as object (city varchar2(20), sta

  • Can I uninstall Acrobat Reader X if I buy Acrobat Standard X?

    I need to make space on my drive C, Can I uninstall Acrobat Reader X if I buy Acrobat Standard X?

  • IPad and iPhone not working with a monitor

    I tried to get my iPad and iPhone to play Netflix on a Acer 20inch monitor.  It started to work than stopped. I got a message that the display connected display is not sponsored. It there a download that is available to have my monitor display video.