Tag Cloud in RoboHelp 8 WebHelp

I was wondering about a tag cloud on the front page of my WebHelp output, perhaps based on the keywords or title, heading 1 and keywords. Or, even better, on search terms.
I have no idea how to go about this but was wondering if anyone else had given it any thought or to throw it out there as a challenge. Could it be generated from Index keywords?
Any takers, theories, ideas or comments?
Greig

ability anyone appears bit cheers clouds consider currently feel form frequency generate grieg happy information list moment page peter point really related required rick robohelp sharing something submitting tag tagcrowd thanks thought thread users watching web wish words work worthwhile
created at TagCrowd.com
Thank you Peter and Rick for the replies.
At the top is a tag cloud created via Tag Crowd, as suggested by Peter, using Rick's reply. To create the cloud I cut and pasted Rick's reply into Tag Crowd's paste text option. The next step would be to add links to the words so the user is taken to a page that lists the results, like a search results page. All of this is sounding like a lot of work for little reward and for something that is gimmicky. Peter's suggestion, though, is a valide one for making a tag cloud.
I suppose what I was really wanting was to see a way of using something like the search weightings to determine the size of the text, picking out any keywords that had been added to topics and linking to a search results page. Or of using the index to do a similar thing (Is it possible to put the contents of an index keyword list on to a topic page to create an index page?).
As for Rick's suggestion that Tag Clouds are driven by users tagging of pages I would generally agree but seeing as though we don't have that ability in RoboHelp I thought I would skip that bit, although I feel it would be a nice feature for users, along with an ability for them to save a favourites list perhaps. Time to follow up on Rick's suggestion of using the wishlist.
Thanks,
Greig

Similar Messages

  • Need API for creation of tag cloud

    Hi,
    I have a requirement to create a tag cloud based on a particular business logic. Does Webcenter provide API for the same?
    Can I customize the "Tagging - Tag Cloud" task flow? If yes, how and to what extent?
    Thanks in advance,
    Anurag

    Hi  Ajit,
      No another FM is available . U can directly create using transaction SE01 .
    Or u can create using BDC .

  • 3D tag cloud for Flex

    I'm trying to use this one class to create the tag cloud to flex.
    1.I created a master document.
    ?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
       xmlns:s="library://ns.adobe.com/flex/spark"
       xmlns:mx="library://ns.adobe.com/flex/mx"
        creationComplete="init();" minWidth="955" minHeight="600" xmlns:local="*">
    <fx:Script>
    <![CDATA[
    import mx.core.IVisualElement;
    import mx.core.UIComponent;
    public var inputWordr:String = "";
    private function init():void {
    c20.addElement(tirs as IVisualElement);
    ]]>
    </fx:Script>
    <fx:Declarations>
    <local:MyComponent id="tirs" x="0" y="0" width="300" height="300"/>
    </fx:Declarations>
    <s:BorderContainer x="10" y="38" width="542" height="428" id="c20">
    </s:BorderContainer>
    </s:Application>
    2. And created a class (MyComponent.as) based on code from the example and import all required swc.
    package
    import flash.display.BitmapData;
    import flash.display.Sprite;
    import flash.events.Event;
    import flash.filters.BitmapFilterQuality;
    import flash.filters.BlurFilter;
    import flash.filters.GlowFilter;
    import flash.text.TextField;
    import mx.core.UIComponent;
    import org.papervision3d.core.geom.Particles;
    import org.papervision3d.core.geom.renderables.Particle;
    import org.papervision3d.events.InteractiveScene3DEvent;
    import org.papervision3d.materials.special.BitmapParticleMaterial;
    import org.papervision3d.objects.DisplayObject3D;
    import org.papervision3d.view.BasicView;
    public class MyComponent extends Sprite
    private var scale:Number = 5;
    private var radius:Number = 350;
    private var smoothing:Boolean = true;
    private var minAlpha:Number = 0.3;
    private var glow:GlowFilter;
    private var tags:Array;
    private var tag_num:uint;
    private var bv:BasicView;
    private var tagArray:Array;
    private var tagContainer:DisplayObject3D;
    public function MyComponent()
    init ();
    private function init ():void {
    glow = new GlowFilter (0x003366, 1, 8, 8, 2, BitmapFilterQuality.LOW, true, false);
    tags = ["free","news","Cookie","practice","JavaScript","toy","life","something","LocalConnection ","memo","MSN","funny", "ActionScript 3", "Food", "Book", "Photo", "favorite"];
    tag_num = tags.length;
    tagArray = [];
    tagContainer = new DisplayObject3D ("tag_container");
    tagContainer.x = -radius * 0.25;
    tagContainer.y =  radius * 0.25;
    bv = new BasicView (300, 300, true, true);
    bv.viewport.interactive = true;
    bv.scene.addChild (tagContainer);
    bv.camera.z = -2 * radius;
    bv.camera.zoom = 20;
    bv.startRendering ();
    addChild (bv);
    buildTags ();
    addEventListener (Event.ENTER_FRAME, enterFrameHandler);
    private function buildTags ():void {
    var i:uint;
    for (i = 0; i < tag_num; i++) {
    // 2D
    var txt:TextField = new TextField ();
    txt.text = tags[i];
    txt.filters = [new BlurFilter(1.1, 1.1)];
    var txtW:Number = txt.textWidth + 4;
    var txtH:Number = txt.textHeight + 4;
    var bitmap:BitmapData = new BitmapData (txtW, txtH, true, 0x01FFFFFF);
    bitmap.draw (txt);
    var phi:Number = Math.acos((2 * (i + 1) - 1) / tag_num - 1);
    var theta:Number = Math.sqrt(tag_num * Math.PI) * phi;
    // 3D
    var material:BitmapParticleMaterial = new BitmapParticleMaterial (bitmap);
    material.interactive = true;
    material.smooth = smoothing;
    var tag:Particle = new Particle (material, scale, 0, 0, 0);
    var tagHolder:Particles = new Particles ("tag_");
    tagHolder.addParticle (tag);
    tagHolder.x = radius * Math.cos (theta) * Math.sin (phi);
    tagHolder.y = radius * Math.sin (theta) * Math.sin (phi);
    tagHolder.z = radius * Math.cos (phi);
    tagHolder.useOwnContainer = true;
    tagHolder.autoCalcScreenCoords = true;
    tagHolder.addEventListener (InteractiveScene3DEvent.OBJECT_OVER, objectOverHandler);
    tagHolder.addEventListener (InteractiveScene3DEvent.OBJECT_OUT, objectOutHandler);
    //tagHolder.addEventListener (InteractiveScene3DEvent.OBJECT_PRESS, objectPressHandler);
    tagContainer.addChild (tagHolder);
    tagArray.push (tagHolder);
    private function objectOverHandler (e:InteractiveScene3DEvent):void {
    bv.viewport.buttonMode = true;
    e.target.filters = [glow];
    private function objectOutHandler (e:InteractiveScene3DEvent):void {
    bv.viewport.buttonMode = false;
    for (var j:uint = 0; j < tag_num; j++) {
    tagArray [j].filters = [];
    private function enterFrameHandler (e:Event):void {
    tagContainer.rotationX += (mouseY - 300 * 0.5) * 0.01;
    tagContainer.rotationY += (mouseX - 300 * 0.5) * 0.01;
    for (var j:uint = 0; j < tag_num; j++) {
    tagArray[j].alpha = minAlpha + (1 - minAlpha) * (1 - (tagArray[j].screen.z - radius) / (2 * radius));
    3. Then I created a call of custom component, but nothing is displayed or causes errors. I tried to insert this component in different ways.
    Check out where I made mistakes, please.

    all i could find...
    http://www.ericd.net/tagCloud/

  • Is there a way to prevent Robohelp WebHelp from appending characters to the end of the URL address for a TOC Entry?

    I am running RoboHelp 10 on Windows 7 Enterprise SP1 64 bit OS.
    WebHelp is appending characters to the end of the TOC entry's URL address. The characters "bc-n" where n is a number are being generated for all of the TOC Page Entries when I generate WebHelp output. We are exporting the HTML files for import into an application. The TOC Page Properties Link to: property does not contain the characters in RoboHelp.
    We have standardized names defined for our application and the appended characters are not going to work in the application.
    cid:[email protected]
    When I use the generated html output in IE10 Version 10.0.9200.16635 Update Versions: 10.0.7 (KB2846071) the characters show up in the URL when I hover the mouse over the TOC entry as shown in the screenshot below.
    cid:[email protected]
    The two screenshots show that the Link to property does not have the characters "bc-7" but the URL address does.
    Is there a setting or way to configure RoboHelp to prevent Robohelp WebHelp from generating and appending characters to the end of the URL address for TOC Entries?

    I have never known Rh add any characters so I think something else is at play here. Please open one of the sample projects and see what happens there. Click Open on the RoboHelp Starter page and then click Samples in the ribbon on the left.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Implementation of Tag Cloud

    hi All,
    can we implement  Tag Cloud   in our enterprise portal?
    The user searches for some keywords and those keywords are stored in some location and are displayed in one page and the most searched keywords are displayed in larger fonts.
    also please tell if there is any option in TREX  where we can enable tagging feature.
    regards,
    SS

    Hi,
    There is no standard way to do that.
    We have done a Tag Cloud with Trex for a customer, we had to enable the Trex log and then we created a Tag Cloud with a Java application, key words came from the Trex log file.
    Regards, Gilles.

  • Tag cloud with autosuggest feature in ADF

    We want to select multiple records or words from a huge list so we tried autosuggestor which selects one record but if we want to add multiple words or records and show it like tag cloud as we add multiple email address in gmail then how can we achieve it.

    You can refer below link
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/004-auto-suggest-169120.pdf
    Thanks
    AJ

  • Need Flash Guru: How can I create a 2D Simple tag cloud in Flash/AS3

    I have done some searches, but couldn't find anything on Simple 2D tag clouds like this.
    I don't need to make it animated, i just need to create a simple tag cloud in Flash. Please help!!
    I just need two rows with 16 words, no animation, but texts got to fire onclick event as button.
    Please help

    1.  create a movieclip that contains a textfield.  give the textfield an instance name (say tf) and assign the movieclip a class (say MC).
    2.  create a textformat instance.
    3. create an array of your words.
    4.  loop through your array of words
    a.  creating a movieclip for each word,
    b.  assign the textformat a size (a random integer between your desired limits should work),
    c.  assign the word to the text property of the textfield and
    d.  assign the textformat to the textfield and autosize your textfield
    e.  add the movieclip to the display list
    f.  position the movieclip (after the previously positioned one)
    g.  add your event listener (possibly using another array).

  • How can I share my tag clouds with others?

    I just found out this AM that my tag cloud links only work for me. see this thread.
    So how can I post links to my tag clouds?
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

    Darren wrote:
    Laura F. wrote:
    I think I'm confused - Does this link not work to see Ben's tags?  I can take it to my other browser and view your tags.
    I guess you're trying to narrow down to a particular part of your tag cloud?
    When I click that link, it just takes me to the main NI Forums page...nothing Ben-specific.
    -D
    I do see Ben specific Tags...
    (FYI-I do not have any of my own tags, not sure if that matters...) 
    Message Edited by paulmw on 12-10-2009 05:49 PM
    Attachments:
    BensTaggs.JPG ‏111 KB

  • Tag Cloud - how do I get the #hashtags tags to show in cloud?

    I've been playing around and added the Tag Cloud to my site. I have set it to "All users". I would have thought that it would pick up hashtags automatically - is this not the case? It has picked up some tags that I have added to pages (by
    going to the Page tab> Tags). How do I get hashtags added?

    Im also looking an answer to this question, 
    did you found a solution?

  • Custom tag cloud webpart based on keywords from a Term Set in the Term Store .

    Hi Guys
    Does anyone have developed a custom Tag Cloud webpart in SharePoint 2010? I'm
    looking for a custom Tag cloud based on keywords from a Term Set in the Term Store.
    Unfortunately
    out of the box Tag Cloud Web Part only reference the Social Tags from the User.
    in my case editors have created pages and tagged a page using terms from the Term store.
    What I would like to see is a web part which could display “Top Keywords”, and the output is something like this:
    http://electronicdiscovery.info/what-additional-features-would-you-like-to-see-in-sharepoint-word-cloud-survey-electronic-discovery/
    Thanks In advance
    Tanaji Chavan

    Hi  Ramakrishnaraja ,
    Thanks for sharing the links , i tried using web part in second link but that’s not working , have also gone through the code of that web part seems like it is referring to some list like
    "Categories" and "Posts"
    however I'm looking for a custom Tag cloud based on keywords from a Term Set in the Term Store .
    Thanks 

  • How to build tag cloud from text document

    Hi,
    I want to build tag cloud from text documents.
    The text dcouments has several lines of sentence.
    The tag shows long sentense, not key words.
    Please let me know how to build.
    And Can I use CAS or text enrichment?
    Thank you very much.
    SWKO

    Hi,
    You need to extract salient terms (e.g. people or product names) from your text documents by using the text enrichment or the text tagger component.
    This step will generate new attributes, which can be used in your tag cloud.
    Mathias

  • Tag cloud webpart is missing in sharepoint 2013

    hi friends
    i am using SharePoint 2013 publishing site.i am trying to add tag cloud web part to my page.
    but it is missing in social web parts
    how to get tag cloud web part in SharePoint 2013

    Hello ,
    have checked in Web Part Gallery ? If no then navigate to
    Site Setting > Web Designer Galleries >Web Parts>
    then search TagCloud.dwp . If it is present then Click on New Document then Select the required webpart then click on
    Populate Gallery Button.
    also please refer below threads .
    http://social.technet.microsoft.com/Forums/en-US/e5f84460-2355-4d97-a942-b7c7e23442d7/missing-tagclouddwp-tag-cloud-web-part-from-sharepoint-site
    http://www.dotnetmafia.com/blogs/dotnettipoftheday/archive/2010/08/06/missing-tag-cloud-web-part-and-other-social-web-parts-after-sharepoint-2010-upgrade.aspx
    Best Regards Kuldeep Verma
    Please remember to click "Mark As Answer" if a post solves your problem or "Vote As Helpful" if it
    was useful.

  • Endeca tag cloud

    Hello All,
    We have free text fields and would like to extract commonly spoken/written words from these fields. I have following questions about this
    - Once we have loaded these fields in Endeca data store, would the tag cloud in studio automatically highlight the pattern?
    - We do not have the complete list of words which we can put in whitelist and it would be iterative process by looking at the data. We are thinking that tag cloud generated automatically would be a good starting point. Let us know your views
    - If we want to rank or give weightage to the comments, do we need to have additional license for Lexalytics component?
    Thanks

    From reading your question, I believe you have posted to the wrong forum. You are looking for the [Endeca Information Discovery|https://forums.oracle.com/forums/forum.jspa?forumID=1404] forum where I am confident they can address your question.

  • Tag cloud in Endeca

    Hello All,
    We have free text fields and would like to extract commonly spoken/written words from these fields. I have following questions about this
    - Once we have loaded these fields in Endeca data store, would the tag cloud in studio automatically highlight the pattern?
    - We do not have the complete list of words which we can put in whitelist and it would be iterative process by looking at the data. We are thinking that tag cloud generated automatically would be a good starting point. Let us know your views
    - If we want to rank or give weightage to the comments, do we need to have additional license for Lexalytics component?
    Thanks

    Duplicate

  • How to Create Tag Cloud using Flex

    Hi
    I am trying to create Tag cloud using Adobe Flex. Can you
    please give me a hint of how to proceed.
    Any hint will be a help.
    Thanks,
    Dev

    Hi
    I am trying to create Tag cloud using Adobe Flex. Can you
    please give me a hint of how to proceed.
    Any hint will be a help.
    Thanks,
    Dev

Maybe you are looking for

  • Variant on Vista (32) iTunes 8.1 installation problem--admin rights

    As usual, it appears Apple's first release of a new iTunes version is creating many problems. In my case, with both Apple Software Update and direct download, the installer reports that it has insufficient access to the iTunes program folder and that

  • ASA 5505 Best Practice Guidance Requested

    I am hoping to tap into the vast wealth of knowledge on this board in order to gain some "best practice" guidance to assist me with the overall setup using the ASA 5505 for a small business client.  I'm fairly new to the ASA 5505 so any help would be

  • Computer shuts down after unplugging the power cord

    My computer is showing a Plugged in, not charging message, but it is at 88%.  When I unplug the charger from the computer to work somewhere else, the computer totally shuts down and will not power up unless the power charger is plugged in.  I tried t

  • Different User views

    Hi, I have a requirement for two different users. User1 gets to enter everything into the database and User2 should only see what is in the database. User1 is ok. But, user2 if I give only select privilege on those tables, form doesn't work because i

  • Problem trying to add Windows 7 Pro on a 256GB SSD with Windows 8.1 preinstalled

    I shrunk the SSD down leaving about 100 GB for Win 8.1 and formatted the remaining space creating an NTFS partition for the Windows 7 (DVD) install. I disabled quick boot and changed the boot order so the optical drive is first. When I attempt to boo