Re: [flexcoders] Help me name this eclipse feature so I can log a bug

2009-10-15 Thread primo411
I don't think this is a bug, I will explain you why: ALT+LEFT/RIGHT is the
shortcut for history navigation, ALT+LEFT brings you back to were you were.
If you want to move word by word, try: CTRL+LEFT/RIGHT
If you want to go to the beginning or the end of the line, just use the
begin and end keys of your keyboard !

Cheers

2009/10/15 dfalling dfall...@gmail.com



 I'm trying to think of the name of this feature so I can log a Jira for
 it...

 When using Eclipse with Java, you can use alt/option to move intelligently
 through code.

 For example: assuming ^ is your insertion point in Java:
 Math.floor(^
 alt-left
 Math.^floor(

 In Flex though, the behavior is different:
 Math.floor(^
 alt-left
 ^Math.floor(

 I greatly prefer the Java way- I frequently will copy my selected line with
 command-option-up/down, then try to alt-arrow over to swap out the function.
 FB leaves me further away from where I want to be than vanilla Eclipse.

 Does anyone know how to describe this so I can log another Jira to be
 ignored? :P

 Thanks!

  



Re: [flexcoders] Help me to start with flex

2009-07-05 Thread Nancy Gill
Try this:

http://www.adobe.com/devnet/flex/videotraining/

Nancy Gill
Adobe Community Expert

  - Original Message - 
  From: Ramkumar 
  To: flexcoders@yahoogroups.com 
  Sent: Saturday, July 04, 2009 10:07 AM
  Subject: [flexcoders] Help me to start with flex





  Hi
  I am new to flex and Cairngorm framework.
  i would like to start the flex with basics.
  Please any one help me to learn this.
  Thanks and Regards,
  N.Ramkumar


  


  __ Information from ESET NOD32 Antivirus, version of virus signature 
database 4218 (20090705) __

  The message was checked by ESET NOD32 Antivirus.

  http://www.eset.com


RE: [flexcoders] help me - sent request to automatically search

2009-04-07 Thread Tracy Spratt
Does that site expose an API?

 

Tracy Spratt,

Lariat Services, development services available

  _  

From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
Behalf Of btc132
Sent: Tuesday, April 07, 2009 11:17 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] help me - sent request to automatically search

 

Hello all
I want sent a request to an other web and send a request to click Search
button of the web. i done
private function send_request( ):void{
var request:URLRequest = new URLRequest(http://thesaurus. reference.
com/);
var variables:URLVariab les = new URLVariables( );
variables.sometext = patent;
request.data = variables;
sendToURL(request) ;
click_search( );
}
private function click_search( ):void{
var loader:URLLoader = null;
loader = new URLLoader();
var variables:URLVariab les = new URLVariables( )
variables.clicksearch = 'sbut';
variables.textvalue = 'qleft';

}

how does it? when i want post value that i want to search to text of the web
and click search button
Can you help me?
Thanks





Re: [flexcoders] Help Me

2008-10-01 Thread Manu Dhanda

Follow the link for your answer:
http://www.adobe.com/devnet/flex/articles/itemrenderers_pt1.html

And please use a more related subject to the post.
It will help in searching the solution for this sort of problems in future
for beginners.

-Manu.


NATA RAJAN wrote:
 
 Hi friends
 How to place the icons in DataGrid.can u send sample codings 
 
 
 
 Regards
 Natarajan
 
 
 
 
   Add more friends to your messenger and enjoy! Go to
 http://messenger.yahoo.com/invite/
 

-- 
View this message in context: 
http://www.nabble.com/Help-Me-tp19756643p19757387.html
Sent from the FlexCoders mailing list archive at Nabble.com.



Re: [flexcoders] Help me

2008-08-04 Thread jitendra jain
Use itemEditEnd Event of DataGrid instead of FocusOut event.
 Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798



- Original Message 
From: poorni_agile [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Monday, August 4, 2008 4:57:26 PM
Subject: [flexcoders] Help me


Hi
Iam having some doubts with datagrid. My datagrid values are not
changing if iam using LabelFunction attribute in datagrid column. How
to solve this issue. Iam requesting you to give me ideas how can i
resolve this issue.

My Code:
mx:Form id=editForm label=View and Edit XML Rules
mx:HBox
mx:FormItem label=Rule DocType:
fontWeight= bold
mx:TextInput id=doctype width=280
fontWeight= normal editable=false /
/mx:FormItem
mx:FormItem label=Target:  fontWeight= bold
mx:ComboBox id=target
dataProvider= {targ} width=150 fontWeight= normal/
/mx:FormItem
/mx:HBox
mx:FormItem label=Rule Handler: fontWeight= bold
mx:TextInput id=handler width=280
fontWeight= normal editable=false styleName=wrapme /
/mx:FormItem

mx:FormItem label=Stylesheet:  fontWeight= bold
mx:TextInput id=stylesheet width=280
fontWeight= normal editable=false /
/mx:FormItem

mx:FormItem label=IdLocations:  fontWeight= bold/
mx:DataGrid id=dgrid dataProvider= {b}
width=600 rowCount=5 editable=false wordWrap=true 
mx:columns
mx:DataGridColumn
headerText= IDLocation Description dataField=@ description
width=150 editorDataField= text/
mx:DataGridColumn
headerText= IDLocation Path dataField=@ path editorDataField= text/
mx:DataGridColumn
headerText= Column-Index dataField=@ column-index width=70/
mx:DataGridColumn
headerText= Separator Used dataField=@ separator width=70/
/mx:columns
/mx:DataGrid

mx:FormItem label=Special Cases:
fontWeight= bold/
mx:DataGrid id=dgrid1 dataProvider= {c}
width=600 rowCount=5 editable=false 
mx:columns
mx:DataGridColumn
headerText= Priority dataField=@ priority width=50
editorDataField= text/
mx:DataGridColumn
headerText= Test dataField=@ test/
mx:DataGridColumn
headerText= Handler dataField=@ handler/ 

 mx:DataGridColumn
headerText= SpecialCaseStyle sheet Name labelFunction= displayName /
 mx:DataGridColumn
headerText= SpecialCaseTarge t Destination
labelFunction= displayDestinat ion/

/mx:columns
/mx:DataGrid
mx:HBox 
mx:Button id=edit label=Edit Rule
click=editRule( )/ 
mx:Button id=save label=Save Rule
click=saveRule( )/
/mx:HBox
mx:TextArea id=xmlObj text={externalXML} 
visible=false /


/mx:Form 

In the above code i pointed two lines with arrow mark --- for those
two lines column is not changing.
Even if i change something in that column and once again get focus out
of that column then once again the previous data is only coming what
ever i wrote was vanishing.
What is the problem when iam using labelFunction attribute.

Thanks in advance,
Poornima.

 


  

RE: [flexcoders] Help me

2008-08-04 Thread Gordon Smith
Hi, Poornima.

 

It's considered bad etiquette to post to this group with unrevealing
subjects such as Help me. In the future, you should use a subject such
as Problem using labelFunction on DataGridColumn which will help
readers quickly determine whether they might know the answer. Many
people on this list won't even look at a Help me post.

 

- Gordon

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of poorni_agile
Sent: Monday, August 04, 2008 4:27 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Help me

 

Hi
Iam having some doubts with datagrid. My datagrid values are not
changing if iam using LabelFunction attribute in datagrid column. How
to solve this issue. Iam requesting you to give me ideas how can i
resolve this issue.

My Code:
mx:Form id=editForm label=View and Edit XML Rules
mx:HBox
mx:FormItem label=Rule DocType:
fontWeight=bold
mx:TextInput id=doctype width=280
fontWeight=normal editable=false /
/mx:FormItem
mx:FormItem label=Target: fontWeight=bold
mx:ComboBox id=target
dataProvider={targ} width=150 fontWeight=normal/
/mx:FormItem
/mx:HBox
mx:FormItem label=Rule Handler: fontWeight=bold
mx:TextInput id=handler width=280
fontWeight=normal editable=false styleName=wrapme/
/mx:FormItem

mx:FormItem label=Stylesheet: fontWeight=bold
mx:TextInput id=stylesheet width=280
fontWeight=normal editable=false/
/mx:FormItem

mx:FormItem label=IdLocations: fontWeight=bold/
mx:DataGrid id=dgrid dataProvider={b}
width=600 rowCount=5 editable=false wordWrap=true
mx:columns
mx:DataGridColumn
headerText=IDLocation Description dataField=@description
width=150 editorDataField=text/
mx:DataGridColumn
headerText=IDLocation Path dataField=@path editorDataField=text/
mx:DataGridColumn
headerText=Column-Index dataField=@column-index width=70/
mx:DataGridColumn
headerText=Separator Used dataField=@separator width=70/
/mx:columns
/mx:DataGrid

mx:FormItem label=Special Cases:
fontWeight=bold/
mx:DataGrid id=dgrid1 dataProvider={c}
width=600 rowCount=5 editable=false
mx:columns
mx:DataGridColumn
headerText=Priority dataField=@priority width=50
editorDataField=text/
mx:DataGridColumn
headerText=Test dataField=@test/
mx:DataGridColumn
headerText=Handler dataField=@handler/

 mx:DataGridColumn
headerText=SpecialCaseStylesheet Name labelFunction=displayName/
 mx:DataGridColumn
headerText=SpecialCaseTarget Destination
labelFunction=displayDestination/

/mx:columns
/mx:DataGrid
mx:HBox 
mx:Button id=edit label=Edit Rule
click=editRule()/ 
mx:Button id=save label=Save Rule
click=saveRule()/
/mx:HBox
mx:TextArea id=xmlObj text={externalXML}
visible=false/


/mx:Form 

In the above code i pointed two lines with arrow mark --- for those
two lines column is not changing.
Even if i change something in that column and once again get focus out
of that column then once again the previous data is only coming what
ever i wrote was vanishing.
What is the problem when iam using labelFunction attribute.

Thanks in advance,
Poornima.

 



Re: [flexcoders] Help me sort out my reporting needs...

2008-06-30 Thread Richard Rodseth
I've only looked at AlivePDF briefly, but like the Flex print job, you
can point it at a component you want added to the PDF. So I would
imagine you'd create a separate print layout view that you may or
may not make visible to the user. And pagination is up to you.

By the way, I believe that with AlivePDF and Flash Player 10, you'll
be able to generate the PDF without the round trip to the server.

On Mon, Jun 30, 2008 at 6:06 AM, bredwards358 [EMAIL PROTECTED] wrote:
 I am well aware of the limitations with printing reports in Flex,
 however considering how far along we are in our project, there's no
 turning back now and I'm currently researching the best way to
 implement report printing in the application. Since this is an AIR
 app, it all needs to be client side, right now I'm looking at
 FlexReport (http://www.kemelyon.com/bts/), and AlivePDF
 (http://www.alivepdf.org/) for our reporting needs.

 I could also be over complicating things, as the reports that need to
 be printed are dead simple, consisting of only a header and the needed
 data. But then again considering my own (brief, going on four months)
 experience with coding in flex, the simplest things can be most
 difficult things to work out. Basically what I'm looking for from here
 is yet again a point in the right direction, to some tutorials or code
 on printing very basic, multi-page reports in flex.

 I'm looking over the code behind FlexReport and very soon Alive PDF,
 but it's slow going considering I have to figure out how to integrate
 all the needed files and components into my AIR app and get them
 working properly. Once again, thanks in advance, this group has been
 supremely helpful.

 Brian Ross Edwards,
 Tech-Connect LLC

 


Re: [flexcoders] help me

2008-06-25 Thread Paul Andrews
Raj,

If everyone had a subject line like yours, the forums would be a complete mess.

Before worrying about why flex isn't displaying your data, query your server 
using a browser to check what data you're getting back. Alternatively check out 
the debugger to try and see what data you're reading.

Nobody can really help with such little detail.

Paul
  - Original Message - 
  From: Kumaran Raj 
  To: me ee 
  Sent: Wednesday, June 25, 2008 6:57 AM
  Subject: [flexcoders] help me


in my project remote java object return xml as string than i convert it 
into xml than bind it to the datagrid  it didn't loaded.any one can help me 
plzz
   

   

RE: [flexcoders] Help me understand custom drag/drop events

2008-06-13 Thread Alex Harui
Event properties should be thought of as read-only.  Drag/Drop events
are dispatched by the DragManager so to alter what gets dispatched would
probably require a custom DragManager which isn't officially supported.
I suppose you could intercept and re-dispatch events using capture
phase, stopImmediatePropagation and what not, but it seems like
overkill.

 

Typically, you catch the event, and if you don't want default behavior
you call preventDefault().  Since the default behavior is insert, you
shouldn't call preventDefault if you want insert, and only if you're
going to block the insert and modify the quantity.

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of bredwards358
Sent: Friday, June 13, 2008 10:21 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Help me understand custom drag/drop events

 

Shortly after posting an update to my current predicament in this
topic thread:

http://tech.groups.yahoo.com/group/flexcoders/message/116030
http://tech.groups.yahoo.com/group/flexcoders/message/116030 

and staring at the current logic in my dragDrop event(Shown in above
mentioned topic), I realized something. I don't need to do anything
else other than modify the default drop event to insert new records
into my local database and not have to mess with the for-loop that
updates existing items. However, despite looking through(and still
looking at) posts on this board and pages in my book, I'm still unsure
of how to go about modifying the default drop event (or making a
custom one if that's not possible). Basically all I want to do is add
a database insert function invocation to the default event. Like I
said I'm having trouble understanding where to start so if this sounds
vague, let me know so I can help clear this up. A point in the right
direction of the breifest of tutorials on making custom drag/drop
events, a forum post containing similar subject matter, or an
explanation of where to begin would be most helpful. Thanks in advance,

Brian Ross Edwards 
Tech-Connect LLC

 



RE: [flexcoders] Help me understand how to manipulate dataProviders

2008-05-23 Thread Tracy Spratt
Let me say this again, very clearly: Do not use the index of the
datagrid to identify records in the database.

 

Suppose someone deletes record 3 from the DB? The keys will then be
0,1,2,4,5...  When you put that in a data grid you will have:

Key  DGIndex

0  0

1  1

2  2

4  3  WRONG!

5  4  WRONG!



 

Also if the data gets sorted, you are totally screwed.

 

Instead, use the key propertry itself.  Make sure it is in the data
query you use to retrieve the data, and it will be in the selectedItem
object.

var selectedItemKEY:int = adgProducts.selectedItem.KEY;
dataManager.selectProdDataForEdit(selectedItemKEY);

 

But first, what does selectProdDataForEdit() do? 

 

Tracy

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of bredwards358
Sent: Friday, May 23, 2008 3:21 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Help me understand how to manipulate dataProviders

 

After doing some research which consisted mainly of searching through
this forum, I noticed a mantra along the lines of manipulate the
dataProvider, not the controls it populates. It makes sense,
especially since without directly manipulating the primary key of the
very first entry in a database , it will read as 1, while the first
index of a dataGrid will read as 0. Right now, I have a mostly
finished AIR form which serves as a way of maintaining a product
table. The dataGrid's provider is an array collection built from the
results of a select statement. To get to the point I'd like some
assistance in streamlining some things to not onlt help this form, but
others in the application which will use the same data access
functionality. For starters, here's how I update data:
Assume that the first primary key in the very first entry of the
database has been edited to read as 0 after it was entered so it syncs
up with the dataGrid.selectedIndex property.

//Begins the proceedure to edit a currently existing item when the
edit button is clicked
public function newEdit():void
{
chosenMode = Edit;
currentState = Edit Item;
editColumn.visible = false;
deleteColumn.visible = false;
duplicateColumn.visible = false;
this.lblUniqueID.visible = false;
this.rbAll.visible = false;
this.rbBillable.visible = false;
this.rbNonBillable.visible = false;
try
{
var selectedItemIndex:int = adgProducts.selectedIndex;
//Uses another select statement to get the needed information and
passes the results into
//variables which populates the controls instead of an arrayCollection
dataManager.selectProdDataForEdit(selectedItemIndex);
this.lblUniqueID.text = model.editVarOne;
this.txtNewProductID.text = model.editVarTwo;
this.txtNewProductName.text = model.editVarThree;
this.txtNewBarcode.text = model.editVarFour;
this.txtNewUnit.text = model.editVarFive;
this.txtNewQuantity.text = model.editVarSix;
this.txtNewVendor.text = model.editVarSeven;
this.txtNewCost.text = model.editVarEight;
this.txtNewList.text = model.editVarNine;
this.chkNewBillable.selected = model.editVarBool;
this.lblCurrentStatus.text = Currently  + model.editVarEleven;
}
catch(ex:Error)
{
trace(ex.toString());
trace(ex.getStackTrace());
}
}
private function saveItem(mode:String):void//Differentiates between
whether you want to insert a new item or edit an existing one
{
switch(mode)
{
case Add_New: insertNew();
break;
case Edit: editItem();
break;
default: Alert.show(Cannot Determine State,State Unknown)
break;
}
}
//Actually edits an existing item when the save button is clicked
private function editItem():void
{//Takes the information from the controls and sets them equal to
global variables of the same type which
//are then passed into the function which performs the update
model.insertStringOne = this.txtNewProductID.text;
model.insertStringTwo = this.txtNewProductName.text;
model.insertStringThree = this.txtNewBarcode.text;
model.insertStringFour = this.txtNewVendor.text;
model.insertIntOne = parseInt(this.txtNewUnit.text);
model.insertIntTwo = parseInt(this.txtNewQuantity.text);
model.insertNumberOne = Number(this.txtNewCost.text);
model.insertNumberTwo = Number(this.txtNewList.text);
model.insertStringFive = this.cmbNewClass.selectedItem.toString();
model.insertBooleanOne = this.chkNewBillable.selected;
model.insertStringSix = this.cmbStatus.selectedLabel.toString();
model.insertIntThree = parseInt(this.lblUniqueID.text);

dataManager.updateProduct(model.insertStringOne,
model.insertStringTwo, model.insertStringThree, model.insertIntOne,
model.insertIntTwo, model.insertStringFour, model.insertNumberOne,
model.insertNumberTwo, model.insertStringFive,
model.insertBooleanOne, model.insertStringSix, model.insertNewDate,
model.insertIntThree);

cancelOperation();
//Refreshes the datagrid
refreshGrid();
}

What I want is to see if there's an easier way to do this via
accessing the ArrayCollection model.prodMaintData to get the 

RE: [flexcoders] Help me understand the datagrid

2008-05-20 Thread Alex Harui
relevant code snippets would help.
 
Generally, .as files in a mx:script tag are part of the outerDocument if
they are public methods.
 
I assume the main app is called Product_Maintenance?



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of bredwards358
Sent: Tuesday, May 20, 2008 8:56 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Help me understand the datagrid



Now, I've been coding in flex for about six or seven weeks now and
things seem to be going swimmingly so far, until I now have to climb
the brick wall that is trying use more of the functions of the data
Grid or actually the advanced data Grid than I was ever used to. Given
the sheer number of topics on the subject I imagine my plight is
pretty common. Until recently I typically used a data Grid to display
information, now that I've become aware of its more intuitive
functions such as inline item renderers.

My main problem so far is this. I have a window which brings up an
initial data grid full of products drawn from a SQL Lite database
table. The data provider for the grid is an ArrayCollection containing
the results of the select statement. At the far left of the grid, are
two button columns added via itemRenderers, one for removing a product
entry, another for editing a currently existing item. I can do the
logic for the actual updating and deleting to the database, but
correct me if I'm wrong as I believe that I simply need to execute the
statement where the primary key is equal to the selected index of the
datagrid, however modified via increment since the grid index is one
behind the table as I've noticed.

Anyhoo, I am aware of the outerDocument.whateverFunction(); deal with
controls made with itemRenderer but it doesn't work in my case since
all of the actionscript in my documents is in a .as file separate from
the .mxml file and referred to as the source in the mx:script/ tag.
I try to use outerDocument and I get the error:

1061: Call to a possibly undefined method editItem through a reference
with static type Product_Maintenance.

So what can I do to get at the function inside the .as file? I've
tried simply placing a script tag within the itemRenderer but it
throws a parse error regardless of whats inside.



 


RE: [flexcoders] Help me understand the datagrid

2008-05-20 Thread Tracy Spratt
...where the primary key is equal to the selected index of the
datagrid... Only if your primary key is an integer, and you always sort
by the primary key.  Actually, that is a risky way to do it.  Why not
use the primary key property value itself?

 

Tracy

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Alex Harui
Sent: Tuesday, May 20, 2008 1:14 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Help me understand the datagrid

 

relevant code snippets would help.

 

Generally, .as files in a mx:script tag are part of the outerDocument if
they are public methods.

 

I assume the main app is called Product_Maintenance?

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of bredwards358
Sent: Tuesday, May 20, 2008 8:56 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Help me understand the datagrid

Now, I've been coding in flex for about six or seven weeks now and
things seem to be going swimmingly so far, until I now have to climb
the brick wall that is trying use more of the functions of the data
Grid or actually the advanced data Grid than I was ever used to. Given
the sheer number of topics on the subject I imagine my plight is
pretty common. Until recently I typically used a data Grid to display
information, now that I've become aware of its more intuitive
functions such as inline item renderers.

My main problem so far is this. I have a window which brings up an
initial data grid full of products drawn from a SQL Lite database
table. The data provider for the grid is an ArrayCollection containing
the results of the select statement. At the far left of the grid, are
two button columns added via itemRenderers, one for removing a product
entry, another for editing a currently existing item. I can do the
logic for the actual updating and deleting to the database, but
correct me if I'm wrong as I believe that I simply need to execute the
statement where the primary key is equal to the selected index of the
datagrid, however modified via increment since the grid index is one
behind the table as I've noticed.

Anyhoo, I am aware of the outerDocument.whateverFunction(); deal with
controls made with itemRenderer but it doesn't work in my case since
all of the actionscript in my documents is in a .as file separate from
the .mxml file and referred to as the source in the mx:script/ tag.
I try to use outerDocument and I get the error:

1061: Call to a possibly undefined method editItem through a reference
with static type Product_Maintenance.

So what can I do to get at the function inside the .as file? I've
tried simply placing a script tag within the itemRenderer but it
throws a parse error regardless of whats inside.

 



RE: [flexcoders] Help me find the cool Flex2 - Amazon dataminer

2007-01-29 Thread Christian Weibell
I’ve seen more than one of these. Here is one:

 

http://www.flowser.com/us/flowserST.html

 

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of oneproofdk
Sent: Thursday, January 25, 2007 11:55 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Help me find the cool Flex2 - Amazon dataminer

 

A few weeks ago I saw a cool Flex2 app, that would take a search
string, then pull data from Amazon and make a web of images, linked
together and draggable. WHen you click on a book, it would get new
data from Amazon etc.

Any one who has a link ?

Thanks,
Mark

 



Re: [flexcoders] Help me find the Amazon book spider example

2007-01-28 Thread Shannon Hicks

Are you talking about the SpringGraph component?

http://www.adobe.com/cfusion/exchange/index.cfm?view=sn610#view=sn611viewName=Flex%20Extensionloc=en_usauthorid=71967431page=0scrollPos=0subcatid=0snid=sn611itemnumber=11extid=1048510catid=0

Shan


oneproofdk wrote:


A few weeks ago (as far as I remember) I saw a cool Flex2 app, that
would take a search string for a book title, retrieve data from Amazon
and display books in a web-like setup, where the books are connected
by wires, if I click on a book, it would retrieve data from Amazon on
that book.

All those bookcovers were floating around, allowing the user to drag
in the web and all things would follow.

I'd love to see some example code on how to do this - can anyone help me ?

I tryed to post this yesterday - but it never showed up here - so
sorry for the double posts if it should arrive twice.

Thanks,
Mark

 




RE: [flexcoders] Help me find the Amazon book spider example

2007-01-26 Thread Merrill, Jason
This isn't quite the same link, but it is a Flex app that uses Amazon's
webservices API:
 
http://d-p.com/Internet-Development-Services/ria/amazon.cfm
 
For how to do, You can start reading here:
 
http://jeff.mxdj.com/using_amazons_itemsearch_webservice_from_flex.htm
http://www.amazon.com/gp/browse.html?node=3435361
 
 

Jason Merrill 
Bank of America
Learning  Organizational Effectiveness 
  
  
  
  
  

 




From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of oneproofdk
Sent: Friday, January 26, 2007 2:29 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Help me find the Amazon book spider
example



A few weeks ago (as far as I remember) I saw a cool Flex2 app,
that
would take a search string for a book title, retrieve data from
Amazon
and display books in a web-like setup, where the books are
connected
by wires, if I click on a book, it would retrieve data from
Amazon on
that book.

All those bookcovers were floating around, allowing the user to
drag
in the web and all things would follow.

I'd love to see some example code on how to do this - can anyone
help me ?

I tryed to post this yesterday - but it never showed up here -
so
sorry for the double posts if it should arrive twice.

Thanks,
Mark



 



Re: [flexcoders] Help me find the Amazon book spider example

2007-01-26 Thread Doug McCune
That uses the SpringGraph component that you can get off of Adobe 
Exchange. It's an amazing component, by far the most impressive one I've 
seen posted to the exchange.


Doug

oneproofdk wrote:


A few weeks ago (as far as I remember) I saw a cool Flex2 app, that
would take a search string for a book title, retrieve data from Amazon
and display books in a web-like setup, where the books are connected
by wires, if I click on a book, it would retrieve data from Amazon on
that book.

All those bookcovers were floating around, allowing the user to drag
in the web and all things would follow.

I'd love to see some example code on how to do this - can anyone help me ?

I tryed to post this yesterday - but it never showed up here - so
sorry for the double posts if it should arrive twice.

Thanks,
Mark

 




Re: [flexcoders] Help me

2006-08-29 Thread Tom Chiverton
On Monday 28 August 2006 12:22, flexdeveloper wrote:
 Iam new to flex, i want to choose Flex career,
 where should i start and how can i get assistance

Head on over to the developers Flex pages on Adobe and get reading :-)
http://www.macromedia.com/devnet/flex/

-- 
Tom Chiverton
Helping to revolutionarily unleash best-of-breed partnerships



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 St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

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 8008.

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



--
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] Help me

2006-08-29 Thread Abdul Qabiz



Sri,I would suggest focussing on ActionScript, general web programming skills, RIA patterns Knowing Flex alone might not make a good career, you gotta learn about many other related things(web standards, HTTP, web technologies etc) while using Flex as tool/language of your choice to solve the problems.
-abdulOn 8/29/06, Tom Chiverton [EMAIL PROTECTED] wrote:
On Monday 28 August 2006 12:22, flexdeveloper wrote: Iam new to flex, i want to choose Flex career, where should i start and how can i get assistanceHead on over to the developers Flex pages on Adobe and get reading :-)
http://www.macromedia.com/devnet/flex/--Tom ChivertonHelping to revolutionarily unleash best-of-breed partnerships
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 St James's Court Brown Street Manchester M2 2JF.A list of members is available for inspection at the registered office. Any reference to a partner in relation to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law Society.
CONFIDENTIALITYThis 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 8008.
For more information about Halliwells LLP visit www.halliwells.com.--Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 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 Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



Re: [flexcoders] help me

2006-06-07 Thread DIBYADYUTI CHAKRABORTY
et Data" click="getdata();"/  mx:TextArea text="{infoStr}" width="100%" height="100%"//mx:Panel/mx:Application  No comments found http://livedocs.macromedia.com/flex/15/asdocs_en/mx/servicetags/RemoteObject.html Devis
 [EMAIL PROTECTED] wrote:no,  i wish to use only code completition.  AdobewriteIDEs and Text Editors  Flex provides an XML schema to enable IDEs that support XML with code coloring, code hinting, etc., including IntelliJ IDEA, Borland JBuilder, and Altova   xmlspy. You can also use code editors such as VI and emacs with Flex.but i can'f find it this
 schema! Any suggestion pls  Devis- Original Message -   From: Antoine Malpel   To: flexcoders@yahoogroups.com   Sent: Tuesday, June 06, 2006 3:30 PM  Subject: Re: [flexcoders] help me  You need to tell if you allready have the remote Object coded... in JSP ?DIBYADYUTI CHAKRABORTY a écrit:   i am new to this
 group and also in flex tools.  please if any body can help me over the flex remote object data service.  i want to devlop a simple web project using flex,and want to run it on the tomcat server.  please help me.dibyadyuti chakraborty  software associate  eforce indiaDibyadyuti Chakraborty  19/2a lala babu shair road   belur math,howrah  pin-711202  Mob:-(0)9433219471  hello:-(033)26540632  e-mail:[EMAIL PROTECTED]"ARISE,AWAKE AND STOP NOT TILL THE GOAL IS REACHED"  Yahoo! India Answers: Share what you know. Learn something new Click hereSend free SMS to your Friends on Mobile from your Yahoo! Messenger Download now 
Dibyadyuti Chakraborty
19/2a lala babu shair road 
belur math,howrah
pin-711202
Mob:-(0)9433219471
hello:-(033)26540632
e-mail:[EMAIL PROTECTED]

"ARISE,AWAKE AND STOP NOT TILL THE GOAL IS REACHED"
	

	
		 
 Yahoo! India Answers: Share what you know. Learn something new Click here 
Send free SMS to your Friends on Mobile from your Yahoo! Messenger Download now
__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



Re: [flexcoders] help me

2006-06-06 Thread Antoine Malpel






You need to tell if you allready have the remote Object coded... in JSP
?


DIBYADYUTI CHAKRABORTY a crit:

  
  i am new to this group and also in flex tools.
  please if any body can help me over the flex remote object data
service.
  i want to devlop a simple web project using flex,and want to run
it on the tomcat server.
  please help me.
  
  dibyadyuti chakraborty
  software associate
  eforce india
  
  
  
  Dibyadyuti Chakraborty
  19/2a lala babu shair road 
  belur math,howrah
  pin-711202
  Mob:-(0)9433219471
  hello:-(033)26540632
  e-mail:[EMAIL PROTECTED]
  
  "ARISE,AWAKE
AND STOP NOT TILL THE GOAL IS REACHED"
  
   
   Yahoo! India Answers: Share what you know. Learn
something new Click
here
Send free SMS to your Friends on Mobile from your Yahoo! Messenger Download
now 




__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___




Re: [flexcoders] help me

2006-06-06 Thread Devis





no,
i wish to use only code completition.
Adobewrite

IDEs and Text Editors
Flex provides an XML schema to enable IDEs that support XML with code 
coloring, code hinting, etc., including IntelliJ IDEA, Borland JBuilder, and 
Altova 
xmlspy. You can also use code editors such as VI and emacs with Flex.

but i can'f find it this schema! Any suggestion 
pls
Devis

  - Original Message - 
  From: 
  Antoine 
  Malpel 
  To: flexcoders@yahoogroups.com 
  Sent: Tuesday, June 06, 2006 3:30 
PM
  Subject: Re: [flexcoders] help me
  
  
  You need to tell if you allready have the remote Object coded... in JSP 
  ?DIBYADYUTI CHAKRABORTY a écrit: 
  

i am new to this group and also in flex tools.
please if any body can help me over the flex remote object data 
service.
i want to devlop a simple web project using flex,and want to run it on 
the tomcat server.
please help me.

dibyadyuti chakraborty
software associate
eforce india

Dibyadyuti Chakraborty
19/2a lala babu shair road 
belur math,howrah
pin-711202
Mob:-(0)9433219471
hello:-(033)26540632
e-mail:[EMAIL PROTECTED]

"ARISE,AWAKE AND STOP 
NOT TILL THE GOAL IS REACHED"


Yahoo! India Answers: Share what you know. Learn something new Click 
hereSend free SMS to your Friends on Mobile from your Yahoo! 
Messenger Download 
now 
  
__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



RE: [flexcoders] help me, please, to make things clear

2005-03-01 Thread devis
Thak's for your help, now code work without warning.
Devs



-Original Message-
From: Matt Chotin [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Date: Tue, 1 Mar 2005 05:58:26 -0800
Subject: RE: [flexcoders] help me, please, to make things clear

 
 You're casting the wrong thing here, you need to move the casting
 parentheses after vopf[0].
 
 mx:Binding source={PfVO(vopf[0]).stagione.cdc_stag==undefined 
 ?'':PfVO(vopf[0]).stagione.cdc_stag} destination=cdc_art.text / 
 
 Where you declare vopf make sure it's now an Array
 
 var vopf : Array;
 
 Based on the Java you sent I think that vopf will be an array,
 therefore it
 will automatically have an editField. Vopf[0] will be your instance of
 a
 PfVO
 
 Matt
 
 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, March 01, 2005 3:58 AM
 To: flexcoders@yahoogroups.com
 Subject: Re: [flexcoders] help me, please, to make things clear
 
 
 Hi Matt,
 i have made your correct but flex throws always this worning
 
 flex correct:
 mx:Binding source={PfVO(vopf[0].stagione.cdc_stag)==undefined 
 ?'':PfVO(vopf[0].stagione.cdc_stag)} destination=cdc_art.text /
 
 warning
 Changes to unknown property, stagione, will not be detected ??
 but 
 code work well!
 
 There si non method with the name editField
 vopf.editField(0, de50pf, CIAO)
 
 Can you help me please
 Devis
 
 
 
 
 
 
 Matt Chotin ha scritto:
 
  1) I think test.mxml looks OK.
 
  2) The problem is that you are returning an array of PfVO but 
  referring to vopf as an individual PfVO. Do this instead:
 
  function onResult(result) {
 
  vopf = result;
 
  }
 
  {PfVO(vopf[0]).stagione.cdc_stag ...}
 
  So anywhere you had vopf[0] I think you really need
 PfVO(vopf[0]).whatever
 
  Method Lista may not be found because maybe the vo you are passing is
  not of the right type? Make sure vo is really an individual PfVO.
 
  3) You can use editField on an array of the returned objects because 
  all Arrays have the DataProvider mixed in.
 
  vopf.editField(0, stagione, )
 
  Hope this helps,
 
  Matt
 
 
 ---
 -
 
  *From:* [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
  *Sent:* Monday, February 28, 2005 3:49 AM
  *To:* Flex Coders
  *Subject:* [flexcoders] help me, please, to make things clear
 
  I have attached a small project, I don't know very well flash
 remoting,
  but I am trying to use to integrate me to it with a j2ee
 architecture.
  I wanted to ask you two things out of politeness,
  1)se look the file Test.mxml, according to you it is all right as I
  approach for popolore one Pojo ActionScrtipt
  2)Ma the true problem, is that flex when I try to use the class pojo
  vopf[0]. stagione.cdc_stag it lifts me some wornings telling me
 that
  cdc_Stag is not a known type,
  but he works well the same,??? about you it's a bug
  Last very important thing, is that in the function
  function Aggiorna(vo:PfVO):Void
  {
  Campionario.Lista(vo);
  }
  
  flex throws Method Lista not found, but the think that macaws to
  problem with to cast?
 
  3) is it possible to use editField with a class pojo ActionScript,
 can
  you explain me as?
  Khan you give me your help, also of the suggestions, on as to resolve
  these problems
  Thanks thousand to everybody
  Devis
 
 
 
 
  *Yahoo! Groups Sponsor*
  ADVERTISEMENT
  click here 
 
 http://us.ard.yahoo.com/SIG=129l289th/M=298184.6018725.7038619.3001176
 /D=gr
 oups/S=1705007207:HM/EXP=1109730538/A=2593423/R=0/SIG=11el9gslf/*http:/
 /www.
 netflix.com/Default?mqso=60190075 
 
 
 
 
 ---
 -
  *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]
  
 mailto:[EMAIL PROTECTED]
  * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
  Service http://docs.yahoo.com/info/terms/.
 
 
 
 
 
 
 
 Yahoo! Groups Links
 
 
 
 
 
 
 
 
 
 Yahoo! Groups Links
 
 
 
 






Re: [flexcoders] help me, please, to make things clear

2005-03-01 Thread [EMAIL PROTECTED]
Hi Matt,
i have made your correct but flex throws always this worning
flex correct:
mx:Binding source={PfVO(vopf[0].stagione.cdc_stag)==undefined 
?'':PfVO(vopf[0].stagione.cdc_stag)} destination=cdc_art.text /

warning
Changes to unknown property, stagione, will not be detected ?? but 
code work well!

There si non method with the name editField
vopf.editField(0, de50pf, CIAO)
Can you help me please
Devis


Matt Chotin ha scritto:
1) I think test.mxml looks OK.
2) The problem is that you are returning an array of PfVO but 
referring to vopf as an individual PfVO. Do this instead:

function onResult(result) {
vopf = result;
}
{PfVO(vopf[0]).stagione.cdc_stag }
So anywhere you had vopf[0] I think you really need PfVO(vopf[0]).whatever
Method Lista may not be found because maybe the vo you are passing is 
not of the right type? Make sure vo is really an individual PfVO.

3) You can use editField on an array of the returned objects because 
all Arrays have the DataProvider mixed in.

vopf.editField(0, stagione, )
Hope this helps,
Matt

*From:* [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
*Sent:* Monday, February 28, 2005 3:49 AM
*To:* Flex Coders
*Subject:* [flexcoders] help me, please, to make things clear
I have attached a small project, I don't know very well flash remoting,
but I am trying to use to integrate me to it with a j2ee architecture.
I wanted to ask you two things out of politeness,
1)se look the file Test.mxml, according to you it is all right as I
approach for popolore one Pojo ActionScrtipt
2)Ma the true problem, is that flex when I try to use the class pojo
vopf[0]. stagione.cdc_stag it lifts me some wornings telling me that
cdc_Stag is not a known type,
but he works well the same,??? about you it's a bug
Last very important thing, is that in the function
function Aggiorna(vo:PfVO):Void
{
Campionario.Lista(vo);
}

flex throws Method Lista not found, but the think that macaws to
problem with to cast?
3) is it possible to use editField with a class pojo ActionScript, can
you explain me as?
Khan you give me your help, also of the suggestions, on as to resolve
these problems
Thanks thousand to everybody
Devis

*Yahoo! Groups Sponsor*
ADVERTISEMENT
click here 
http://us.ard.yahoo.com/SIG=129l289th/M=298184.6018725.7038619.3001176/D=groups/S=1705007207:HM/EXP=1109730538/A=2593423/R=0/SIG=11el9gslf/*http://www.netflix.com/Default?mqso=60190075 



*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]
mailto:[EMAIL PROTECTED]
* Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service http://docs.yahoo.com/info/terms/.





RE: [flexcoders] help me, please, to make things clear

2005-03-01 Thread Matt Chotin
You're casting the wrong thing here, you need to move the casting
parentheses after vopf[0].

mx:Binding source={PfVO(vopf[0]).stagione.cdc_stag==undefined 
?'':PfVO(vopf[0]).stagione.cdc_stag} destination=cdc_art.text / 

Where you declare vopf make sure it's now an Array

var vopf : Array;

Based on the Java you sent I think that vopf will be an array, therefore it
will automatically have an editField. Vopf[0] will be your instance of a
PfVO

Matt

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, March 01, 2005 3:58 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] help me, please, to make things clear


Hi Matt,
i have made your correct but flex throws always this worning

flex correct:
mx:Binding source={PfVO(vopf[0].stagione.cdc_stag)==undefined 
?'':PfVO(vopf[0].stagione.cdc_stag)} destination=cdc_art.text /

warning
Changes to unknown property, stagione, will not be detected ?? but 
code work well!

There si non method with the name editField
vopf.editField(0, de50pf, CIAO)

Can you help me please
Devis






Matt Chotin ha scritto:

 1) I think test.mxml looks OK.

 2) The problem is that you are returning an array of PfVO but 
 referring to vopf as an individual PfVO. Do this instead:

 function onResult(result) {

 vopf = result;

 }

 {PfVO(vopf[0]).stagione.cdc_stag ...}

 So anywhere you had vopf[0] I think you really need PfVO(vopf[0]).whatever

 Method Lista may not be found because maybe the vo you are passing is 
 not of the right type? Make sure vo is really an individual PfVO.

 3) You can use editField on an array of the returned objects because 
 all Arrays have the DataProvider mixed in.

 vopf.editField(0, stagione, )

 Hope this helps,

 Matt

 

 *From:* [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
 *Sent:* Monday, February 28, 2005 3:49 AM
 *To:* Flex Coders
 *Subject:* [flexcoders] help me, please, to make things clear

 I have attached a small project, I don't know very well flash remoting,
 but I am trying to use to integrate me to it with a j2ee architecture.
 I wanted to ask you two things out of politeness,
 1)se look the file Test.mxml, according to you it is all right as I
 approach for popolore one Pojo ActionScrtipt
 2)Ma the true problem, is that flex when I try to use the class pojo
 vopf[0]. stagione.cdc_stag it lifts me some wornings telling me that
 cdc_Stag is not a known type,
 but he works well the same,??? about you it's a bug
 Last very important thing, is that in the function
 function Aggiorna(vo:PfVO):Void
 {
 Campionario.Lista(vo);
 }
 
 flex throws Method Lista not found, but the think that macaws to
 problem with to cast?

 3) is it possible to use editField with a class pojo ActionScript, can
 you explain me as?
 Khan you give me your help, also of the suggestions, on as to resolve
 these problems
 Thanks thousand to everybody
 Devis




 *Yahoo! Groups Sponsor*
 ADVERTISEMENT
 click here 

http://us.ard.yahoo.com/SIG=129l289th/M=298184.6018725.7038619.3001176/D=gr
oups/S=1705007207:HM/EXP=1109730538/A=2593423/R=0/SIG=11el9gslf/*http://www.
netflix.com/Default?mqso=60190075 



 
 *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]
 mailto:[EMAIL PROTECTED]
 * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
 Service http://docs.yahoo.com/info/terms/.







Yahoo! Groups Links