Sie sind nicht angemeldet.

1

Montag, 5. November 2012, 18:41

link in textfield

Hello!

I am trying to use the textfield and make a simple text link to another site.
<layer name="tavla1"
url="plugins/textfield.swf"
align="lefttop" x="10" y="10" width="100" height="500"
children="false"
html="[a href= onclick=(http://www.wincent.se);]Link[/a]"

css="..."
autoheight="false"
vcenter="false"
background="true"
backgroundcolor="0xFFFFFF"
backgroundalpha="1.0"
border="false"
bordercolor="0x000000"
borderalpha="1.0"
borderwidth="1.0"
roundedge="0"
shadow="0.0"
shadowrange="4.0"
shadowangle="45"
shadowcolor="0x000000"
shadowalpha="1.0"
textshadow="0.0"
textshadowrange="4.0"
textshadowangle="45"
textshadowcolor="0x000000"
textshadowalpha="1.0"
onautosized=""
/>

Is this possible? I need to replace some flash plugins to get it to work with html5. Is there another way of doing this?
At http://www.galleristockslycke.se/vo/andersbohman/ if you click an image the "flashorderform" shows up, thats what I would like to get to work with Ipads e.g html5

Many thanks in advance for all help I can get!

Regards!

Per Nylén

2

Mittwoch, 21. November 2012, 17:27

Hi,

either just:

Quellcode

1
[a href="..."].....[/a]

or:

Quellcode

1
[a href="event:openurl(...);"].....[/a]


but in both cases - children="true" - must be set (you have set children="false").

The children setting indicates if the mouse events (like for clicking the links) should be forwarded or blocked to plugin children elements - and the 'html text' itself is such children element of the krpano plugin element.

Best regards,
Klaus