Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Dynamic Flash Embedding?

Status
Not open for further replies.

Rob7412

Technical User
Jan 26, 2006
31
US
I Use Telerik RADControls with VB .NET I would like to assign a tooltip value to a RAD Control and use that Value to Dynamiclly Embed a Flash file to a Multipage here is a static embed code I use that successfully embeds the file

<OBJECT CLASSID="CLSID:D27CDB6E-AE6D-11cf-96B8-444553540000"
CODEBASE=" ID="FVS" style="height: 600px; width: 850px;">
<PARAM NAME="movie" VALUE="./videos/0.swf" />
</OBJECT>

I would like to replace the 0.swf with the tooltip text of the rad control. The control is provided the tool tip text by an XML file and the control passes the value at postback I just need to get that value to replace the SWF filename in the embed code.

I know how to DIM the value of the control but can't seem to get a handle on using its value in the embed statement

<% if page.ispostback then
Dim ttt as string
ttt=radtreeview2.selectednode.tooltip.text
End IF %>


Thanks for any advice......


If Knowledge were power I would be a AAA Battery!
 
First, you code is classic ASP style. Do not embed code with your HTML markup, use the code-behind pages.
Second, since you are using a 3rd party control, you should contact their technical support to answer your question.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top