Investigate an element on a site

Hi all. <br />
In advance I apologize for my not really good English. The problem such is - on one site is a popup window which when aiming at it the mouse pointer jumps out. At once this window became constantly active. <br />
If to investigate this element (from a context menu of the browser) that we see code lines:
div class="online-fr_list"></div>- this element
Elements code in inspector:
<pre><nowiki>.online-fr_block.__open .online-fr_list {
max-height: 555px; - if this line to clean or change value on 0px then work fine
.online-fr_list {
position: relative;
z-index: 1;
max-height: 0px;
overflow: hidden;
transition: max-height 0.45s ease 0.3s;
}</nowiki></pre>
Question: whether it is possible to make so that this value automatically improved on 0рх or it is a site problem?<br />
(site: http://www.odnoklassniki.ru/)
Thanks in advance, <br />
Yours faithfully Anticisco
Attach:
pic.1 (http://rghost.ru/51196785) - site before (window always top) - work not fine :(
pic.2 (http://rghost.ru/51196813) - site after (window is hidden) - work fine :)

Usually sites provide a close button for their little windows. It is annoying when they do not do that.
Looking at the screen shot, I think you can create an Adblock filter to hide that friends window. I can't test this, but maybe something like this will work:
* https://adblockplus.org/en/filters#elemhide
* Filter text: <code>##div#hook_Block_FriendsOnlineWrapper</code>

Similar Messages

  • Unable to define element definition in Site Studio

    Hello guys,
    I'm using SiteStudio and UCM 11g and trying to make a news site. I follow this tutorial's instructions, but after i try to add an element definiton, i cannot see it on project again. I mean the element definiton that i try to add couldn't be added actually. Does anybody have an idea about this problem?
    Helps will be appreciated.Regars
    Erdo

    So, I assume that we speak about SSXA and JDev IDE.
    First of all, you should find out where is the problem (what metadata is missing/is not configured). My guess is that it will be Web Sites (xWebsites). This parameter can be best influenced from JDev by selecting the site you want to work with in the upper-right corner of the Site Assets section in the JDev (you might find the text +( No Sites Specified)+ there ). Note that you must have a Site Studio Connection created and must be logged in to make this work (since you can create the element definition I assume that you have your connection ready).
    Of course, like with any other metadata you may also specify the metadata later via Advanced Checkin, but since it should not be necessary to do it that way.
    The other parameter, Web Site Object Type, will be selected for you by JDev, depending on the object you want to create.

  • Elements 11 - photos sitting side by side

    In Elements 11 I want to place unrelated photos side by side for a web slider.  I am ok resizing, but seem unable to get them to sit alongside each other on the created canvas?  Please can you guide me?  Many thanks!

    From Expert Mode use:
    File >> Open and choose your images
    They will appear in the photo bin.
    Create your canvas:
    File >> New >> Blank File
    Set your width and height and resolution of 72.
    Drag and drop each photo from the photo bin on to the canvas. Each image will be on a separate layer. You can choose a layer (highlight it) and using the move tool reposition the image on the canvas or resize it by dragging the corner handles whilst holding down shift.
    Repeat for each layer depending how many images you are using, then save.
    N.B. If you can’t see the layers pallet on the right, click the top menu:
    Window >> Layers

  • Premiere elements 13: publication "Sites Web Sociaux" bloqué

    bonjour à tous,
    je viens d'acquérir premiere element 13.
    lorsque j'essaye de me servir de la publication " Sites Web Sociaux", le logiciel me répond dans une fenêtre:
    Avertissement: Les services des sites Web sociaux ne sont pas disponibles.
    j'ai essayé à plusieurs reprise, mais rien n'y fait.
    Aurait il quelqu'un qui pourrait m'aider s'il vous plait?
    note:
    cela me fait la même chose lorsque j'essais avec le service: "Album Web Privé"
    Hello to all,
    I have just acquired the premiere element 13.
    When I try to use the publication " Social Web sites ", the software answers me in a window:
    Warning: the services of the social Web sites are not available.
    I tried in several taken back, but nothing can be done.
    Would have he somebody who could help me please?
    Note:
    It makes me the same thing when I tries with the service: " private Web Album "
    Thank you

    bonjour à tous,
    je viens d'acquérir premiere element 13.
    lorsque j'essaye de me servir de la publication " Sites Web Sociaux", le logiciel me répond dans une fenêtre:
    Avertissement: Les services des sites Web sociaux ne sont pas disponibles.
    j'ai essayé à plusieurs reprise, mais rien n'y fait.
    Aurait il quelqu'un qui pourrait m'aider s'il vous plait?
    note:
    cela me fait la même chose lorsque j'essais avec le service: "Album Web Privé"
    Hello to all,
    I have just acquired the premiere element 13.
    When I try to use the publication " Social Web sites ", the software answers me in a window:
    Warning: the services of the social Web sites are not available.
    I tried in several taken back, but nothing can be done.
    Would have he somebody who could help me please?
    Note:
    It makes me the same thing when I tries with the service: " private Web Album "
    Thank you

  • Need photoshop elements 11 download site

    Need photoshop elements 11 download.

    you can download a trial and activate with your serial if you follow all 7 steps :  http://prodesigntools.com/photoshop-elements-11-direct-download-links-pse-premiere-pre.htm l
    if you have a problem dl'g, you didn't follow all 7 steps.  the most common error involves failing to meticulously follow steps 1,2 and/or 3 (which adds a cookie to your system enabling you to download the correct version from adobe.com).

  • Anyone familiar with using Photoshop Elements for Flash site design?

    l am seeing a tutorial using ''elements'' and wonder if l can simply use PhotoshopCS4?
    lf so, is the process similar or not to using elements?
    thanks

    Hi,
    You can use Photoshop CS4.  The process is the same but Photoshop CS4 is more powerful and can do more stuff.

  • Get elements from external sites with rest

    Hello!!!
    I have a site collection in SPO2013 and i would like to read texts from a Drupal site and show it in my SP site. Is possible to do that with REST? if so, how? Is there some tutorial?
    Thanks!!!

    Hello,
    Yes you can create list items inside your SharePoint site using rest api. here is the simple function for your understating,
    // Adding a list item with the metadata provided
    function addListItem(url, listname, metadata, success, failure) {
    // Prepping our update
    var item = $.extend({
    "__metadata": { "type": getListItemType(listname)}
    }, metadata);
    // Executing our add
    $.ajax({
    url: url + "/_api/web/lists/getbytitle('" + listname + "')/items",
    type: "POST",
    contentType: "application/json;odata=verbose",
    data: JSON.stringify(item),
    headers: {
    "Accept": "application/json;odata=verbose",
    "X-RequestDigest": $("#__REQUESTDIGEST").val()
    success: function (data) {
    success(data); // Returns the newly created list item information
    error: function (data) {
    failure(data);
    you can refer to the article below which explains basic CRUD operations using REST api  with simple code  examples:
    http://www.plusconsulting.com/blog/2013/05/crud-on-list-items-using-rest-services-jquery/
    Regards,
    Subhash Reddy.
    subhash reddy

  • Love / Hate Relationship with Photoshop Elements

    I am having a love/hate relationship with Photoshop Elements!  Love the page design capabilities and hate the lack of capability on the print end.  Kodak does not give any choice in the book they will print from Elements.  All I can get is a #$%& die cut cover!  Is there anyway that I can order other options that I know Kodak has available when creating a book using Elements and their site.  I want to be able to choose a custom cover!  I have tried Kodak to get answers.  I have tried Adobe (impossible, unless maybe you pay).  Neither are very helpful!  The only answers I get are use the Elements designed pages and place them onto pages that you create in their software.  Problem is that one needs a jpeg file to do this.  No online program seems to recognize .PSD or .PSE file types.   HELP!
    Bob, Barbara you both seem to be very knowledgable...any ideas...
    Anyone with any help can answer here or [email protected]
    Terry

    Terry:
    Yeah, the photobook print options are limited. (Although, the built in Kodak and Shutterfly books are very nice)
    One thing to try differently is to use the Print At Home selection on that first screen after the clicking on the PhotoBook option (assuming you are using PSE8 here) (use Photo Collage with PSE7)
    Down that path, you will get a few more choices in page size. It will still create a multi-page document (a .pse) while your building your book, and when done, you can print the pages of the book out as a .pdf. Many book printing services will take in a PDF.
    Another option is to do a single page at a time and save them as .jpg's. A little more work in keeping your various files together and ordered properly, but it would give you ultimate flexibility.

  • Is there a way to disallow web pages to modify foreground color of elements if background of those elements was not changed as well (and vice versa)?

    I have very sensible defaults for my display; i.e. I have dark GTK scheme (dark gray background, light gray text) that suits me way more when working on my computer while it's dark around. I, however, like looking at web pages as how they were mean to be seen. Unfortunately, most of web designers don't think about anyone having non-default colors set up.
    Example one ( http://www.cedok.cz ):
    This site's CSS style has "color: rgb(45, 45, 45);" for the whole <body> but for <select> elements there is no "background-color" set. This means there is a select box rendered with dark gray background and dark gray foreground (text color). This is pretty badly readable (obviously).
    To mention one particular element from this site: e.g. <select id="ctl00_ContentPlaceHolderLevySloupec_HledaniMultiTab1_HledaniZajezdu1_ddlTypZajezdu">
    Example two ( https://support.mozilla.org/en-US/questions/new/desktop/customize/form ):
    On this page (where I'm currently filling in this question) the <textarea id="id_content"> has "background: ... rgb(255, 255, 255);" set, but with my default font color, this textarea is rendered as light gray text on a white background. Again, pretty unreadable (and eye-hurting).
    I can provide screenshots and more reasoning if needed.
    I'm asking if there is (or might be) an option (even disabled by default) or at least an add-on which would keep default colors unless both foreground and background colors were specified. I think this might make Firefox very usable for many people which like to have their default colors configured.
    In case you won't be able to help me by fixing this, could you redirect me to the right place where I could get this requested in a way that might be really possible to happen (bugzilla?).
    Thank you very much in advance.

    Thanks for the reply, but I'm sorry, no. I don't want any addon that customizes colors, I want to use default colors and only prohibit changing them unless both background and foreground colors are changed.
    I have made no color changes WRT to Firefox *only*, I just changed the default for the whole toolkit (gtk in this case). The thing I need is to disable changing *only one* property out of two ({back,fore}ground). Whenever the second one gets set as well, this new setting (both of them) may get reflected, but not before that. It'd be nice to keep this when changing the colors back (deleting the style), but that's not necessary.
    I hope that's understandable, feel free to ask for if that's not the case.
    To express what I mean a bit more precisely, see the attached image. In that image there are four textareas (one of the elements that gets affected by this). First one is a default one (which I want to have if the page has nothing set), the second one is nicely modified to fit for example to a blue-ish page (this one I like as well).
    Second row of textareas shows how the final element looks like if the page has only one of these elements set up. First one changes background without changing font color, the second one vice versa. Both of them are very badly readable, especially with low lighting around.
    This is consequently the same case when it comes to default page background which I cannot set at all, because too many pages have only "color:" set without changed background and that is completely messed up then. Going to extremes, I might mention all color-related modifications (see how ugly the borders look when the background is changed and nothing is done to these borders, their size and color is kept default), but I understand that's too much.

  • My slow loading flash site :(

    I've recently notices that i'm loosing 70% of my visitors in the first 0-30 seconds. I thinking its to do with elements of my site loading too slowly.
    I have an opening animation which I think loads pretty quickly. I think the problem is occurring when selecting a button on the menu bar. It can take up to 5 seconds to load the external text files. If a user is inpatient and selects the button again this slows the process again and again.
    this is the site www.videoproductions.ie
    I'm very new to flash and i've hashed and muddled my way to this point. when researching this problem I know i've done lots wrong.
    for example my site is all flash....bad (or so i hear)
    the images have high dpi
    I've used transparency
    In my menu i've used button instead of movie clips.
    on the up side I have done a few things right
    I have a master file where a menu swf loads into
    with this menu bar I load all my other swf's and text files (which load into scrolling boxes)
    Where i'm having the problem is with my external text file and embedded text
    you would imagen that text files would load very quickly but this is not the case.
    I've come so far with this only to hit a rock ....what is the problem with the text ..I've looked everywhere and no answers on any forums
    any help would be greatly appreciated...I could be loosing allot of potential business because of this

    I wonder if i could ask for some more help ........sorry to be a pain but I feel like flash is really beaten me. Been at it the last two day going round in circles
    I've attached the menu file I have a master file which is an animation then into this loads my menu swf (which is attached) with in this I've been trying to get the pages to load up on different frames and its all working ok except for loading in my external txt files.
    i'm assigning the following scrip to the relevant frames to load the text files
    myData = new LoadVars();
    myData.onLoad = function() {
    textbox2.text = this.myNews;
    myData.load("TEXT2.txt");
    Its working on the Packages page but only on the first click. for example if you launch the swf and go straight to Packages you'll see the text load in but if click any where else it ceases to work. i'm using the same method throughout but none of the other text files load up at all.
    any idea what i'm doing wrong?
    My scroll bar is no longer working either but I'll figure that out some other time

  • Resolving conflicting JavaScript due to several Spry elements in one page

    I am fairly new to web coding, I would really appreciate some help in the following topic. I am working on a web page and I decided to insert some of the pre-coded Spry elements provided by Dreamweaver, I have in one page a HorizontalMenuBar, a SpryTabbedPanels, and an AccordionPannel. I have not modified any of the script that is automatically inserted into my code, all I did was to change some of the CSS to match my design, I saved the extension files in my own .js folder rather than the SpryAssets folder that is automatically created and I have verified that all the files are being called correctly in the <head> of my document. When I test the page with only the HorizontalMenuBar it works fine, as soon as I add the TabbedPanels and the Accordion only one of them works. I researched this subject and I think the problem is that eachof these /.js files created by Dreamweaver have a couple of variables that are named creating conflict when running the script. But I don't know what variable it is, in previous threads I found that the most common variable causing this problem is the 'onload' event, so I looked for it on each file and to my surprise neither of the .js files have an 'onload' element. I would guess that is being used as a global variable, but I don't write code and I wouldn't know how to fix that.
    I have some specific questions I would appreciate help with.
    1- Does anyone know a simple way to fix this problem?
    2- What other variable could be causing this problem? Specific names would help so I can run a Find search
    3- Will it cause a problem if I combined the 3 .js files into one?
    4- What can I do to avoid this problem later on if I decided to add another pre-coded JavaScript element into my site?
    Thanks in advance for any help provided.

    I'm having a similar problem and can't find the solution. I have a twitter feed widget and a image cycle widget on my site. On their own the widgets work fine, but when both in the same html document only one works. Here's my code, what do you think: I'd really appreciate any assistance. Thanks!
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <script src="scripts/jquery-1.6.min.js" type="text/javascript"></script>
    <script src="scripts/jquery.cycle.all.js" type="text/javascript"></script>
    <script src="scripts/jquery.js" type="text/javascript"></script>
    <script src="scripts/twitter_search.js" type="text/javascript"></script>
    <style type="text/css">
    /* BeginOAWidget_Instance_2559022: #slideshow */
                                  #slideshow { 
                                      padding: 0px;
                                            margin:0; 
                                  #slideshow-caption{
                                            padding:0;
                                            margin:0;
                                  #slideshow img, #slideshow div { 
                                      padding: 0px;
                                      background-color: transparent;
                                            -webkit-border-radius: 0px;
                                            -moz-border-radius: 0px;
                                            border-radius: 0px;
                                      margin: 0;
    /* EndOAWidget_Instance_2559022 */
    </style>
    <script type="text/xml">
    <!--
    <oa:widgets>
      <oa:widget wid="2559022" binding="#slideshow" />
      <oa:widget wid="2125523" binding="#twitter" />
    </oa:widgets>
    -->
    </script>
    <style type="text/css">
    /* BeginOAWidget_Instance_2125523: #twitter */
                        #twitter { height: 200px; width: 250px}
    /* EndOAWidget_Instance_2125523 */
    </style>
    </head>
    <body>
    <script type="text/javascript">
    // BeginOAWidget_Instance_2559022: #slideshow
                               slideshowAddCaption=false;
    $(document).ready(function() {
              $('#slideshow').cycle({
                        after:                              slideshowOnCycleAfter, //the function that is triggered after each transition
                        autostop:                              false,     // true to end slideshow after X transitions (where X == slide count)
                        fx:                                        'fade,',// name of transition effect
                        pause:                              true,     // true to enable pause on hover
                        randomizeEffects:          true,  // valid when multiple effects are used; true to make the effect sequence random
                        speed:                              2000,  // speed of the transition (any valid fx speed value)
                        sync:                              false,     // true if in/out transitions should occur simultaneously
                        timeout:                    6000,  // milliseconds between slide transitions (0 to disable auto advance)
                        fit:                              true,
                        height:                       '400px',
                        width:         '900px'   // container width (if the 'fit' option is true, the slides will be set to this width as well)
    function slideshowOnCycleAfter() {
              if (slideshowAddCaption==true){
                                  $('#slideshow-caption').html(this.title);
    // EndOAWidget_Instance_2559022
    </script>
    <div id="slideshow">
      <!--All elements inside this will become slides-->
      <img src="images/beach1.jpg" width="100" height="100" title="caption for image1" /> <img src="images/beach2.jpg" width="300" height="300" title="caption for image2" /> <img src="images/beach3.jpg" width="200" height="200" title="caption for image3" />
      <div title="sample title"> you can add blocks of text instead!</div>
      <img src="images/beach4.jpg" width="200" height="200" title="caption for image4" /> <img src="images/beach5.jpg" width="200" height="200" title="caption for image5" /> </div>
    <!--It is safe to delete this if captions are disabled-->
    <div id="slideshow-caption"></div>
    <div id="twitter"></div>
    <script type="text/javascript">
    // BeginOAWidget_Instance_2125523: #twitter
    $(document).ready(function() {
              $('#twitter').twitterSearch({
                        term: 'from%3Abholtdesign',
                        title: 'cbb twitter',
                        titleLink: 'http://www.twitter.com/bholtdesign',
                        bird: true,                                                  // true or false (show or hide twitter bird image)
                        birdSrc: '/images/tweet.gif',                     // twitter bird image
                        birdLink: '',                    // url that twitter bird image should like to
                        avatar: false,                                        // true or false (show or hide twitter profile images)
                        anchors: true,                              // true or false (enable embedded links in tweets)
                        animOutSpeed: 500,          // speed of animation for top tweet when removed
                        animInSpeed: 500,          // speed of scroll animation for moving tweets up
                        pause: true,                                        // true or false (pause on hover)
                        time: true,                                                  // true or false (show or hide the time that the tweet was sent)
                        timeout: 4000,                              // delay betweet tweet scroll
                        css: {
                                  a:     { textDecoration: 'none', color: '#999999', fontWeight: 'normal'},
                                  container: { backgroundColor: '#000000' },
                                  frame: { border: '10px solid #333333', borderRadius: '10px', '-moz-border-radius': '10px', '-webkit-border-radius': '10px' },
                                  img:   { width: '30px', height: '30px' },
                                  loading: { color: '#888' },
                                  text:  {fontWeight: 'normal', fontSize: '12px', color:'#ffffff'},
                                  time:  { fontSize: '12px', color: '#CCC' },
                                  title: { backgroundColor: '#990066', padding: '5px 0 5px 0', textAlign: 'center', fontWeight: 'bold', fontSize: '12px'},
                                  titleLink: { textDecoration: 'none', color: '#ffffff' },
                                  user:  { fontSize: '12px'},
                                  fail:  { background: '#6cc5c3 url(/images/failwhale.png) no-repeat 50% 50%'}
    // EndOAWidget_Instance_2125523
    </script>
    </body>
    </html>

  • Elements 10: No Mac Finder drag & drop in OS X Lion (v.10.7.x)?

    PS Elements 10, v.10.0 (20110831.m.17215)
    27" Mid-2011 2.7 GHz Intel Core i5, 12 GB RAM, Mac OS X Lion 10.7.4
    Sorry if this is a double-post; had problem finding correct forum (and don't even know if THIS is the correct one). I've just wasted 45 minutes digging through "help" searches for Photoshop Elements 10. I have a very simple question, for which I can find NO answer: since I upgraded my Mac OS to Lion, I can no longer grab an image -- or, most importantly, several images from several locations on my several drives -- then drag and drop them on the PS Elements 10 icon in my Dock, or on the PS Elements 10 icon in my Applications folder, and have PS Elements 10 automatically boot open, and load these images into the Editor workspace. I try it, and PS Elements 10 just sits there and refuses to open.  I could do this in Snow Leopard, and I can do this in Lion with EVERY other app I have (providing I'm dragging and dropping files that the apps recognize). As I have many images in many files, this is, obviously, a huge PITA. How do I fix this?
    Thanks
    Bart Brown

    And THAT, of course, WAS the problem. Thank you very much for figuring it out. It's pretty remiss of Adobe to NOT make this extremely NON-intuitive-to-Mac-users fact clear. This is, in fact, the first time since the Dock was created that I've come across an app that WASN'T obviously in the Applications folder, the REAL app instead skulking -- with no explanation of the fact from the company that produced the app  -- in a support files folder. I would have assumed that, considering their long association with Apple, Adobe knows the App-to-Dock drill by now; this failure on the part of Adobe to clearly state that the file named "Adobe Photoshop Elements Editor," hidden inside the Support Files folder, and NOT the obvious choice, "Adobe Photoshop Elements 10," sitting right there naked to the world inside the "Adobe Photoshop Elements 10" Application folder, is the one that needs to be put in the Dock, is extremely poor communication of absolutely essential information. Since, during a normal installation of PSE 10, you end up with an "Adobe Photoshop Elements 10" folder, which is inside the "Applications folder," and the "Support Files" folder, which is inside the "Adobe Photoshop Elements 10" folder (like one of those nesting Russian dolls), and the "Support Files" folder, in just about any "View" mode you select, is normally closed,... well, how many people have enough time on their hands or idle curiosity, to open an app's "Support Files" folder? Even if they should be so inquisitive, what would they surmise about the item named "Adobe Photoshop Elements Editor" in that ""Support Files" folder? Maybe I'm just dense, but if I found an item in a "Support Files" folder, placed there by the installer, I would assume that item to be a Support file. That's just crazy talk, I know, but that's pretty much the way every Mac application I've ever installed works (and I've installed, literally, thousands): support files are actually support files, and the visible icon inside the "Adobe Photoshop Elements 10" folder IS THE APP. What Barbara B. said is spot on:
    "If you made a dock icon from the obvious [empasis mine -- Bart Brown] file in the PSE 10 folder in Applications you used the wrong file."
    So, Mac boys and girls, what is the obvious file in the PSE 10 folder as shown below that,  if you didn't know better (and how would you?),  you would be habitually inclined to think was the actual Application, and which you would then drag to the Dock?
    Maybe I'm just terminally stupid, but that "Adobe Photoshop Elements 10" application icon inside the "Adobe Photoshop Elements 10" folder, which is inside the "Applications folder," looks like an App to me. If Adobe's going to change the rules, they need to make it plain during the installation process:
    I cannot think of a single App whose folder inside the System's Applications folder is set up as misleadingly as PSE 10's App folder is set up. I think Adobe should, at the very least, include a "READ THIS FIRST" doc in the install, explaining that the little gem you want in your dock is NOT the obvious one inside the "Adobe Photoshop Elements 10" App folder, but the darling little gem coyly hidden inside the normally closed "Support Files"  folder. ADOBE NEEDS TO CHANGE THIS. I'm an old retired Graphic Designer and photgrapher, and, of course, my time doesn't count for much in Adobe's eyes, but I did not appreciate wasting essentially an entire day trying to figure out this PSE 10 problem myself, first with Adobe's truly miserable online troubleshooting resources, and then on this forum. My time may not mean anything to Adobe, but it means everything to me, as time is all I have left, and at my age, you know you don't have another 25 years of productive life ahead of you.
    Last Barbara B. question first: "Did you repair permissions after installing PSE?"
    Yes, of course.
    Second point, and this is a loooong-standing pet peeve topic:
    Barbara B. wrote:
    "I'm not sure  from the way this is phrased that you understand what 99jon was telling you. If you made a dock icon from the obvious file in the PSE 10 folder in Applications you used the wrong file. The one in Support Files is the real editor.
    No offense to you, 99jon, but "I'm not sure  from the way this is phrased" that 99jon understood what he was telling me, and it took even you a while to realize the solecistic and incomplete  info 99jon had given me:
    <<1. 99jon,
    Sep 9, 2012 12:10 PM   in reply to bartbrn
    Hi Bart
    Make sure you have the actual application located in support files.
    You may need to reveal hidden system files - see link.
    http://helpx.adobe.com/x-productkb/global/access-hidden-user-library-f iles.html
    2. Barbara B.,
    Sep 9, 2012 2:15 PM
    I can confirm that this should work in 10.7.4.>>
    Well, the "reveal hidden system files," while a mildly interesting, but pointless, exercise in learning three ways to "reveal hidden system files" -- all three methods of which I performed, restarting after each of the 3 methods -- was a red herring, and took MORE of my time, leading to MORE consequent frustration.
    99jon almost had it here:
    but he never made the necessary connection that you, Barbara B. did:
    "If you made a dock icon from the obvious [empasis mine -- Bart Brown] file in the PSE 10 folder in Applications you used the wrong file. The one in Support Files is the real editor:"
    How much effort would it have taken for Adobe to make this absolutely vital fact obvious to Mac users?
    And this brings me to the peroration in my pronunciamento of my pet peeve topic, and please, 99jon, this is no rebuke to you: it happens in every forum, and, most disastrously, in Apple's so-called "Discussion" groups.
    In most forums, members are ranked by the number of their posts, and/or the number of their posts voted "helpful" by other members.  Again, ,99jon, please don't misunderstand me: I'm not picking on you, nor do I include you in the class of people I'm about to describe -- I know you made an honest effort to help, and I thank you for it -- I'm simply using your post  as a clear (and convenient) literary example; I certainly don't put you in the class of people I'm about to describe)
    There's a certain mindset among some members of most forums -- and Apple Discussions is the worst of the lot, so I'll use that as an example --  where certain members try to rack up "posting points," as if they were vying for a "letter" for their high-school sweater in some interscholastic competition. No matter what their expertise -- or, most typically, utter lack of same -- regarding a question you may ask on Apple Discussions, they have their email notifications set so they can try to be the first to answer. Their object -- unlike 99jon's and Barbara B.s -- is NOT to help someone; it's simply to rack up more points. Since Apple Discussions rates "Discussion" members by the number of posts they make, NOT the quality or efficacy of those posts, these "remora fish" answer as many posts as they can. Well, they're having their simple-minded fun, and no harm, right? WRONG. When another Discussions member, who actually knows what he's talking about, sees that a "high-number" member has posted to your question, they automatically assume -- quite erroneously, in most cases -- "Well, this poor sap is being helped by someone who has high numbers, and therefore must know his/her stuff; no sense sticking MY nose in. And there the thread dies. Thinking, because of their "numbers," that some "Genius" (and is that not the stupidest term for a soldier in the Apple Store ranks who's maybe had a week's training?) is helping you out, no one else -- any one or several of whom may be able to help you out of your difficulty -- jumps into the discussion. It has happened to me, and many people I know, countless times. Apple doesn't care: they make no money off "Discussions," if you want putatively reliable technical help, buy Apple Care.
    That's why it's important, in a forum like this, to always click your answer to the "Was this helpful" voting button at the bottom of the message.
    99jon and Barbara B., thank you both for your efforts.
    Adobe, wise up and fix this, or at least give the innocent installer a heads-up about "the App in the Support folder."
    Many thanks
    Bart Brown

  • How to hide elements to printer inside muse? / Como esconder elementos a la impresora en muse

    English
    Hello guys, there is any option to hide elements on muse site for no printing, I'm working on a catalog with pront option but i dont want the navigation menu buttons on my print sheets, any idea?
    Spanish
    Hola a todos, hay alguna opcion que bloquee elementos de ser impresos? estoy trabajando en un catalogo online, pero no quiero que se impriman elementos como los los botones de navegacion. tienen alguna idea?

    You would need to hide page contents using custom code , you may try these options :
    http://imar.spaanjaars.com/240/how-do-i-hide-screen-elements-when-a-page-is-printed
    http://stackoverflow.com/questions/4816937/use-css-to-hide-contents-on-print
    Thanks,
    Sanjit

  • Muse changes size of embedded HTML-Elements

    Hello,
    Muse drives me crazy: I've added some HTML-Elements to my site and Muse always rescales 'em. For example: One element is 317x356 Pixels - but Muse scales it at 396x423. Now I go and change it back at 317x356 - and a few seconds later it's again 396x423. And if I try to rescale it with the mouse, it gets bigger and bigger each time I try to rescale it.
    What can I do? What is wrong with muse?
    Best,
    Sven

    How are you setting the width and height? Are you editing the embed code or using the width and height controls in Muse? YouTube videos and most HTML embed code specify their own dimensions. If you've accidentally changed the dimensions of the container holding the embed code, the easiest way to reset the widget to the default size is to drag-resize the widget with the mouse to dimensions that are much smaller than their default size. Muse will initially allow you to resize to these smaller dimensions but will then ask the browser to render the embed code and report its dimensions. If the dimensions are larger than the current size of the container, Muse will reset the container's dimensions to match those reported by the browser.
    With respect to your bandcamp embed code, it consists of an iframe with internal dimensions of 356x317. For HTML embed code pasted onto a page, Muse does not know what is in the code but it needs to know the dimensions so it can put it in a container. So, Muse hands the embed code to the browser and lets the browser determine its dimensions and generate a poster image for design time rendering in Muse. These dimensions are the initial dimensions of the container. Muse lets you style this container by adding a stroke and fill, for example, and it lets you resize the container. If you attempt to resize the container by dragging a resize handle or using the width and height controls, Muse gives the html embed code a chance to adapt to the new size of its container by handing the embed code back to the browser along with the container it needs to draw within. If the embed code is smart enough to adjust its dimensions, it will do so and pass a new poster image and new dimensions back to Muse. In this specific instance, the iframe has hardcoded dimensions so it cannot change its size. However, Muse will still allow you to adjust the container's dimensions as long as you don't resize it to be smaller than what the browser says its dimensions should be.
    Try the following experiment with your bandcamp widget. Give it a colored fill. Resize it larger than 356x317 by dragging the bottom-right selection handle. When you let go of the mouse, Muse will pass the container and the embed code for the widget to the browser to give it a chance to resize the widget. The band camp code does not respond so you see a colored fill in the portions of the container not filled by the widget. Now resize the container smaller than 356x317. Muse again gives the widget a chance to resize but the browser again returns 356x317 for its dimensions. So, Muse adjusts the dimensions of the container to match this minimum size.
    If you want to really make the widget a different size, you need to adjust the dimensions specified in the embed code. If you want to experiment, try the following:
    1. Right-mouse click on the widget and select "Edit HTML..."
    2. Find the 'width' and 'height' values and change them to something else. Try changing the width to something like 500px. Make sure you preserve quotes and semicolons and only change the numbers so that you do not break any syntactical rules.
    3. Press OK and watch how it changes the widget.

  • 'appears' elements 4.0 installed but then wont import photo to work station.

    'appeared' elements 4.0(c2006) installed but then won't import photo to work area & says id/serial no. or company name are invalid(no reason they should be and the company address wasn't i think a required field-it seemed to have gone through anyway).
    I called up Adobe and they do not support for anything pre Photoshop Elements 8.0. The menu bar is all greyed out so cannot do anything there but the photoshop elements icon is sitting in my dock and the work station screen fills my screen-

    If you have a mac, forget it. PSE 6 is the earliest version that will install sucessfully and run without trouble in 10.6 or 10.7. If you have PSE 4 installed when you upgrade to 10.6 it will continue to run but the installer just doesn't work in recent versions of OS X, so you can't reinstall it if you need to do so.

Maybe you are looking for

  • How to disable the new logon Window in Adobe Reader 11?

    Some times, some corporate guys get an idea - and no one is around to stop them. For some reason, there's now a logon window in Adobe Reader taking up 1/3 of the screen...and it can't be disabled. Which mor....person...ever thought of something like

  • Iframes: hide an image outside of iframe when link is clicked

    I have a site I inherited from someone else. There is a photo gallery page was created with iframes. The main photo gallery page has a graphic at the top that says "Photo Gallery" with the iframe below it holding photo thumbnails. When a thumbnail is

  • Where do I look up the length of my playlists?

    I've always been able to see how long my playlists are in older versions of iTunes. With iTunes 11 that's not visible anymore. This is an essential feature to me because I need my playlists to be of a certain time length/duration. Any thoughts or lig

  • New SSD in my macbook pro seems slow

    Hi, I would like to know if it's normal, as I don'T find the results on Xbench and Blackmagic satisfying. I just upgraded my macbook pro 13" mid 2010 2.66ghz dual-core, 8gb ram with a OWC mercury electra 6G 120gb SSD. I swaped my optical drive for my

  • Upgrade Billing Schedules from 11.5.9 to 11.5.10

    Hi, I need to take care of an extension in an upgrade project from 11.5.9 to 11.5.10, it uses an API OKS_BILL_SCH.Create_Bill_Sch_Rules. But the IN parameter that was passed to the API i.e StreamLvl_Type was changed from 11.5.9 to 11.5.10. In 11.5.10