Html embeded in footer not working

I have had a footer with a "counter"  and the adobe muse "badge" for over a year.  now   the text boxes display, and the facebook counter is OK.   my page "hit" counter no  longer works  and the adobe muse badge doesn't display.    it looks fine on the  design page when I publish the page or  even preview it ,  the former items don't work.
has Adobe done something with embeded HTML code.  my goggle calendar is suddenly a mess too!!
I have a separate post about the calendar problem,  but now it seems it's is a HTML embed problem site wide. 
Please Help.    should I go to Muse CC  immediately.   I trying to finalize this site for a client, and now I have issues with pages/parts that have be OK for nearly a year?   so very confused. 
here is the design page: 
here is the page in safari  ( same in preview mode ) but it worked fine for months and I have not changed anything
in these code snippets.
here is the counter code:  ( can someone recommend a good, safe place to get a hit counter ? )
<!-- Counter Code START -->
<style type="text/css">#counter_140540 {font-family: "Verdana"; font-size: 12px; clear: left; color: #BBBBBB;}  #counter_140540 a {color: #BBBBBB;}#counter_div_140540 {height: 21px}</style><div id="counter_div_140540"></div><p id="counter_140540"><span></span> <a target="_blank" href="http://utbildningsbloggen.wordpress.com/category/niclas-kjellstrom-matseke/"> </a> <span></span></p><script type="text/javascript" src="http://counter.website-hit-counters.com/bright-green/140540"></script>
<!-- Counter Code END -->
here is the adobe badge:
<a href="http://muse.adobe.com" rel="Muse beta by Adobe"><img src="http://muse.adobe.com/made-with-muse-badge/made-with-muse-110x49-for-dark-bg.png" alt="Muse beta by Adobe" width="110" height="45" /></a>
thank you for any assistance.  

thank you for your reply, 
here is the home page URL:
http://farandawayfarms.businesscatalyst.com/index.html
There are about 10 master pages ( yes a problem I know) 
all the top level pages come from one master. 
the children pages off each top level have their own master page and a separate copy of the footer, header, and menu bar, 
for each master.   
the HTML in the footers do not work on any of the pages, so all the  footers on all the master pages are not executing.
the Visitors ->MapInfo  page shows the header pushed half way off the page.  I did delete the google map, as it has some odd error
and added it back again , so I have made a change to that page.   
http://farandawayfarms.businesscatalyst.com/mapinfo.html
also the google calendar display is broken too and show very odd formatting for display, nothing like the one week default 
and calendar entries I set up in the google customize calendar html for expert tool  
Calendar -> Weekly Lesson is the calendar page.    I have added the code at least a dozen times.   it finally looked ok, 
but then when you come back to the web site,  it is all corrupted again.    the display in the muse design .  
http://farandawayfarms.businesscatalyst.com/weeklylessons.html
all the masters are stand alone,  except  that I applied the "main master"  to the  Visitors master , and thus the Visitors hierachry.  
i tried to attach my website ".muse" file, but it is larger than 25 Mb, so yahoo rejected it.   
I saw a note somewhere about sending larger files using some Adobe file tool, so I"ll try to find it.  
I don't know what is going on.   I do know that all my html code was fine a couple months ago, and now none of it seems to 
be executing properly.   I have not changed any of the footers.
I will post this in the discussion forum too.   just for completeness.. 
Lynn

Similar Messages

  • Embedded Youtube videos not working on Chrome 23 / Flash player 11.5.31.2

    For the past couple of weeks, I've not been able to play any Youtube videos that appear as embedded videos on other websites.  The small player appears with the still frame from the video and all the controls, but on pressing play, the video goes blank and won't play (the slider stays stuck at 0:00).  Nor does the full screen button work - the player just stays where it is within the third party website.  This problem has occurred across more than one website, but all sites still work in Internet Explorer.
    The main Youtube site is still working.
    I have tried all relevant steps here, to no avail (except increasing memory for a particular website, since not just one website is affected):
    http://helpx.adobe.com/flash-player/kb/flash-player-games-video-or.html
    Details:
    Windows 7 Home Premium 32-bit
    Google Chrome 23.0.1271.64 m
    Flash Player 11,5,31,2
    Any suggestions please?
    John

    Thank your for your reply, Chris.
    I installed the newest version of Chrome, and the videos I have
    embedded on my blog are now working.
    Regards,
    Frank
    2012/11/30, Chris Campbell <[email protected]>:
    Chris Campbell http://forums.adobe.com/people/chris.campbell created the
    discussion
    "Re: Embedded Youtube videos not working on Chrome 23 / Flash player
    11.5.31.2"
    To view the discussion, visit:
    http://forums.adobe.com/message/4885375#4885375

  • HTML multipart form is not working in jsp page

    Hi
    i have jsp page, has a HTML from with file upload field , when i click the send button , nothing happened as if the button did not submit the form. ie the message at line 12 is not printed out.
    can any one help please.
    <%@ page errorPage="..\error\error.jsp" %>
    <%@ page pageEncoding="windows-1256" %>
    <%@ page language="java" import="javazoom.upload.*,java.util.*,java.sql.ResultSet" %>
    <jsp:useBean id="upBean" scope="page" class="javazoom.upload.UploadBean" >
      <jsp:setProperty name="upBean" property="folderstore" value="<%=request.getRealPath("thuraya//uploads")%>"  />
    </jsp:useBean>
    <jsp:useBean id="dbc" class="mypackage.DBConnection" scope="session" />
    <!-- add news-->
    <%
    if(request.getParameter("addBTN") != null){
            out.println("addbtn");
            //do upload file + insert in database
             if (MultipartFormDataRequest.isMultipartFormData(request))
             // Uses MultipartFormDataRequest to parse the HTTP request.
             MultipartFormDataRequest mrequest = new MultipartFormDataRequest(request);
             String todo = null;
             if (mrequest != null) todo = mrequest.getParameter("todo");
                 if ( (todo != null) && (todo.equalsIgnoreCase("upload")) )
                    Hashtable files = mrequest.getFiles();
                    if ( (files != null) && (!files.isEmpty()) )
                        UploadFile file = (UploadFile) files.get("filename");
                        if (file != null)
                                            out.println("<li>Form field : uploadfile"+"<BR> Uploaded file : "+file.getFileName()+" ("+file.getFileSize()+" bytes)"+"<BR> Content Type : "+file.getContentType());
                                            String fileName=file.getFileName();
                                            String ran=System.currentTimeMillis()+"";
                                            String ext=fileName.substring(   ( fileName.length()-4),fileName.length() );
                                            file.setFileName(ran+ext);
                        // Uses the bean now to store specified by jsp:setProperty at the top.
                        upBean.store(mrequest, "filename");
                                            String title=request.getParameter("title");
                                            String content=request.getParameter("elm1");
                                            int x=dbc.addNews(title,content,file.getFileName(),2,1);
                                            if(x==1)
                                                     out.print("New Vedio has been addedd Successfully");
                                                      response.setHeader("Refresh","1;URL=uploadVedio.jsp");
                                                     else{
                                                      out.print("An Error Occured while adding new Vedio");
                                                      response.setHeader("Refresh","1;URL=uploadVedio.jsp");
                    else
                      out.println("<li>No uploaded files");
             else out.println("<BR> todo="+todo);
    %>
    <!-- end of add news-->
    <form action="" method="post" enctype="multipart/form-data" name="upform" >
      <table width="99%" border="0" align="center" cellpadding="1" cellspacing="1">
        <tr>
          <td colspan="2" align="right" bgcolor="#EAEAEA" class="borderdTable"><p>'6'A) .(1 ,/J/</p></td>
        </tr>
        <tr>
          <td width="87%" align="right"><label>
            <input name="title" type="text" class="rightText" id="title">
          </label></td>
          <td width="13%" align="right">9FH'F 'D.(1</td>
        </tr>
        <tr>
          <td align="right"><textarea name="elm1" cols="50" rows="10" id="elm1" style="direction:rtl" >
              </textarea></td>
          <td align="right">*A'5JD 'D.(1</td>
        </tr>
        <tr>
          <td align="right"><label>
            <input type="file" name="filename" id="filename">
          </label></td>
          <td align="right">5H1)</td>
        </tr>
        <tr>
          <td align="right"><label>
            <input onClick="submit()" name="addBTN" type="button" class="btn" id="addBTN" value="  '6'A) .(1 ">
          </label></td>
          <td align="right"> </td>
        </tr>
      </table>
    </form>
    <!-- TinyMCE -->
    <script type="text/javascript" src="jscripts/tiny_mce/tiny_mce.js"></script>
    <script type="text/javascript">
            tinyMCE.init({
                    mode : "textareas",
                    theme : "simple",
                    directionality : "rtl"
    </script>
    <!--end of TinyMCE -->

    the problem is not because of java code insdie jsp page
    I have removed all things but the form and it is still not working
    here is the modified code:
    <!-- add news-->
    <%
    if(request.getParameter("addBTN") != null){
            out.print("addBTN");
    %>
    <!-- end of add news-->
    <form action="" method="post" enctype="multipart/form-data" name="upform" >
      <table width="99%" border="0" align="center" cellpadding="1" cellspacing="1">
        <tr>
          <td colspan="2" align="right" bgcolor="#EAEAEA" class="borderdTable"><p>'6'A) .(1 ,/J/</p></td>
        </tr>
        <tr>
          <td width="87%" align="right"><label>
            <input name="title" type="text" class="rightText" id="title">
          </label></td>
          <td width="13%" align="right">9FH'F 'D.(1</td>
        </tr>
        <tr>
          <td align="right"><textarea name="elm1" cols="50" rows="10" id="elm1" style="direction:rtl" >
              </textarea></td>
          <td align="right">*A'5JD 'D.(1</td>
        </tr>
        <tr>
          <td align="right"><label>
            <input type="file" name="filename" id="filename">
          </label></td>
          <td align="right">5H1)</td>
        </tr>
        <tr>
          <td align="right"><label>
            <input name="addBTN" type="submit" class="btn" id="addBTN" value="  '6'A) .(1 ">
          </label></td>
          <td align="right"> </td>
        </tr>
      </table>
    </form>
    <!-- TinyMCE -->
    <script type="text/javascript" src="jscripts/tiny_mce/tiny_mce.js"></script>
    <script type="text/javascript">
            tinyMCE.init({
                    mode : "textareas",
                    theme : "simple",
                    directionality : "rtl"
    </script>
    <!--end of TinyMCE -->

  • {tag_pagecontent} and other html... Not working in the HTML item

    Hello All,
    I have a Muse HTML item placed on the page... the contents contain the following:
    <div class="bodyarea">
    {tag_pagecontent}
    </div>
    .bodyarea is stored in a style sheet outside of muse....
    When I publish to Catalyst from Muse, my "Page Content" is not surrounded by the "bodyarea" div
    Does the HTML item delete all other html or code when the {tag_pagecontent} tag is placed withing in ????
    Thanks

    Hi Brad,
    I'm still in development, so I'm not paying for it just yet...
    Correct... I have a several template pages in Muse, on one of the template pages I have an HTML object with the following code inside of it... I figured, I'd add the .bodyarea div inside of Muse, so I do not have to add it within the "Content" area of every page I create in Catalyst that uses this template.
    <div class="bodyarea">
    {tag_pagecontent}
    </div>
    .bodyarea is defined withing my modulestylesheets.css file
    When I add the following from within a Catalyst page that uses the Muse template, the styles take affect...
    <div class="bodyarea">
    page content, blah, blah....
    </div>
    As before, when I define the <div> from with Muse, it doesn't show up in the html when I preview the code.
    Does that make sense?
    Just wondering why within the "html" object in muse, it's not working.
    Also, yes... the page that I was testing has that template applied to it.
    Thank you

  • Embedded OC4J Bindings Not Working

    I am having trouble with loading an AppModule using the 10.1.3 OC4J Embedded AS. When try creating an ADF panel binding I get the following error:
         javax.naming.NamingException: Lookup error: javax.naming.AuthenticationException: No such domain/application: "current-workspace-app/current-workspace-app";
    However, I can get a working reference to the AppModule using:
         env.put(Context.INITIAL_CONTEXT_FACTORY, "com.evermind.server.rmi.RMIInitialContextFactory");
         env.put(Context.SECURITY_PRINCIPAL, "oc4jadmin");
         env.put(Context.SECURITY_CREDENTIALS, "welcome");
         env.put(Context.PROVIDER_URL, "ormi://localhost:" + RMI_PORT + "/current-workspace-app");
         Context ctx = new InitialContext(env);
         AppModuleHome ejbhome = (AppModuleHome)PortableRemoteObject.narrow(ctx.lookup("AppModuleBean"), AppModuleHome.class);
         RemoteAppModule ejb = ejbhome.create(env);
    but I cannot use that in a data binding. Why does the first one using the generated code not work?

    Hi,
    tried with JDeveloper 10.1.3.3 and this works for me. Try JDeveloper 10.1.3.3 - if it doesn't work, have a closer look at your sessionFacade
    Frank

  • Html code in JButton not working

    hi all,
    i wrote html code in JButton,but it's not working,it is displaying all the code what i have placed in the html tag.this message is displaying in button.
    "<html><STYLE=\"font-family: Dialog; font-size: 12pt\"><center>Current<br>Date</center></STYLE></html"
    JButton but1 = new JButton("<html><STYLE=\"font-family: Dialog; font-size: 12pt\"><center>Current<br>Date</center></STYLE></html>");
    Thanks in advance
    bhaskar

    will it work in java 1.2 or not
    bhaskar

  • Embedded TTF font not working

    Hi everybody.
    In the first place, thank you. In the other hand, sorry for all my possible English mistakes.
    I have made several ePubs (validated in epubcheck and FlightCrew) with embedded fonts and all of them have always worked fine in ADE 1.7.2.
    However, the same ePubs in ADE 1.8. preview are failing. I don`t know why, but the text with the embedded font is not being displayed at all. 
    What has been changed that I'm missing it?

    This problem has been solved in the new preview version.
    Thanks!

  • Embeded Flash player not working

    I have a browser-based app that we are considering porting to
    AIR. The basic functionality of the app uses AJAX to pull down a
    list of videos to be displayed, then plays the video when it is
    selected. The browser-based app uses Quicktime videos, which I have
    come to learn won't work in AIR, so I'm trying to switch to a Flash
    player.
    My problem is that for the life of me, I cannot get AIR to
    play the video. I created the player in Flash, and everything works
    great there, as well as in any browser I can find. When I load in
    AIR, I see the player, but playback never starts. My
    application.xml file is very simple:
    quote:
    <?xml version="1.0" encoding="UTF-8"?>
    <application xmlns="
    http://ns.adobe.com/air/application/1.0"
    version="1.0">
    <id>test</id>
    <version>0.1</version>
    <name>test</name>
    <filename>test</filename>
    <initialWindow>
    <content>intro2.html</content>
    <visible>true</visible>
    <maximizable>true</maximizable>
    <minimizable>true</minimizable>
    <width>1100</width>
    <height>1000</height>
    </initialWindow>
    </application>
    and my page is also quite bland:
    quote:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "
    http://www.w3.org/TR/html4/strict.dtd">
    <html>
    <head>
    <title>Demo</title>
    <script type="text/javascript" language="JavaScript"
    src="AIRAliases.js"></script>
    </head>
    <body>
    <object
    classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0"
    width="857" height="484" id="airPlayer" align="middle">
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="allowFullScreen" value="false" />
    <param name="movie" value="airPlayer.swf" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="#000000" />
    <embed src="airPlayer.swf" quality="high"
    bgcolor="#ffffff" width="857" height="484" name="airPlayer"
    align="middle" allowScriptAccess="sameDomain"
    allowFullScreen="false" type="application/x-shockwave-flash"
    pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    />
    </object>
    </body>
    </html>
    My xml file, intro2.html, airPlayer.swf and
    intro.flv are all in the same directory. Any advice would be
    appreciated.

    Hi Conrad!
    As you have no doubt already realized, using the Learning
    Interaction templates that are available in Flash MX / MX2004 and 8
    will not work at all in Presenter content.
    The coding methods conflict while playing back within the
    Breeze environment and I
    think it has to do with the _dropTarget property as part of
    the interaction's codebase. The _dropTarget method is NOT supported
    in Breeze, but the hitTest() method IS!
    I have written a few drag and drop exercises that do work
    within Breeze content, and you have to use the hitTest() method to
    accomplish it.
    As you already have discovered, the bottom line is that the
    learning components were intended to be "stand alone" objects that
    could be incorporated into a web page (or even a CD as these
    objects are nothing more than swf files). Aside from the fact that
    the prebuilt/preconfigured learning objects in flash don't always
    work in Breeze, in my mind, the bigger question here is the ability
    (or more accurately) the inability to connect these SCO's to an LMS
    for tracking. As stand alone objects, they're actually pretty
    handy...but not in Breeze.
    I realize this doesn't help much with what you're trying to
    do, but from my perspective, you're better off creating your own
    drag n' drops.
    I've got a bunch of examples to share if you'd like to take a
    look...just send me a PM or email if you're interested.
    Rob
    [email protected]

  • Html 5 audio tag not working

    Hi, I am trying to create a web page that links to an audio file. I have added the <audio> tag which works in my Safari browser on my Mac but does not work on the i-phone. If I save the page by bookmarking and adding to my Home Screen I have more success. This is not a desirable option.
    Does anyone have any ideas?
    Glenn

    well for anyone else.
    my html was fine. in fact the server nginx was returning the wrong content-type and so i had to add the MIME types into my nginx config file.

  • Embedded YouTube videos not working

    Hello,
    Embedded YouTube videos used to work fine up until a few days ago but they have stopped working in all browsers. I use Safari, Firefox and Netscape Navigator.
    I am using Mac OS X (10.6.3) and have just conducted a software update and installed a fresh version of flash. This can't be a browser problem because it is not working on any of the browsers. I am having problems viewing embedded YouTube videos on such sights as Blip.fm, Facebook, etc but they used to work fine a couple of weeks ago.
    Is this a problem with flash? or Mac OS X?

    Another me too. In particular the symptoms are this:
    + any YouTube video embedded within a webpage loads the poster frame and the controls, but after clicking the play button only shows the progress indicator briefly before showing "An error occurred, please try again later." within the video frame.
    + the same YouTube videos play fine on the YouTube site.
    + other Internet video plays fine, embedded or not.
    + when the error occurs Safari reports "One error in opening the page. For more information, choose Window > Activity".
    + the Activity window shows "forbidden" for http://v13.lscache4.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2 Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor%2Coc%3AU0dWSVhMVV9FSkNNNl9QRllH &fexp=900028&algorithm=throttle-factor&itag=34&ipbits=0&burst=40&sver=3&expire=1 274817600&key=yt1&signature=C15947474FA80C9A1B9DA597103C5FF7D621A478.0C1490DE456 5D519F602B0043A4E1F9D800417A0&factor=1.25&id=c3e8886e8b459334
    + the same URL downloads fine when visiting YouTube directly, except the signature value is different.
    I have tested the following:
    + the same computer worked fine a week or so ago
    + other computers on the same shared ADSL connection work fine
    + Firefox works fine (contrary to other's experiences)
    + deleting com.apple.Safari.plist doesn't help
    + disabling/enabling the "Enable Plug-ins" preference doesn't help
    + deleting Preferences/Macromedia folder doesn't help
    + reinstalling Flash doesn't help
    + empty cache doesn't help
    Tis quite perplexing.

  • Embeded Flash component not working

    I have createdf a Flash movie using the Drag & Drop
    Learning Interactions Component using Flash MX 2004. The
    interaction works fine as standalone Flash movie but when embedded
    in an Adobe Presenter presentation, the drag works ok but it will
    not drop the object. I have had the Breeze control the Flash movie
    and also Breeze not control the movie.
    Any ideas?

    Hi Conrad!
    As you have no doubt already realized, using the Learning
    Interaction templates that are available in Flash MX / MX2004 and 8
    will not work at all in Presenter content.
    The coding methods conflict while playing back within the
    Breeze environment and I
    think it has to do with the _dropTarget property as part of
    the interaction's codebase. The _dropTarget method is NOT supported
    in Breeze, but the hitTest() method IS!
    I have written a few drag and drop exercises that do work
    within Breeze content, and you have to use the hitTest() method to
    accomplish it.
    As you already have discovered, the bottom line is that the
    learning components were intended to be "stand alone" objects that
    could be incorporated into a web page (or even a CD as these
    objects are nothing more than swf files). Aside from the fact that
    the prebuilt/preconfigured learning objects in flash don't always
    work in Breeze, in my mind, the bigger question here is the ability
    (or more accurately) the inability to connect these SCO's to an LMS
    for tracking. As stand alone objects, they're actually pretty
    handy...but not in Breeze.
    I realize this doesn't help much with what you're trying to
    do, but from my perspective, you're better off creating your own
    drag n' drops.
    I've got a bunch of examples to share if you'd like to take a
    look...just send me a PM or email if you're interested.
    Rob
    [email protected]

  • Have FLV embedded on website - Not working on all computers

    It is working on all the computers that I have for testing but some of my clients say the video is not playing:
    http://lamplighttheatre.com       Under the Yuletide/Click Here for Tickets there should be an flv playing automatically.
    Works on my machines with IE8 IE9 and Chrome but is not working on client's machine with IE9.  Any suggestions?

    It may possibly be due to the client running an older version of Flash player. There's KB article on the subject here: http://kb2.adobe.com/cps/904/cpsid_90416.html
    I'm running Firefox 8.0.1 and didn't experience any issues with your site in any event.

  • CODE ADDED using HTML Snippet Widget does not work

    I am trying to add some code to a web page using the HTML Snippet widget and it does not work on my page. the code is as follows:
    <script src='http://adn.ebay.com/files/js/min/ebay_activeContent-min.js'></script>
    <script src='http://adn.ebay.com/cb?programId=1&campId=5336536214&toolId=10026&keyword= coinset+nationaruba&catId=11116&width=728&height=90&font=1&textColor=333366&linkColor=333333&a rrowColor=8BBC01&color1=B5B5B5&color2=FFFFFF'></script>
    Can anyone help me to get this to work?
    Thanks!
    Gregg

    I got this code from Ebay. It is an Ebay partner link.
    Gregg

  • HTML embeded video is not playing on DMP

    We had created asp.net website first page is outputing a simple grid control that is working perfectly fine. On second page we had embed a video that is playing inside the media player control through html.
    Second page is blank on DMP, please suggest way forward as if we view the same website to a normal PC both of the pages are working.
    Any help in this regard will be highly appriciated.

    Hi Muhammad,
    Playing the video embedded in HTML is not a very good idea on DMP since the built-in DMP browsers has some limitations compared to a laptop one.
    As per the DMS content creation best practices, it is already not advised to use pages generated by ASP.net: http://www.cisco.com/en/US/docs/video/digital_media_systems/5_x/5_2/dmd/best/practices/guidelines.html#wp1167395
    To solve your problem, maybe you could consider using a playlist that would first display the html page you've created and would then display your video as a content taken from the DMM and not embedded into HTML?
    You would end up with something that would look more or less like this:
    Regards,
    Nicolas

  • HTML 5 audio tag not working in FF

    I am developing a website in asp.net and html 5 and trying to add some audio to the site.
    My site is:
    http://www.kevinroseworld.com/music.aspx/
    It is, currently, a very simple set up, just the one song. It works fine in Chrome and Safari, IE does not support the Audio tag and the message appears where it is supposed to, however, Firefox does not display the error message or play the audio file.
    I started using FF 3.6.10 and have now upgraded to FF 4 Beta 6 and neither version works.
    Any advice as to how to fix this?
    I also had a look on other forums and found others with the same problem: http://www.manifestmusicproductions.com/soundsNonflash.php for example, works in Chrome/Safari but not in FF.

    well for anyone else.
    my html was fine. in fact the server nginx was returning the wrong content-type and so i had to add the MIME types into my nginx config file.

Maybe you are looking for

  • HT4314 Can't see anymore which games my friends are playing, always NONE PLAYED on iPad, wrong/old games on iPhone.

    Since about a month I can't see anymore which games my friends are playing. On the new iPad it always display: last game played, none. On iPhone it shows wrong games for many. On both the timeline is correct tough. I thought it was a temporary thing

  • CD/DVD drive and recognising DVD's

    I have have a DVD from a skydive that i have done, it is recognised and played by any Dell or HP machine but my macbook pro says "supported disc not available" is there anything I can download to run it? Are there any particular formats that the driv

  • SAP Inbox to My Mail Account

    Hi I need to send the mail from the SAP Inbox (i.e. from Tcode SO01) to my personal mail account. In Tcode SO01, I am creating a new message and under recipient I am providing my mail ID (for eg [email protected]), and I am selecting Recp. Type as In

  • Syncing pictures without duping the file

    I already had a photo library file on my Iphone with a few pics. I added new pics by syncing from my pc and it duplicated the file on my Iphone and added a second file using the name I had the pictures saved in from the PC. Now I have two files with

  • Remote Object call error...

    hi, i executed 'search' action for extracting data from database. and, i received error below. -code: Server.ResourceUnavailable -message: Cannot invoke method 'execute' This action is OK in Flash Player 9.x version, but occured error in Flash Player