All posts created by Alex

13 years ago

Nita,

thank you for your suggestion.
I'll add to "to do" list.

13 years ago

Will,

sorry for the delay in answering you.

I see the problem and will try to fix it when I have free time.

Thank you for pointing me the problem.
Alex

13 years ago

Hi Sergio. It is not intended that you generate those <rect> tags yourself.
Just create an image and do everything written on the guide (http://tagul.com/custom-shape-with-api)

13 years ago

It is the last menu item in the cloud form

13 years ago

Hi,

you can enable upper case using case option on the "tags source" tab.

Could you please describe what exactly problem you face with?

13 years ago

Hi, could you please try this code:

<object

            width="600"

            height="600"

            type="application/x-shockwave-flash"

            data="http://cdn.tagul.com/tagul.swf">

               <param name="movie" value="http://cdn.tagul.com/tagul.swf"/>

               <param name="flashvars" value="id=http://cdn.tagul.com/clouds/38558@1"/>

               <param name="allowscriptaccess" value="always"/>

               <param name="swfversion" value="10"/>

               <param name="expressinstall" value="http://cdn.tagul.com/expressInstall.swf"/>

               <param name="wmode" value="transparent"/>

               <!--Embed svg if no flash installed-->

               <object data="http://tagul.com/cdn/clouds/38558@1" type="image/svg+xml" width="600" height="600">

                  <p><a href="http://www.adobe.com/go/getflashplayer">

                     <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />

                  </a></p>

               </object>

         </object>

If it still doesn't work for you please give the url on your site where your cloud is placed so I could see what is wrong.

13 years ago

alvale, sorry for the delay in answering you.

Custom shapes are available through API only (that is not my intention, that is I don't have enough time to implement in on site).

API is a programming interface that is quite complex to use.

Anyway if you wondering you can read details of creating custom shapes xml for API here

13 years ago

I sent you the instructions by mail

13 years ago

I've removed "API checkbox" since "Manual edit tags" functionality was implemented. So open "Manual edit tags" tab and edit tags to make it contain several words.

13 years ago

Try percentage embedding like below:

<html>
   <head>
      <title>Tagul cloud</title>
   </head>
   <body>
      <script
         type="text/javascript"
         src="http://ajax.googleapis.com/ajax/libs/swfobject/2.1/swfobject.js"></script>
      <script type="text/javascript">
         swfobject.embedSWF(
            "http://cdn.tagul.com/tagul.swf",
            "myCloud",
            "100%",
            "100%",
            "10.0.0",
            "playerProductInstall.swf",
            {id: "http://cdn.tagul.com/clouds/32868@2", popup: true, openLinksInNewWindow: false},
            {allowscriptaccess: "always"}
         );
      </script>
      <div id="myCloud" width="100%" height="100%">
         <p><a href="http://www.adobe.com/go/getflashplayer">
            <img
               src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif"
               alt="Get Adobe Flash player" />
         </a></p>
      </div>
   </body>
</html>