Plugin Dialog Box
All  1-2  3-4

Previous
Next
 From:  Michael Gibson
6030.3 In reply to 6030.1 
Hi Sharif, your split line issue is because you're actually getting 2 iframes in there, not just 1 iframe at a time.

You end up getting 2 because the script is looking for an iframe with an id of "StartFrame" (note no space in there), but your initial iframe looks like this:

code:
		<flex_hbox id="UpperContainer">
                        .....
			
			<iframe id="Start Frame" class="flex"></iframe>
		</flex_hbox>


Take a close look at the id="" attribute that you currently have on that initial starting iframe, note that it has an extra space added into it - that makes a mismatch between what the script is looking for.

Remove that space from the id="" attribute so you just have:

code:
                        <iframe id="StartFrame" class="flex"></iframe>



And that should fix up that problem.

- Michael
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
 From:  Sharif (SR13765)
6030.4 In reply to 6030.3 
Hi Michael;

Thank you! for your quick reply. It works perfectly now.

-sharif
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged
 

Reply to All Reply to All

 

 
 
Show messages: All  1-2  3-4