1. How to set different font sizes for specific words?
<font /> tags with size value, but addition to that, you need to change the value of textSize parameter into blank:
text_SIZE=""2. If the content is an SWF , it doesn’t displays correctly.
Keep the first frame of the content movie without any Animations. This is for better performance at the time of transition and loading. The Gallery will play swf file from 2nd frame once the previous transition completes and swf completely loaded.
Also in the first frame, place a transparent rectangle having same width and height of the Gallery. This is to measure the height and width of the content properly.
3. After implementing my images through xml file, the Gallery stops when it reaches a particular image. Why?
This means something wrong in the xml code after that image. Check if the xml code is structured correctly near to that image details.
4. The gallery always showed above my menu or other stuff in the html. Is there a way to keep this below any other HTML content?
so.addParam("wmode","transparent");5. How to make the links to open through same window instead of new window?
TARGET="_blank"
Just make its value to _self:TARGET="_self"6. The links with target value “_self” doesn’t opens. How to fix this?
Usually this happens when your html and swf files are located in different domains. This is a limitation of Flash player. In your html, If you set flash parameter “allowScriptAccess” to “always” it will work. Before implementing, go through this technote released by Adobe.
7. The Gallery doesn’t works if the xml or image files placed under different folders.
so.addVariable("xmlPath", "myFolder/data.xml");
In the same way, specify the image paths relative to your html file. Ofcourse, you can use absolute path also.
8. The images doesn’t gets updated after editing the xml and always shows the data of old xml file. How to avoid caching the xml file?
so.addVariable("xmlPath", "data.xml?q="+new Date().getTime());Instead of html, if you like to implement the same through flash, open the gallery.fla and inside the movieclip “GALLERY”, find the layer named “Organise XML Data” and replace the following line:
xmlData.load(xmlPath);
with this line:
xmlData.load(xmlPath+"?q="+new Date().getTime());
154 Purchases
62 Comments