Robohelp 10 -Solution -IE- Active X blocking script

Currently we are using robohelp10 for generating webhelp documents. We purchased that too.. Now we are facing following issues,
    1. Active x is blocking our script in IE- Please suggest us some solution to unblock that programmatically .
    2. Google Chrome is not supported.
    3.Content layout remains empty in generated output.
Please suggest us solution as soon as possible. Its very urgent.
Thank You,
Suganya
Message was edited by Peter Grainge to remove email address. Never include an email address on any forum, unless you want spam!

I have removed your email address for the reason now stated in your post.
Also the idea is that answers are posted here so that others may benefit.
Just to add to the replies, add the Mark of the Web setting in your settings when you generate the help. Alternatively, use an HTML5 layout.
See www.grainge.org for RoboHelp and Authoring tips
@petergrainge

Similar Messages

  • I'm still getting all these annoying popups windows, although I followed every solution suggested(safari extentions,block the pop ups) it's really disturbing please help :(

    I'm still getting all these annoying popups windows, although I followed every solution suggested(safari extensions,block the pop ups) it's really disturbing please help

    There is no need to download anything to solve this problem.
    You may have installed one or more of the common types of ad-injection malware. Follow the instructions on this Apple Support page to remove it. It's been reported that some variants of the "VSearch" malware block access to the page. If that happens, start in safe mode by holding down the shift key at the startup chime, then try again.
    Back up all data before making any changes.
    One of the steps in the article is to remove malicious Safari extensions. Do the equivalent in the Chrome and Firefox browsers, if you use either of those. If Safari crashes on launch, skip that step and come back to it after you've done everything else.
    If you don't find any of the files or extensions listed, or if removing them doesn't stop the ad injection, ask for further instructions.
    Make sure you don't repeat the mistake that led you to install the malware. It may have come from an Internet cesspit such as "Softonic" or "CNET Download." Never visit either of those sites again. You might also have downloaded it from an ad in a page on some other site. The ad would probably have included a large green button labeled "Download" or "Download Now" in white letters. The button is designed to confuse people who intend to download something else on the same page. If you ever download a file that isn't obviously what you expected, delete it immediately.
    Malware is also found on websites that traffic in pirated content such as video. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect more of the same, and worse, to follow. Never install any software that you downloaded from a bittorrent, or that was downloaded by someone else from an unknown source.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates (OS X 10.10 or later)
    or
              Download updates automatically (OS X 10.9 or earlier)
    if it's not already checked.

  • Hello all...is there a way to activate(on startup) /deactivate(on logoff) CS6 Suite using a script, Active Directory Login Script or central Management Tool?

    hello all...is there a way to activate(on startup) /deactivate(on logoff) CS6 Suite using a script, Active Directory Login Script or central Management Tool?

    The long answer is: No. this is Adobe's secret sauce and you cannot manage it using other tools.
    Mylenium

  • Iphone4. The activation key blocked the operation of the device

    Suddenly several applications went off.
    Service station re-loaded the operating system with a new and updated version but
    then the activation code blocks the device even after registration of ID and
    password. (Maybe because it matched the previous operating version ?).In any case  How to
    renew the device operation and cancel the blocking situation

    You can't

  • SWF Basic Image Slider Causes "Blocked Script" Warning in IE

    Hey Guys,
        I just recently coded a basic image slider/slide show in Flash CS5. Bassicly, it's just a bunch of images that slide via motion tween in and out of view (Like on the right side of Pizzahut.com, my clients insperation) but, when published and thrown into my HTML, it causes Internet Explorer to give the "To Help Protect Your Security, Internet Explorer has prevented this webpage from running scripts or active X Controlls" and you have to click the little bar at the top and select "Allow Blocked COntent" for the slideshow to work. I specifically coded this show in flash (Published as an SWF) to avoid this warniong (As opposed to J-Query) and I have sites that I have made with similar SWF image sliders that don't through up this warning (http://www.grangerfun.com/pizza.asp) for example. Is there something I am doing wrong? A publish setting maybe? Thanks for your help!

    when you test local files you'll often cross a security sandbox from a local file to an internet file.  to resolve, either upload the file(s) to a server (so they're all in the internet sandbox) or change your local flash player settings:  http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04.htm l

  • ¿How i do for unskip an activity by powershell script?

    Hi.
    Im looking a way for unskip an activity from a service request using a powershell script.
    I've obtained for example the review activities.....
    $activities
    = Get-SCSMRelatedObject
    -SMObject
    $srObj
    –Relationship
    $wiContainsActivity
    $reviewAct
    = $activities
    | Where {$_.ID -match
    'RA'}
    Now i need to unskip an specific activity filtering by name for example .
    Regards.

    Thanks Thomas.
    I've tested the solutions but none work. 
    My problem is that im looking a way for dont create many service request templates (only
    one service request template but many activities templates).  I thought about create a classification enum list in a service request template with authoring tool (VALUE EXAMPLES: email, printer, vm creation) and find the way to create a workflow that
    add automatically the activities when i change the list value.
    A member of the community told me this:
    "Hi,
    You can create a single SR template and add additional activities and skip them as by default. Then create a workflow (or use SCORCH) to unskip the required activities. It much easier than adding new activities 'on-fly'."
    And i've created an authoring tool WF that run when a service request is created and execute
    the next pwshell script for unskip the review activities skipped in the service request that by default are skipped in the template but is not running. Can you help me? what's wrong?
    set-executionpolicy -executionPolicy ByPass
    $a = (get-module|%{$_.name}) -join " "
    if(!$a.Contains("SMLets")){Import-Module SMLets -ErrorVariable err -Force}
    $srClass = Get-SCSMClass System.WorkItem.ServiceRequest$
    $srObj = Get-SCSMObject -Class $srClass | Where {$_.ID -eq $srID}
    $wiContainsActivity = Get-SCSMRelationshipClass System.WorkItemContainsActivity
    $activities = Get-SCSMRelatedObject -SMObject $srObj –Relationship $wiContainsActivity
    $reviewAct = $activities | Where {$_.ID -match 'AR'}
    $ACStatusSkipped = Get-SCSMEnumeration ActivityStatusEnum.Skipped
    $ACStatusReRun = Get-SCSMEnumeration ActivityStatusEnum.Rerun$
    If ($reviewAct.Stauts -eq $ACStatusSkipped) { 
      set-SCSMObject $reviewAct -Property Status -Value $ACStatusRerun
    }

  • Warning Msg if any open transactions exists while activating Central Block

    Hi,
    As per business requirements, We used to put central block for the
    Business partners(Customers and Contacts) in CRM.
    While saving the BP after activating the Central Block,system saves it.
    But if there is any OPEN Service Requests or Interaction Record exits
    for that BP, it's not throwing any warning message and still saves the
    changes.
    In standard, Is it possible to throw warning message if any open document exists for that BP. Pl suggest.
    Regards
    Babu

    Hi,
    As per business requirements, We used to put central block for the
    Business partners(Customers and Contacts) in CRM.
    While saving the BP after activating the Central Block,system saves it.
    But if there is any OPEN Service Requests or Interaction Record exits
    for that BP, it's not throwing any warning message and still saves the
    changes.
    In standard, Is it possible to throw warning message if any open document exists for that BP. Pl suggest.
    Regards
    Babu

  • Microsoft Active X Block

    Hello.
    I am new to Dreamweaver and webpage design in general. I have put together a page that has some pull-down menus generated via Spry and a tabular box I found on Adobe's exchange (Jquery). All working fine in the live view and in firefox. When I view it in IE, I get that message saying warning the user about active x codes. Is there anyway around this? I wouldn't mind greatly, but rather than showing a static view of the page, the browser sees a complete mess where my tabbed table should be. (I think this because the widget normally hides parts of the text and when the active X control is blocked they see all the text).
    Is there anything that can be done? Thanks for your help.

    In addition to what the others said, on IE 8 you can also define a specific security exception rule that handles this if you test locally. On older versions it's of course that's not possible. You would have to toy with your zone security settings and this could be extremely risky when you are online...
    Mylenium

  • Active Sync/lh script issue

    Hi there. We've recently rolled out IdM, and we're having some issues with Active Sync handlers. Specifically, when we set a handler to start up automatically, it seems to execute every time we run a script with the lh script command.
    That is to say, if we have a feed that's supposed to run at startup time, it executes when we run an lh script, then runs in the background until the lh script finishes, then dies when the script is over, which produces a number of error messages in the log.
    Is this known behavior? Is there a way we can prevent lh script from starting up activesync resources? Thanks.

    Hi,
    Please refer to the following forum to get professional support:
    Exchange Previous Versions-Mobility and ActiveSync
    http://social.technet.microsoft.com/Forums/exchange/en-US/home?forum=exchangesvrmobilitylegacy
    Thank you for your understanding and support!
    Best Regards,
    Amy Wang

  • Solution Manager 7.1 - Monitor scripts which runs as cron job at OS level ?

    Hi All,
    We have Solution Manager 7.1 in our landscape and we have configured RCA, Monitoring.. Is it possible to Monitor the scripts running as Cron Job at the OS level?
    If in case, the script stops due to an issue, we need to get the alert in Solution Manager.
    Also can you please let us know whether it is possible to monitor jobs scheduled through external job scheduling tool.
    Thanks & Regards,
    Vaishali.K

    Hi,
    How to Schedule the background Job at the OS level:
    Invoke a sapevent using a OS script and then have a SAP background job set to run on a sapevent. I say this assuming Unix and a job in crontab. I would guess the same thing could be done on a Windows system.
    sapevt TRIGGER_NAME -t
    pf=d:usrsapDEVsysprofileDEV_DVEBMGS00_SVRNAME nr
    Kindly go through the links,hope this will help you out
    [Steps to configure RCA and Monitoring in SolMan;
    [http://help.sap.com/saphelp_45b/helpdata/en/c4/3a7ef8505211d189550000e829fbbd/content.htm]
    Thanks & Regards
    Ajitabh

  • Is there a solution to parental controls blocking https?

    I have seen many posts regarding parental controls blocking any website that has SSL or https, but they are for older versions of OS X.  Is there a solution for the latest version of Mavericks?  I am amazed that the problem has persisted as long as this without Apple coming up with a better version of Parental Controls that can actually block inappropriate content not just ALL content.  Thanks for any help out there!

    No No No No I'm talking about completely shutdown

  • Active X and script

    This may sound like the rookie that I am but is there any way to set up a flash insert in Dreamweaver that eliminates the viewer from accepting active x in their browser. Great that one can use Flash inserts but not so good that the viewer may not activate activeX in their browser there by missing half the page.

    Since your question is on scripting you should probably go to the scripting forum. Other than that, the products you talked about were flash and Dreamweaver that are also in other forums.

  • Active content blocker problems

    I'm new to all of this, so my question may be fairly basic,
    but I'd really appreciate some help.
    Whenever I add any behaviour, or add a flash button then
    preview in IE6, the content is blocked by Windows. You have to
    click on the top of the page to disable this. Is there any way I
    can prevent this from happening?
    Many thanks
    Dan

    This is a feature in the browser. Allows the viewer more
    control over what content they want to see.
    There's nothing you can do about it as far as someone else's
    machine goes.
    Dreamweaver is just a web development tool that helps you
    code your webpage. This code is then parsed and executed by the
    browser. It is at the browser end that active content is blocked or
    allowed etc. Dreamweaver has nothing to do with it at all

  • Activation error in scripts

    while executin the script in se38 there is an  error saying ' Form zsunscript language EN is not active and has no errors ' .
    even after checking and activated for many times.
    zsunscript is my scriptname.
    thanku
    sundeep.v

    Hello,
    When you have created the InfoSource for the generic datasource, have you added field 0RECORDMODE to the InfoSource? When loading data to a ODS, 0RECORDMODE is essential.
    The InfoObject is usually mapped to ROCANCEL (Indicator: Cancel Data Record) field of the extractor. This field is usually present in Standard extractors. But even if the field is not present in your extractor, add it to InfoSource Communication structure and leave it unmapped in transfer rules.
    I think this might solve the problem.
    Regards,
    Pankaj

  • Daily activity help for script... and investgating some issue

    hi
    i am new to apps.i fil i need some script to solve some daily activity issues and solving some issue.
    can anyone help me or list of issue(s).I know it may different from site to site but i want very common list.so that issues could be resolved quickly.
    regards

    hsawwan wrote:
    Hi,
    invalid object lists and number.Query dba_objects for invalid objects and compile it either manually or via adadmin.yes. i know but i need to schedule this with scripts so that it will compile jar files,invld obj etc.
    >
    failing patches.Check the patch log file.
    diagonostics failed patches.Check the patch log file as well as the workers log file.where is the worker logfile?
    >
    backup of archivelog and database.Test the backup periodically.how?
    >
    gathering statistics for apps and dadatabase users.Schedule "Gather Schema Statistics" concurrent program on regular basis.option is dbms_job right?
    >
    specific concurrent manager/log lists for specific requests.Check the CM log file along with the failed request log file.i notice FND<sum number>.log usually created for this but for specific log file is needed to query from db.for this reason i want to use some scripts.
    >
    shrinking apps tablespaces to utilise the spaces and enhancing the performance of apps.Shrinking tablespaces does not enhance performance.
    may not enhance performance but may enhance the disk space.
    See (Note: 122669.1 - How to Perform a Health Check on the Database).
    monitoring alerts.
    monitoring forms and report and generating trace files.You can do from OAM.
    monitoring triggers Write an alert to notify you in case the status of the triggers changed.
    startup total apps and shutdowns total apps (this actually sysadmins of clients want)Usually, we review the startup/shutdown scripts log files.
    total cloning process within a night.You will have to review the log files.
    Thanks,
    Hussein

Maybe you are looking for

  • Very simple question about how to change a specific field in a table

    Hi, I'm working with a simple JSF web application, I have just drag a table, the "travel" standard example, and I just had 3 columns, one with a drop down list, other with a static text field and a Button. Then I introduced the following java code in

  • Including iPhoto's in a Word document

    I have a couple of pictures in iPhoto 5.0.4 (263) which I would like to include in a Word X (Service Release 1) document. I've tried Insert > Picture > From file ... but o no avail. I've tried both from my iPhotos in my User > Pictures > etc folder a

  • BB Link crashes at startup

    I am unable to start the BBLink application on my desktop (Windows 7) because it crashes immediately. I just updated the software, hoping to solve the issue, but it didn't work. Here is the information provided by Windows. Problem signature:   Proble

  • Date picker calendar modification

    Is it possible to limit number of years presented in the select list of datepicker calendar? If yes, is it an option for dynamic shift, for example show +/- 10 years from current year? Version 2.0. Thanks.

  • Archive Confusion

    I'm stuck in making archive Let me explain what i want exactly. Here is the main (index.php) file. Download it and check out the links on the headlines and news. I have made a link for the top news with the name of that file (detail1.php) Here's the