[Flashcoders] top border combobox. How?

2006-12-25 Thread natalia Vikhtinskaya

Hi to all

I checked everywhere and could not find answer. I can change almost
everything in combobox

with this

_global.styles.ComboBox.setStyle(borderStyle, solid);

_global.styles.ComboBox.setStyle(borderColor, 0xD1BC9C);

_global.styles.ComboBox.setStyle(themeColor, 0xCCB491);

I can change border color for dropdown list.

I can cange scroolbar and button with skinning.
Only one thing I can not find. How can I change color for border in top box?
Can I change it with skinning? Anybody know?
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Flash on Wii

2006-12-25 Thread Martin Jonasson
I've also been doing some poking around. It seems it renders the page at 
a higher resolution than the one displayed and then scales it down 
(since you can zoom), so setting the swf to half the resolution (400x250 
for 4:3) and then zooming in gives a nice performance boost.


The only real problems I've been having is some trouble getting all 
mousedown's to register properly, sometimes it just ignores the clicks, 
but zooming in and then out again helps. It might be my code acting up 
though.


Josh Santangelo skrev:

I did some poking around and discovered the following:

- The user-agent of the Wii browser (US version) is  Opera/9.00 
(Nintendo Wii; U; ; 1309-9; en).

- The Flash Player version on the Wii is WII 7.0.70.0
- You CAN enter a URL directly to a SWF.
- You CAN add a favorite directly to a SWF, but it won't show a good 
icon in the favorites screen.

- A SWF's stage at 100% width and height in 16:9 mode (480p) is 1024x500.
- In 4:3 mode it is 800x500.
- After messing with the screen mode I was able to get the browser 
into a state where it was reporting the stage size as 700x150. 
Restarting the Wii fixed it.
- There are no global objects named Controller, Remote, Buttons, Wii, 
Nintendo, or com (looking for things like Mouse and Key).
- When pressing the A button on the remote, you get a mousedown event 
-- in fact it seems like you get four of them!

- Releasing the A button does not create a mouseup event.
- onMouseMove works pretty much as expected.
- Mouse.hide() does not hide the Wii remote pointer.
- Clicking on a text input field does bring up the Wii on-screen 
keyboard.
- I was not able to trap any events from buttons other than A on the 
main remote using mouse or keyboard events -- also tried Nunchuck and 
Classic Controller.


My only tools here are outputting things to a text field and using 
ASSetPropFlags to unhide any potentially-hidden variables. If anyone 
else has other tricks for finding things, I'd be into hearing them, 
but at this point it looks like you can't do anything particularly 
cool with Flash on Wii.


-josh

On Dec 22, 2006, at 9:37a, Josh Santangelo wrote:

The Wii's Internet Channel launched today, which is basically a 
downloadable version of Opera. Of course the first thing I did after 
getting it was check out what version of Flash was included. 
getVersion() returns WII 7.0.70.0.


Kind of lame that it's only Flash 7. It looks like wiicade.com, a 
site full of Flash games to play on the Wii, was surprised too: 
http://wiicade.com/


I wonder if there's any kind of hidden API to trap events from the 
Wii remote control.

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com





___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Stupid path question

2006-12-25 Thread Tolis Christomanos

Hi all!

I am exporting for actionscript a movieclip and i also want to set an
AS 2.0 class.

The directory is like that

CLASSNAME
|
|__.FLA FOLDER
|
|__the .fla with the Movieclip i am exporting.

Can anyone tell the path to the class? If i use CLASSNAME as the path
nothing happens. Nothing happens if i use ../CLASSNAME. What is the
path;

Thanks in advance!
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Stupid path question

2006-12-25 Thread Arindam Dhar
Hi,
   
  As per your descrption, i understood your AS2 class is in CLASSNAME folder 
which has the fla folder containing the .fla file.
   
  You need to set the classpath first, either global or document-level. For 
global,you need to set it in edit -preferences  As2 settings and add a new 
path as ../CLASSNAME. You can do similarly in publish settings for doc level 
classpath. 
   
  Then, you set the linked AS2 class, to the class in your CLASSNAME folder.
   
  --- Arindam
   
  
Tolis Christomanos [EMAIL PROTECTED] wrote:
  Hi all!

I am exporting for actionscript a movieclip and i also want to set an
AS 2.0 class.

The directory is like that

CLASSNAME
|
|__.FLA FOLDER
|
|__the .fla with the Movieclip i am exporting.

Can anyone tell the path to the class? If i use CLASSNAME as the path
nothing happens. Nothing happens if i use ../CLASSNAME. What is the
path;

Thanks in advance!
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


 Send instant messages to your online friends http://asia.messenger.yahoo.com 
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Stupid path question

2006-12-25 Thread Tolis Christomanos

Thanks a lot it worked!!
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: Re: [Flashcoders] i want to know how to record the flv with rtmp

2006-12-25 Thread Yehia Shouman

Oh I thought you want to record on the server from a client. to do the
opposite,
You need a screen capture software, check this thread
http://stream-recorder.com/forum/archive/index.php/index.php?t-16.html

or
http://www.wmrecorder.com/


On 12/25/06, hongrizhao [EMAIL PROTECTED] wrote:


the thing i want to do is to record the flv was published  in the web with
rtmp,for example,the max2006 video in adobe's web




hongrizhao
2006-12-25



发件人: Yehia Shouman
发送时间: 2006-12-25 12:01:55
收件人: Flashcoders mailing list
抄送:
主题: Re: [Flashcoders] i want to know how to record the flv with rtmp

What you need to look into is FMS server side actionscript, to catch the
stream and save it

to publish from the client:

http://livedocs.macromedia.com/fms/2/docs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=0575.html

then save it

http://livedocs.macromedia.com/fms/2/docs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=0789.html#116659

Hope that helps
Yehia Shouman

On 12/24/06, hongrizhao  [EMAIL PROTECTED]  wrote:

 if i know the rtmp address, how to record the flv to save ?




 hongrizhao
 2006-12-25


 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Re: [Flashcoders] Flash on Wii

2006-12-25 Thread Max

Any key events? What about right-clicks or mouse scrolling?

I'd do it myself but I'm facinated by this and don't have any wireless
Internet for a while so I can't test anything.

On 12/25/06, Martin Jonasson [EMAIL PROTECTED] wrote:

I've also been doing some poking around. It seems it renders the page at
a higher resolution than the one displayed and then scales it down
(since you can zoom), so setting the swf to half the resolution (400x250
for 4:3) and then zooming in gives a nice performance boost.

The only real problems I've been having is some trouble getting all
mousedown's to register properly, sometimes it just ignores the clicks,
but zooming in and then out again helps. It might be my code acting up
though.

Josh Santangelo skrev:
 I did some poking around and discovered the following:

 - The user-agent of the Wii browser (US version) is  Opera/9.00
 (Nintendo Wii; U; ; 1309-9; en).
 - The Flash Player version on the Wii is WII 7.0.70.0
 - You CAN enter a URL directly to a SWF.
 - You CAN add a favorite directly to a SWF, but it won't show a good
 icon in the favorites screen.
 - A SWF's stage at 100% width and height in 16:9 mode (480p) is 1024x500.
 - In 4:3 mode it is 800x500.
 - After messing with the screen mode I was able to get the browser
 into a state where it was reporting the stage size as 700x150.
 Restarting the Wii fixed it.
 - There are no global objects named Controller, Remote, Buttons, Wii,
 Nintendo, or com (looking for things like Mouse and Key).
 - When pressing the A button on the remote, you get a mousedown event
 -- in fact it seems like you get four of them!
 - Releasing the A button does not create a mouseup event.
 - onMouseMove works pretty much as expected.
 - Mouse.hide() does not hide the Wii remote pointer.
 - Clicking on a text input field does bring up the Wii on-screen
 keyboard.
 - I was not able to trap any events from buttons other than A on the
 main remote using mouse or keyboard events -- also tried Nunchuck and
 Classic Controller.

 My only tools here are outputting things to a text field and using
 ASSetPropFlags to unhide any potentially-hidden variables. If anyone
 else has other tricks for finding things, I'd be into hearing them,
 but at this point it looks like you can't do anything particularly
 cool with Flash on Wii.

 -josh

 On Dec 22, 2006, at 9:37a, Josh Santangelo wrote:

 The Wii's Internet Channel launched today, which is basically a
 downloadable version of Opera. Of course the first thing I did after
 getting it was check out what version of Flash was included.
 getVersion() returns WII 7.0.70.0.

 Kind of lame that it's only Flash 7. It looks like wiicade.com, a
 site full of Flash games to play on the Wii, was surprised too:
 http://wiicade.com/

 I wonder if there's any kind of hidden API to trap events from the
 Wii remote control.
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com




___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com