Trouble with help viewer

Hi!
My help viewer is not any more helpful. First when I opened help viewer for any application it appeared onlye blank window. I tried many different ways to fix it searching in google. Then I tried to solve problem re-installing HV with PACIFIST http://www.charlessoft.com/. And now report says "no help available for..." if I try to get help for any application. Any ideas how could I re-install or solve this problem?
BTW using pacifist was successful reinstalling Dictionary.

I've never got sollution with my problem with Help Viewer. I fixed it, but somehow some of information appeared on... chinise or I don't know what language. Recently, I had a trouble with my HD and I just went to Genius bar. They fixed everything fast and very good(hope), but I've never got clear answer what exactly happened with my MacBook...

Similar Messages

  • Trouble with Materialized View

    Hello,
    I'm in need of some help enforcing data integrity using a materialized view. In my example, each system may consist of three types of components and this is modeled using supertype/subtype relationships. I'm trying to enforce that, for a given system, a component cannot reside in more than one component table. For example, given System 1, if Component A exists in the mobile_components table, it cannot be inserted into the desktop_components table for System 1. Rather than using triggers, I'm attempting to use a materialized view with unique constraint to enforce this rule based on the example from Tom Kyte's "The Trouble With Triggers" article http://www.oracle.com/technetwork/issue-archive/2008/08-sep/o58asktom-101055.html. However, I can't seem to get it to work as it gives me ORA-12054: Cannot set the ON COMMIT refresh attribute.  I'm using UNION ALL, and I know that can be tricky, but I can't figure out what rules I'm breaking.  I have the necessary privileges.  Oracle 11g.  Can anyone help?
    Thanks,
    Mark
    create table systems (
    sys_id number,
    sys_name varchar2(100),
    constraint sys_pk primary key (sys_id),
    constraint sys_uk unique (sys_name));
    insert into systems values (1,'System 1');
    insert into systems values (2,'System 2');
    create table mobile_components (
    mo_comp_id number,
    mo_comp_name varchar2(100),
    mo_comp_sys_id number,
    constraint mo_pk primary key (mo_comp_id),
    constraint mo_uk unique (mo_comp_name, mo_comp_sys_id),
    constraint mo_fk foreign key (mo_comp_sys_id) references systems (sys_id));
    insert into mobile_components values (1,'Component A',1);
    insert into mobile_components values (2,'Component A',2);
    create table desktop_components (
    de_comp_id number,
    de_comp_name varchar2(100),
    de_comp_sys_id number,
    constraint de_pk primary key (de_comp_id),
    constraint de_uk unique (de_comp_name, de_comp_sys_id),
    constraint de_fk foreign key (de_comp_sys_id) references systems (sys_id));
    insert into desktop_components values (1,'Component B',1);
    insert into desktop_components values (2,'Component B',2);
    create table internet_components (
    in_comp_id number,
    in_comp_name varchar2(100),
    in_comp_sys_id number,
    constraint in_pk primary key (in_comp_id),
    constraint in_uk unique (in_comp_name, in_comp_sys_id),
    constraint in_fk foreign key (in_comp_sys_id_ references systems (sys_id));
    insert into internet_components values (1,'Component C',1);
    insert into internet_components values (2,'Component C',2);
    create materialized view log on mobile_components with rowid;
    create materialized view log on desktop_components with rowid;
    create materialized view log on internet_components with rowid;
    create materialized view mv_components
    refresh fast on commit with rowid as
    select rowid as row_id, mo_comp_id as comp_id, mo_comp_name as comp_name
    from mobile_components
    union all
    select rowid, de_comp_id, de_comp_name
    from desktop_components
    union all
    select rowid, in_comp_id, in_comp_name
    from internet_components;
    alter table mv_components add constraint mv_comp_uk unique (comp_id, comp_name);

    You need a marker column to distinguish which of your queries you union, that data came from:
    e.g.
    create materialized view mv_components 
    refresh fast on commit with rowid as 
    select 'a' marker,rowid as row_id, mo_comp_id as comp_id, mo_comp_name as comp_name 
    from mobile_components 
    union all 
    select 'b',rowid, de_comp_id, de_comp_name 
    from desktop_components 
    union all 
    select 'c', rowid, in_comp_id, in_comp_name 
    from internet_components;

  • Trouble with custom viewer for Android

    Hello, I have created a Custom Content Viewer for Android using Viewer Builder 1.5.1. After building the Content Viewer I sideloaded, v15 Android.apk and tested it on a Samsung Galaxy tab. It shows the empty gray viewer with no content.
    Is there something that I may have not done correctly with the android app? I want to test my viewer locally. I have uploaded folio with the same adobe Id, which I have used to create my content viewer but not able to find my content on tab.
    I have professional account for DPS, how to get "Sign In" button for my Content viewer and test it before uploading it to Android market? Any help would be appreciated.
    Thanx in advance
    Kundan

    Got it. I tried booting with MOD_AUTOLOAD set to yes, and it was working fine. Looks like I needed to specify some more modules in my list.

  • Still having trouble with Adobe Viewer

    I'm still having the issue that when I have multi state objects, (state 1 is off the page, state 2 is on the page) the hidden state (state 2) is showing up on the iPad Adobe Viewer when you click the |||| icon from the menu in the upper left corner. In the overlay creator panel 'tap to play/pause' is not checked.  'Cross Fade' and 'Hide before playing' are checked. 
    Any help would be appreciated!!  thank you!

    What I was able to determine:  In the Oject States where all the states are listed.  The State where there is no object in view needs to be listed first. (doesn't matter what state number it is, just needs to be first in the list)  When I did this for all my MSO's there was no viewing problems!!  Thanks for leading me down the right path. much appreciated!

  • Trouble with Design view

    Can anyone tell me why I cant see my table, images and forms
    in design view but i can in code view? I cant give you a link to
    the page though as I am between hosts at the moment.

    Same solution for you as for others. Check your Display
    Styles enabling.
    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
    ==================
    "ProfFritz" <[email protected]> wrote in
    message
    news:[email protected]...
    >I am having a similar problem: I cannot see any of the
    changes in design
    >view
    > but when I F12 into a browser window all of the changes
    are there. This
    > is
    > happening to all my documents.
    >
    > Here is the code from the latest one which I constructed
    from the 2 column
    > fixed layout with header and footer.
    >
    > Prof. Fritz
    >
    > <!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>
    > <style type="text/css">
    > <!--
    > body {
    > font: 100% Verdana, Arial, Helvetica, sans-serif;
    > background: #666666;
    > margin: 0; /* it's good practice to zero the margin and
    padding of the
    > body
    > element to account for differing browser defaults */
    > padding: 0;
    > text-align: center; /* this centers the container in IE
    5* browsers. The
    > text
    > is then set to the left aligned default in the
    #container selector */
    > color: #000000;
    > }
    > .twoColFixLtHdr #container {
    > width: 780px; /* using 20px less than a full 800px width
    allows for
    > browser
    > chrome and avoids a horizontal scroll bar */
    > background: #FFFFFF;
    > margin: 0 auto; /* the auto margins (in conjunction with
    a width) center
    > the
    > page */
    > border: 1px solid #000000;
    > text-align: left; /* this overrides the text-align:
    center on the body
    > element. */
    > }
    > .twoColFixLtHdr #header {
    > background:#FFCC00;
    > padding: 0 10px 0 20px; /* this padding matches the left
    alignment of
    > the
    > elements in the divs that appear beneath it. If an image
    is used in the
    > #header
    > instead of text, you may want to remove the padding. */
    > border: double medium #006600;
    > }
    > .twoColFixLtHdr #header h1 {
    > margin: 0; /* zeroing the margin of the last element in
    the #header div
    > will
    > avoid margin collapse - an unexplainable space between
    divs. If the div
    > has a
    > border around it, this is not necessary as that also
    avoids the margin
    > collapse
    > */
    > padding: 10px 0; /* using padding instead of margin will
    allow you to
    > keep
    > the element away from the edges of the div */
    > }
    > .twoColFixLtHdr #sidebar1 {
    > float: left; /* since this element is floated, a width
    must be given */
    > width: 200px; /* the actual width of this div, in
    standards-compliant
    > browsers, or standards mode in Internet Explorer will
    include the padding
    > and
    > border in addition to the width */
    > background: #EBEBEB; /* the background color will be
    displayed for the
    > length
    > of the content in the column, but no further */
    > padding: 15px 10px 15px 20px;
    > }
    > .twoColFixLtHdr #mainContent {
    > margin: 0 0 0 250px; /* the left margin on this div
    element creates the
    > column down the left side of the page - no matter how
    much content the
    > sidebar1
    > div contains, the column space will remain. You can
    remove this margin if
    > you
    > want the #mainContent div's text to fill the #sidebar1
    space when the
    > content
    > in #sidebar1 ends. */
    > padding: 0 20px; /* remember that padding is the space
    inside the div box
    > and
    > margin is the space outside the div box */
    > }
    > .twoColFixLtHdr #footer {
    > padding: 0 10px 0 20px; /* this padding matches the left
    alignment of the
    > elements in the divs that appear above it. */
    > background:#DDDDDD;
    > }
    > .twoColFixLtHdr #footer p {
    > margin: 0; /* zeroing the margins of the first element
    in the footer will
    > avoid the possibility of margin collapse - a space
    between divs */
    > padding: 10px 0; /* padding on this element will create
    space, just as
    > the
    > the margin would have, without the margin collapse issue
    > }
    > .fltrt { /* this class can be used to float an element
    right in your page.
    > The
    > floated element must precede the element it should be
    next to on the page.
    > */
    > float: right;
    > margin-left: 8px;
    > }
    > .fltlft { /* this class can be used to float an element
    left in your page
    > */
    > float: left;
    > margin-right: 8px;
    > }
    > .clearfloat { /* this class should be placed on a div or
    break element and
    > should be the final element before the close of a
    container that should
    > fully
    > contain a float */
    > clear:both;
    > height:0;
    > font-size: 1px;
    > line-height: 0px;
    > }
    > -->
    > </style><!--[if IE 5]>
    > <style type="text/css">
    > /* place css box model fixes for IE 5* in this
    conditional comment */
    > .twoColFixLtHdr #sidebar1 { width: 230px; }
    > </style>
    > <![endif]--><!--[if IE]>
    > <style type="text/css">
    > /* place css fixes for all versions of IE in this
    conditional comment */
    > .twoColFixLtHdr #sidebar1 { padding-top: 30px; }
    > .twoColFixLtHdr #mainContent { zoom: 1; }
    > /* the above proprietary zoom property gives IE the
    hasLayout it needs to
    > avoid several bugs */
    > </style>
    > <![endif]--></head>
    >
    > <body class="twoColFixLtHdr">
    >
    > <div id="container">
    > <div id="header">
    > <h1>The Lives of the Buddha</h1>
    > <!-- end #header --></div>
    > <div id="sidebar1">
    > <h3>Sidebar1 Content</h3>
    > <p>The background color on this div will only show
    for the length of
    > the
    > content. If you'd like a dividing line instead, place a
    border on the left
    > side
    > of the #mainContent div if it will always contain more
    content. </p>
    > <p>Donec eu mi sed turpis feugiat feugiat. Integer
    turpis arcu,
    > pellentesque eget, cursus et, fermentum ut, sapien.
    Fusce metus mi,
    > eleifend
    > sollicitudin, molestie id, varius et, nibh. Donec nec
    libero.</p>
    > <!-- end #sidebar1 --></div>
    > <div id="mainContent">
    > <h1> Main Content </h1>
    > <p>Lorem ipsum dolor sit amet, consectetuer
    adipiscing elit. Praesent
    > aliquam, justo convallis luctus rutrum, erat nulla
    fermentum diam, at
    > nonummy
    > quam ante ac quam. Maecenas urna purus, fermentum id,
    molestie in,
    > commodo
    > porttitor, felis. Nam blandit quam ut lacus. Quisque
    ornare risus quis
    > ligula.
    > Phasellus tristique purus a augue condimentum
    adipiscing. Aenean
    > sagittis.
    > Etiam leo pede, rhoncus venenatis, tristique in,
    vulputate at, odio.
    > Donec et
    > ipsum et sapien vehicula nonummy. Suspendisse potenti.
    Fusce varius urna
    > id
    > quam. Sed neque mi, varius eget, tincidunt nec, suscipit
    id, libero. In
    > eget
    > purus. Vestibulum ut nisl. Donec eu mi sed turpis
    feugiat feugiat.
    > Integer
    > turpis arcu, pellentesque eget, cursus et, fermentum ut,
    sapien. Fusce
    > metus
    > mi, eleifend sollicitudin, molestie id, varius et, nibh.
    Donec nec
    > libero.</p>
    > <h2>Theravada</h2>
    > <p>Lorem ipsum dolor sit amet, consectetuer
    adipiscing elit. Praesent
    > aliquam, justo convallis luctus rutrum, erat nulla
    fermentum diam, at
    > nonummy
    > quam ante ac quam. Maecenas urna purus, fermentum id,
    molestie in,
    > commodo
    > porttitor, felis. Nam blandit quam ut lacus. Quisque
    ornare risus quis
    > ligula.
    > Phasellus tristique purus a augue condimentum
    adipiscing. Aenean
    > sagittis.
    > Etiam leo pede, rhoncus venenatis, tristique in,
    vulputate at, odio.</p>
    > <h2>Mahayana</h2>
    > <p>Mahayana Buddhism predominates in East
    Asia.</p>
    > <!-- end #mainContent --></div>
    > <!-- This clearing element should immediately follow
    the #mainContent div
    > in
    > order to force the #container div to contain all child
    floats --><br
    > class="clearfloat" />
    > <div id="footer">
    > <p>Footer</p>
    > <!-- end #footer --></div>
    > <!-- end #container --></div>
    > </body>
    > </html>
    >
    >

  • Trouble with Adobe viewing videos on FB?

    For some reason, every time I attempt to view a video on Face Book lately, it will not show and says I need to install a different version of adobe.  Anyone else having this problem?  How have you been able to fix it? I can go on you tube and they play fine.  Just have problems in FB.

    When I tap on facebook mobile, the video will open up in a new webpage. I have to request a desktop site to see the video in the same page, but this is not the issue.
    I understand that there are some issue with this as well. What kind of video is being posted as well as what device are you visiting the mobile facebook from, the hardware is also known to cause issues if it is arm7.

  • Trouble with help button

    I cannot access help.  I have Adobe Elements 7 and each time I try to use help I get the message "The requested help topic could not be found, Reinstall to fix the problem.  I have reinstalled and still get the same message.
    How do I resolve this?

    When you press F1 function key what do you get?
    The pdf file for PSE10 Editor is here to download:
    <http://help.adobe.com/en_US/PhotoshopElements/10.0/Using/index.html>
    Or right-click on this link:
    <http://help.adobe.com/en_US/ElementsOrganizer/10.0/Using/elementsorganizer_10_help.pdf>
    PSE7 is very old for my machine to have it so can't help you there.
    Good luck.

  • Problem with Help Viewer

    I recently upgraded to Lion (10.7.3)
    I use Logic Pro and since the Lion installation, there is no longer any Logic Help in Helpviewer.
    When I try to get to the help from Logic, I just get an alert in Helpviewer that says the topic is not available.
    When I look in Helpviewer for Logic among all the apps, it isn't there.
    I'd appreciate some input here please:
    What files should be where in order for the Logic Pro Help topics to reappear?

    No advice from any Apple gurus here.....?
    Disregarding Logic itself, what would cause such a problem?

  • Help Viewer no longer works!

    Not sure when this started, but now when I choose the help menu (at least from Finder and iChat), it takes a while for the viewer to bring up the proper library and then the links in the window are dead. In addition, the search feature just results in the spinning cog.
    Not life threatening, but annoying.
    Dual 2.0GHz G5   Mac OS X (10.4.3)  

    Hi, Thomas.
    See my "Troubleshooting Help Viewer" FAQ for comprehensive advice on fixing issues with Help Viewer, including the issue you mention.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X
    Note: The information provided in the link(s) above is freely available. However, because I own The X Lab™, a commercial Web site to which some of these links point, the Apple Discussions Terms of Use require I include the following disclosure statement with this post:
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Help viewer not working

    When I type in a help topic nothing happens. Also, when I go to the home page it nothing happens when I click the links. This is really annoying becuase I want to ask a question and I can't get the help viewer to work.

    See my "Troubleshooting Help Viewer" FAQ for comprehensive advice on fixing problems with Help Viewer.
    In particular, the specific sections therein may prove helpful:
    - If Help Viewer links do not work, see the "Help Viewer links do not work" section of the FAQ.
    - If Help Viewer displays a blank window, see the "Help Viewer displays a blank window" section of the FAQ.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X
    Note: The information provided in the link(s) above is freely available. However, because I own The X Lab™, a commercial Web site to which some of these links point, the Apple Discussions Terms of Use require I include the following disclosure statement with this post:
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Help Viewer doesn't help...AFP connection status?

    I use Airport Extreme Basestation 'n' to connect to the internet.
    When I use the "Help"menu (Mac Help), I get a spinning beach ball and a box that says, AFP Connection Status...Looking up "XXXXXX'S Computer." I click on the "Cancel" button, nothing happens. I tried to quit the Help Viewer but couldn't. I have to Force Quit the Help Viewer.
    What is AFP Connection Status?

    Hi, Carlos. Welcome to the Discussions.
    See my "Troubleshooting Help Viewer" FAQ for comprehensive advice on fixing problems with Help Viewer.
    In particular, the specific sections therein may prove helpful:
    - If Help Viewer links do not work, see the "Help Viewer links do not work" section of the FAQ.
    - If Help Viewer displays a blank window, see the "Help Viewer displays a blank window" section of the FAQ.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X
    Note: The information provided in the link(s) above is freely available. However, because I own The X Lab™, a commercial Web site to which some of these links point, the Apple Discussions Terms of Use require I include the following disclosure statement with this post:
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Broken help viewer...

    My help viewer dosent show anything... it pops up and nothing, just a blank help viewer... How do I fix this?

    I'm having the same frustrating problem with Help Viewer on my brand new G5. I never did find com.apple.helpui in the preferences folder in the first place.
    Trashing com.apple.helpui.plist and com.apple.helpviewer.plist from preferences and the com.apple. helpui folder from caches, and then unselecting iTunes helper from startup items, then restarting sometimes does make the initial helpviewer screen pop up, and sometimes even the index link and the searchbox is responsive. But any links after that don't seem to do anything.
    When I check caches, com.apple.helpui is there, and in preferences I'll see com.apple.helpviewer.plist, but com.apple.help.plist and com.apple.helpui.plist are missing.
    Disconnecting from the internet does not seem to make any difference.
    I tried using Pacifist to re-install all help-related files I could find (com.apple.helpviewer.plist, helpUI.framwork and Help Viewer.app), but again no luck, and the two files mentioned above are still missing.
    Aaaaarrrggghhh! Any ideas?
    Hi Nathan,
    Yes, Mac Help is too sensitive to interruptions or
    being too impatient.
    Usual fix to this common problem is:
    Try first (quit Help) deleting this folder:
    Home/Library/Caches/com.apple.helpui
    If Help still doesn't work, try then deleting those
    files:
    Home/Library/Preferences/com.apple.helpviewer.plist
    Home/Library/Preferences/com.apple.help.plist
    (and
    Home/Library/Preferences/com.apple.helpui.plist
    for those who use Panther)
    More info about Help problems here:
    - The X Lab: Tro
    ubleshooting Help Viewer
    Good luck!
    Axl

  • I have been having a lot of trouble with the latest itunes update and my ipod classic 80Gb i.e. being unable to sync songs, but now i have no files at all on my ipod, it is completely blank when i view it from my computer. I need help, please, anybody.

    As it says above, i have been having a lot f trouble with my ipod classic and the latest itunes update, i was unable to sync songs or anything to it and have tried every conceivable 'fix' i could find. i have run an itunes diagnostic and the results are posted below. a major problem is that when i try and view my ipod through my computer it displays nothing at all on the ipod, no files or anything, this may be the problem but i have no idea how it has happened or how i could resolve it.
    This ipod holds huge sentimental value and i am loathe to buy a new one! If anybody can help it is greatly appreciated, than kyou in advanced.
    Microsoft Windows 7 x64 Home Premium Edition Service Pack 1 (Build 7601)
    ASUSTeK Computer Inc. K50IJ
    iTunes 11.1.5.5
    QuickTime not available
    FairPlay 2.5.16
    Apple Application Support 3.0.1
    iPod Updater Library 11.1f5
    CD Driver 2.2.3.0
    CD Driver DLL 2.1.3.1
    Apple Mobile Device 7.1.1.3
    Apple Mobile Device Driver 1.64.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number 0038B8600B98D1E0
    Current user is not an administrator.
    The current local date and time is 2014-03-21 16:52:39.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is supported.
    Video Display Information
    Intel Corporation, Mobile Intel(R) 4 Series Express Chipset Family
    Intel Corporation, Mobile Intel(R) 4 Series Express Chipset Family
    **** External Plug-ins Information ****
    No external plug-ins installed.
    Genius ID: 2fd81a1f13cf3ff25a8b4f0e8e725116
    **** Device Connectivity Tests ****
    iPodService 11.1.5.5 (x64) is currently running.
    iTunesHelper 11.1.5.5 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    Universal Serial Bus Controllers:
    Intel(R) ICH9 Family USB Universal Host Controller - 2934.  Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2935.  Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2936.  Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2937.  Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2938.  Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2939.  Device is working properly.
    Intel(R) ICH9 Family USB2 Enhanced Host Controller - 293A.  Device is working properly.
    Intel(R) ICH9 Family USB2 Enhanced Host Controller - 293C.  Device is working properly.
    No FireWire (IEEE 1394) Host Controller found.

    Here is what worked for me:
      My usb hub, being usb2, was too fast. I moved the wire to a usb port directory on my pc. That is a usb1 port which is slow enough to run your snyc.

  • Trouble with the hosted website from a page viewer web part. (Sahrepoint 2010)

    Hi everyone,
    I am facing trouble with sharepoint and I would like some help.
    I use Sharepoint 2010 and I have included a page viewer page part in one the pages I 've created that hosts another website. Although most of the functionality of the hosted website is there, some functions of it don't work. These functions are apply buttons
    or downloading documents buttons. My guess is that the web part has to update dynamically and it should be independent from the Sharepoint page.
    Is there a way to do this? It is important that the website is hosted in the since at the same page I have s guide on how to use the hosted website.
    If this can't be done using a page viewer webpart I am open to other suggestions as well.
    Thanks in advance!
    Sakis

    Is it possible that the hosted website page is using HTML5 of other functionality that isn't supported by the IE-8 restriction in the SharePoint master page? We've run into that before, where the page wouldn't work in the page viewer. I also had problems
    where Chrome/Firefox wouldn't display a pager viewer when it crossed hosts/changed protocol.
    What I had to do was add some javascript/Jquery to pop up another window to view the page if I wasn't on IE, getting out of the restriction of the SharePoint master page. If I was in IE the page viewer webpart worked.  Not ideal, but maybe you could
    adapt - they could see your instructions on the page but work with the host page on another.
    <script type="text/javascript" src="/Javascript/JQuery/JQueryMin-1.8.2.js"></script>
    <script type="text/javascript">
    $(document).ready(function() {
    var isIE = /*@cc_on!@*/false || document.documentMode;
    if(!isIE) {
    window.open('http://fmgblog/measure/email/dashboard.php');
    }); // end of document ready
    </script>
    Robin

  • I am trying to publish my site so a client can view it. In the past I have not had trouble with this

    I am trying to publish my site so a client can view it. In the past I have not had trouble with this

    Adobe really does have the worst customer service/tech support of any product I have ever experienced. It is so unfortunate.
    Date: Tue, 13 Aug 2013 08:26:34 -0700
    From: [email protected]
    To: [email protected]
    Subject: I am trying to publish my site so a client can view it. In the past I have not had trouble with this
        Re: I am trying to publish my site so a client can view it. In the past I have not had trouble with this
        created by Brad Lawryk in Help with using Adobe Muse CC - View the full discussion
    We need a little more info ..
    Where are you publishing to and what is happening when you try and publish?
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5590683#5590683
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5590683#5590683
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5590683#5590683. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Help with using Adobe Muse CC by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

Maybe you are looking for

  • RDDEXCEL job is getting cancelled

    Dear All, While transporting the request, the request ending with error code -12 , when i checked the log its showing RDDEXCEL JOB is cancelled , This is happening for every request . Thanks in advance . Thanks S SURESH <subject_modified> Do NOT use

  • How do I get an MQSeries client working...

    It seems I can never get my head round IBM products. MQSeries has proven to be no exception! Perhaps there's a conspiracy to keep PS in work? ;) Anyway, gripes aside, I've been trying to get a Java client to talk to a remote MQSeries server. I've dow

  • Disabling Log_Archive_Start in Archive Log Mode

    Guys, I have a Database running in Archive Log mode. I have a situation where in I have to do bunch of bulk updates for which I dont want any logs generated. sO I was thinking to set the intialization parameter log_archive_start to false before I run

  • Door in Solaris

    hi, Can anyone suggest a website/article that describes development and description/role of doors in UNIX or Solaris... the files starting with dr-xr--r--

  • I can not enable bluetooth on Iphone 4

    I can not enable bluetooth on Iphone 4. Attempt enabled in settings, bluetooth and awaits income. (not displayed tab)