--- In flexcoders@yahoogroups.com, "Michael Schmalle"
<[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> use selectedIndex or selectedChild.
>
> When using selectedChild you can use;
>
> selectedChild.label to get the label of the tab that is selected.
>
> When using selectedIndex you can use;
>
> var tab
I finally figured out my issue with my dynamic datagrid columns, and
what not. However, I have run into a new problem with this little project.
In previous versions of Actionscript, I have been able to create
dynamic array object keys. However in AS3, I am not able to figure out
how to do so. In p
Target is the dispatcher, which is the loader of the image. Try
currentTarget, or use rptFoto.getRepeaterItem
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of danielvlopes
Sent: Saturday, September 15, 2007 8:57 PM
To: flexcoders@yahoogr
Helo everybody...
I having problems to try get repearter item when user click on image.
This is my code for repeater:
Alex had pointed out something similar I was doing - that I needed to
import mx.Application in the area.
On Sep 14, 2007, at 2:08 PM, neilwcameron wrote:
> Thats just the thing, I'm accessing it from another component. :(
>
> I'm trying a few things now to try and get the instantiated class a
Hey, i decided that i am going to release the source code for the SalesBuilder
app done that was done in Air by
Christophe Coenraets
http://www.coenraets.org/blog/
Its under the MIT license so i have been told it is OK.
I rewrote the entire thing to work in Flex, and added loads of c
Client as in Flex app running in the FlashPlayer in a browser on some
machine.
The only filesystem you can access at all in Flex is on a server
somewhere. If you want filenames in a Flex client app, you will have to
use a server-side process to grab a text representation of some part of
the s
http://raghuonflex.wordpress.com/2007/09/03/flex-india-is-going-great-guns/
http://money.cnn.com/news/newsfeeds/articles/prnewswire/AQTU01011092007-1.htm
http://www.artima.com/weblogs/viewpost.jsp?thread=193593
--- In flexcoders@yahoogroups.com, João <[EMAIL PROTECTED]> wrote:
>
> Thanks Doug.
>
Some one?
--- In flexcoders@yahoogroups.com, "danielvlopes" <[EMAIL PROTECTED]>
wrote:
>
> Hello,
> I have a uploadcomponent using FileReferenceList to browse file in
> user pc, i'm using this code to do:
>
> refAddFiles = new FileReferenceList();r
> efAddFiles.addEventListener(Event.SELECT, onSe
I found the problem,and not in flex, is php, even set the timout to 0
in php the file size no be bigger than upload_max_filesize.
--- In flexcoders@yahoogroups.com, "danielvlopes" <[EMAIL PROTECTED]>
wrote:
>
> Hello every body...
> I'm using a script that i made to make upload from flex to php..
Hello,
I would like to try the fcsh in my eclipse 3.2 Flex 2.0.1, but can't
figure how to do it or if it is even possible.
http://labs.adobe.com/wiki/index.php/Flex_Compiler_Shell
I already use Flex Ant Task with mxmlc compiler, so I would like to
switch to fcsh :)
http://labs.adobe.com/wiki/in
var s:Sprite = mysprite;
s.graphics.lineStyle(1);
s.graphics.drawRect(0,0,s.width, s.height)
that would work to get the bounds(rectangle)
If you just want an outline of the actual sprite itself, you may consider
using a 1pixel outer glow filter.
On 9/14/07, Jon Bradley <[EMAIL PROTECTED]> wrot
Using a debugger player and debug swf (so it won't work in production
mode), you can create an Error() instance and parse getStackTrace()
function A()
{
log.debug("function execute" + new Error().getStackTrace());
}
From: flexcoders@yahoogroups.com [mailto:[
We think we resolved this, the ObjectEncoding was not being set
correctly for the Mac for some reason.
Matt
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Patrick Lemiuex
Sent: Friday, September 14, 2007 2:43 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] F
It's not node-locked so you should be fine.
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Chris Luebcke
Sent: Friday, September 14, 2007 2:21 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Follow-up on the watermark thing
It certainly worked for me. St
Sorry that support was unaware of this. We have tried hard to follow
Adobe standard practice and make any public betas of our software
completely available to those who have licensed copies of the current
version. Where behavior appears crippled when in fact you should be
entitled more likely a b
Hello everyone,
I just get started with my development consultancy and need a clearer
definition of some of the most recurrent terms. I know their
definition, what I am interested in finding out is how the most expert
of you would describe the differences or similarities between:
- the architectu
Hi,
use selectedIndex or selectedChild.
When using selectedChild you can use;
selectedChild.label to get the label of the tab that is selected.
When using selectedIndex you can use;
var tab:Tab = Tab(tabNavigator.getTabAt(tabNavigator.selectedIndex));
tab.label
tab.icon
tab.data
Peace, Mike
Which property should I be checking for in a TabNavigator to ascertain
which tab is currently selected by the user?
([variable] == "Y")
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of figo2324
Sent: Friday, September 14, 2007 2:46 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] XMLList
Hi people, i need your help, i have a xmllist object s
OK, if you have more than one MXML file, then you have a document tree
where each mxml file represents a document whose parentDocument is the
parent of the top tag in that MXML file. Thus some number of calls to
parentDocument should get you where you want to go.
__
Hi All!
I will be working on a simple flex chat.. But haven't start coding. I
was thinking if you could give me some ideas on how to do it.
The application should be text based.. read / write text file (if
possible).. I don't want to use any Flex Message Service. I just want
to keep it so simple.
Thats just the thing, I'm accessing it from another component. :(
I'm trying a few things now to try and get the instantiated class and
call the functions from that...on it goes.
--- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote:
>
> You shouldn't need Application.applicat
I for one would second the forced non-transparent background when
full-screen. I really can't think of a good reason that you would even want
full-screen with a transparent background.
Steve
Senior Software Engineer
http://www.FreshBrew.com
On 9/14/07, Troy Gilbert <[EMAIL PROTECTED]> wrote:
>
>
Hi Team
I am doing the logging of the application and now i want to know the
name of the function which is being executed.
In the below i want the functionName to be "A".
function A()
{
log.debug("function execute" + functionName);
}
Can we do it in flex???
Thanks
ilikeflex
Hi people, i need your help, i have a xmllist object so i need to
query this xmllist, im doing it in this way
var jo:XMLList=myDataProvider.data.item.(koala=="Y");
where myDataProvider.data =
I have a tab navigator that has datagrids on each respective tab. The
datagrids are populated with a RemoteObject call and all works fine.
When the user clicks on a row (itemClick), the state changes and they
are brought to the details screen (for editing the content in a form).
The content grab is
Hi,
I'm searching a xhtml RichTextEditor or a parser to edit xhtml texts.
The parser should work for both ways, html->xhtml and xhtml->html.
Thanks Patrick
Thanks Doug.
Does anyone know more sources, like articles from magazines, blog
posts from known developers, statistics, and so on?
João Saleiro
Thank you Troy, for your suggestions.
I cannot understand one thing, using SimpleXMLDecoder i got Object
from XML BUT I cannot make this ObjectProxy cast to my Album Object.
What is the condition to cast object fields are same, I cant
understand how does it works :(
--- In flexcoders@yahoogr
Are you running the server on the pc?
Sent from my iPhone
On Sep 14, 2007, at 5:43 PM, Patrick Lemiuex <[EMAIL PROTECTED]> wrote:
> i have the strangest situation, where my app works with flash media
> server with flex, however only on PC. On any mac i get:
>
> DEBUG_9] : The connection to the
Mike Potter has a few posts about the number of flex job postings. Check out
the most recent one here:
http://www.riapedia.com/2007/09/14/flex_jobs_continue_amazing_growth
On 9/15/07, João <[EMAIL PROTECTED]> wrote:
>
> Hey guys,
>
> I'm writing a document to prove that there is more and more in
Svg is not supported
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of arpan srivastava
Sent: Friday, September 14, 2007 11:01 PM
To: Flex Coders
Subject: [flexcoders] not able to load svg format images?
Hi All,
I am making an app
Hi Charlie,
Hervé's solution is right if you just want to get simple and non
secure data to the client. But careful, if you want to get any
security matrix information.
From my point of view security must not apply client size.
Regards
Eric Guesdon
--- In flexcoders@yahoogroups.com, "candysmate" <[EMAIL PROTECTED]> wrote:
>
> I'm trying to implement a DateFormatter function for a DataGridColumn
> as a labelFunction:
>
> private function formatDate(item:Object, column:DataGridColumn):String
> {
> dateFormatted = new DateFormatter();
>
Hey guys,
I'm writing a document to prove that there is more and more interest
on the Flex/Flash Platform everyday. We all know that this is true
from our personal experiences, but I need some statistics/statements
from reliable sources to prove my point of view.
Can you give me some help with
I'm trying to implement a DateFormatter function for a DataGridColumn
as a labelFunction:
private function formatDate(item:Object, column:DataGridColumn):String
{
dateFormatted = new DateFormatter();
dateFormatted.formatString = "DD-MM-"
return dateFormatted.format(item
Charles Dale a écrit :
> Hi guys,
>
> I've been banging around solutions to this (apparently) simple problem
> for a few months. I still haven't found something I'm happy with.
>
> In our system users load Flex apps off an Apache server, authenticating
> to Apache using Single Sign-On (mod_auth_ke
What would be the correct design for a multiple choice test using code
behind ?
I want to show 1 question at a time.
I don't see how it could be done by extending the Application class. I'd
have to extend the form class.
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcode
Tracy - it's always a single directory, no subfolders, so no hierarchy
concerns, I'd think. I've done some studying. Am I on the right track
by thinking I should use the cfdirectory tag, set to a list, turned
into a query variable, and pass that back to Flex as some sort of
object, which then becom
--- In flexcoders@yahoogroups.com, "Gordon Smith" <[EMAIL PROTECTED]> wrote:
>
> If you find bugs in the Flex docs, please file them at
> http://bugs.adobe.com/flex.
>
> - Gordon
>
>
>
OK, done it.
best, Graham
Can someone please explain what is going on and how to get flex to
ignore everything but the xml in an PHP file ?
If I have a static xml file with this at the beginning:
It works fine. But if I save the file as a php file and then try to load
it, I get these errors:
TypeError: Error #1088: T
Are there any plans to create a separate namespace for AIR related
components in the SDK?
For e.g. I am looking inside the mx.controls package and I see controls like
FileSystemComboBox and FileSystemDataGrid listed, which dont seem to be
usable in a non-AIR flex context, thus leading to confusion.
You can't load SVG images at runtime, you need to embed them.
http://livedocs.adobe.com/flex/201/langref/mx/controls/Image.html
/Max
On 9/15/07, arpan srivastava <[EMAIL PROTECTED]> wrote:
>
>
> Hi All,
>
> I am making an application which will run on server and loads image
> files. My app
I searched your site, but I couldnt find anything relating to the
DeepDataGridColumn that you wrote about. Is there some place else I
can find it.
I know that 2d arrays, are not the best data providers. But due to the
way the data is ordered, I have to stick with this type of array.
45 matches
Mail list logo