Sie sind nicht angemeldet.

1

Donnerstag, 28. Januar 2010, 03:13

combobox - capitol letters

they don't work. everything is lower case no matter what. can it be done?

2

Donnerstag, 28. Januar 2010, 03:31

Can you post some code? I have no problems with it.

3

Donnerstag, 28. Januar 2010, 08:39

Hi,

use the combobox.swf from the 1.0.8 viewer download package,

best regards,
Klaus

4

Freitag, 29. Januar 2010, 03:06

no luck pulled the combobox.swf outta the 1.0.8 size was 37.1kb created 7/10/2009 replaced file that was 37.4kb

still no caps.

<plugin name="combobox" url="../core/plugins/combobox.swf" align="topleft" edge="center" x="50%" y="45%" keep="true" zorder="10" parent="controls"/>

<action name="combobox:TOUR EXTRAS"></action>

<action name="combobox:Tickerhoof Day (1 day in the life)">
set(plugin[black2].visible,true);
set(plugin[next].visible,true);
set(plugin[tdayp].visible,true);
set(plugin[controls1].visible,false);
set(plugin[tdayx].visible,true);
tween(plugin[tdayx].scale,.4); wait(1);
tween(alpha,0.1);
set(plugin[greenc].visible,false);
action(texton,data:aday)); "
</action>

<action name="combobox:PBY Restoration Project">

</action>

http://www.virtualnorthland.com/panos/caf/

5

Samstag, 30. Januar 2010, 20:03

VN2009,

I took your entire combobox code and copied it into an example folder in the 1.0.8 viewer package. I made sure I used the same date krpano.swf and combobox.swf that you did. The capital letters worked fine for me. I could not figure out what in your code is causing your issue.

If I figure it out, I will let you know.

6

Montag, 1. Februar 2010, 21:04

Hi,

sorry, I'm also not sure why it's not working yet...
but you could use the addItem() way to fill the combobox,
then the case problem can't be happen,

best regards,
Klaus

7

Montag, 1. Februar 2010, 21:20

Hi Klaus
work fine in local and online with xml, but when you embedded it in a swf, the capital letter don't work *huh*

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »Job.1« (1. Februar 2010, 22:05)


8

Montag, 1. Februar 2010, 21:52

mine is not even embedded and Caps dont work. Ill try the additem() later and see.

9

Freitag, 5. Februar 2010, 06:33

Vn2009,

Try this. Cut and paste all of your combo box into the main xml. 1.xml

I did this and it worked properly.

10

Freitag, 5. Februar 2010, 09:13

It worked for me too *thumbup*

11

Freitag, 5. Februar 2010, 16:07

I used the additem() to populate a combobox and for the management of the multilingual aspect of the interface. And it's working fine. Just a problem if you hide it before populating it (I think this bad pasrt will disapear in the next version)

Could have a look here : http://www.vizyon360.com/english/referen…le/virtual-tour
Don't hesitate to look at the code *rolleyes* , you can note the load on random pano function too...

David
Istanbul virtual tour creation : www.vizyon360.com

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »dav34« (9. Februar 2010, 18:30)


12

Dienstag, 9. Februar 2010, 10:45

Hi,
Just a problem if you hide it before populating it (I think this bad pasrt will disapear in the next version)
what problem do you mean?

best regards,
Klaus

13

Dienstag, 9. Februar 2010, 18:29

There is a kind of white block under the label and it's not very beautifull on top of the transparent combobox.

I will make a screenshot the next time I have it.

Regards,

David
Istanbul virtual tour creation : www.vizyon360.com

14

Mittwoch, 10. Februar 2010, 16:06

Hi,
There is a kind of white block under the label and it's not very beautifull on top of the transparent combobox.
okay, I think I know what you mean,

that's an effect about how the flashplayer renders transparent elements,
it could be solved by setting the "blendmode" to "layer",
e.g.

Quellcode

1
<plugin .... blendmode="layer" ... />


best regards,
Klaus

15

Mittwoch, 10. Februar 2010, 20:10

It was that *thumbup*

Thanks a lot.

David
Istanbul virtual tour creation : www.vizyon360.com

16

Donnerstag, 8. April 2010, 07:15

Oh dear, No capitals in the combobox again.

Sorry to bring this one up again but I am back to having no Capitals in the combobox.

I'm using krpano Tools 1.0.8 beta 9 (build 2010-03-07) so that's all up to date. The combobox.swf has the same date 10/29/2009 as the previous package so that doesn't appear to have changed.

I'm wondering if it has anything to do with embedding the files into the swf? These are them below.

01.xml (ticked for Embed Startup xml file)
02.xml
fullscreen.xml
global.xml
plugins.xml

and exactly the same combobox code is in both the 01.xml and 02.xml

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 <plugin name="combobox"
        url="tourfiles/plugins/combobox.swf" 
        align="bottomright" 
        x="1" 
        y="43" 
        width="158"
        keep="true"
        />

<action name="combobox:Car 1">
    loadpano(01.xml,null,MERGE,BLEND(1));
</action>

<action name="combobox:Car 2">
    loadpano(02.xml,null,MERGE,BLEND(1));
</action>


Any advice is really appreciated.

Thanks,

Andrew

17

Donnerstag, 8. April 2010, 08:37

Hi,

use that method:

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<plugin name="combobox"
        url="tourfiles/plugins/combobox.swf" 
        align="bottomright" 
        x="1" 
        y="43" 
        width="158"
        keep="true"
        onloaded="fillcombobox();"
        />

<action name="fillcombobox">
  additem('Car 1', loadpano(01.xml,null,MERGE,BLEND(1)); );
  additem('Car 2', loadpano(02.xml,null,MERGE,BLEND(1)); );
</action>


best regards,
Klaus

18

Freitag, 9. April 2010, 18:40

Many thanks Klaus.

19

Mittwoch, 3. November 2010, 11:02

Hi,

use that method:

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<plugin name="combobox"
        url="tourfiles/plugins/combobox.swf" 
        align="bottomright" 
        x="1" 
        y="43" 
        width="158"
        keep="true"
        onloaded="fillcombobox();"
        />

<action name="fillcombobox">
  additem('Car 1', loadpano(01.xml,null,MERGE,BLEND(1)); );
  additem('Car 2', loadpano(02.xml,null,MERGE,BLEND(1)); );
</action>


best regards,
Klaus

This solves the problem with capital letters.
But in this case to cause an action?
For example, I need to call the two item and load a panorama of him when entering full screen.

Quellcode

1
2
 onenterfullscreen="???"
onexitfullscreen ="???"

Ähnliche Themen