Re: [flexcoders] Re: file upload max?

2007-09-07 Thread Impudent1
fwiw, I have had it working with ~2-3G files but over that it would do 
the file transfer but not put the file in as stated by the original 
post. This is using php

Impudent1
LeapFrog Productions



Re: [flexcoders] Best way to convert PNG to for usable in Flex

2007-05-29 Thread Impudent1
 We are working on a project where we need to be able to work with
 large size
 PNG files using transparency. What is the best way to convert these
 transparent PNG files so that they can be properly displayed and
 worked with
 in Flash?

Why not use Bridge from CS3?

In Bridge: Create/open the folder containing all your large PNGs.
Tools - Fireworks - Batch process.

This will open up Fireworks and its batch window. Add a Scale operator 
and below it an export operator, Select the Scale operator and set its 
Scale to Size and adjust as needed. Select the Export operator and set 
it to Custom, click the edit button and set your exporter to png 32 and ok.

Clicking next will bring you to the save options allowing you to target 
output or overwrite. You can also save out this script and use it for 
any future converts you wish to match.

HTH

Impudent1
LeapFrog Productions


Re: [flexcoders] Re: WebORB or AMFPHP for big Application

2007-04-10 Thread Impudent1
I recently changed over from weborb back to amfphp. amfphp1.9 with the 
server running the php amf plugin is definitely faster in my tests here.

ymmv

Impudent1
LeapFrog Productions


Re: [flexcoders] Re: WebORB or AMFPHP for big Application

2007-04-10 Thread Impudent1
just to note as well, my reason for switching back to amfphp originally 
was that I could not get weborb to work with apollo public beta.

Impudent1
LeapFrog Productions


[flexcoders] ArrayCollection to xml file function

2007-03-30 Thread Impudent1
I am trying to get some things working with my app and apollo preview.

I can get it to save a file locally when it goes offline fine. But I would like 
to start extending it so that I can give it an arrayCollection(s) and it will 
write out an xml structured file.

This is what I am using to save a basic string.


 private function saveFile():void{
 var file:File = 
File.appStorageDirectory.resolve(Files/userinfo.txt);
 var stream:FileStream = new FileStream()
 stream.open(file, FileMode.WRITE);
 var str:String = loggedinuser.toString() + \r  + other data;
 str = str.replace(/\r/g, File.lineEnding);
 stream.writeUTFBytes(str);
 stream.close();
 str = ;
 }


any snippets or links to show me how to export arrays/arrayCollections would be 
appreciated :)

Impudent1
LeapFrog Productions


Re: [flexcoders] OS X Dock implemented in Flex

2007-03-23 Thread Impudent1
yes source for this would be cool. I am waiting for this one as well to have 
its 
source released, I dig the reflection  :)

http://dougmccune.com/blog/2007/03/02/demo-mashup-of-various-flex-2-community-components/
 


Impudent1
LeapFrog Productions


Re: [flexcoders] Re: Apollo (Should Adobe Keep the Name)

2007-03-20 Thread Impudent1
The beta names are always cooler than the shipping names anyhow.

I totally understand, they cannot sell chambants or big electric cats but they 
are still kinda fun  :P

Impudent1
LeapFrog Productions


Re: [flexcoders] DB access in Apollo

2007-03-07 Thread Impudent1
hank williams wrote:
 +1 sqlite. MySQL is impractical to put on everyones computer in the country.


Hmm, well considering Adobe already does it with bridge I disagree :) (using 
libmysqld and storing data in Adobe Bridge/db_support/data).

so besides that Adobe already uses,distributes it as its own embedded db, its 
cross platform, and cost effective. It would also easily dovetail into my 
existing php/mysql app structures

That said I have never played with sqlite and will have to take look at it. 
From 
the faqs, I did see that only one process can write to the db at a time vs 
mysql 
being able to do multiple processes, so depending on what type of apps your 
creating if concurrency matters I would think mysql a better choice. I do love 
the simplicity of the sqlite concept tho :)

Impudent1
LeapFrog Productions







Re: [flexcoders] DB access in Apollo

2007-03-06 Thread Impudent1
Russell Sprague wrote:
 I vote for MySQL.

Agreed

Impudent1
LeapFrog Productions


Re: [flexcoders] Apollo Book: Apollo for Adobe Flex Developers Pocket Guide

2007-03-02 Thread Impudent1
slangeberg wrote:
 Oh yeah, did he say:
 
 limited to 2g

 As in a 2GB POST limit? That doesn't seem like much of a limit. I may
 question the logic of posting a 2G file! If that's not the current limit,
 what is?

fwiw , this is an internal video approval system app, and 2g is nothing for 
even 
flv files on longer forms

 Tom, what's the current method you're referring to, for 'sending' files to
 server?
 

I would be interested in this as well.

Impudent1
LeapFrog Productions



Re: [flexcoders] Apollo Book: Apollo for Adobe Flex Developers Pocket Guide

2007-03-02 Thread Impudent1

 Flash Player 9 already has all you need for building libraries to
 connect to all sorts of remote filesystems:  sockets, binary and
 otherwise.
 

Agreed, I was hoping that Apollo would deal with the heavy lifting on some of 
this stuff vs giving front end components was the main gist of my original post.

Impudent1
LeapFrog Productions



 Yahoo! Groups Sponsor ~-- 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/kOt0.A/gOaOAA/yQLSAA/nhFolB/TM
~- 

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

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

* Your email settings:
Individual Email | Traditional

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

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

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

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


Re: [flexcoders] Apollo Book: Apollo for Adobe Flex Developers Pocket Guide

2007-03-01 Thread Impudent1
Just taking a quick look and this concerns me:

Apollo provides a file I/O API that lets applications read and
write files and directories on the user’s computer...

The Flex framework for Apollo
includes components for working with files and directories,
but these are graphical components for navigating the file
system and selecting files and directories. They do not pro-
vide direct access to the more fundamental file I/O
operations

Apollo will eventually provide a complete security model for
managing access to local resources, such as the file system...


So am I to take this that Apollo will not let me deal with a remote filesystem?
If I cannot read/write files from a workstation to a server, or deal with a 
remote data connection, Apollo suddenly seems really useless for my app :(


 Yahoo! Groups Sponsor ~-- 
See what's inside the new Yahoo! Groups email.
http://us.click.yahoo.com/0It09A/bOaOAA/yQLSAA/nhFolB/TM
~- 

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

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

* Your email settings:
Individual Email | Traditional

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

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

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

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


Re: [flexcoders] Apollo Book: Apollo for Adobe Flex Developers Pocket Guide

2007-03-01 Thread Impudent1
slangeberg wrote:
 Uh, you're still going to have 'at least' all those capabilities 
 (talking to
 networked service) already existing in Flex.. What kind of functionality /
 library / language are you comparing this to?


Well I still have not seen how this will dovetail into the offline/online 
ability shown in say the ebay desktop app. If it can for example hold a users 
file uploads in the local cache and then on connect it will relogin/sync to the 
database and upload. And in doing this are we going to be limited to sending 
files to a remote server ala http post type commands with php etc and limited 
to 
2g because of it and sandbox issues?

 From the text it seemed that all the flex apollo components would give is file 
selection and nav, not anything to do with user permissions, finding size of a 
dir , appending to files, changing attribs etc.

Impudent1
LeapFrog Productions



Re: [flexcoders] strange Could not resolve mx:Script to a component implementation. error

2007-02-24 Thread Impudent1
Yiðit Boyar wrote:
 hi all;
 i've just formatted my computer 1st time since i started flex; and now i'm 
 getting an error that i can not understand. do i miss sth with the install?
 here is the code:
 ?xml version=1.0 encoding=utf-8?
 
 mx:Text text=AA x=44 y=57/
 mx:Script
 ![CDATA[
 ]]
 /mx:Script
 /mx:Application
  and here is the error:
 Could not resolve mx:Script to a component implementation.
 Also my working projects started to not to work.
 
 where can be the problem ?

not declaring the default namespace? don't forget you need 
xmlns:mx=http://www.adobe.com/2006/mxml; in the first line

Impudent1
LeapFrog Productions


Re: [flexcoders] Access Flex components from browser

2007-02-23 Thread Impudent1
Tracy Spratt wrote:
 ExternalInterface lets you communicate with javascript in the html
 wrapper.  It is delightfully easy to use. And synchronous!

I just learned this yesterday :)... ExternalInterface does not work out of the 
browser. So any script created with adobe extendscript(ecma) launched from 
after 
effects or bridge etc cannot use the ExternalInterface or FABridge :(

anyone have a simple asynchronous socket example? :p


[flexcoders] XMLsocket example?

2007-02-22 Thread Impudent1
I have been trying to get FABridge to connect Adobe After Effects to a flex app.

Unfortunately unlike the browser, there is no direct connection between the AE 
and flex process'.

A quick reading on the flex xmlsocket class makes me think should be able to do 
this by creating a socket connection from the flex app to the AE scripted 
socket.

if anyone has a simple socket example I would appreciate it, as this is totally 
new ground here ;)

Impudent1
LeapFrog Productions


Re: [flexcoders] Apollo features

2007-01-31 Thread Impudent1
word. add my vote to being able to pass parameters to other exes

Impudent1
LeapFrog Productions


Re: [flexcoders] Flex applications look like Fisher-Price toys

2007-01-28 Thread Impudent1
and everyone I tell that the app I am working on will be skinned seems to 
reply. It looks clean and simple, I like it.

horses for courses , but while KAI had some great tools, the interfaces were a 
little overkill :)

Impudent1
LeapFrog Productions


Re: [flexcoders] sort compare more than 2 items?

2007-01-27 Thread Impudent1
Brendan Meutzner wrote:
 Why not use numeric values for your priority... you wouldn't have to use a
 special sort function, but instead just use a labelFunction for display in
 the datagrid to acheive your high/medium/normal/low counts.

Ah nice idea, but I must be thick because I just can't get it to go.

I have the array/collection as:

public var file_prioritylist:Array = [1, 2, 3, 4 ];
[Bindable]
public var file_priority:ArrayCollection = new 
ArrayCollection(file_prioritylist);


I have the labelFunction as:

// priority labelFunction
public function priorityLabelFunc(item:Object):String {
return item.priority + _teststring;
 }

the datagrid is being populated by a remote dataprovider arraycollection which 
contains the priority etc:

Bindable]
public var files_datagrid:ArrayCollection;

mx:DataGrid id=fileDatagrid x=0 y=0 width=715 height=130 
dataProvider={files_datagrid} change=putVideo() selectedIndex=0

and the column in question is laid out as:

mx:DataGridColumn id=prioritycolumn headerText=Priority width=90 
dataField=priority labelFunction=priorityLabelFunc
mx:itemRenderer
mx:Component
mx:ComboBox 
dataProvider={parentDocument.file_priority} 
mx:idfileprioritycb/mx:id
/mx:ComboBox
/mx:Component
/mx:itemRenderer
/mx:DataGridColumn

Which leads to a error of:

Argument count mismatch on Approval_System/priorityLabelFunc(). Expected 1, got 
2.

if I edit it to move the labelfunction to the combobox and parentDocument it to 
get to the function I get:

Cannot access a property or method of a null object reference.

I am sure I am just missing something simple so any insight appreciated

Impudent1
LeapFrog Productions


[flexcoders] sort compare more than 2 items?

2007-01-25 Thread Impudent1
I have an array that populates a datagrid combobox item renderer of:

public var file_prioritylist:Array = [High, Medium, Normal, Low ];
[Bindable]
public var file_priority:ArrayCollection = new
ArrayCollection(file_prioritylist);

to avoid them sorting alphabetically I setup a sortCompareFunction for 
that column to use this function:

private function prioritySort(item1:Object, item2:Object):int
{
if (item1.priority == High )
{
return 1;
}
else if( item1.priority == Low )
{
return -1;
}
else
{
return 0;
}
}

which will get it to sort high or low, but how do I get it to sort the 
normal and medium appropriately??? I would also like to be able to group 
the datagrid list by values.

http://stackoverflowexception.blogspot.com/2007/01/minor-update-of-grid-component.html

has an example of what would pretty well cover it but I cannot get it to 
work with the swc file. I would also like to be able to learn from the 
code than just use it.

tia

Impudent1
LeapFrog Productions



Re: [flexcoders] Error: 1000: No bitrate match

2007-01-14 Thread Impudent1
http://blogs.ittoolbox.com/c/engineering/archives/adding-flv-mime-type-in-iis-4198
 
might help.

I had all the no bitrate match errs as well. Once I added the mime type 
to the server all was well.

Impudent1
LeapFrog Productions


Re: [flexcoders] example of a combo box in a grid

2006-09-20 Thread Impudent1
Clint Tredway wrote:
 I need an example of using a combo box in a datagrid.. I have looked
 around and cant find one..
 

mx:DataGrid id=fileDatagrid x=0 y=0 width=715 height=130 
dataProvider={files_datagrid} change=putVideo() selectedIndex=0
mx:columns
mx:DataGridColumn 
headerText=Clip dataField=path/
mx:DataGridColumn 
id=statuscolumn headerText=Status 
width=160 dataField=status
mx:itemRenderer
mx:Component
mx:ComboBox dataProvider={parentDocument.file_status} 
labelField=status 
mx:idfilestatuscb/mx:id
/mx:ComboBox
/mx:Component
/mx:itemRenderer
/mx:DataGridColumn
/mx:columns
/mx:DataGrid


This will put a combobox in the datagrid column, in this code it grabs 
an array with a weborb/mysql query to an array collection. It also grabs 
a preset array with what options populate the combobox. This seems to 
give the added bonus that whatever the datagrid item it will set the 
combobox to the database pulled setting.

hth

Impudent1
LeapFrog Productions


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

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

* Your email settings:
Individual Email | Traditional

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

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

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

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




[flexcoders] datagrid column combobox inline itemrenderer dataprovider

2006-09-15 Thread Impudent1
I know this has been beaten to death but I have not been able to get 
anything working here :(

In the script section of my code I have:

// create our file Status array, this is hardcoded here but should grab 
from the database
public var file_statuslist:Array = [Active, Inactive, Pending 
Approval, Approved];
[Bindable]
public var file_status:ArrayCollection;


In the regular app code section I have a datagrid as:

mx:DataGrid id=fileDatagrid x=0 y=0 width=715 height=130 
dataProvider={files_datagrid} change=putVideo() selectedIndex=0

mx:columns

mx:DataGridColumn headerText=Clip dataField=path/
 mx:DataGridColumn id=statuscolumn headerText=Status 
width=100 dataField=status

mx:itemRenderer

mx:Component

mx:ComboBox dataProvider={file_status} /

/mx:Component

/mx:itemRenderer
/mx:DataGridColumn
/mx:columns



Which ends up with 1120:Access of undefined property file_status. errors

What I am shooting for is the status column to set the dropdown to match 
my datagrid provider status for each item, while keeping its set options 
available.


I would prefer to keep this simple and inline but if making some sort of 
custom itemrenderer component is the way to go I will have to take on 
that part of the learning curve :)

tia

Impudent1
LeapFrog Productions


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

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

* Your email settings:
Individual Email | Traditional

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

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

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

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





Re: [flexcoders] [ann] WebORB for PHP (with AMF3 support)

2006-09-02 Thread Impudent1
Mark Piller wrote:
 Hi,
 
 We just released WebORB for PHP. The product is free and open-source
 and functions as a remoting gateway for Flex and Flash Remoting
 clients. Flex clients can use the RemoteObject API (or
 mx:RemoteObject) to connect to the deployed PHP classes. Check out the
 product page at:
 
 http://www.themidnightcoders.com/weborb/php
 
 Cheers,
 Mark

Thanks for the headsup :)

I just wanted to pass along that people really should update their php 
first. I kept getting send failed error messages and could not figure it 
out. Then I updated from php 5.0.5 to the 5.1.6 version and it worked 
just fine.

Impudent1
LeapFrog Productions


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

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

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

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





Re: [flexcoders] Re: Flex Books? Suggestions...

2006-09-01 Thread Impudent1
qnotemedia wrote:
 This is a great topic that needs to stay alive, as books and 
 tutorials are just now showing up now that Flex2 has been officially 
 released.
 
 lynda.com has a Flex2 Essential and I sat through most of it.  It 
 might be too noob for some, but it covers the bases really well.
 


I will add that the lynda.com actionscript3 essentials has been pretty h 
elpfull as well. It uses flexbuilder as the background app for the 
tutorials so might be a good peruse.

Impudent1
LeapFrog Productions



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

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

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

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





Re: [flexcoders] Re: Buffer progress bar for streaming FLV

2006-08-31 Thread Impudent1
Thanks for sharing, I am currently trying to get my head around 
extending videodisplay as well, but for my needs I need to pull the 
metadata as well as be able to add/remove cuepoints on the fly.

I was was going about it by learning how to extend an existing 
component. You mentioned copying the video classes into a package, then 
adding your new event.

if you could share a bit more on this I would much appreciate. I seem to 
be better at deconstructing/reconstructing examples than getting my head 
   around super classes etc :)

Impudent1
LeapFrog Productions


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

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

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

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





Re: [flexcoders] Flex 2 patch timeline

2006-08-30 Thread Impudent1
.02

Well my experience is with the other adobe teams. BUT

I have had devs/engineers call me on a sunday. On their own dime, to see 
what we could sort out regarding some persistant but hard to nail bugs.

All the teams at adobe I have had the pleasure of working with have all 
busted themselves to make sure things were working. As for flex, we get 
a huge commitment just in them answering things on this list, not to 
mention all the adobe blogs with examples etc.


I personally think anyone who cries for 24 hour personal tech service 
should be paying a hefty price for a yearly agreement ;)


Impudent1
LeapFrog Productions



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

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

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

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





Re: [flexcoders] Unique examples of Flex?

2006-08-28 Thread Impudent1
On this topic, when are we going to get some sort of productive workflow 
from adobe for creating ria interfaces?

Coming from motion graphics background, The changes we have seen in 
bringing the apps together ala the production suite is sorely needed. 
Getting media from ae/illustrator/pshop thru flash as symbols into flex 
for skinning components is right now pretty sloppy workflow.

The other aside being, once you get the media prepared, Flex 2 will not 
show things properly in the design view, making alignment etc a test and 
go process.

unfortunately I cannot make max this year, and it would really be the 
time given the huge need for even more convergance/interoperation 
between the whole adobe product line.

my .002 anywhoo :P

Impudent1
LeapFrog Productions


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

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

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

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





Re: [flexcoders] mx:Button but without the border

2006-08-23 Thread Impudent1
Just to note something that got me with skinning a button was that I was 
using a toggle button. When using one you have to define additional 
skins for the selected state ala:

.MuteButton {
upSkin: Embed(source=/skin_assets/AudioOn.png);
downSkin: Embed(source=/skin_assets/AudioOff.png);
selectedUpSkin: Embed(source=/skin_assets/AudioOff.png);
selectedDownSkin: Embed(source=/skin_assets/AudioOn.png);
overSkin: Embed(source=/skin_assets/AudioOnOver.png);
selectedOverSkin: Embed(source=/skin_assets/AudioOffOver.png);
}   


hth someone :)

Impudent1
LeapFrog Productions


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

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

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

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




[flexcoders] flv framerate

2006-08-23 Thread Impudent1
Is there any way to a: get an flv clips framerate? end result being I 
want to parse the current .playheadTime to timecode from seconds for a 
label control.

b: lock the application framerate or set it to match the flv? end result 
being I need a constant framerate during playback so they can see timing 
issues, no matter whether doing 24p etc.

tia

Impudent1
LeapFrog Productions


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

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

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

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




Re: [flexcoders] Web services or FDS: which are you using?

2006-08-15 Thread Impudent1
 Personally, I am evaluating Flex as the front end for an application
 that relies heavily on .NET web services.


Similar situation, only I am making sure to keep as far from a 
coldfusion or .net solution as possible, keeping the backend stuff open 
source with mysql, php, amfphp.

Impudent1
LeapFrog Productions



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

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

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

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




[flexcoders] videodisplay no bitrate match follow up

2006-08-15 Thread Impudent1
I lost the original post but I thought this might help whoever it was, 
or someone else.

I was going nuts trying to figure out why I couldn't get even the 
example videodisplay code to show my flvs when they were on the server.

I kept getting this no_bitrate_match 1001 error with the compile.

The fix that I found is here:

http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_19439

hth

Impudent1
LeapFrog Productions


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

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

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

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





[flexcoders] datagrid column sort numerically?

2006-08-13 Thread Impudent1
I was noticing one one of my datagrids that its sorting a column of data 
as strings vs numbers.

ie if it contains values of 0, 120, 2 as default ascending sort, 
clicking the header results in a descending sort of 2,120,0.

http://www.5etdemi.com/blog/archives/2006/01/sorting-datagrid-columns-numerically/

had what I thought would be the trick but I seem to be stuck at a 
compile error:

X 1042: The this keyword cannot be used in static methods. It can only 
be used in instance methods, function closures, and global code.


So I ask, what am I missing? and is it just me or is this something that 
you would assume flexbuilders components should cover? Seems like 
something that would be come across a fair bit no?

Impudent1
LeapFrog Productions





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

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

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

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





[flexcoders] T shirt......Was.. Loading Unicode values from XML and viewing in Flex components as HTML

2006-08-10 Thread Impudent1
Gordon Smith wrote:
 Sorry, no t-shirt... just our thanks for helping us improve Flex.
 

Eh he, well you guys need to talk amongst your depts :0

I was lucky enough to earn the after effects one and a couple encore 
ones. Granted that was a lot more than one bug report and a few surveys.

I definately would love to add a Flex  yourself one to the collection of 
adobe geek swag :)

scooby caps are good too :P


Impudent1
LeapFrog Productions


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

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

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

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




[flexcoders] extending array functions....or how do I remove duplicates in an array?

2006-08-05 Thread Impudent1
I was beating on this combobox/datagrid thingy and was able to have a 
measure of success by using the same arraycollection ..

BUT, this will populate the dropdown with duplicate entries. I was 
trying to figure a way around this with flex array manipulation but I 
just couldnt get it.

Searching around I found this little gem, but I admit extending the 
array with a prototype function in flex is a bit over my melon at the mo..

Array.prototype.removeDuplicates = function(fn,matchFN) { // removes 
duplicate items from an array and returns a new array
   var a = ([]).concat(this);
   (fn==null) ? a.sort() : a.sort(fn);
   if (matchFN!=null) {
 for (i in a) if (matchFN(a[i],a[i-1])) a.splice(i,1);
   } else {
 for (i in a) if (a[i]==a[i-1]) a.splice(i,1);
   }
   return a;
}


Now is this really something I need to deal with, or shouldnt flex be 
all snazzy with some neat array manipulation that I just dont seem to see?

If it is something I need to add, is there any advice about extending 
existing flex functions.

tia

Impudent1
LeapFrog Productions


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

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

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

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




Re: [flexcoders] filter operator

2006-08-04 Thread Impudent1
I may be wrong, and I'll eat a bug if I am.. :p

but aren't filters flex talk for effects? If look at any of the examples 
you will notice that things like blur/glow/dropshadow etc are blurfilter 
etc.

Impudent1
LeapFrog Productions


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

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

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

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





[flexcoders] still stuck binding combobox to selected datalist item

2006-08-04 Thread Impudent1
Well even giving it a rest and doing other bits on the app. Coming back 
to this section of code just seems to not work for me :(

I have a datagrid that is populated by an arraycollection coming from 
mysql. This is also set that each datagridcolumn has a dataField defined 
from that array.

I have as well, a combobox. bound to another arraycollection coming from 
  mysql.

As it sits, it will autopopulate the combobox with the correct options, 
as well pulling the datagrid components.

BUT, I cannot for the life of me seem to link what is selected in the 
datagrid to the active label of the combobox.

The effect I want is to have the dropdown populate with the options 
available, as well as the datagrid population as now. Then when you 
select an item in the dropdown list, change the dropdown to match its value.

I have tried things such as:

userTeamDropdown.selectedItem = userdatalist.selectedItem.teamname;

in the change handler function for the datagrid to no avail.

http://www.leapfrog-productions.com/Approval_System/bin/Approval_System.html

log: Admin pass: access  will bring you to the users tab which will show 
what I mean a bit better. ie, clicking admin in the datagrid should 
change the group from ungrouped to admin :)


ty ty ty for any pointers

Impudent1
LeapFrog Productions



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

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

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

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





Re: [flexcoders] Re: Developing on Linux?

2006-08-02 Thread Impudent1
csewhiff wrote:
 --- In flexcoders@yahoogroups.com, Nick Collins [EMAIL PROTECTED] 
 wrote: 
  
 
well, you can use any IDE you want with the SDK, you just won't  
have all the nice code hinting and completion and such.  
 
  
 
it would be a pain in the ass to do so. 
 
  
 It is a PITA, which is why I was looking for alternatives. 
  
 I don't even use the GUI builder but the code completion sure is 
 nice. 

Speaking as a script masher not RIA developer :P ...

I never did care for anything besides basic syntax hilighting for the 
longest time. Ultraedit with a wordfile seemed happy, then, with the new 
extendscript toolkit on the last adobe production bundle cycle, I got a 
bit of a taste of how nice it is to have a code debugger.

the debugger environ, the ability to f1,f3 over code to pull up specific 
help or the associated file, plus the code completion hints etc really 
make me like Flex editor now ;)

My big snarl with it that does bug me tho, is that you cannot collapse 
functions within a set of script tags. I would love to be able to shrink 
down the script area to see only the functions I am working on.

Impudent1
LeapFrog Productions



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

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

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

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





[flexcoders] combobox array

2006-08-01 Thread Impudent1
yup, another should be simple one that boggles me this eve.

I have some comboboxes similar to:

mx:ComboBox x=91 y=70 id=userTeamDropdown dataProvider={teams} 
labelField=teamname/mx:ComboBox

the teams data is an arraycollection of data returned from amfphp.

In my datagrid change function if I have a line of:

userTeamDropdown.dataProvider = userdatalist.selectedItem.team;

it will grab the selected team and populate the combobox with it as the 
single option.

if I try something like:

userTeamDropdown.labelField = userdatalist.selectedItem.team;

it will populate the combobox with the proper amount of options, but in 
the form of [object, Object].

or if I try:

userTeamDropdown.listData = userdatalist.selectedItem.team;

TypeError: Error #1034: Type Coercion failed: cannot convert Admin to 
mx.controls.listClasses.BaseListData.

any advice for me to take on with a fresh head in the morning appreciated.

Impudent1
LeapFrog Productions



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

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

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

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




Re: [flexcoders] combobox array

2006-08-01 Thread Impudent1
Ralf Bokelberg wrote:
 I'm not clear, what you are trying to achieve.
 Can you explain, what the user does and what is supposed to happen
 with your comboboxes?
 
What I have been working on is a user manager frontend to a mysql/flex app.

The comboboxes and a datagrid exist together in a tabnavigator. The 
datagrid pulls in columns of user, team, last login etc from an 
arraycollection.

I want the comboboxes fields to contain the same info as the column in 
question by default, so a combobox for setting a new users team should 
contain all the existing teams(so far so good by basic dataprovider).

Where I am getting stuck , is to make the combobox labelfield change to 
the dataproviders currently selected user, WHILE still keeping the array 
of options.

In other words, if combobox loads up as:

Admin
testers
Imps
clients

and I select a user in the datagrid belonging to the Imps group I am 
looking for it to be:

Imps
Admin
testers
clients

This way any new users added to the database will be part of the 
selection. and if someone wants to modify existing selection. It will 
set the fields appropriate to its saved values while still giving them 
the list of options

www.leapfrog-productions.com/Approval_System/bin/Approval_System.html

log and pass of admin, access. Maybe seeing will be more lucid than my 
words ;)

tia all

Impudent1
LeapFrog Productions


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

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

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

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





[flexcoders] datagrid question

2006-07-31 Thread Impudent1
If I have a datagrid pulling in column information. Is there a simple 
way to have the column width autoscale to fit?

The only way I can see is to loop thru the returned array to find the 
longest entry, then bind the width to the entry.length

Impudent1
LeapFrog Productions


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

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

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

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





[flexcoders] mysql amfphp array parsing

2006-07-30 Thread Impudent1
ok I seem to be having a total mindlock on this...

I have amfphp running some functions to connect to a mysql database. I 
have the login logic all working and was starting to link the interface 
up. Firstly being a combobox populate.

So with my function returning an array of: 0- id  2
   teamname blah
   teamlead bla
   teamstatus active
   0- id  13
   teamname sda
   teamlead dsadfs
   teamstatus active

I have setup the functions in my app for it as:

[Bindable]
public var teams:ArrayCollection;

public function getTeamlist() : void{
gateway = new RemotingConnection(gatewayURL);
gateway.call(MySQL_Login.team_pulldown, new 
Responder(onResultGetTeamlist, onFault));
}

public function onResultGetTeamlist( result:Array ) : void{
teams = new ArrayCollection( result );
}

public function onFault ( fault:String ) : void{
trace( fault );
}

then set my new states canvas to :
mx:Canvas label=Users width=100% height=100% 
initialize=getTeamlist()


now, if I hardcode the combobox to be:

mx:ComboBox x=91 y=70 id=userTeamDropdown 
dataProvider={teams.getItemAt(2).teamname}/mx:ComboBox

it will load up the page on proper login and populate the combo box with 
the single teamname.

This is where I am getting stuck. Is there a simple way for me to just 
get the arraycollection to just pull the teamnames from the amfphp 
result and populate the combo box??

I know I am missing something both simple and obvious here so tia for 
any ideas :)

Impudent1
LeapFrog Productions



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

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

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

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




Re: [flexcoders] mysql amfphp array parsing

2006-07-30 Thread Impudent1
JesterXL wrote:
 Maybe labelName for the ComboBox set to teamname?


You , are a heck of a person :P

I didn't think to look at it as setting the dataprovider then setting 
the labelfield but yes setting up as:

dataProvider={teams} labelField=teamname

was the trick. ty ty

Impudent1
LeapFrog Productions





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

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

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

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




[flexcoders] mysql amfphp flex2 login

2006-07-10 Thread Impudent1

Just to save time reinventing the wheel here. Has anyone created a 
multiuser amfphp service link to flex? I just need a portable multiuser 
login setup that I can later connect to a backend admin to control 
users/groups etc.

Since I am sure this is not exactly new territory, I thought I would see 
if anyone had already knocked together something and wouldn't mind 
sharing :)

If not, when I get something going I will post. Curious, is there a 
custom component website up yet? I know with after effects it was nice 
to put stuff up on AEnhancers and get feedback on your stuff or see what 
others have done.

tia

Impudent1
LeapFrog Productions




 Yahoo! Groups Sponsor ~-- 
Yahoo! Groups gets a make over. See the new email design.
http://us.click.yahoo.com/XISQkA/lOaOAA/yQLSAA/nhFolB/TM
~- 

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

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

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

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





Re: [flexcoders] Re: ColdFusion vs. PHP as the back-end

2006-07-06 Thread Impudent1
So what does one do then if they are making an application for release?

I have people wanting php vs .net for the simple fact they can put in on 
any server on any os freely. As well, from the tests I have seen, php 
seems to be a lot faster given similar server loads.

So to me it seems to come down to easy/quickness of development at a 
cost. Or go free and have more control but potentially longer deployment 
times?

Impudent1
LeapFrog Productions


 Yahoo! Groups Sponsor ~-- 
Yahoo! Groups gets a make over. See the new email design.
http://us.click.yahoo.com/XISQkA/lOaOAA/yQLSAA/nhFolB/TM
~- 

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

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

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

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





Re: [flexcoders] Shouldn't we use Flex to built website

2006-06-24 Thread Impudent1
judah wrote:
 I heard that too. I'd like to know why for one and two, what happens if 
 we are caught using it for that anyway?
 
 Judah
 PS just between you and me (and the 4000 other members on this list) i'm 
 probably going to use it for that anyway. so...shhh... (holds finger 
 over mouth)
 
 Jignesh M. Dodiya wrote:

Well given all I have ever heard of the hype on flex.. I am just going 
to use it for RIA development :)

Just how rich is up to the person looking at it

Impudent1
LeapFrog Productions


 Yahoo! Groups Sponsor ~-- 
Yahoo! Groups gets a make over. See the new email design.
http://us.click.yahoo.com/XISQkA/lOaOAA/yQLSAA/nhFolB/TM
~- 

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

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

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

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




Re: [flexcoders] Re: Accordion state change?

2006-06-20 Thread Impudent1
Tim Hoff wrote:
 Instead of states, you can use a little binding, like:
 
 mx:Text x=10 y=10 text={ScriptsAccordion.selectedChild.label} 
 Page Text width=218 id=text1/
 
 Or, create an Array that contains the text that you want to display, 
 in the same order as the Accordion children.  You would then 
 similarly bind like:
 
 text={myArray[ScriptsAccordion.selectedIndex]}
 


Ah, nice idea ty :)

What I ended up doing last eve was dumping all the states and replacing 
them as a viewstack. Then I could just go:

change=vs.selectedIndex = Acc.selectedIndex

only caveat seems to be you have to have the same # of canvas' in both 
or you can go out of bounds with a selection.

Impudent1
LeapFrog Productions



 Yahoo! Groups Sponsor ~-- 
Great things are happening at Yahoo! Groups.  See the new email design.
http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/nhFolB/TM
~- 

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

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

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

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





[flexcoders] Basic Accordion help

2006-06-19 Thread Impudent1
 +/
mx:HRule x=10 y=10 width=220 height=36/
/mx:Canvas
mx:Canvas label=Muster Batch UI width=100% height=100%
mx:Label x=10 y=10 text=Version/
mx:Label x=85 y=10   text=Date/
mx:Label x=148 y=10 text=Description/
mx:Label x=23 y=35 text=1.0/
mx:Label x=64 y=35 text=xx, x, 2006/
mx:Label x=156 y=35 text=AE 6.5 +/
mx:HRule x=10 y=10 width=220 height=36/
/mx:Canvas
mx:Canvas label=Muster Submit UI width=100% height=100%
mx:Label x=10 y=10 text=Version/
mx:Label x=85 y=10   text=Date/
mx:Label x=148 y=10 text=Description/
mx:Label x=23 y=35 text=1.0/
mx:Label x=64 y=35 text=xx, x, 2006/
mx:Label x=156 y=35 text=AE 6.5 +/
mx:HRule x=10 y=10 width=220 height=36/
/mx:Canvas
mx:Canvas label=Render and Shutdown width=100% 
height=100%
mx:Label x=10 y=10 text=Version/
mx:Label x=85 y=10   text=Date/
mx:Label x=148 y=10 text=Description/
mx:Label x=23 y=35 text=1.0/
mx:Label x=64 y=35 text=25, 11, 2004/
mx:Label x=156 y=35 text=AE 6.5 +/
mx:Label x=23 y=50 text=2.0/
mx:Label x=64 y=50 text=20, 1, 2005/
mx:Label x=145 y=50 text=AE 7,Mac Fix/
mx:HRule x=10 y=10 width=220 height=36/
/mx:Canvas
mx:Canvas label=Sampler Sizer Radio width=100% 
height=100%
mx:Label x=10 y=10 text=Version/
mx:Label x=85 y=10   text=Date/
mx:Label x=148 y=10 text=Description/
mx:Label x=23 y=35 text=1.0/
mx:Label x=64 y=35 text=21, 6, 2004/
mx:Label x=156 y=35 text=AE 6.5 +/
mx:HRule x=10 y=10 width=220 height=36/
/mx:Canvas

/mx:Accordion 

mx:Canvas x=258 y=10 width=756 height=40 label=Header 
id=HeaderCanvas
mx:Text x=32 y=0 text=These are some scripts I created to 
learn 
Adobe's Extendscript. They have all been tested but use at your own 
risk. width=654 height=20/

mx:Text width=700 y=10 x=10
mx:htmlText![CDATA[
  Usage is free, but if you wish to give something back, please a 
href=http://www.leapfrog-productions.com/Scripts/A_R_links.html;font 
color=#008800donate to a reputable animal advocacy group/a/font 
in your area.
]]/mx:htmlText
/mx:Text

/mx:Canvas
mx:Canvas x=258 y=58 width=756 height=607 id=MainStage 
label=MainStage
mx:Text x=10 y=10 text=main page text width=218 
id=text1/
/mx:Canvas

/mx:Application


If you click on the BackBurner Submit UI accordion header, you get the 
actionscript error dialog stating that it has an ArguementError: 
Undefined state BackBurnerSubmitUI

So I guess the big question I have is: how do you make sure states are 
included in the scope of the function?

Second question: If you click on the Main accordion header you will see 
it opens a whitespace even tho the height field is set to 0. I assume 
this is because of the resizeToContent=true flag, but I cannot find 
any way to adjust the whitespace numbers.

tia and I am glad to find this list resource, In the future I hope to be 
able to leverage Flex with the other adobe suite apps using bridgetalk 
or ajax.

Impudent1
LeapFrog Productions




 Yahoo! Groups Sponsor ~-- 
Great things are happening at Yahoo! Groups.  See the new email design.
http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/nhFolB/TM
~- 

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

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

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

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




[flexcoders] Accordion state change?

2006-06-19 Thread Impudent1
/
 mx:Label x=148 y=10 text=Description/
 mx:Label x=23 y=35 text=1.0/
 mx:Label x=64 y=35 text=21, 6, 2004/
 mx:Label x=156 y=35 text=AE 6.5 +/
 mx:HRule x=10 y=10 width=220 height=36/
 /mx:Canvas

 /mx:Accordion

 mx:Canvas x=258 y=10 width=756 height=40 label=Header 
id=HeaderCanvas
 mx:Text x=32 y=0 text=These are some scripts I created to 
learn Adobe's Extendscript. They have all been tested but use at your 
own risk. width=654 height=20/

mx:Text width=700 y=10 x=10
mx:htmlText![CDATA[
  Usage is free, but if you wish to give something back, please a 
href=http://www.leapfrog-productions.com/Scripts/A_R_links.html;font 
color=#008800donate to a reputable animal advocacy group/a/font 
in your area.
]]/mx:htmlText
/mx:Text

 /mx:Canvas
 mx:Canvas x=258 y=58 width=756 height=607 id=MainStage 
label=MainStage
 mx:Text x=10 y=10 text=main page text width=218 
id=text1/
 /mx:Canvas

/mx:Application


If you click on the BackBurner Submit UI accordion header, you get the 
actionscript error dialog stating that it has an ArguementError: 
Undefined state BackBurnerSubmitUI

So I guess the big question I have is: how do you make sure states are 
included in the scope of the function?

Second question: If you click on the Main accordion header you will see 
it opens a whitespace even tho the height field is set to 0. I assume 
this is because of the resizeToContent=true flag, but I cannot find 
any way to adjust the whitespace numbers.

tia and I am glad to find this list resource, In the future I hope to be 
able to leverage Flex with the other adobe suite apps using bridgetalk 
or ajax.

Impudent1
LeapFrog Productions


 Yahoo! Groups Sponsor ~-- 
Yahoo! Groups gets a make over. See the new email design.
http://us.click.yahoo.com/XISQkA/lOaOAA/yQLSAA/nhFolB/TM
~- 

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

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

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

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