[flexcoders] HTTPS and status codes

2006-11-05 Thread riskyseven
Is there a way to get the HTTP status code out of the HTTPStatusEvent 
when making an HTTPS call?  Or for that matter, is there any way to 
display the status code from an HTTPS call w/o using Data Services?  
We are making a simple Flex2/AS3 HTTPS call out of IE6 which fails for 
an unknown reason.  It works in IE6 using HTTP, in Firefox using HTTP 
or HTTPS, and we can bring the pagae up in HTTPS in IE6 if we just 
enter the URL in the browser.  Any ideas?  Thanks.




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



[flexcoders] Re: Flex2 Beta2 skinned Combobox is really looooong

2006-04-12 Thread riskyseven
Does anyone have a working example of a skinned comboBox they could 
post?  I've tried everything below include programmatically skinning 
the thing and it just doesn't render correctly...it's just too long.  
I'm about to write it off as a bug and hope it's fixed in the final 
version.  Any help would be appreciated.

--- In flexcoders@yahoogroups.com, riskyseven [EMAIL PROTECTED] 
wrote:

 My comboBoxes are being rendered very long after skinning?  If I 
 remove the skin, the comboBox is normal.  I've tried PNGs, and 9-
 sliced SWFsthey are all rendered about 200 pixels too long.  If 
I 
 manually shorten them, the data gets cut off.  Am I missing 
 something?  Thanks.
 
   mx:ComboBox id=Stuff top=20 styleName=dropDown  
   mx:dataProvider
   mx:ArrayCollection
   mx:source
   mx:Object label=MyStuff-1234/
   mx:Object label=MyStuff-45678/
   mx:Object label=MyStuff-junk/
   /mx:source
   /mx:ArrayCollection
   /mx:dataProvider
   /mx:ComboBox
 
 .dropDown {
 font-family: Myriad Web;
   font-size: 14px;
   fontStyle: normal;
   upSkin: Embed(images/med_search.png);
   overSkin: Embed(source=buttons/dropDownButton.swf, 
 symbol=DropDownButtonOver);
   downSkin: Embed(source=buttons/dropDownButton.swf, 
 symbol=DropDownButtonDown);
   disabledSkin: Embed(source=buttons/dropDownButton.swf, 
 symbol=DropDownButtonDisabled);
 }







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Flex2 Beta2 skinned Combobox is really looooong

2006-03-29 Thread riskyseven
My comboBoxes are being rendered very long after skinning?  If I 
remove the skin, the comboBox is normal.  I've tried PNGs, and 9-
sliced SWFsthey are all rendered about 200 pixels too long.  If I 
manually shorten them, the data gets cut off.  Am I missing 
something?  Thanks.

mx:ComboBox id=Stuff top=20 styleName=dropDown  
mx:dataProvider
mx:ArrayCollection
mx:source
mx:Object label=MyStuff-1234/
mx:Object label=MyStuff-45678/
mx:Object label=MyStuff-junk/
/mx:source
/mx:ArrayCollection
/mx:dataProvider
/mx:ComboBox

.dropDown {
font-family: Myriad Web;
font-size: 14px;
fontStyle: normal;
upSkin: Embed(images/med_search.png);
overSkin: Embed(source=buttons/dropDownButton.swf, 
symbol=DropDownButtonOver);
downSkin: Embed(source=buttons/dropDownButton.swf, 
symbol=DropDownButtonDown);
disabledSkin: Embed(source=buttons/dropDownButton.swf, 
symbol=DropDownButtonDisabled);
}





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Flash within Flex?

2006-03-20 Thread riskyseven
I am very new to Flex, and only working in Flex 2.0 Beta 1.  What are 
the limitations for embedding a flash swf in flex?  It seems if I embed 
the swf as an image, it only shows/plays frame 1 of the embedded swf.  
Supposing I get past this, can you get access to the embedded swf's 
actionscript/variables?  Thanks.





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Re: Flash within Flex?

2006-03-20 Thread riskyseven
Thanks Renaun.  I guess I'm doing something wrongultra newbie.  
If I use this syntax:  

mx:Image width=200 height=300 
source=http://localhost/LeftNav.swf; x=50 y=55/

The swf works (after a SecurityError: Error #2047: Security 
sandbox violation: 'content': 'file://C:\xxx\test.swf' may not 
access 'http://localhost/LeftNav.swf'.
at mx.controls::Loader/mx.controls:Loader::contentLoaded()
at mx.controls::Loader/completeEventHandler()
at mx.controls::Image/completeEventHandler())

If I use this syntax:

mx:Image width=200 height=300 source=@Embed
(source=xxx/LeftNav.swf') x=50 y=55/

...I only see the first frame of the swf.  What's the deal?



--- In flexcoders@yahoogroups.com, Renaun Erickson [EMAIL PROTECTED] 
wrote:

 You can access SWF's in Flex.  Just pay attention to the normal 
quirks.  
 _lockroot
 Security.allowDomain()
 Dont use Components as there issues with namespacing (at least in 
1.5)
 
 Renaun
 
 --- In flexcoders@yahoogroups.com, riskyseven riskyseven@ wrote:
 
  I am very new to Flex, and only working in Flex 2.0 Beta 1.  What 
are 
  the limitations for embedding a flash swf in flex?  It seems if I 
embed 
  the swf as an image, it only shows/plays frame 1 of the embedded 
swf.  
  Supposing I get past this, can you get access to the embedded 
swf's 
  actionscript/variables?  Thanks.
 







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/