Sie sind nicht angemeldet.

1

Mittwoch, 9. März 2011, 20:18

Textfield on iPad won't close.

Hello Everyone,

Having a problem trying to close the textfield on the ipad by tapping it. If I test it in Safari/Mac User agent iPad I can close it. Baffled!!! You can see it at http://www.eyecandyvi.com/wp-content/pri…grand/main.html

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<events onloadcomplete="delayedcall(20, hideintroimage() ); set(events.onloadcomplete,null);" />
		
	<plugin name="introimage_ipad" devices="html5" zorder="10000" url="plugins/textfield.swf" keep="true"
		html="[div style='width:100%;height:100%;
            	background-color: #737373;
            	border: 2px solid #fff;
            	-moz-border-radius: 5px;
            	-webkit-border-radius: 5px;
            	border-radius: 5px;
            	padding: 7px 3px 2px 7px;
            	font:bold 14px sans-serif;']
    	Company Intro Goes Here!
    	[br]
    	[span style='font:bold 12px sans-serif;']
    	Company Intro Goes Here!
    	[/span]
    	[p]
    	[span style='font:normal 12px sans-serif;']
    	Company Intro Goes Here!
    	[/span]
    	[/p]
    	[/div]"

    	align="center" width="580" height="300" x="0" y="0" visible="true"
   		roundedge="5" shadow="2"
   		borderwidth="2"
   		bordercolor="0xFFFFFF"
		backgroundcolor="transparent"
		onclick="action(close,introimage_ipad);"
 	/>

	<plugin name="introimage" devices="flash|android" url="plugins/textfield.swf" keep="true"
		zorder="10000"
		align="center" width="580" height="300" x="0" y="0" visible="true"
		html="data:html_intro_image"
		css="p {color:#FFFFFF; font-family:Arial; font-weight:bold; font-size:11; margin-left:5; margin-right:5; text-align:center; white-space:normal;}"
		backgroundcolor="0x737373" bordercolor="0xffffff" roundedge="5" shadow="5" borderwidth="2" glow="4" glowcolor="0xffffff"
		autosize="none"
		selectable="false"
		onloaded="set(alpha,0); tween(alpha,1);"
		onover=""
		onout=""
		onhover=""
    	onclick="action(close,introimage);"
	/>
	
	<data name="html_intro_image">
		<a>
		<img src=""/>
		</a>
		<br/>
		<p align="left">
		<font face="Arial" size="+2">
		Company Intro Goes Here!
		<br/>
		<br/><br/><br/>
		</font>  
		</p>
	</data>
	
	<action name="hideintroimage">
		if(plugin[introimage].enabled,
		set(plugin[introimage].enabled,false);
		tween(plugin[introimage].alpha, 0.0, 0.5, default, removeplugin(introimage));
	</action>
		

3

Donnerstag, 10. März 2011, 17:41

Thanks Jarred,

It seems the Thumbnail scroller I am using is causing some major problems on the ipad even though it is not active on the ipad. Have to figure out what the issue is first to solve why the ondown or anything doesn't work. Has to do with how it loads.

Robert