[flexcoders] Re: problem accessing menuBar component Sub-Items

2011-10-30 Thread Gustavo Duenas
I did it, thanks.

Gus


[flexcoders] vimeo api with flex3/air

2011-10-18 Thread Gustavo Duenas
Does anyone has tried to use the vimeo api  
com.vimeo.api.flash.vimeoPlayer in adobe air before and how you get  
the results, I've been trying with no
results at all and the examples are not much of a thing

Gus



[flexcoders] problem accessing menuBar component Sub-Items

2011-10-14 Thread Gustavo Duenas

Hi I have this menu bar.

labelField="@label" creationComplete="init()" fontSize="14"  
fillAlphas="[0.26, 0.26, 0.26, 0.26]" fontWeight="bold"  
cornerRadius="6" color="#071243" fontFamily="Arial"  
verticalCenter="-4" left="9.05">

  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  

I wan to access the group name libros items to add evenListeners to  
them.


I have this code to access the main ones on the menuBar.


  protected function init():void{

  var mbiBlog:MenuBarItem= mBar.menuBarItems[4] as MenuBarItem;
  mbiBlog.addEventListener(MouseEvent.CLICK, openWindowBlog);
  var mbiAntiguoT:MenuBarItem = mBar.menuBarItems[3].root[1] as  
MenuBarItem;// I've been trying to access the sub-Items I really don't  
know how, some help please.

  mbiAntiguoT.addEventListener(MouseEvent.CLICK, windowBibliaAntigua);

  }




[flexcoders] using a video stream into flex mobile

2011-10-13 Thread Gustavo Duenas
What is the best method to include a live video streaming into flex  
mobile?
is that possible?

gustavo


[flexcoders] accessing buttons on button bar

2011-10-12 Thread Gustavo Duenas
Hi I have this code, for a title bar, so far I can add behaviours to  
the main buttoms but I come with the ideo to add new

sub-buttoms and I'm lost how can I put eventlisteners to them?

here is the code of my buttom bar

labelField="@label" creationComplete="init()" fontSize="14"  
fillAlphas="[0.26, 0.26, 0.26, 0.26]" fontWeight="bold"  
cornerRadius="6" color="#071243" fontFamily="Arial"  
verticalCenter="-4" left="9.05">




















here is the code of the CDATA script.

protected function init():void{

var mbiBlog:MenuBarItem= mBar.menuBarItems[4] 
as MenuBarItem;
mbiBlog.addEventListener(MouseEvent.CLICK, 
openWindowBlog);

}

the buttoms I'd like to know how can I put the eventListeners are





Some help will be appreciated.

Gustavo



[flexcoders] reading pdf book into air app

2011-10-10 Thread Gustavo Duenas
can I read a pdf book into an air app or do I have to call it to be  
read by the adobe reader?
Also can I read the pdf into air using an 

[flexcoders] sandbox problem someone help me

2011-10-08 Thread Gustavo Duenas
Hi is there a way to load a remote swf that calls a live feed from ustream? I 
have this viewer and I cannot load it inot air, because it keeps telling me of 
the sandbox violation 
even though I did the Security.allowDomain("http://leftandrightsolutions.com";); 
in the 

[flexcoders] problem with netconnection and flex3

2011-10-08 Thread Gustavo Duenas
hi I have this code on my flex 3 trying to reach the ustream.tv live  
feed from my church

does anyone know that the error means?

var my_Nc:NetConnection = new NetConnection();
my_Nc.connect("rtmp://1.4705238.fme.ustream.tv/ustreamVideo/4705238");
var my_Ns:NetStream = new NetStream(my_Nc,  
NetStream.DIRECT_CONNECTIONS);

my_Ns.play(videoURL);
var my_Video:Video = new Video();
my_Video.attachNetStream(my_Ns);
addChild(my_Video);



this is the error.

An invalid XML character (Unicode: 0x0) was found in the CDATA section

help please

[flexcoders] problem trying to create ustream viewer

2011-10-08 Thread Gustavo Duenas

hi this is my code guys

var my_Nc:NetConnection = new NetConnection();
my_Nc.connect("rtmp://1.4705238.fme.ustream.tv/ustreamVideo/4705238");
var my_Ns:NetStream = new NetStream(my_Nc, NetStream.CONNECT_TO_FMS);
my_Ns.play(videoURL);
var my_Video:Video = new Video();
my_Video.attachNetStream(my_Ns);
addChild(my_Video);

and this is the error from my error log:


An invalid XML character (Unicode: 0x0) was found in the CDATA section. 

what that means?

help is needed

Thanks

gustavo

[flexcoders] security sandbox for air app

2011-10-08 Thread Gustavo Duenas
Hi I have an air app with a local swf that grabs a live feed from 
www.ustream.tv 
  and I would like to play it on
the machines, but when I try to use it on the preview told me about it:

SecurityError: Error #3207: Application-sandbox content cannot access  
this feature.
at flash.system::Security$/allowDomain()
at tv.ustream.core::Application/frame1()

I try using Security.allowDomain("www.ustream.tv"):void; and nothing  
happens there is a way to do this?
Something that I don't know.

Gus



[flexcoders] local swf file on air app

2011-10-08 Thread Gustavo Duenas
Hi I have a local swf file who is supposed to grab a life stream from  
ustream.tv, it is working perfectly on the local on flash cs4, but  
when I load it to my air app.
It is not working when I do the preview of the app.

There is a way to make this working? I've tried everything on the book  
to load successfully the swf into a container and nothing happens.

Some help appreciated

Gus




[flexcoders] facebook status on air app

2011-10-07 Thread Gustavo Duenas
Hi guys, I'm making an air app and so far I need to grab a facebook  
status or feed into a mx:repeater, does anyone knows how,
it is not like creating a facebook app with flex, is something more  
easy (in theory), does anyone knows how? or at least point me where  
the xml or rss facebook file is.

gus


Re: [flexcoders] help with a repeater

2011-10-07 Thread Gustavo Duenas
Thank you my friend, you are really good. I guess I should have read  
more the book. It totally works.


Gustavo

On Oct 7, 2011, at 12:21 PM, Gordon Smith wrote:



This poorly-worded message is trying to explain that you cannot  
access the ‘currentItem’ of a Repeater, as your code  
vimeo.currentItem.title in openWindowVimeo() is doing, after the  
Repeater has already created all the repeated components. As each  
repeated component is created, ‘currentItem’ is the item in the  
dataProvider that is creating that particular component. So what  
would the ‘currentItem’ of the Repeater be after all the components  
have been created? It doesn’t make sense, and therefore is an error.




Once a repeated component has been created, you can use its  
getRepeaterItem() method to get the item in the dataProvider that  
created it.




Gordon Smith

Adobe Flex SDK Team



From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]  
On Behalf Of Gustavo Duenas

Sent: Friday, October 07, 2011 5:28 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] help with a repeater





thanks for your help

here is the error log



Error: Repeater is not executing.

at mx.core::Repeater/get currentItem()[C:\autobuild 
\3.3.0\frameworks\projects\framework\src\mx\core\Repeater.as:305]


at iglesiaFls/openWindowVimeo()[/Users/gustavoduenas/ 
Documents/Flex Builder 3/iglesiaFls/src/iglesiaFls.mxml:17]


at iglesiaFls/__vimeoButton_click()[/Users/gustavoduenas/ 
Documents/Flex Builder 3/iglesiaFls/src/iglesiaFls.mxml:51]




On Oct 7, 2011, at 12:47 AM, Tandon, Rishi wrote:








You missed the most important thing in message, the error log.

Send over that.



From: Gustavo Duenas 
To: flexcoders@yahoogroups.com
Sent: Friday, October 7, 2011 9:47 AM
Subject: [flexcoders] help with a repeater



I have a repeater which! reads a xmllist from vimeo, it works and do  
the repeat but when I tried to pass info from the repeater to the  
title window, something happens and I have an as3


errror. this is  my code.






Re: [flexcoders] Re: help with a repeater

2011-10-07 Thread Gustavo Duenas

can you point me how?

thanks

gus


On Oct 7, 2011, at 12:04 PM, valdhor wrote:

I have had better results with a repeater if I bundle all the  
components in the repeater into a single component and then repeat  
that. You can create public variables in this custom component to  
hold values you need to pass in.


--- In flexcoders@yahoogroups.com, Gustavo Duenas  wrote:
>
> I have a repeater which reads a xmllist from vimeo, it works and do
> the repeat but when I tried to pass info from the repeater to the
> title window, something happens and I have an as3
> errror. this is my code.
>
> 
> 

Re: [flexcoders] is there another flexcoders list?

2011-10-07 Thread Gustavo Duenas

thanks man I will try there

Gus
On Oct 7, 2011, at 9:57 AM, Jeffry Houser wrote:



 This list started to die after Adobe launched their new forums.  I  
think that was a couple of years ago.  Adobe, basically, stopped  
directing people to this list and instead started directing them to  
the forums.


 So, that is where you'll find the traffic.

On 10/7/2011 9:44 AM, Gustavo Duenas wrote:



Hi, is there another list, it's been ages since someone just answer
me...it is just me or everyone else has migrated to some other list?

Gus



--
Jeffry Houser
Technical Entrepreneur
203-379-0773
--
http://www.flextras.com?c=104
UI Flex Components: Tested! Supported! Ready!
--
http://www.theflexshow.com
http://www.jeffryhouser.com
http://www.asktheflexpert.com
--
Part of the DotComIt Brain Trust






[flexcoders] is there another flexcoders list?

2011-10-07 Thread Gustavo Duenas
Hi, is there another list, it's been ages since someone just answer  
me...it is just me or everyone else has migrated to some other list?

Gus


Re: [flexcoders] help with a repeater

2011-10-07 Thread Gustavo Duenas

thanks for your help
here is the error log

Error: Repeater is not executing.
	at mx.core::Repeater/get currentItem()[C:\autobuild\3.3.0\frameworks 
\projects\framework\src\mx\core\Repeater.as:305]
	at iglesiaFls/openWindowVimeo()[/Users/gustavoduenas/Documents/Flex  
Builder 3/iglesiaFls/src/iglesiaFls.mxml:17]
	at iglesiaFls/__vimeoButton_click()[/Users/gustavoduenas/Documents/ 
Flex Builder 3/iglesiaFls/src/iglesiaFls.mxml:51]


On Oct 7, 2011, at 12:47 AM, Tandon, Rishi wrote:



You missed the most important thing in message, the error log.
Send over that.

From: Gustavo Duenas 
To: flexcoders@yahoogroups.com
Sent: Friday, October 7, 2011 9:47 AM
Subject: [flexcoders] help with a repeater


I have a repeater which reads a xmllist from vimeo, it works and do  
the repeat but when I tried to pass info from the repeater to the  
title window, something happens and I have an as3

errror. this is  my code.



[flexcoders] help with a repeater

2011-10-06 Thread Gustavo Duenas
I have a repeater which reads a xmllist from vimeo, it works and do  
the repeat but when I tried to pass info from the repeater to the  
title window, something happens and I have an as3

errror. this is  my code.



Re: [flexcoders] help making a feed using vimeo api xml output(solved)

2011-10-06 Thread Gustavo Duenas

Made it work, just using the old xml repeater method and it works! ;)
here is what I did.


Gus

http://vimeo.com/api/v2/iglesiafls/videos.xml 
" resultFormat="e4x" fault="onFault(event)"/>



source="{vimeoService.lastResult.video}"/>



		fontSize="14" width="300"/>
		width="300"/>

    


//works flawless


On Oct 5, 2011, at 9:56 PM, Gustavo Duenas wrote:


Hi I have this code, I have only the relevant part




http://www.adobe.com/2006/mxml";  
layout="absolute" width="1100" height="768"  
creationComplete="{feedLoader2.send()}"
  backgroundImage="iglesiaBack.jpg"  backgroundGradientAlphas="[1.0,  
1.0]" backgroundGradientColors="[#08, #2C1DF0]">







	http://vimeo.com/api/v2/iglesiafls/videos.xml 
" resultFormat="e4x" result="onRes2(event)" fault="onFault(event)"/>



	verticalCenter="206" left="692" backgroundAlpha="0.0">


		fontSize="14"/>
		color="#F5FAFB"/>








Looks good but I don't get why I read nothing eventhough the xml is  
there, some help really appreciated.


Gus






[flexcoders] help making a feed using vimeo api xml output

2011-10-05 Thread Gustavo Duenas

Hi I have this code, I have only the relevant part



http://www.adobe.com/2006/mxml";  
layout="absolute" width="1100" height="768"  
creationComplete="{feedLoader2.send()}"
  backgroundImage="iglesiaBack.jpg"  backgroundGradientAlphas="[1.0,  
1.0]" backgroundGradientColors="[#08, #2C1DF0]">






	http://vimeo.com/api/v2/iglesiafls/videos.xml 
" resultFormat="e4x" result="onRes2(event)" fault="onFault(event)"/>



	verticalCenter="206" left="692" backgroundAlpha="0.0">


		fontSize="14"/>
		color="#F5FAFB"/>







Looks good but I don't get why I read nothing eventhough the xml is  
there, some help really appreciated.


Gus

[flexcoders] vimeo feed into flex

2011-10-05 Thread Gustavo Duenas
Hi mates and colleagues!!
Does everyone knows a step by step tutorial about how can I read a  
video feed from vimeo into my flex project?

Any help is appreciated.

Gus


Re: [flexcoders] facebook and flex 3

2011-10-04 Thread Gustavo Duenas
Hi I'm using flex builder 3 sdk 3.3 and when add the graph api for  
facebook into it (.swc) something happens here is the message.

Severity and DescriptionPathResourceLocation
Creation Time   Id
Design mode: Cannot load GraphAPI_Desktop_1_8.swc (reason: ERROR: Load  
Verify). It may require classes (such as Adobe AIR components) that  
are not supported by design mode. Check the Eclipse error log for more  
details.	iglesiaFls/src	iglesiaFls.mxml	Unknown	1317761476196	25


Someone can help?

Gustavo



On Oct 3, 2011, at 10:50 PM, Gustavo Duenas wrote:


someone can point me to a good tutorial about how can I make a
facebook feed(status) display in flex?

Thanks

Gus





[flexcoders] facebook and flex 3

2011-10-03 Thread Gustavo Duenas
someone can point me to a good tutorial about how can I make a  
facebook feed(status) display in flex?

Thanks

Gus


[flexcoders] creating a twitter feed on flex

2011-09-30 Thread Gustavo Duenas
Hi, there si a tutorial or something about how to create a twitter  
feed for an air app?

gus


[flexcoders] swf loader for a ustream flash xml file

2011-09-29 Thread Gustavo Duenas
Does anyone know or can point me to how to use the swf loader or video  
loader to
display a feed from the xml file of ustream




[flexcoders] integrating flex 3 air app with ustream

2011-09-20 Thread Gustavo Duenas
Hi does anyone has tried before to integrate a flex 3 air app with the  
ustream service, or can point me to a not so obscure tutorial?
Also instead of ustream there is other way to transmit (for free) live  
feed, thanks.

Gus


Re: [flexcoders] link button from a rss

2010-08-11 Thread Gustavo Duenas
hi Guys don't get confused...This was solved I have that click on the  
mx:Vbox part... awkward right?

Now it is working.

gus
On Aug 10, 2010, at 4:51 PM, Gustavo Duenas wrote:


my whole code for the component.

http://www.adobe.com/2006/mxml"; width="497"  
height="194" horizontalScrollPolicy="off" click="navigateToURL(new  
URLRequest('{data.link}'))">
	id="titulo" fontWeight="bold" color="#4B1D04"/>
	textAlign="left" enabled="true" fontSize="14" fontFamily="Arial"  
color="#020F12"/>
	color="#000607">











I did as you send me but it isn't working, any ideas.

Gustavo






Re: [flexcoders] link button from a rss

2010-08-10 Thread Gustavo Duenas
solved it works as it was since the beginning, I've written and odd  
replication of the navigateToURL at the beginning of the don't know how I did such a dumb thing, now it is working, thank you  
guys.


Gustavo
On Aug 10, 2010, at 5:00 PM, Gustavo Duenas wrote:



here is the code, sorry it looks like I didn't send it the first time


Gus


http://www.adobe.com/2006/mxml"; width="497"  
height="194" horizontalScrollPolicy="off" click="navigateToURL(new  
URLRequest('{data.link}'))">
	id="titulo" fontWeight="bold" color="#4B1D04"/>
	textAlign="left" enabled="true" fontSize="14" fontFamily="Arial"  
color="#020F12"/>
	color="#000607">











On Aug 10, 2010, at 4:20 PM, Oleg Sivokon wrote:



Claudiu:
That's exactly what my code does...

Gustavo:
Read what the error says. You are trying to coerce String to  
URLRequest. Of course you cannot do it. The code from the first  
example should work. If it didn't, what was the problem?










Re: [flexcoders] link button from a rss

2010-08-10 Thread Gustavo Duenas

here is the code, sorry it looks like I didn't send it the first time


Gus


http://www.adobe.com/2006/mxml"; width="497"  
height="194" horizontalScrollPolicy="off" click="navigateToURL(new  
URLRequest('{data.link}'))">
	id="titulo" fontWeight="bold" color="#4B1D04"/>
	textAlign="left" enabled="true" fontSize="14" fontFamily="Arial"  
color="#020F12"/>
	color="#000607">









On Aug 10, 2010, at 4:20 PM, Oleg Sivokon wrote:



Claudiu:
That's exactly what my code does...

Gustavo:
Read what the error says. You are trying to coerce String to  
URLRequest. Of course you cannot do it. The code from the first  
example should work. If it didn't, what was the problem?







Re: [flexcoders] link button from a rss

2010-08-10 Thread Gustavo Duenas
Well if you have checked on the code I've sent you, it doesn't work,  
There is other way to pass the entire url from data.link to the  
navigateToURL?


gustavo
On Aug 10, 2010, at 4:20 PM, Oleg Sivokon wrote:



Claudiu:
That's exactly what my code does...

Gustavo:
Read what the error says. You are trying to coerce String to  
URLRequest. Of course you cannot do it. The code from the first  
example should work. If it didn't, what was the problem?







Re: [flexcoders] link button from a rss

2010-08-10 Thread Gustavo Duenas

my whole code for the component.
http://www.adobe.com/2006/mxml"; width="497"  
height="194" horizontalScrollPolicy="off" click="navigateToURL(new  
URLRequest('{data.link}'))">
	id="titulo" fontWeight="bold" color="#4B1D04"/>
	textAlign="left" enabled="true" fontSize="14" fontFamily="Arial"  
color="#020F12"/>
	color="#000607">









I did as you send me but it isn't working, any ideas.

Gustavo

Re: [flexcoders] link button from a rss

2010-08-10 Thread Gustavo Duenas

I did this, and I have the following error, here is my code:

	color="#000607">






here is the error
TypeError: Error #1034: Type Coercion failed: cannot convert "http://jacksonville.weddings.maflephotography.com/maflephoto/?p=81&utm_source=rss&utm_medium=rss&utm_campaign=what-if-the-not-guide-for-the-cheap-bride 
" to flash.net.URLRequest.
	at FeedBox/___FeedBox_LinkButton1_click()[/Users/gustavoduenas/ 
Documents/Flex Builder 3/MaflePhotoRSS-Feed/src/FeedBox.mxml:10]

On Aug 10, 2010, at 4:01 PM, claudiu ursica wrote:



Put the code inside a click event handler that should do it.
C

From: Gustavo Duenas 
To: flexcoders@yahoogroups.com
Sent: Tue, August 10, 2010 9:58:16 PM
Subject: Re: [flexcoders] link button from a rss


nope, I tried your way and it doesn't work, any other ideas, It  
seems like the data is not passing to the new urlrequest



Gus

On Aug 10, 2010, at 2:21 PM, Oleg Sivokon wrote:



Remove the single quotes and put the brackets around the entire  
expression. You cannot bind to function arguments, not in that way  
for sure.

Better yet, don't use binding:



navigateToURL(new URLRequest(data.link));



Something like this.










Re: [flexcoders] link button from a rss

2010-08-10 Thread Gustavo Duenas
nope, I tried your way and it doesn't work, any other ideas, It seems  
like the data is not passing to the new urlrequest


Gus

On Aug 10, 2010, at 2:21 PM, Oleg Sivokon wrote:



Remove the single quotes and put the brackets around the entire  
expression. You cannot bind to function arguments, not in that way  
for sure.

Better yet, don't use binding:



navigateToURL(new URLRequest(data.link));



Something like this.






[flexcoders] link button from a rss

2010-08-10 Thread Gustavo Duenas
Hi I have an item renderer who has its data from a rss, here is the  
structure, but in someway I can't make the link button to work this  
way, here is the code.


http://www.adobe.com/2006/mxml"; width="497"  
height="194" horizontalScrollPolicy="off">
	id="titulo" fontWeight="bold"/>
	textAlign="left" enabled="true" fontSize="14" fontFamily="Arial"  
color="#020F12"/>
	click="navigateToURL(new URLRequest('{data.link}'))"/>





when I put the URL on the url request like a normal string of http://  
it works


everything works just fine, but the link button doesn't

I need help.


Gustavo




Re: [flexcoders] Flex 4 Upgrade Price?

2009-12-15 Thread Gustavo Duenas
does anyone knows if this flex 4 upgrade will be also for PPC macs  
not the intel kind


Gus
On Dec 15, 2009, at 2:55 PM, Nick Collins wrote:


Us Windows folks don't have 64 bit love yet, either.


On Tue, Dec 15, 2009 at 12:55 PM, Rick Winscot  
 wrote:


Not to sound harsh on Adobe... but I shelled out $500 for the Flex  
2 -> Flex 3 upgrade and four weeks later they dropped the price to  
$250. I’d like to avoid that if possible – does anyone have any  
info on what the Flex 4 upgrade is going to cost and when it might  
be available?


Also... when are we going to see (Eclipse) support for Carbon  
dropped or Cocoa added for the Mac folks? It would really be nice  
to be cruising at 64 bit.


Cheers,

Rick Winscot
www.quilix.com








Re: [flexcoders] rss loader in flex 3

2009-12-14 Thread Gustavo Duenas

seems like flash, but I guess I can use it into flex right?

any othe tutorial one that might be step by step perhaps.

gus


On Dec 14, 2009, at 11:11 AM, primo411 wrote:


http://www.as3dtk.com/?p=399


2009/12/14 Gustavo Duenas 

Someone knows a tutorial to make a rss reader in flex builder 3?

Gus







[flexcoders] rss loader in flex 3

2009-12-14 Thread Gustavo Duenas
Someone knows a tutorial to make a rss reader in flex builder 3?

Gus


[flexcoders] video list and repeater

2009-07-30 Thread Gustavo Duenas



Hello friends, anyone can point me to a tutorial about how to create  
a video list in flex, the dat from the list should be taken from an  
xml file.


Regards,

Gustavo




[flexcoders] help with videos

2009-07-22 Thread Gustavo Duenas
I want to do this, I have a xml list with images, description and  
links to flvs.
Ok, then I'm making a repeater out of a vbox and using a canvas and  
the buttons of the repeater point to the links
where the videos are and I don't know how to make it on the videos, I  
can use a swf loader or a.?


Any ideas or tutorials.

Gustavo







Re: [flexcoders] Eclipse WTP and FlexBuilder 3

2009-07-17 Thread Gustavo Duenas
Hi julien do you mind to tell me or point me to an article or how to  
install the wtp on galileo and then working with fb3.


Gustavo
On Jul 15, 2009, at 4:29 PM, Julien Nicoulaud wrote:


We use WTP with Flex Builder 3 for our Flex projects.
What kind of issue do you encounter ?


2009/7/15 simonjpalmer 


Has anyone managed to get WTP working in FlexBuilder 3, or to get  
FlexBuilder 3 working in Eclipse with WTP also in play?


Are there any good resources to say how this works, or why it doesn't?

I had this working fine in FlexBuilder 2.












Re: [flexcoders]using sdk 4 on flex 3

2009-07-16 Thread Gustavo Duenas
I did as you said and nothing happens, and odd error that he cannot  
load textlayout.swc or something,

I guess I will use the fb3 with the sdk3

gustavo
On Jul 15, 2009, at 4:45 PM, Gustavo Duenas wrote:


Thanks man, but I did something wrong ?


Gustavo
On Jul 15, 2009, at 8:48 AM, Tom Chiverton wrote:


On Tuesday 14 Jul 2009, Gustavo Duenas wrote:
> Hi coders, I have installed the flex 4 sdk (placed onto the sdk
> folder on flex builder 3)
> onto my flex builder 3
> let me know if I'm doing something possible or not.

Normally you'd unpack the new SDK to some other directory, then  
add it in

Builders properties.

--
Helping to authoritatively embrace materials as part of the IT  
team of the

year, '09 and '08


This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in  
England and Wales under registered number OC307980 whose  
registered office address is at Halliwells LLP, 3 Hardman Square,  
Spinningfields, Manchester, M3 3EB. A list of members is available  
for inspection at the registered office together with a list of  
those non members who are referred to as partners. We use the  
word ?partner? to refer to a member of the LLP, or an employee or  
consultant with equivalent standing and qualifications. Regulated  
by the Solicitors Regulation Authority.


CONFIDENTIALITY

This email is intended only for the use of the addressee named  
above and may be confidential or legally privileged. If you are  
not the addressee you must not read it and must not use any  
information contained in nor copy it nor inform any person other  
than Halliwells LLP or the addressee of its existence or contents.  
If you have received this email in error please delete it and  
notify Halliwells LLP IT Department on 0870 365 2500.


For more information about Halliwells LLP visit www.Halliwells.com.















Re: [flexcoders]

2009-07-15 Thread Gustavo Duenas

Thanks man, but I did something wrong ?

Gustavo
On Jul 15, 2009, at 8:48 AM, Tom Chiverton wrote:




On Tuesday 14 Jul 2009, Gustavo Duenas wrote:
> Hi coders, I have installed the flex 4 sdk (placed onto the sdk
> folder on flex builder 3)
> onto my flex builder 3
> let me know if I'm doing something possible or not.

Normally you'd unpack the new SDK to some other directory, then add  
it in

Builders properties.

--
Helping to authoritatively embrace materials as part of the IT team  
of the

year, '09 and '08


This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in  
England and Wales under registered number OC307980 whose registered  
office address is at Halliwells LLP, 3 Hardman Square,  
Spinningfields, Manchester, M3 3EB. A list of members is available  
for inspection at the registered office together with a list of  
those non members who are referred to as partners. We use the word ? 
partner? to refer to a member of the LLP, or an employee or  
consultant with equivalent standing and qualifications. Regulated  
by the Solicitors Regulation Authority.


CONFIDENTIALITY

This email is intended only for the use of the addressee named  
above and may be confidential or legally privileged. If you are not  
the addressee you must not read it and must not use any information  
contained in nor copy it nor inform any person other than  
Halliwells LLP or the addressee of its existence or contents. If  
you have received this email in error please delete it and notify  
Halliwells LLP IT Department on 0870 365 2500.


For more information about Halliwells LLP visit www.Halliwells.com.








[flexcoders]

2009-07-14 Thread Gustavo Duenas



Hi coders, I have installed the flex 4 sdk (placed onto the sdk  
folder on flex builder 3)

onto my flex builder 3

let me know if I'm doing something possible or not.

Gustavo





[flexcoders] help with a flex project

2009-07-08 Thread Gustavo Duenas
Hi Guys, long time no see, I was wondering if you could know how can  
I do this:


I have some flv. videos, I write them up into a an xml list.

Ok, I want to make a repeater that once It get clicked launch the  
video in a window .


everyone could help with a step by step guide or at least point me to  
some tutorial.


I'm using flex 3.


regards,

Gustavo







[flexcoders] compiling fp10 in flex3

2009-04-02 Thread Gustavo Duenas
I Have the fp10 player global swc but when I try that flex read it as  
an external swc, I always have a bytecode error, any help?


Gustavo

P.D: someone would help me out with an step by step guide I've been  
doing what they said in the internet and I still have the error.








Re: [flexcoders] How to make mx:Application transparent

2009-03-18 Thread Gustavo Duenas LRS
have you tried to set the background transparent from the part of the  
embeded like:


or something like that, I used to do that in the flash using  
swfobject but I guess that might work as well, although I've never  
used on flex.

Some solutions outside the mx application could be good to try.

Gustavo

On Mar 18, 2009, at 8:01 PM, elevight wrote:


Here's the code of my small application:


http://www.adobe.com/2006/mxml";  
layout="vertical"
width="540" height="45" horizontalScrollPolicy="off"  
verticalScrollPolicy="off"
paddingTop="1" paddingBottom="0" paddingLeft="0" paddingRight="0"  
verticalAlign="middle">





maxChars="25" displayAsPassword="true"/>




color="0xff" fontWeight="bold"/>




When the above application is run, I get this default blue  
background that all Flex applications start with. I want to make it  
transparent so that whatever my Flex application is sitting on in  
my web page would show instead.


I've tried setting the backgroundAlpha of the mx:Application to  
zero but have had no effect.


Anybody have any suggestions on how to do this? Thanks.







Re: [flexcoders] Re: flex 3 issue loading fp10

2009-03-17 Thread Gustavo Duenas
Thanks Darrel that is what I mean, I've been trying to compile with  
the fp10 global swc.

could you help me out step by step.

Regards,

gustavo
On Mar 17, 2009, at 9:42 AM, Darrell Loverin wrote:

By "load it inside flex 3" do you mean compile with fp10 global  
swc? To use the fp10 global swc in Flex 3 you should compile with "- 
target-player=10". Also verify you are running the fp10 player, fp9  
can't run a swf compiled for fp10.


-Darrell

--- In flexcoders@yahoogroups.com, Gustavo Duenas  wrote:
>
>
>
> I have the fp10 global swc, and when I try to load it inside flex 3,
> it has a problem, and say that it has a bitcode error, any ideas  
why?

>
> Gustavo
>






Gustavo A. Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS
904.  265 0330 - 904. 386 7958
www.leftandrightsolutions.com
Jacksonville - Florida






[flexcoders] flex 3 issue loading fp10

2009-03-17 Thread Gustavo Duenas



I have the fp10 global swc, and when I try to load it inside flex 3,  
it has a problem, and say that it has a bitcode error, any ideas why?


Gustavo




[flexcoders] error loading the flash player 10 in flex 3

2009-03-16 Thread Gustavo Duenas


Does anyone knows a way to load the flash player 10 swc inside flex3  
with out come abc bitecode error...I don't know what is that.


Regards,

Gustavo







[flexcoders] problem with a loaded swf

2009-03-05 Thread Gustavo Duenas



Hi I have this problem probably I'm wrong, but here it is:
I have an external swf loaded into flex3, the swf has a button  
instance named "continuar"
when I load the swf, I make it as MovieClip, but when I try to do  
this, happens an error.

this is the code for the button:

var myflash:MovieClip = myFlash.content as MovieClip;

myflash.continuar.addEventListener(MouseEvent.CLICK, continuarClick);
function continuarClick(e:MouseEvent):void{
currentState="start";

}


here is the error I'm having all the time.

TypeError: Error #1009: Cannot access a property or method of a null  
object reference.
	at gusDuenas/init()[/Users/gduenas/Documents/Flex Builder 3/ 
gusDuenas/src/gusDuenas.mxml:18]
	at gusDuenas/___gusDuenas_Application1_creationComplete()[/Users/ 
gduenas/Documents/Flex Builder 3/gusDuenas/src/gusDuenas.mxml:2]

at flash.events::EventDispatcher/dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
	at mx.core::UIComponent/dispatchEvent()[E:\dev\3.0.x\frameworks 
\projects\framework\src\mx\core\UIComponent.as:9051]
	at mx.core::UIComponent/set initialized()[E:\dev\3.0.x\frameworks 
\projects\framework\src\mx\core\UIComponent.as:1167]
	at mx.managers::LayoutManager/doPhasedInstantiation()[E:\dev\3.0.x 
\frameworks\projects\framework\src\mx\managers\LayoutManager.as:698]

at Function/http://adobe.com/AS3/2006/builtin::apply()
	at mx.core::UIComponent/callLaterDispatcher2()[E:\dev\3.0.x 
\frameworks\projects\framework\src\mx\core\UIComponent.as:8460]
	at mx.core::UIComponent/callLaterDispatcher()[E:\dev\3.0.x\frameworks 
\projects\framework\src\mx\core\UIComponent.as:8403]





I hope you can help me out.


Regards,


Gustavo Duenas





Re: [flexcoders] AlivePdf and scroll bars

2009-02-10 Thread Gustavo Duenas LRS
I did use alive pdf one time and you are right, you have to set to  
the alive pdf the dimensions of the field you need printed

in pdf otherwise it would be cut.

let me know if you need more and I'll send you the values I've been  
using.


Gustavo


On Feb 9, 2009, at 5:47 PM, Richard Rodseth wrote:

I haven't actually used AlivePDF yet, but I suspect you will need a  
custom layout for your "print view". Now if you want the list  
contents to be paginated, you're probably in for a fair amount of  
work.



On Thu, Feb 5, 2009 at 12:03 PM, kuroiryu42   
wrote:

I have a list that has scroll bars that I want to go away when I drop
it into the PDF. I am just using the addImage function of PDF so it is
basically taking a screen shot of the list that i pass in.

Anyone have a solution for this?

Thanks









Re: [flexcoders] Re: sizing dinamically the screen

2009-02-09 Thread Gustavo Duenas LRS
thanks Amy, but it seems when I try to tell the document in Js about  
the new size, that
it is not doing the resize, Example is trying to do the sizing in the  
document for vista and

others like

document.width = screen.availWidth;
document.height= screen.availHeight;

those arguments work in theory but it seems they are not working in  
Vista or XP...
I don't  what else to do, actually I have an odd error in the  
application:


TypeError: Error #1009: Cannot access a property or method of a null  
object reference.

at lrsAd/resizerFlash()
at lrsAd/___Application1_creationComplete()
at flash.events::EventDispatcher/dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at mx.core::UIComponent/dispatchEvent()
at mx.core::UIComponent/set initialized()
at mx.managers::LayoutManager/doPhasedInstantiation()
at Function/http://adobe.com/AS3/2006/builtin::apply()
at mx.core::UIComponent/callLaterDispatcher2()
at mx.core::UIComponent/callLaterDispatcher()

this is the flash windows that appears now in my browser.


//code for the application:

creationComplete="resizerFlash()"

here is the code in the flex:


  //importamos los datos para el external interface//
  import flash.external.ExternalInterface;

  //funcion para usar la external interface//
  public function resizerFlash():void{

var h:int;
var w:int

if (ExternalInterface.available){


h= ExternalInterface.call( "movieHeight");
root.stage.height = h;
w=ExternalInterface.call( "movieWidth");
root.stage.width = w;
trace(h);
trace(w);
}


}


what that means, I'm afraid my understanding is not that good.

Gustavo


On Feb 2, 2009, at 10:06 PM, Amy wrote:


--- In flexcoders@yahoogroups.com, Gustavo Duenas LRS 
wrote:
>
> actually I'm trying to pass the JS var with the availWidth to flex
> in order to be used on
>
>
> var h:number = ExternalInterface.call("getAvailWidth");
> var w:humber = ExternalInterface.call("getAvailHeight");
>
> root.stage.width = w
> root.stage.height=h
>
> assuming I have in the html wrapper
>
> function getAvailWidth{
> and so on}
> This is exactly what I'm trying to accomplish.

You need to be resizing the object/embed tag, not telling Flex to
resize the Application object, so Flex doesn't need to be involved in
the process, unless you want to be able to click a button to initiate
the resize. But all that needs to do is just call a js function, which
should be able to handle it without any info from Flex.







Re: [flexcoders] Re: sizing dinamically the screen

2009-02-02 Thread Gustavo Duenas LRS
actually I'm trying to pass the JS var with the availWidth to flex
in order  to be  used on



var h:number = ExternalInterface.call("getAvailWidth");
var w:humber = ExternalInterface.call("getAvailHeight");

 root.stage.width = w
root.stage.height=h

assuming I have in the html wrapper

function getAvailWidth{
and so on}
This is exactly what I'm trying to accomplish.

Gus


On Feb 2, 2009, at 6:08 PM, jim.abbott45 wrote:


Gustavo:

Sorry, but I don't think you're coding this correctly. Specifically:

1) I don't see your browser size detection code in the HTML wrapper
file at all. E.g., it is missing:

> <tt>--- In flexcoders@yahoogroups.com, Gustavo Duenas LRS <gdue...@...>  
</tt><tt>wrote:
</tt><pre style="margin: 0em;">
>
> OK,,I have this using the external interface let me know if I'm
> wrong...:)
>
> <mx:script>
> import flash.external.*;
>
> publicFunction resizerFlash():void{
>
> var h:uint;
> var w:uint;
>
> if (ExternalInterface.available){
>
> var availableHeight:uint = "browserHeight" ;
> h= ExternalInterface.call(availableHeight, stage.height);
> }
>
> if (ExternalInterface.available){
>
> var availableWidth:uint = "browserWidth";
> w=ExternalInterface.call(availableHeight, stage.width);
>
> }
>
> }
> in the html:
>
> <script type="javascript>
>
> var browserHeight= screen.availHeight;
> var browserWidth = screen.availWidth;
>
> 
>
> I'm just adapting something I found about using the external
> interface
> let me know if I'm wrong or this is going to be a fiasco
>
>
> Gustavo
>
>
> On Feb 2, 2009, at 1:33 PM, Gustavo Duenas LRS wrote:
>
> > Ok, jim, my flex ste:
> >
> > is:
> >
> > http://leftandrightsolutions.com/lrsad/bin/lrsad.html
> > please check it on a pc with windows and let me know if this one
> > looks good on windows/vista/xp borwsers,
> > prefenrently IE.
> >
> > Regards,
> >
> > Gustavo
> >
> > P.d: the aplication for mac computer has a window.open() but
> > problem is the windows browsers, so instead of that
> > I've been trying to apporach the windows, not much of success  
right

> > now.
> >
> >
> > On Feb 2, 2009, at 1:13 PM, jim.abbott45 wrote:
> >
> >> Gustavo:
> >>
> >> Sorry, but I don't think the approach you are taking is  
necessarily
> >> advisable, or even technically correct (in one regard).  
Specifically:

> >>
> >> 1) screen.width (and screen.height, and screen.availableWidth,  
etc.)

> >> allow JavaScript (DOM) code to discover the size of the user's
> >> monitor
> >> (screen hardware), not of the browser window in which your Flex
> >> application is running. (The available* properties then  
subtract from
> >> that size any operating system 'reserved' screen real estate,  
such as

> >> the Windows task bar.)
> >>
> >> 2) I would be very surprised if JavaScript code could alter  
the value
> >> of any of these properties--by definition they could not be  
under the
> >> control of a browser window, so they should be read-only.  
Therefore,

> >> code like
> >>
> >> screen.width = 1024;
> >>
> >> should not be expected to work.
> >> Even if that code _does_ happen to work with one Browser or  
Operating

> >> System, I wouldn't rely on it!
> >>
> >> 3) A reasonably reliable way to ensure that your application is
> >> running in a browser window of the size that you want, is to  
use the

> >> JavaScript/browser DOM Window.open() method to open a new window,
> >> which gives you the opportunity to specify the size of browser  
window
> >> that you want your application to have. Be sure to note that  
you are
> >> specifying the overall (e.g., outer) size of the window; you  
are NOT
> >> specifying how much (client) area that your application will  
get. ***

> >> Different brands (and versions) of browsers will use different
> >> amounts
> >> of space for their own 'chrome' (UI elements such as the URL/ 
address
> >> bar, etc.). I don't know of any way other than cross-browser  
testing
> >> to discover the exact values, and they may change when a new  
version

> >> of a browser is released!
> >>
> >> 4) If you don't want to open a new browser window, then you  
can use

> >> the Window.resizeTo() DOM call in order to modify the size of the

Re: [flexcoders] Re: sizing dinamically the screen

2009-02-02 Thread Gustavo Duenas LRS
OK,,I have this using the external interface let me know if I'm  
wrong...:)



import flash.external.*;

publicFunction resizerFlash():void{

var h:uint;
var w:uint;

if (ExternalInterface.available){

var availableHeight:uint = "browserHeight" ;
h= ExternalInterface.call(availableHeight, stage.height);
}

if (ExternalInterface.available){

var availableWidth:uint = "browserWidth";
w=ExternalInterface.call(availableHeight, stage.width);

}

}
in the html:


Re: [flexcoders] Re: sizing dinamically the screen

2009-02-02 Thread Gustavo Duenas LRS

Ok, jim, my flex ste:
is:

http://leftandrightsolutions.com/lrsad/bin/lrsad.html
please check it on a pc with windows and let me know if this one  
looks good on windows/vista/xp borwsers,

prefenrently IE.

Regards,

Gustavo

P.d: the aplication for mac computer has a window.open() but problem  
is the windows browsers, so instead of that

I've been trying to apporach the windows, not much of success right now.


On Feb 2, 2009, at 1:13 PM, jim.abbott45 wrote:


Gustavo:

Sorry, but I don't think the approach you are taking is necessarily
advisable, or even technically correct (in one regard). Specifically:

1) screen.width (and screen.height, and screen.availableWidth, etc.)
allow JavaScript (DOM) code to discover the size of the user's monitor
(screen hardware), not of the browser window in which your Flex
application is running. (The available* properties then subtract from
that size any operating system 'reserved' screen real estate, such as
the Windows task bar.)

2) I would be very surprised if JavaScript code could alter the value
of any of these properties--by definition they could not be under the
control of a browser window, so they should be read-only. Therefore,
code like

screen.width = 1024;

should not be expected to work.
Even if that code _does_ happen to work with one Browser or Operating
System, I wouldn't rely on it!

3) A reasonably reliable way to ensure that your application is
running in a browser window of the size that you want, is to use the
JavaScript/browser DOM Window.open() method to open a new window,
which gives you the opportunity to specify the size of browser window
that you want your application to have. Be sure to note that you are
specifying the overall (e.g., outer) size of the window; you are NOT
specifying how much (client) area that your application will get. ***
Different brands (and versions) of browsers will use different amounts
of space for their own 'chrome' (UI elements such as the URL/address
bar, etc.). I don't know of any way other than cross-browser testing
to discover the exact values, and they may change when a new version
of a browser is released!

4) If you don't want to open a new browser window, then you can use
the Window.resizeTo() DOM call in order to modify the size of the
current window.

For both 3) and 4), security policy in modern browsers may affect: the
success of opening a new window (i.e., pop-up blockers), and to place
limits on net window size.

5) You can call the JavaScript/DOM code from your Flex application
using the Flash ExternalInterface API. For more information, see (for
example):
http://livedocs.adobe.com/flex/3/html/help.html? 
content=passingarguments_4.html


6) For more information about the Window.resizeTo() browser DOM API,
see (for example):
http://msdn.microsoft.com/en-us/library/ms536723(VS.85).aspx

7) My _recommendation_ is that you consider abandoning the notion of a
fixed-size application window. Flex containers support liquid layout
very nicely and it is not much (extra) work to let your application
work that way. In other words, if/when the user resizes their browser
window, have your application adjust its layout accordingly. If you do
that, I think that it is also reasonable to specify a (window) size
below which your application won't be able to re-size itself to (and,
thus, scroll bars may appear).

Good luck!
--Jim

--- In flexcoders@yahoogroups.com, Gustavo Duenas LRS   
wrote:

>
> do you know where I can get examples of this ExternalInterface?
>
> Regards,
>
> Gustavo
>
> On Feb 2, 2009, at 10:45 AM, Tracy Spratt wrote:
>
> >
> > If that works in javascript, in different browsers, then you can
> > get those values through ExternalInterface
> >
> >
> >
> > Tracy Spratt
> > Lariat Services
> >
> > Flex development bandwidth available
> >
> > From: flexcoders@yahoogroups.com
> > [mailto:flexcod...@yahoogroups.com] On Behalf Of Gustavo Duenas  
LRS

> > Sent: Monday, February 02, 2009 9:33 AM
> > To: flexcoders@yahoogroups.com
> > Subject: [flexcoders] sizing dinamically the screen
> >
> >
> >
> > Ok, Coders, this is my problem I have set the width and height  
of my
> > application to 1024 to 768 , it works on mac, but in pc you  
know what

> > would happen with the IE7...
> > well I just think this, just addind a creationComplete code  
like

> >
> > function initSize(){
> >
> > screen.width= screen.availWidth;
> > screen.height= screen/availHeight;
> >
> > this think works in Javascript there is counterpart on flex or it
> > works on flex?
> >
> > I'd appreciate your help.
> >
> > Gus
> >
> >
> >
> >
>







Re: [flexcoders] sizing dinamically the screen

2009-02-02 Thread Gustavo Duenas LRS

do you know where I can get examples of this ExternalInterface?

Regards,

Gustavo

On Feb 2, 2009, at 10:45 AM, Tracy Spratt wrote:



If that works in javascript, in different browsers, then you can  
get those values through ExternalInterface




Tracy Spratt
Lariat Services

Flex development bandwidth available

From: flexcoders@yahoogroups.com  
[mailto:flexcod...@yahoogroups.com] On Behalf Of Gustavo Duenas LRS

Sent: Monday, February 02, 2009 9:33 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] sizing dinamically the screen



Ok, Coders, this is my problem I have set the width and height of my
application to 1024 to 768 , it works on mac, but in pc you know what
would happen with the IE7...
well I just think this, just addind a creationComplete code like

function initSize(){

screen.width= screen.availWidth;
screen.height= screen/availHeight;

this think works in Javascript there is counterpart on flex or it
works on flex?

I'd appreciate your help.

Gus








Re: [flexcoders] sizing dinamically the screen

2009-02-02 Thread Gustavo Duenas LRS
well actually the problem with the javascript it seems not to work  
properly on IE7+ vista or even in the xp, so
I'm looking for better ways to do this inside the actionscript, I  
mean to change the entire height and width of the application,  
because since it is set actually on
1024 x 768, in the low resolution screens or in windows, it appears  
totally blow out or bigger...



Thanks.


Gustavo


On Feb 2, 2009, at 10:45 AM, Tracy Spratt wrote:



If that works in javascript, in different browsers, then you can  
get those values through ExternalInterface




Tracy Spratt
Lariat Services

Flex development bandwidth available

From: flexcoders@yahoogroups.com  
[mailto:flexcod...@yahoogroups.com] On Behalf Of Gustavo Duenas LRS

Sent: Monday, February 02, 2009 9:33 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] sizing dinamically the screen



Ok, Coders, this is my problem I have set the width and height of my
application to 1024 to 768 , it works on mac, but in pc you know what
would happen with the IE7...
well I just think this, just addind a creationComplete code like

function initSize(){

screen.width= screen.availWidth;
screen.height= screen/availHeight;

this think works in Javascript there is counterpart on flex or it
works on flex?

I'd appreciate your help.

Gus








[flexcoders] sizing dinamically the screen

2009-02-02 Thread Gustavo Duenas LRS
Ok, Coders, this is my problem I have set the width and height of my  
application to 1024 to 768 , it works on mac, but in pc you know what  
would happen with the IE7...
well I just think this, just addind a creationComplete code like

  function initSize(){

screen.width= screen.availWidth;
screen.height= screen/availHeight;

this think works in Javascript there is counterpart on flex or it  
works on flex?

I'd appreciate your help.


Gus




Re: [flexcoders] Re: problem with IE 7+

2009-01-28 Thread Gustavo Duenas LRS
Would you mind to tell me how could I resize them?I was thinking  
in a javascript way to just order the window to adapt to the size of  
the screen.
But I'm worry because the application has nothing wrong ( at least  
about what I thinking now) so is weird, please check this out for  
me.would you?
I'm using a mac so nothing is wrong in mine, I hope you have a PC  
with vista and IE 7, please let me know.


This is the location:

http://leftandrightsolutions.com/lrsad/bin/lrsad.html

Regards,


Gustavo D.


On Jan 28, 2009, at 1:25 PM, radwhite81 wrote:


I dont know if this would help but on initialize or creation complete
grab the width and height the main parent component and resize its
children components appropriately. also if you are looking into making
windows in your application that minimize and maximize check this site
out http://code.google.com/p/flexmdi/. I use this in my application.







[flexcoders] problem with IE 7+

2009-01-28 Thread Gustavo Duenas
Hi I have a flex website that loads great on Firefox, mac and pc and  
safari, but in IE7 PC it doesn't show everything, particularly the  
bottom part...why?
I have to go to the preferences panel in IE in order to order it to  
make the full screen, there is a way to avoid it and show the whole  
thing the same as on firefox and macs?


I hope you could help me so far in the application has been set the  
scrollpolicy horizonalt and vertical off...this issue is related to  
this or not?


Gustavo







[flexcoders] help here with an item renderer

2008-11-24 Thread Gustavo Duenas
Hi I have a xml file and it has a 800 and so  
forth, and also I have a repeater (a horizontal list) which grabs the  
xml and the item renderer with a button, instead of doing the horizontal
list do the click I'd like to make the button inside the item  
renderer to do that.


how could I do that?

I was trying to use
in the item rendered

private function send():void{





and in the button: click="send()"

so far, it is just putting in my browser mybroser/{data.button1}
but I'd like to put in there the URL, how could I?

Regards,

Gus


Gustavo A. Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS
904.  265 0330 - 904. 386 7958
www.leftandrightsolutions.com
Jacksonville - Florida






Re: [flexcoders] Re: my first flex website

2008-11-04 Thread Gustavo Duenas
thanks, noted, how could I load first the content and then show  
it...if you know how, please point me it.

I'd appreciate your help.
I'm not perfect, but I'd really like to do perfect.

Regards,

Gustavo
On Nov 4, 2008, at 2:30 PM, florian.salihovic wrote:

Sorry, imho it's hard to believe that this website is used to  
present yourself on the market.
- pictures simply appear randomly... load first the content, then  
show it.
- pictures aren't antialiased, the pictures in "pricing" don't look  
nice.
- pictures and icons don't work well together (simple gradients, 3d  
icons... ), the visual

impression is not that nice since the colors don't work.
- i miss the concept of the site

Sorry, just my opinion...

--- In flexcoders@yahoogroups.com, Gustavo Duenas <[EMAIL PROTECTED]> wrote:
>
> HI, finally I've done my first flex web siteit is done, or at
> least is that what I think...maybe tomorrow I'll add something else.
>
> please check it at:
>
> http://leftandrightsolutions.com/lrsad/bin/lrsad.html
>
> please don't be so hard in critics, is ok to be criticized but don't
> be offensive.
>
> I hope you like, is not the big deal, but is something that did by
> myself, I thank in advance to all of you who help me out
> with your advices.
>
> regards,
>
> Gustavo
>
>
>
> Gustavo A. Duenas
> Creative Director
> LEFT AND RIGHT SOLUTIONS
> 904. 265 0330 - 904. 386 7958
> www.leftandrightsolutions.com
> Jacksonville - Florida
>







[flexcoders] my first flex website

2008-11-04 Thread Gustavo Duenas
HI, finally I've done my first flex web siteit is done, or at  
least is that what I think...maybe tomorrow I'll add something else.


please check it at:

http://leftandrightsolutions.com/lrsad/bin/lrsad.html

please don't be so hard in critics, is ok to be criticized but don't  
be offensive.


I hope you like, is not the big deal, but is something that did by  
myself, I thank in advance to all of you who help me out

with your advices.

regards,

Gustavo



Gustavo A. Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS
904.  265 0330 - 904. 386 7958
www.leftandrightsolutions.com
Jacksonville - Florida






[flexcoders] alivePdf create.php file

2008-11-04 Thread Gustavo Duenas
Does anyone have ever tried the Alive PDF on coldfusion  and if yes,  
do you have an alternate file for the .PHP one?, because I'm trying  
to use it on my file but it seems that I need extra help.


Regards,


Gustavo D.








[flexcoders] form to pdf

2008-10-21 Thread Gustavo Duenas

Hi I was thinking on this, tell me if this is possible.

I have a form in flex, how could I send that information through an  
Coldfusion page and then to my email addrs.
I know how to do the coldfusion but I would like to receive the form  
in the way it was intended in the flex, with graphics and
everything, there is a way to convert the data in a coldfusion page  
into a pdf and then send the PDF via email, or flex could do that by  
itself.


Regards,


Gustavo




Gustavo A. Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS
904.  265 0330 - 904. 386 7958
www.leftandrightsolutions.com
Jacksonville - Florida






[flexcoders] help controlling an external swf from flex.

2008-08-26 Thread Gustavo Duenas


Hi Guys I have an external swf, loaded into a loader in flex, but I'd  
like to know how can I control ( is a swf with timeline animations)  
that from the flex application.


How could I, so far this is my idea.


mx:Script>



http://leftandrightsolutions.com/ 
gusFlex/backs.swf" scaleContent="true"/>





is a simple thing, but I'm stuck.


Regards,



Gustavo A. Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS
904.  265 0330 - 904. 386 7958
www.leftandrightsolutions.com
Jacksonville - Florida






Re: [flexcoders] how could I get certified by flex

2008-05-24 Thread Gustavo Duenas

Hi,
 I have adobe flex 2 training from the the source, once I got it  
finished where should I go have the test

to be certified?
Regards,


Gustavo Duenas


On May 24, 2008, at 5:55 PM, Rick Winscot wrote:


The 'Training from the Source' series is a good place to start...

http://www.amazon.com/Adobe-Flex-3-Training-Source/dp/0321529189

Rick Winscot

From: flexcoders@yahoogroups.com  
[mailto:[EMAIL PROTECTED] On

Behalf Of Gustavo Duenas
Sent: Saturday, May 24, 2008 5:41 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] how could I get certified by flex

Hi coders , I was wondering, where could I find a flex book to study
for a flex certification and also
where could I get that test .

Regards,

Gustavo Duenas

 




[flexcoders] how could I get certified by flex

2008-05-24 Thread Gustavo Duenas
Hi coders , I was wondering, where could I find a flex book to study  
for a flex certification and also
where could I get that test .


Regards,


Gustavo Duenas


[flexcoders] flex certification

2008-05-23 Thread Gustavo Duenas
any ideas about a good book to start studying for the flex  
certification?
and also where should I get the test to be certified?

Regards,


Gustavo Duenas


[flexcoders] flex3 sdk and eclipse

2008-05-18 Thread Gustavo Duenas
Hi I'd like to set up my eclipse to work with the flex3 sdk...is that  
possible and if it is, how could I?

Turorial or ideas are welcome.

:)

Gustavo


[flexcoders] flex3 sdk and eclipse 3.2

2008-05-17 Thread Gustavo Duenas
Hi, anyone knows a way to make eclipse 3.2 to work with the flex sdk?

regards,


Gustavo

P.s: any tutorial could be nice




Re: [flexcoders] a bit of information about Iframes

2008-05-14 Thread Gustavo Duenas
Thanks for you response Derrick, my last responses had the code, this  
is only My desperate intent to tell people that something odd is  
happening with the Iframes.
And Actually I tried to solve the problem, changing the position on  
the javascript, it only works ( I mean the position) , when the div  
align is not set on center, but problem is that the flex site is set  
up to appear in the center, aesthetic  reasons, other wise I don't  
know how to set up the iFrame to appear inside the panel, which is in  
the center of the flex.
About the other part of the code, well I didn't figured out...you  
know more than me of this matter, I will check on it, but seems that  
the only position to the Iframe to be inside the panel is with the  
div of the flex without the alignment on the center, which I don't like.



Regards,


Gustavo

On May 13, 2008, at 2:18 PM, Derrick Anderson wrote:

i don't know what specific issues you are having with this, but I  
can only be helpful in maybe helping you find the information you  
need.


people here tend to respond to posts that don't make them 'think'  
too much about what the problem really is, nobody has time for  
that. They also seem to prefer helping people who have tried to  
solve a problem on their own. Your last 2 posts about iframes  
didn't include a single line of code nor did they describe at all  
what steps you have taken to solve this problem for yourself.


I don't mean to sound preachy, I generally don't but I see from  
reading posts that you have had issues with iframes for quite a  
while now, and your most recent posts are not helping your cause...










[flexcoders] a bit of information about Iframes

2008-05-13 Thread Gustavo Duenas



I FRames sucks, I've just realized that I have so many problems with  
that That I'm giving up with them.


1. the position of the I frame is always absolute in the html, so if  
you have your flex centered using the template (centering the div) is  
not working properly
2. when you change of state to one to  another, just to see guys, let  
me tell you that it is messing all things up. Start appearing the  
Iframe in all the states.

where it is not supposed to.

3. too many problems for little things, I prefer to start training  
monkeys than dealing with this, so I'm giving up I frames, I'd rather  
design a flash movie to present the info

instead of using an IFrame


Regards,

I FEEL IFRAMED!!!

Gustavo A. Duenas



[flexcoders] really need help

2008-05-13 Thread Gustavo Duenas



Hi Coders, how is going I really need some help with this matter, I  
have an I frame component, I placed into a panel and when it is  
rendering
the view, the browser shows the iframe out of the panel, totally  
misplaced  why?


I hope I have better luck than with my last post.


Regards,


Gustavo







[flexcoders] pretty newbie question

2008-04-22 Thread Gustavo Duenas
Anyone knows where could I find a tutorial about how can I read an  
mxml application inside my main application in flex?




Regards,


Gustavo D.





[flexcoders] reading a mxml application inside anoher

2008-04-21 Thread Gustavo Duenas
Hi coders, does anyone of you guys knows a tutorial for this:
I have two mxml applications , one is the main and the other has a  
panel with a yahoo map,
I need to read the app with the yahoo map inside the main  
application, on a stage to be more precise.
Does anyone knows a tutorial for that?

Regards,


Gustavo


Re: [flexcoders] Re: How to draw a cylinder

2008-04-21 Thread Gustavo Duenas

Where could I find that?

Regards,


gustavo
On Apr 21, 2008, at 12:47 PM, Aaron Miller wrote:

Much easier to use Papervision I think. As easy as using the  
Cylinder class.


# package  {
#
#   import PaperBase;
#   import org.papervision3d.objects.Cylinder;
#
#   public class CynlinderObject extends PaperBase {
#
# private var myCylinder:Cylinder = new Cylinder();
#
# public function CynlinderObject() {
#   init();
# }
#
# override protected function init3d():void {
#   myCylinder.scale = 5;
#   default_scene.addChild(myCylinder);
# }
#
#   }
#
# }

Best Regards,
~Aaron


On Mon, Apr 21, 2008 at 7:12 AM, valdhor <[EMAIL PROTECTED]>  
wrote:

There is a tutorial at
http://www.vecpix.com/tutorials/illustrator/il013.php on how to draw a
cylinder. You will then need to use flex component kit to convert it
into a flex component. At the very least, it is a start.

--- In flexcoders@yahoogroups.com, "Swamy Nathan" <[EMAIL PROTECTED]>
wrote:


>
> Can any one tell me how to draw a pipe (cylinder). please give me a
example.
>
> On Sat, Apr 19, 2008 at 11:24 AM, Aaron Miller <
> [EMAIL PROTECTED]> wrote:
>
> > You can try to do the math yourself, or use a 3d engine like
> > Papervision.
> >
> > http://blog.papervision3d.org/
> >
> > Best Regards,
> > ~Aaron
> >
> >
> > On Fri, Apr 18, 2008 at 10:43 PM, Swamy Nathan <[EMAIL PROTECTED]>

> > wrote:
> >
> > > Hi Folks,
> > >
> > > i have one problem how can i draw the cylinder.
> > >
> > > i have an idea about line and rectangle circle drawing. i want
to draw
> > > some thin long cylinder like pipe shaped.
> > >
> > > can any one please reply.
> > >
> > > --
> > > Thanks & Regards
> > > Swaminathan. M
> > >
> >
> >
> >
> > --
> > Aaron Miller
> > Chief Technology Officer
> > Open Base Interactive, LLC.
> > [EMAIL PROTECTED]

> > http://www.openbaseinteractive.com
> >
> >
>
>
>
> --
> Thanks & Regards
> Swaminathan. M
>




--
Aaron Miller
Chief Technology Officer
Open Base Interactive, LLC.
[EMAIL PROTECTED]
http://www.openbaseinteractive.com






Re: [flexcoders] Need help buying Flex licenses in US$ - Intl prices are highway robbery!

2008-04-16 Thread Gustavo Duenas
Use your credit card in the adobe website(US), International credit  
cards use the currency where they are buying,
so in this case USD$, and ask a friend for his address in the US,  
just for purposes of billing.
Sounds like cheating but before coming to the US, when I was living  
in South America, I bought software online using a

friend mail address.


I Hope it helps.

Regards,

Gustavo
On Apr 16, 2008, at 10:16 PM, Vivian Richard wrote:




   Hi Josh. Sounds weired. But I guess whoever was helping you  
mixed up
   with Australian dollar verses USD. I do not believe that there  
is any way
   that Australian will pay 90% more unless there are any  
Australian tax!!!






On Wed, Apr 16, 2008 at 5:28 PM, Peter Connolly  
<[EMAIL PROTECTED]> wrote:

That's really weird, given the state of our deflating US dollar.
Adobe, what's up???



On Wed, Apr 16, 2008 at 6:23 PM, Josh McDonald <[EMAIL PROTECTED]>  
wrote:

>
>
>
>
>
>
> Hi guys,
>
> Can anybody point me to a reseller who sells Flex licenses in US$  
to non-US
> addressed credit cards? We don't want discs, we're not in Nigeria  
or Russia,
> and all calls go to the same call centre in India, why the bloody  
hell

> should Australians pay 90% more for a 40 character string?
>
> -J
>
> --
> "Therefore, send not to know For whom the bell tolls, It tolls  
for thee."

>
> :: Josh 'G-Funk' McDonald
> :: 0437 221 380 :: [EMAIL PROTECTED]







[flexcoders] other ways to read html content inside flex

2008-04-16 Thread Gustavo Duenas


Hi Coders.
There is other proven method to read html content rather than i-frames?
I couldn't find my way there something in the code that I 've just  
don't get it, so I know there should be other way to do this.

any ideas?

Regards


Gustavo







[flexcoders] i-frames on flex2

2008-04-15 Thread Gustavo Duenas



I heard about i-frames in order to load html pages inside flex,  
anyone knows a good tutorial about that?


Regards

Gustavo






[flexcoders] reading an html page inside flex

2008-04-14 Thread Gustavo Duenas



Hi Coder I have this thing, I have a panel which has inside a html  
text field and I'd like to read and html page outside the flex  
application, something like mypage.html
and I'd like to attach to that some styles, should I put the styles  
on the html page or I should have to do this in flex, using the  

Any ideas? and also I'd like to know where can I find a tutorial for  
this particular matter.


Regards,


Gustavo Duenas





Re: [flexcoders] again tool tips

2008-03-20 Thread Gustavo Duenas

sorry if I bother you, but tell me this more in detail.

Regards,

Gustavo
On Mar 20, 2008, at 5:44 PM, Tracy Spratt wrote:



When you declare a variable inside a function it is only available  
within that function.  You need to declare myTT in the instance  
scope, that is, not in a function, and then assign the value inside  
the function.




Tracy



From: flexcoders@yahoogroups.com  
[mailto:[EMAIL PROTECTED] On Behalf Of Gustavo Duenas

Sent: Thursday, March 20, 2008 2:59 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] again tool tips



Ok, I've just resolved the problem of the found or missing package.

 now I have this problem, I've been trying to set the tooltip but  
so far it says that It cannot acces the undefined property myTT,  
which is on the 

Re: [flexcoders] FB3 beta 3

2008-02-14 Thread Gustavo Duenas

Yes, me,
 my fb3 beta 3 is expired, I did the same thing and is still expired  
another idea?

I just give up and I'm working in my FB2

regards

Gustavo
On Feb 13, 2008, at 4:49 PM, grimmwerks wrote:


Nobody's come across this problem either?

On Feb 13, 2008, at 3:44 PM, grimmwerks wrote:

> Hey - for some reason my Flex3 says it's expired - -and I've even  
done

> the -clean thing, deleted and installed another - still it says that
> the Beta expired.
>
> Mac OSX Leopard.
>
>
> --
> 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
>
>
>







Gustavo A. Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS
904.  265 0330 - 904. 386 7958
www.leftandrightsolutions.com
Jacksonville - Florida






Re: [flexcoders] Some Advises.

2008-02-07 Thread Gustavo Duenas

Hi Abdullah, I have this error when I starget getting in your website:


TypeError: Error #1009: Cannot access a property or method of a null  
object reference.

at Comp::Home/creationCompleteHandler()
at Comp::Home/___Operation1_result()
	at flash.events::EventDispatcher/ 
flash.events:EventDispatcher::dispatchEventFunction()

at flash.events::EventDispatcher/dispatchEvent()
	at mx.rpc::AbstractOperation/http://www.adobe.com/2006/flex/mx/ 
internal::dispatchRpcEvent()
	at mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/ 
internal::resultHandler()

at mx.rpc::Responder/result()
at mx.rpc::AsyncRequest/acknowledge()
at ::DirectHTTPMessageResponder/completeHandler()
	at flash.events::EventDispatcher/ 
flash.events:EventDispatcher::dispatchEventFunction()

at flash.events::EventDispatcher/dispatchEvent()
at flash.net::URLLoader/flash.net:URLLoader::onComplete()

then when I click on the others tabs, happens other errors.

How you managed to change  the backgrounds and the animations, when  
the state change on the flex?


Regards



Gustavo


On Feb 6, 2008, at 3:08 AM, NileAge, Mail wrote:


http://www.nileage.org/IndexHome.html




Gustavo A. Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS
904.  265 0330 - 904. 386 7958
www.leftandrightsolutions.com
Jacksonville - Florida






Re: [flexcoders] flex to movie clip control

2008-02-01 Thread Gustavo Duenas
thanks tracy but this is actually how to communicate using a flex  
application with a swf loaded in a swfloader.


yes a movie clip with some frames, something like gotoandstop(), etc.

Regards


Gustavo



On Feb 1, 2008, at 6:10 PM, Tracy Spratt wrote:



Well, I don’t do flash, and wouldn’t know a movieclip if it bit me  
on the butt, but if you want to use SWFLoader and communicate  
between the parent app and the content swf, check out this example,  
which extends the example in the docs.
http://www.cflex.net/showfiledetails.cfm? 
ChannelID=1&Object=File&objectID=690




Tracy



From: flexcoders@yahoogroups.com  
[mailto:[EMAIL PROTECTED] On Behalf Of Gustavo Duenas

Sent: Friday, February 01, 2008 4:39 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] flex to movie clip control



Does anyone know where I can find a simple info about flex
controlling a movie clip inside a embedded swf?

Regards

Gustavo








[flexcoders] flex to movie clip control

2008-02-01 Thread Gustavo Duenas
Does anyone know where I can find a simple info about flex  
controlling a movie clip inside a embedded swf?


Regards


Gustavo




[flexcoders] I don't get it!!! what is this problem

2008-02-01 Thread Gustavo Duenas

I have this code:


http://www.adobe.com/2006/mxml";  
layout="absolute">




















	click="currentState='b1'"/>
	click="currentState='b2'"/>
	title="panel1" id="panel1">











//according the book is ok for transitions but in my flex builder 2  
it gives me an error over and over again


it seems that the flex is taking the names of the states as undefined  
propertieserror 1020





Some one could help me out .



Gustavo A. Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS
904.  265 0330 - 904. 386 7958
www.leftandrightsolutions.com
Jacksonville - Florida






[flexcoders] transition problem in flex2

2008-01-31 Thread Gustavo Duenas


Ok I've been trying so long to do this transition, I have one state  
named Who, when I have the transition as this:










 

the button doesn't work to change to the state "who", the others  
states appears and change correctly but the one with the transitions  
no...

why is that?

any possible explanation?

Regards


Gustavo



Gustavo A. Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS
904.  265 0330 - 904. 386 7958
www.leftandrightsolutions.com
Jacksonville - Florida






Re: [flexcoders] problem with parallel

2008-01-30 Thread Gustavo Duenas

Ok, I did with the targets, instead of target and the  result was:

error

1120: Access of undefined property port_Folio
and so on for the next states names, there is something I did wrong?

regards


Gustavo
On Jan 25, 2008, at 11:12 PM, Sherif Abdou wrote:













Gustavo A. Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS
904.  265 0330 - 904. 386 7958
www.leftandrightsolutions.com
Jacksonville - Florida






[flexcoders] problem with parallel

2008-01-25 Thread Gustavo Duenas
Hi I have a problem with this codes I'm trying to seta transitions  
between a group of states, but when I try to compile it, it says that
the there is an undefined property named as two of the states: ...but  
it appears not to be  the answer... am I doing something wrong.?


This is the code for the transitions, any help is appreciated.


Regards


gustavo









Gustavo A. Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS
904.  265 0330 - 904. 386 7958
www.leftandrightsolutions.com
Jacksonville - Florida






Re: [flexcoders] resizing the whole movie or just the browser window in flex

2008-01-25 Thread Gustavo Duenas

Thanks I got it, I'll do it.

Regards

Gustavo
On Jan 24, 2008, at 1:54 PM, Maciek wrote:


Best to get it straight from the source:

http://livedocs.adobe.com/flex/2/langref/flash/external/ 
ExternalInterface.html


On Thu, 2008-01-24 at 12:53 -0500, Gustavo Duenas wrote:
> would you please explain me this external interface more in detail?
>
>
>
> Regards
>
>
>
>
> Gustavo
> On Jan 24, 2008, at 12:44 PM, Sherif Abdou wrote:
>
> >
> >
> > can't he just use ExternalInteface and use javaScript, there are
> > those popups that you can never resize or do anything with.
> >
> > - Original Message 
> > From: Paul Andrews <[EMAIL PROTECTED]>
> > To: flexcoders@yahoogroups.com
> > Sent: Thursday, January 24, 2008 11:36:33 AM
> > Subject: Re: [flexcoders] resizing the whole movie or just the
> > browser window in flex
> >
> >
> >
> > - Original Message -
> > From: Gustavo Duenas
> > To: [EMAIL PROTECTED] ups.com
> > Sent: Thursday, January 24, 2008 5:19 PM
> > Subject: [flexcoders] resizing the whole movie or just the
> > browser window in flex
> >
> >
> > Hi I have a flex app/website and its whole size doesn't get
> > or adapt to my screen size.
> > So I've just resize it in the main application and the
> > problem is when it is loaded looks ok, but sometimes , it
> > opens with a bigger size and instead of
> > being resized to that, appears a blank space outside the
> > application, there is a way to set the size to my browser
> > therefore it doesn't matter if you have this resized or not
> > to just have the size I wan it for ?
> >
> > I'd just let the user decide how big they want the browser  
window to

> > be. A good trick is to make the html background match or at least
> > look similar to that of the application, so it looks right,  
with the

> > application floating centrally.
> >
> > Paul
> >
> >
> > Regards
> >
> >
> >
> >
> > Gustavo
> >
> >
> >
> > Gustavo A. Duenas
> > Creative Director
> > LEFT AND RIGHT SOLUTIONS
> > 904. 265 0330 - 904. 386 7958
> > www.leftandrightsol utions.com
> > Jacksonville - Florida
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > __
> > Be a better friend, newshound, and know-it-all with Yahoo!
> > Mobile. Try it now.
> >
> >
>
>
>
> Gustavo A. Duenas
> Creative Director
> LEFT AND RIGHT SOLUTIONS
> 904. 265 0330 - 904. 386 7958
> www.leftandrightsolutions.com
> Jacksonville - Florida
>
>
>
>
>
>
>
>
>







Gustavo A. Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS
904.  265 0330 - 904. 386 7958
www.leftandrightsolutions.com
Jacksonville - Florida






Re: [flexcoders] resizing the whole movie or just the browser window in flex

2008-01-24 Thread Gustavo Duenas

would you please explain me this external interface more in detail?

Regards


Gustavo
On Jan 24, 2008, at 12:44 PM, Sherif Abdou wrote:



can't he just use ExternalInteface and use javaScript, there are  
those popups that you can never resize or do anything with.


- Original Message 
From: Paul Andrews <[EMAIL PROTECTED]>
To: flexcoders@yahoogroups.com
Sent: Thursday, January 24, 2008 11:36:33 AM
Subject: Re: [flexcoders] resizing the whole movie or just the  
browser window in flex



- Original Message -
From: Gustavo Duenas
To: [EMAIL PROTECTED] ups.com
Sent: Thursday, January 24, 2008 5:19 PM
Subject: [flexcoders] resizing the whole movie or just the browser  
window in flex


Hi I have a flex app/website and its whole size doesn't get or  
adapt to my screen size.
So I've just resize it in the main application and the problem is  
when it is loaded looks ok, but sometimes , it opens with a bigger  
size and instead of
being resized to that, appears a blank space outside the  
application, there is a way to set the size to my browser therefore  
it doesn't matter if you have this resized or not

to just have the size I wan it for ?

I'd just let the user decide how big they want the browser window  
to be. A good trick is to make the html background match or at  
least look similar to that of the application, so it looks right,  
with the application floating centrally.


Paul

Regards


Gustavo



Gustavo A. Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS
904.  265 0330 - 904. 386 7958
www.leftandrightsol utions.com
Jacksonville - Florida






Be a better friend, newshound, and know-it-all with Yahoo! Mobile.  
Try it now.







Gustavo A. Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS
904.  265 0330 - 904. 386 7958
www.leftandrightsolutions.com
Jacksonville - Florida






[flexcoders] resizing the whole movie or just the browser window in flex

2008-01-24 Thread Gustavo Duenas
Hi I have a flex app/website and its whole size doesn't get or adapt  
to my screen size.
So I've just resize it in the main application and the problem is  
when it is loaded looks ok, but sometimes , it opens with a bigger  
size and instead of
being resized to that, appears a blank space outside the application,  
there is a way to set the size to my browser therefore it doesn't  
matter if you have this resized or not

to just have the size I wan it for ?

Regards


Gustavo



Gustavo A. Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS
904.  265 0330 - 904. 386 7958
www.leftandrightsolutions.com
Jacksonville - Florida






Re: [flexcoders] tooltip styling or skinning

2008-01-16 Thread Gustavo Duenas

thanks do you know how could I do that?

Regards

Gustavo


Ps: or at least a tutorial about it.


On Jan 16, 2008, at 4:31 PM, Sheriff wrote:



Well you can extend the ToolTipBorder Class, override the  
updateDisplayList() and create ur own custom shape


- Original Message 
From: Gustavo Duenas <[EMAIL PROTECTED]>
To: flexcoders@yahoogroups.com
Sent: Wednesday, January 16, 2008 1:38:24 PM
Subject: [flexcoders] tooltip styling or skinning




Does anyone know hos can I style a tooltip ( example the shape of  
the tootip, one side rounded and the other side straight)

if there is a way to do that, please let me know.

Regards


Gustavo A. Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS
904.  265 0330 - 904. 386 7958
www.leftandrightsol utions.com
Jacksonville - Florida






Be a better friend, newshound, and know-it-all with Yahoo! Mobile.  
Try it now.







Gustavo A. Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS
904.  265 0330 - 904. 386 7958
www.leftandrightsolutions.com
Jacksonville - Florida






[flexcoders] tooltip styling or skinning

2008-01-16 Thread Gustavo Duenas



Does anyone know hos can I style a tooltip ( example the shape of the  
tootip, one side rounded and the other side straight)

if there is a way to do that, please let me know.

Regards


Gustavo A. Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS
904.  265 0330 - 904. 386 7958
www.leftandrightsolutions.com
Jacksonville - Florida






Re: [flexcoders] skinning buttons questions

2008-01-15 Thread Gustavo Duenas
Ok, I've just solved a minutes ago, I went to fireworks and when I  
set up the symbol, I've just click on the 9 slice
and then I save the file as fireworks png, and it works, I have the  
labels now...It appears that is a problem to do this, when the

png are set up as images not as fireworks png filesI though so.

Regards


Gustavo
On Jan 14, 2008, at 11:49 PM, Alex Harui wrote:



Your example doesn’t have a label for the button.



From: flexcoders@yahoogroups.com  
[mailto:[EMAIL PROTECTED] On Behalf Of Gustavo Duenas

Sent: Monday, January 14, 2008 8:19 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] skinning buttons questions



Hi Coders, I went to this place and I used the example code to skin  
buttons in a graphical way.




http://www.adobe.com/devnet/flex/quickstart/skinning_components/ 
#graphical






this is the code



 

Button

{

upSkin: Embed("assets/box_closed.png");



overSkin: Embed("assets/box.png");

downSkin: Embed("assets/box_new.png");



}



















Ok, I did it using my own applications, but I was wondering why,  
when the skinning was successful, the text or the label of the  
button doesn't appear.




Someone knows why? there is a way to set up the text to appear or  
the graphical way doesn't allow me to use text?




Regards





Gustavo












[flexcoders] skinning problem, need help!!

2008-01-15 Thread Gustavo Duenas



Hi I have this code and I was trying to re-skinning some  buttons,  
with different skins, but something happens and I don't know what  
would have happened.


this is my code


contact
{
upSkin: Embed("lib/skinsButtons1/ContactUp.png");
overSkin: Embed("lib/skinsButtons1/ContactOver.png");
downSkin: Embed("lib/skinsButtons1/ContactDown.png");

 }

portFolio
{
upSkin: Embed("lib/skinsButtons1/PortFolioUp.png");
overSkin: Embed("lib/skinsButtons1/PortFolioOver.png");
downSkin: Embed("lib/skinsButtons1/PortFolioDown.png");
 }
who
{
upSkin: Embed("lib/skinsButtons1/WhoUp.png");
overSkin: Embed("lib/skinsButtons1/WhoOver.png");
downSkin: Embed("lib/skinsButtons1/WhoDown.png");
 }







///and this is my error message in the console//


Severity and DescriptionPathResourceLocation
Creation Time   Id
The type selector 'contact' was not processed, because the type was  
not used in the application.	LRSAdvertising	LRSAdvertising.mxml	 
Unknown	1200418313203	146

///the others are the same , three errors in total.

HELP!!


Gustavo A. Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS
904.  265 0330 - 904. 386 7958
www.leftandrightsolutions.com
Jacksonville - Florida






[flexcoders] skinning buttons questions

2008-01-14 Thread Gustavo Duenas
Hi Coders, I went to this place and I used the example code to skin  
buttons in a graphical way.


http://www.adobe.com/devnet/flex/quickstart/skinning_components/ 
#graphical



this is the code

 
Button
{
upSkin: Embed("assets/box_closed.png");

overSkin: Embed("assets/box.png");
downSkin: Embed("assets/box_new.png");

}









Ok, I did it using my own applications, but I was wondering why, when  
the skinning was successful, the text or the label of the button  
doesn't appear.


Someone knows why? there is a way to set up the text to appear or the  
graphical way doesn't allow me to use text?


Regards


Gustavo




Re: [flexcoders] movie clip control from flex

2008-01-14 Thread Gustavo Duenas
Hey Derrick, sorry for the delay, I've just figured out how to do the  
movieclip to movieclip control in as3,

using the flashcoders list

I was wondering if you know and actual example about how to control a  
movieclip from an external swf

using flex;
Example:

I have a background in flash, but this boackground, gnerated in Flash  
cs3, has the behaviour in timelines of

different movieclips, Ex: MovC1, MovC2.

Hos can control them from Flex, just a simple CDATA thing.


Regards


Gustavo.


BtW, there is a way to lear how to do this, because my flex book ony  
covers flex, there is no interaction with flash whatsoever.






On Jan 11, 2008, at 10:29 AM, Derrick Anderson wrote:


hey gustavo, check out this url

http://www.adobe.com/devnet/flex/quickstart/embedding_assets/ 
#EmbeddingSwfFiles


this shows how you can embed swf files into your flex app.

also from the docs:
"You can manipulate the embedded SWF file by using the methods and  
properties of the MovieClipLoaderAsset class"


d.


On Jan 11, 2008 10:08 AM, Gustavo Duenas <  
[EMAIL PROTECTED]> wrote:
Ok, Guys I have a swf generated in Flash Cs3, with a movie clip and  
I'd like flex to control this, does anyone knows the way to do it or


a tutorial to go to?


Regards


Gustavo




Gustavo A. Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS
904.  265 0330 - 904. 386 7958
www.leftandrightsolutions.com
Jacksonville - Florida











Gustavo A. Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS
904.  265 0330 - 904. 386 7958
www.leftandrightsolutions.com
Jacksonville - Florida






[flexcoders] controlling a movieclip from a movieclip (AS3)

2008-01-11 Thread Gustavo Duenas

I have one movie clip, which has an order in the timeline.

the order is :

this.ball.gotoAndPlay(2);

I've been trying:

root.ball.gotoAndPlay(2);
ball.gotoAndPlay(2);
MovieClip("ball").gotoAndPlay(2);

but no success at all...Am I'm doing wrong something?

I've been Trying this is AS2 but is ok, but when I try to use this or  
the tellTarget in AS3, I got Nothing.



Please help.


Regards


Gustavo



Gustavo A. Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS
904.  265 0330 - 904. 386 7958
www.leftandrightsolutions.com
Jacksonville - Florida






  1   2   >