[flexcoders] Broken Tomcat server within Eclipse - NullPointerException on startup

2008-09-14 Thread ansury2
I'm having one of those infamous IT WTH?! moments. You know, the 
kind where you have no idea what you did to break it?  I have no 
idea what I did to break this apparently fragile as hell project 
setup. 

I'm using Eclipse's Servers view functionality to startup Tomcat. 
Everything worked fine for say two months until suddenly I found that 
I was unable to shutdown Tomcrap. No idea why, maybe I started/
stopped too quick or something, but when I tried to shut it down, 
Eclipse just sat there for awhile and it timed out: unable to 
shutdown server or whatever rubbish.

Eclipse restart didn't help, I think at that point I was getting 
this error message (instead of a timeout). So I figured I'd reboot - 
still NO good. Still getting this stupid error message. Uhoh. I have 
to think about this? @#$%!

Apparently I made a mistake trusting this magic setup to work 
without fully understanding HOW it works. (The Eclipse docs are 
worthless for understanding what it's doing.) Instead of deploying 
the application to Tomcat's webapps directory in it's normal 
installed location, how a normal person would design this feature, it 
deploys everything into some bizzare folder in your workspace 
metadata and somehow it just works. (\EclipseWS\.metadata\.plugins
\org.eclipse.wst.server.core\tmp0\wtpwebapps) (HUH? WTH? Why?)


Sorry for sounding pissed, but I am - I've wasted basically two days 
on this trash with no idea where to go from here. Do I re-install 
Tomcat? Eclipse? Setup my workspace again? Why should I have to do 
all that? This is the kind of stuff in IT that makes you want to say 
screw it all and just go into management so the other poor suckers 
have to lose their hair doing stuff like this! lol

I doubt anyone can help with this bizzare problem (it's probably more 
of an Eclipse issue but it only spews this error when I deploy my 
Flex project!) but here's the console output. Note the 
NullPointerException within NioEndpoint:


Sep 14, 2008 1:38:24 AM 
org.apache.tomcat.util.digester.SetPropertiesRule begin
WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} 
Setting property 'source' to 'org.eclipse.jst.j2ee.server:Rtk' did 
not find a matching property.
Sep 14, 2008 1:38:24 AM org.apache.catalina.core.AprLifecycleListener 
init
INFO: The APR based Apache Tomcat Native library which allows optimal 
performance in production environments was not found on the 
java.library.path: C:\Program Files\Java\jre1.6.0_05\bin;.;C:\Windows
\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Program Files\Java
\jre1.6.0_05\bin\client;C:\Program Files\Java\jre1.6.0_05\bin;C:
\Windows\system32;C:\Windows;C:\Windows\System32\Wbem
Sep 14, 2008 1:38:24 AM org.apache.tomcat.util.net.NioSelectorPool 
getSharedSelector
INFO: Using a shared selector for servlet write/read
Sep 14, 2008 1:38:24 AM org.apache.coyote.http11.Http11NioProtocol 
init
INFO: Initializing Coyote HTTP/1.1 on http-9000
Sep 14, 2008 1:38:24 AM org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 521 ms
Sep 14, 2008 1:38:25 AM org.apache.catalina.core.StandardService start
INFO: Starting service Catalina
Sep 14, 2008 1:38:25 AM org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/6.0.16
Sep 14, 2008 1:38:25 AM org.apache.catalina.core.StandardContext 
addApplicationListener
INFO: The listener flex.messaging.HttpFlexSession is already 
configured for this context. The duplicate definition has been 
ignored.
Started RtkBootstrapService
Sep 14, 2008 1:38:26 AM org.apache.tomcat.util.net.NioEndpoint 
setSocketOptions
SEVERE: 
java.lang.NullPointerException
at org.apache.tomcat.util.net.NioEndpoint.setSocketOptions
(NioEndpoint.java:1011)
at org.apache.tomcat.util.net.NioEndpoint$Acceptor.run
(NioEndpoint.java:1204)
at java.lang.Thread.run(Unknown Source)
Sep 14, 2008 1:38:26 AM org.apache.coyote.http11.Http11NioProtocol 
start
INFO: Starting Coyote HTTP/1.1 on http-9000
Sep 14, 2008 1:38:26 AM org.apache.jk.common.ChannelSocket init
INFO: JK: ajp13 listening on /0.0.0.0:8009
Sep 14, 2008 1:38:26 AM org.apache.jk.server.JkMain start
INFO: Jk running ID=0 time=0/93  config=null
Sep 14, 2008 1:38:26 AM org.apache.catalina.startup.Catalina start
INFO: Server startup in 1725 ms



Re: [flexcoders] Broken Tomcat server within Eclipse - NullPointerException on startup

2008-09-14 Thread Johannes Nel
inline.

On Sun, Sep 14, 2008 at 8:33 AM, ansury2 [EMAIL PROTECTED] wrote:

   I'm having one of those infamous IT WTH?! moments. You know, the
 kind where you have no idea what you did to break it? I have no
 idea what I did to break this apparently fragile as hell project
 setup.

 I'm using Eclipse's Servers view functionality to startup Tomcat.
 Everything worked fine for say two months until suddenly I found that
 I was unable to shutdown Tomcrap. No idea why, maybe I started/
 stopped too quick or something, but when I tried to shut it down,
 Eclipse just sat there for awhile and it timed out: unable to
 shutdown server or whatever rubbish.






  just ignore that, it does not shutdown sometimes, a little red button in
 eclipse does force it.

 Eclipse restart didn't help, I think at that point I was getting
 this error message (instead of a timeout). So I figured I'd reboot -
 still NO good. Still getting this stupid error message. Uhoh. I have
 to think about this? @#$%!

 Apparently I made a mistake trusting this magic setup to work
 without fully understanding HOW it works. (The Eclipse docs are
 worthless for understanding what it's doing.) Instead of deploying
 the application to Tomcat's webapps directory in it's normal
 installed location, how a normal person would design this feature, it
 deploys everything into some bizzare folder in your workspace
 metadata and somehow it just works. (\EclipseWS\.metadata\.plugins
 \org.eclipse.wst.server.core\tmp0\wtpwebapps) (HUH? WTH? Why?)



  this is the way eclipse works, you might not want to deploy to your
 actual web server, even when developing plugins eclipse works like this.
 this allows you to use separate config files for your development and your
 local webserver as well.




 Sorry for sounding pissed, but I am - I've wasted basically two days
 on this trash with no idea where to go from here. Do I re-install
 Tomcat? Eclipse? Setup my workspace again? Why should I have to do
 all that? This is the kind of stuff in IT that makes you want to say
 screw it all and just go into management so the other poor suckers
 have to lose their hair doing stuff like this! lol



 well if you downloaded wtp, just dump that eclipse and extract it again,
 you keep your workspace and it should just work. When i get arb stuff i
 delete my servers in eclipse and just create them again.

 I doubt anyone can help with this bizzare problem (it's probably more
 of an Eclipse issue but it only spews this error when I deploy my
 Flex project!) but here's the console output. Note the
 NullPointerException within NioEndpoint:

  did you enable a firewall at some point. your error looks like
 the debugger is unable to open a socket to the instance tomcat.



[flexcoders] Chrome and developer's version of Flash player installation

2008-09-14 Thread markgoldin_2000
What do I need to do to install Debugging version on Flash Player for 
Chrome Browser?

Thanks



Re: [flexcoders] Chrome and developer's version of Flash player installation

2008-09-14 Thread Sefi Ninio
I'd like to know that as well...

On Sun, Sep 14, 2008 at 3:51 PM, markgoldin_2000
[EMAIL PROTECTED]wrote:

   What do I need to do to install Debugging version on Flash Player for
 Chrome Browser?

 Thanks

  



[flexcoders] Stop row click on dataGrid

2008-09-14 Thread markgoldin_2000
Here is my dataGrid:
mx:DataGrid height=100% enabled=true id=blockTrackDetails 
verticalScrollPolicy=on 
rowHeight=22 width=100% click=rowSelected()
mx:columns
mx:DataGridColumn headerText=Track 
dataField=tcrctk/
mx:DataGridColumn headerText=Cars # 
dataField=carnumber/
mx:DataGridColumn headerText=Loads 
dataField=loads/
mx:DataGridColumn headerText=empty 
dataField=empty/
mx:DataGridColumn headerText=Tons 
dataField=tons/
mx:DataGridColumn headerText=Feet 
dataField=feet/
mx:DataGridColumn headerText=Reassign /
mx:DataGridColumn headerText= 
dataField=tcbkcd visible=false/
/mx:columns
/mx:DataGrid
How can I prevent from running a click function when a specific column 
was clicked?

Thanks



[flexcoders] application hangs while inserting data into sqlite database

2008-09-14 Thread sudha_bsb
Hi,

I am trying to insert images into sqlite database from an air
application. The images are of size 1MB. I want to show a loading
animation while the insert is happening.

But the application just hangs while inserting data into database. It
returns into normal mode only when the insert is complete. How can I
make sure that the application doesn't hang while the insert happens.

I want to show an animation during this time

Please help,

Thanks,
Sudha.



[flexcoders] Combobox as Custom Renderer

2008-09-14 Thread markgoldin_2000
If I have a combobox as a custom renderer how do I set dataProvider 
for the combobox? My dataProvider is an XML.

Thanks



Re: [flexcoders] application hangs while inserting data into sqlite database

2008-09-14 Thread Johannes Nel
use sqlite asynchronous mode.also when doing several inserts getting them
into a transaction in synchronous mode speeds things up a lot

On Sun, Sep 14, 2008 at 7:09 PM, sudha_bsb [EMAIL PROTECTED] wrote:

   Hi,

 I am trying to insert images into sqlite database from an air
 application. The images are of size 1MB. I want to show a loading
 animation while the insert is happening.

 But the application just hangs while inserting data into database. It
 returns into normal mode only when the insert is complete. How can I
 make sure that the application doesn't hang while the insert happens.

 I want to show an animation during this time

 Please help,

 Thanks,
 Sudha.

  




-- 
j:pn
\\no comment


[flexcoders] Re: application hangs while inserting data into sqlite database

2008-09-14 Thread sudha_bsb
Application still hangs even when i use asynchronous mode

Any idea why this is happening...

Thanks,
Sudha.

--- In flexcoders@yahoogroups.com, Johannes Nel [EMAIL PROTECTED]
wrote:

 use sqlite asynchronous mode.also when doing several inserts getting
them
 into a transaction in synchronous mode speeds things up a lot
 
 On Sun, Sep 14, 2008 at 7:09 PM, sudha_bsb [EMAIL PROTECTED] wrote:
 
Hi,
 
  I am trying to insert images into sqlite database from an air
  application. The images are of size 1MB. I want to show a loading
  animation while the insert is happening.
 
  But the application just hangs while inserting data into database. It
  returns into normal mode only when the insert is complete. How can I
  make sure that the application doesn't hang while the insert happens.
 
  I want to show an animation during this time
 
  Please help,
 
  Thanks,
  Sudha.
 
   
 
 
 
 
 -- 
 j:pn
 \\no comment





RE: [flexcoders] Chrome and developer's version of Flash player installation

2008-09-14 Thread Jim Hayes

Mine seemed to pick up on my firefox plugin, since it was debug version 9 in 
chrome when I first launched it.
What it would do if I didn't have the mozilla plugin already I have no idea, 
however. perhaps prompt for it's own download when it was first required?

-Original Message-
From: flexcoders@yahoogroups.com on behalf of Sefi Ninio
Sent: Sun 14/09/2008 14:18
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Chrome and developer's version of Flash player 
installation
 
I'd like to know that as well...

On Sun, Sep 14, 2008 at 3:51 PM, markgoldin_2000
[EMAIL PROTECTED]wrote:

   What do I need to do to install Debugging version on Flash Player for
 Chrome Browser?

 Thanks

  



__
This communication is from Primal Pictures Ltd., a company registered in 
England and Wales with registration No. 02622298 and registered office: 4th 
Floor, Tennyson House, 159-165 Great Portland Street, London, W1W 5PA, UK. VAT 
registration No. 648874577.

This e-mail is confidential and may be privileged. It may be read, copied and 
used only by the intended recipient. If you have received it in error, please 
contact the sender immediately by return e-mail or by telephoning +44(0)20 7637 
1010. Please then delete the e-mail and do not disclose its contents to any 
person.
This email has been scanned for Primal Pictures by the MessageLabs Email 
Security System.
__winmail.dat

[flexcoders] Re: Combobox as Custom Renderer

2008-09-14 Thread markgoldin_2000
But I am assigning the custom renderer in code at run time.

--- In flexcoders@yahoogroups.com, Joan Lafferty [EMAIL PROTECTED] wrote:

 If you are using an inline itemRenderer, you can do something like 
this:
 
mx:List dataProvider={myData}
   mx:itemRenderer
 mx:Component
   mx:ComboBox dataProvider={myXML} /
 /mx:Component
   /mx:itemRenderer
/mx:List
 
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] 
On Behalf Of markgoldin_2000
 Sent: Sunday, September 14, 2008 10:14 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Combobox as Custom Renderer
 
 
 If I have a combobox as a custom renderer how do I set dataProvider
 for the combobox? My dataProvider is an XML.
 
 Thanks






[flexcoders] Re: Combobox as Custom Renderer

2008-09-14 Thread markgoldin_2000
But I want to assign dataProvider at run time.
--- In flexcoders@yahoogroups.com, Joan Lafferty [EMAIL PROTECTED] wrote:

 Then, you'll want to create a custom component from the ComboBox. In 
the custom component, assign the dataProvider. Then, at runtime, 
assign the custom component that is a ComboBox as the itemRenderer.
 
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] 
On Behalf Of markgoldin_2000
 Sent: Sunday, September 14, 2008 4:16 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Re: Combobox as Custom Renderer
 
 
 But I am assigning the custom renderer in code at run time.
 
 --- In 
flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.com, Joan 
Lafferty tan@ wrote:
 
  If you are using an inline itemRenderer, you can do something like
 this:
 
  mx:List dataProvider={myData}
  mx:itemRenderer
  mx:Component
  mx:ComboBox dataProvider={myXML} /
  /mx:Component
  /mx:itemRenderer
  /mx:List
 
  From: 
flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.com 
[mailto:flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.com
]
 On Behalf Of markgoldin_2000
  Sent: Sunday, September 14, 2008 10:14 AM
  To: 
flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.com
  Subject: [flexcoders] Combobox as Custom Renderer
 
 
  If I have a combobox as a custom renderer how do I set 
dataProvider
  for the combobox? My dataProvider is an XML.
 
  Thanks
 






[flexcoders] How to call Air from Javascript?

2008-09-14 Thread guillaumeracine
I know how to call flex from javascript but in air it is a different
scenario...

I just found the following hint on a blog:

in Air:
myHtmlcontrol.useApplicationDomain = ApplicationDomain.currentDomain;

In javascript (embeded in myHtmlControl):
runtime.mx.core.Application.application.myASFunction();

Actually the useApplicationDomain property does not exists for the
mx:HTML object and doing alert(runtime) in javascript throws an error...

Help!!!



[flexcoders] Re: e4x not working due to namespace

2008-09-14 Thread gwangdesign
Hi Josh,

Thanks for the lead. I'm new to this but by looking at the Flex
documentation it seems that you would need to hardcode the uri into
QName/namespace? What I mean is that I am trying to get the default
namespace at runtime so that ideally my code would still run in the
case YouTube changed their namespaces;) But unfortunately it doesn't work:

var def:Namespace = new Namespace(xml.namespace());
use namespace def;

...

Could you give the code about QName? Thanks!


--- In flexcoders@yahoogroups.com, Josh McDonald [EMAIL PROTECTED] wrote:

 It should work, but you need to either use a QName (instead of a
String) to
 access nodes. Also, you could probably define an namespace like this
(off
 the top of my head, syntax might be wrong):
 
 private namespace rootNS = http://www.w3.org/2005/Atom;;
 
 using rootNs;
 
 //... Do your e4x stuff here...
 
 I'd say use QNames. I know at first it seems kinda annoying to have to
 define a bunch QName constants, but when Youtube decide to change their
 namespaces, or the name of a node, or something like that, you'll be
glad
 you did.
 
 -Josh
 
 On Mon, Sep 15, 2008 at 4:50 AM, gwangdesign [EMAIL PROTECTED] wrote:
 
  Hi,
 
  I am trying to access the YouTube feed. Like this:
 
  
 
http://gdata.youtube.com/feeds/api/videos?rq=HurricaneIKE%20max-results=2
  
 
  It returns something like this:
 
  feed
  xmlns='http://www.w3.org/2005/Atom'
  xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/'
  xmlns:gml='http://www.opengis.net/gml'
  xmlns:georss='http://www.georss.org/georss'
  xmlns:media='http://search.yahoo.com/mrss/'
  xmlns:batch='http://schemas.google.com/gdata/batch'
  xmlns:yt='http://gdata.youtube.com/schemas/2007'
  xmlns:gd='http://schemas.google.com/g/2005'
 id/
 updated/
 author/
 generator/
 openSearch:totalResults127862056/openSearch:totalResults
 ...
 entry
 ...
 /entry
  /feed
 
  Everything is fine except that I cannot traverse the returned xml file
  in e4x syntax, while the old school child(0) works just fine. After
  hours of digging, I found out that it was the namespace of the top
  node:http://www.w3.org/2005/Atom; that prevents e4x from working. I
  figured this out by saving a local copy of the xml file and trimming
  off the aforementioned uri of the namespace, like this:
 
  feed
  xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/'
  xmlns:gml='http://www.opengis.net/gml'
  xmlns:georss='http://www.georss.org/georss'
  xmlns:media='http://search.yahoo.com/mrss/'
  xmlns:batch='http://schemas.google.com/gdata/batch'
  xmlns:yt='http://gdata.youtube.com/schemas/2007'
  xmlns:gd='http://schemas.google.com/g/2005
  ...
  /feed
 
  So what I am trying to do now, without any good advice, is trying to
  set the namespace for the top node to another uri or just null,
  because that's what's working with a local copy.
 
  BTW, I tried both HTTPService and URLLoader/URLRequest and they yield
  the same results. I tried copy() the xml file without altering the
  namespaces for the top node and it ONLY worked for a local xml file.
 
  Any suggestions?
 
 
  
 
  --
  Flexcoders Mailing List
  FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
  Alternative FAQ location:
 
https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
  Search Archives:
  http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups
  Links
 
 
 
 
 
 
 -- 
 Therefore, send not to know For whom the bell tolls. It tolls for
thee.
 
 http://flex.joshmcdonald.info/
 
 :: Josh 'G-Funk' McDonald
 :: 0437 221 380 :: [EMAIL PROTECTED]





Re: [flexcoders] Icons are not displayed in menuItem

2008-09-14 Thread Rajan Jain
Hi All

I am made custom component(TestComponent) which extends Panel and shown menu at 
start up. Code is very very simple but i do not know why the menu icons are not 
displayed. Any pointers are highly appreciated. See the code below and i have 
also attached code files as attachement.

Thanks
Rajan

?xml version=1.0 
encoding=utf-8?mx:Applicationxmlns:mx=http://www.adobe.com/2006/mxml; 
layout=absolute xmlns:local=*local:TestComponentwidth=100% 
height=100%/mx:Application/local:TestComponent

package{
{
[
[
menuitem label=Edit eventName=copy icon=imgdeleteClass /
menuitem label=Delete eventName=paste icon=imgdeleteClass/
/menu;
{
    addEventListener(FlexEvent.CREATION_COMPLETE,showMenufunction);
}importflash.events.Event;importmx.containers.Panel;importmx.controls.Menu;importmx.events.FlexEvent;publicclassTestComponent
 
extendsPanelpublicvarmyMenu:Menu;Embed(source=assets/icon_help.gif)]publicvarimgdeleteClass:Class;Embed(source=assets/button_edit.gif)]publicvarimgeditClass:Class;publicvarmyMenuData:XML=menupublicfunctionTestComponent()   
 super();publicfunctionshowMenufunction(event:Event=null):void{
{
myMenu=Menu..createMenu(
myMenu.iconField=
myMenu.labelField=
myMenu.show(200,200);
}
}
}
}if(myMenu == null)this, myMenuData,false);@icon;@eventName; 



- Original Message 
From: Alex Harui [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Sunday, September 14, 2008 1:09:59 AM
Subject: RE: [flexcoders] Icons are not displayed in menuItem


I think it should just be ( no curlys ):
 
mx:XML id=myMenuData  
 root  
 menuitem label=MenuItem 1 eventName=copy 
icon=imgdeleteClass/  
 menuitem label=MenuItem 2 eventName=paste 
icon=imgeditClass/  
 /root  
 /mx:XML  


 
From:[EMAIL PROTECTED] ups.com [mailto:flexcoders@ yahoogroups. com] On Behalf 
Of Rajan Jain
Sent: Saturday, September 13, 2008 8:55 PM
To: [EMAIL PROTECTED] ups.com
Subject: [flexcoders] Icons are not displayed in menuItem
 
Hi All
 
I am trying to display icon in the menu. I am using example from livedocs 
language reference. I have added 
 
icon attribute to dataprovider
myMenu.iconField=@icon
 
but icons are not displayed. 
Any pointers are highly appreciated.
 
Thanks
Rajan
 
 - - - - - - 
- - - - - - - - 
- -
Complete Source Code-
 
 
  
?xml version=1..0?  
!-- Simple example to demonstrate the Menu control. --  
mx:Application xmlns:mx=http://www.adobe. com/2006/ mxml  
   
 mx:Script  
 ![CDATA[  
  
 import mx.controls. Menu;  
 import mx.events.MenuEvent ;  
 import mx.controls. Alert; 
 impo! rt flash.geom.Point;  
   
[Bindable]  
[Embed(source=assets/icon_ help.gif)]  
public var imgdeleteClass: Class;  

[Bindable]  
[Embed(source=assets/button_ edit.gif)]  
public var imgeditClass: Class;  
   
 private var point1:Point = new Point();  
 private var myMenu:Menu;  
  
 // Create and display the Menu control.  
 private function showMenu():void {  
 myMenu= Menu.createMenu( panel, myMenuData, false);  
 myMenu.labelField=@label  
 myMenu.iconField=@icon;  
 myMenu.addEventList ener(itemClick, menuHandler) ;  
   
 // Calculate position of Menu in Application' s coordinates.   
 point1.x=mybutton. x;  
 point1.y=mybutton. y;  
 point1=mybutton. localToGlobal( point1);  
   
 myMenu.show( point1.x + 25, point1.y + 25);  
 }  
  
 // Event handler for the Menu control's change event.  
 private function menuHandler( event:MenuEvent) :void  {  
 Alert.show(Label:  + event.item.@ label, Clicked menu 
item);  
 }  
 ]]  
 /mx:Script  
   
 mx:XML id=myMenuData  
 root  
 menuitem label=MenuItem 1 eventName=copy 
icon={imgdeleteClass}/  
 menuitem label=MenuItem 2 eventName=paste 
icon={imgeditClass}/  
 /root  
 /mx:XML  
   
 mx:Panel id=panel title=Menu Control Example height=75% 
width=75%   
 paddingTop=10 paddingLeft=10  
   
 mx:Label width=100% color=blue  
text=Click the button to open the Menu control./  
   
 mx:Button id=mybutton label=Open Menu click=showMenu();/  
   
 

RE: [flexcoders] Stop row click on dataGrid

2008-09-14 Thread Alex Harui
Use ITEM_CLICK instead

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
markgoldin_2000
Sent: Sunday, September 14, 2008 7:30 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Stop row click on dataGrid


Here is my dataGrid:
mx:DataGrid height=100% enabled=true id=blockTrackDetails
verticalScrollPolicy=on
rowHeight=22 width=100% click=rowSelected()
mx:columns
mx:DataGridColumn headerText=Track
dataField=tcrctk/
mx:DataGridColumn headerText=Cars #
dataField=carnumber/
mx:DataGridColumn headerText=Loads
dataField=loads/
mx:DataGridColumn headerText=empty
dataField=empty/
mx:DataGridColumn headerText=Tons
dataField=tons/
mx:DataGridColumn headerText=Feet
dataField=feet/
mx:DataGridColumn headerText=Reassign /
mx:DataGridColumn headerText=
dataField=tcbkcd visible=false/
/mx:columns
/mx:DataGrid
How can I prevent from running a click function when a specific column
was clicked?

Thanks



RE: [flexcoders] Re: Trying to underline datagrid header text. How???

2008-09-14 Thread Alex Harui
Making changes in set data() makes you data-driven.  Changing when events fire 
makes you event-driven.

Maybe you're looking at the wrong collection?  What does the code that checks 
the sortField look like?

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
cjcuccaro
Sent: Sunday, September 14, 2008 6:28 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Trying to underline datagrid header text. How???


Hmmm. Thought I was data-driven. I did attempt to check the sortField
but it was always null. I put checks in the sortEventHandler and the
clickHandler to see when the sort would change to not null but it
remained null.

So when you say the header gets recycled it calls the set data
method? Should I be making the changes in the set data method at this
point?

I feel like I'm wrestling an alligator and going 'round and 'round
and doing nothing but getting tired. phew!

Thank you again for your help Alex.
Regards,
CJ

--- In flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.com, Alex 
Harui [EMAIL PROTECTED] wrote:

 See my reply from today. You need to be data-driven. I still
think getting the collection's Sort and comparing the sortField
against the column's dataField is the right plan.

 From: flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.com
[mailto:flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.com] On 
Behalf Of cjcuccaro
 Sent: Saturday, September 13, 2008 6:31 PM
 To: flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.com
 Subject: [flexcoders] Re: Trying to underline datagrid header text.
How???


 Well thought I had it licked but not!

 It works great until I make my HTTPService call to the Spring
 controller on the server to get the sorted result. Just like the
sort
 arrow the underlining disappears after the service call.

 I only show 20 records out of a much larger result set so when
 sorting I need to call the HTTPservice again to get the sorted
subset
 after the entire resultset is sorted on the server. E!

 Does anyone have a work around for this kind of behavior? What do I
 need to extend/override to keep the sort arrow or in my latest
 attempt the underlining?

 Any and all help is appreciated.

 Desperately,
 CJ

 --- In 
 flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.commailto:flexcoders%
40yahoogroups.com, cjcuccaro cj_cuccaro@ wrote:
 
  I believe I got it. I use the added sortEventHandler event
listener
  to set the style textDecoration to none and the clickHandler to
 reset
  the textDecoration to underline.
 
  private function sortEventHandler
  (event:DataGridEvent):void
  {
  if (event.itemRenderer == this){
  event.preventDefault();
  }
  setStyle(textDecoration, none);
  }
 
  private function clickHandler(event:MouseEvent):void
  {
  setStyle(textDecoration, underline);
  }
 
 
  and it took me way to many hours to come to this conclusion.
yikes!
 
  Thanks for your input Alex, it is greatly appreciated.
 
  Regards,
  CJ
 
  --- In 
  flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.commailto:flexcoders%
40yahoogroups.com, Alex Harui aharui@ wrote:
  
   I would probably test that the DataGrid
  (listData.owner).collection.sort.sortFIeld[0].name ==
data.dataField
  
   You'll need more null checks and what not but that tests to see
 if
  the sort on the collection is sorting on the same field as the
 column
  the header renderer is displaying.
  
   From: 
   flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.commailto:flexcoders%
40yahoogroups.com
  [mailto:flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.commailto:flexcoders%
40yahoogroups.com] On Behalf Of cjcuccaro
   Sent: Friday, September 12, 2008 8:27 PM
   To: 
   flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.commailto:flexcoders%
40yahoogroups.com
   Subject: [flexcoders] Re: Trying to underline datagrid header
 text.
  How???
  
  
   Thank you Alex for your feedback.
  
   So I visited your blog read about renderers, very good info, and
  started with your checkbox example. I changed the checkbox to a
 label
  and have it underlining on the click but don't know how to toggle
 the
  underline when clicking other columns. Can you or anyone provide
 any
  suggestions on how I can achieve this? Below is the headerRenderer
  custom class.
  
   RgColHeaderLabel.as file:
  
   package
   {
   import mx.controls.Label;
  
   public class RgColHeaderLabel extends Label
   {
  
   import flash.events.MouseEvent;
   import mx.events.DataGridEvent;
   import mx.controls.DataGrid;
   import mx.controls.dataGridClasses.DataGridColumn;
   import mx.controls.dataGridClasses.DataGridListData;
  
   private var _data:DataGridColumn;
  
   public function RgColHeaderLabel()
   {
   super();
   addEventListener(click, clickHandler);
   }
  
   override public function get data():Object
   {
   return _data;
   }
  
   override public function set data(value:Object):void
   {
   _data = value as 

Re: [c-nsp] NPE-G2 Gigabit Ignored Errors

2008-09-14 Thread Kevin Graham
 On a related note, we are seeing input overruns on almost all native GigaE 
 ports on the NPE-G1.  Example on 12.4(21):

On the other side, of those NPE-G1 ports, do you see any flow control from
them? I've never seen a G1's counters show pause frame that it sends, but
even watching them indirectly, they're always several orders of magnitude
less than the number of overruns...
___
cisco-nsp mailing list  cisco-nsp@puck.nether.net
https://puck.nether.net/mailman/listinfo/cisco-nsp
archive at http://puck.nether.net/pipermail/cisco-nsp/


[flexcoders] Re: Chrome and developer's version of Flash player installation

2008-09-14 Thread markgoldin_2000
I'm pretty sure it is scheduled for release in an upcoming update, I know
there was lots of hmmm's when I saw the list of current unsupported
technologies during our companies presentation, but I seem to recall most of
them set for release in the future, I mean it would be ridiculous to never
support mpls-te on the ASR.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mark Tinka
Sent: Friday, 5 September 2008 11:45 AM
To: cisco-nsp@puck.nether.net
Subject: Re: [c-nsp] c7604 starter kit

On Friday 05 September 2008 01:09:28 Saku Ytti wrote:

 L3 VPN yes, TE no sure.

According to FN, MPLS-TE is unsupported. Quite surprising, actually...

Mark.

___
cisco-nsp mailing list  cisco-nsp@puck.nether.net
https://puck.nether.net/mailman/listinfo/cisco-nsp
archive at http://puck.0
  [EMAIL PROTECTED]wrote:
 
 What do I need to do to install Debugging version on Flash 
Player for
   Chrome Browser?
  
   Thanks
  
  
  
 
 
  
__
  This communication is from Primal Pictures Ltd., a company 
registered in
  England and Wales with registration No. 02622298 and registered 
office: 4th
  Floor, Tennyson House, 159-165 Great Portland Street, London, W1W 
5PA, UK.
  VAT registration No. 648874577.
 
  This e-mail is confidential and may be privileged. It may be read, 
copied
  and used only by the intended recipient. If you have received it 
in error,
  please contact the sender immediately by return e-mail or by 
telephoning
  +44(0)20 7637 1010. Please then delete the e-mail and do not 
disclose its
  contents to any person.
  This email has been scanned for Primal Pictures by the MessageLabs 
Email
  Security System.
  
__
  
 
  --
  Flexcoders Mailing List
  FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
  Alternative FAQ location:
  https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-
446f-b4cf-1e62079f6847
  Search Archives:
  http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 
Groups
  Links
 
 
 
 
 
 
 -- 
 Therefore, send not to know For whom the bell tolls. It tolls for 
thee.
 
 http://flex.joshmcdonald.info/
 
 :: Josh 'G-Funk' McDonald
 :: 0437 221 380 :: [EMAIL PROTECTED]






RE: [flexcoders] Icons are not displayed in menuItem

2008-09-14 Thread Alex Harui

Check out just a handful of the key features that make Forex Auto
Pilot - the world's number 1 Work At Home opportunity online...
Automated Forex Robots that analyze the market - giving you an 'unfair
advantage' by placing the odds in your favor. After all, there's no
fun in gambling if you can't win.
Remember 'trend is your friend' - Forex Auto Pilot knows EXACTLY when
to trade in order to maximize your profits.
If you don't feel completely secure about 'live' trading, simply shape
and sharpen your skills on our demo account.
Forex Auto Pilot looks at the bigger picture and so helps clearly
define the trend. Hidden trends are now a thing of the past!
State-of-the-art money management programming that allows the
individual trader to turn a profit even under unfavorable conditions
on the market.
The system never gets angry or greedy allowing trader investment to
operate at 100% efficiency.
Let your profits run! FAPS allows your position to be open for as long
as the market wishes to reward you.
Keep it simple stupid and that's exactly what our automatic cash
formula does! A simple and effective method of trading Forex maintains
profits over HUGE amounts of time.
Monitoring high amounts of trades duringon


package

{

import flash.events.Event;

import mx.containers.Panel;

import mx.controls.Menu;

import mx.events.FlexEvent;

public class TestComponent extends Panel

{

public var myMenu:Menu;

[Embed(source=assets/icon_help.gif)]

public var imgdeleteClass:Class;

[Embed(source=assets/button_edit.gif)]

public var imgeditClass:Class;

public var myMenuData:XML=menu

menuitem label=Edit eventName=copy icon=imgdeleteClass /

menuitem label=Delete eventName=paste icon=imgdeleteClass/

/menu;

public function TestComponent()

{

super();

addEventListener(FlexEvent.CREATION_COMPLETE,showMenufunction);

}

public function showMenufunction(event:Event=null):void

{
if(myMenu == null)

{

myMenu=Menu.createMenu(this, myMenuData,false);

myMenu.iconField=@icon;

myMenu.labelField=@eventName;

myMenu.show(200,200);

}

}

}

}


- Original Message 
From: Alex Harui [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Sunday, September 14, 2008 1:09:59 AM
Subject: RE: [flexcoders] Icons are not displayed in menuItem
I think it should just be ( no curlys ):

mx:XML id=myMenuData
 root
 menuitem label=MenuItem 1 eventName=copy 
icon=imgdeleteClass/
 menuitem label=MenuItem 2 eventName=paste 
icon=imgeditClass/
 /root
 /mx:XML

From: [EMAIL PROTECTED] ups.comhttp://ups.com/ [mailto:flexcoders@ 
yahoogroups. com] On Behalf Of Rajan Jain
Sent: Saturday, September 13, 2008 8:55 PM
To: [EMAIL PROTECTED] ups.com
Subject: [flexcoders] Icons are not displayed in menuItem

Hi All

I am trying to display icon in the menu. I am using example from livedocs 
language reference. I have added

icon attribute to dataprovider
myMenu.iconField=@icon

but icons are not displayed.
Any pointers are highly appreciated.

Thanks
Rajan

 - - - - - - 
- - - - - - - - 
- -
Complete Source Code-



?xml version=1.0?
!-- Simple example to demonstrate the Menu control. --
mx:Application xmlns:mx=http://www.adobe. com/2006/ 
mxmlhttp://www.adobe.com/2006/mxml

 mx:Script
 ![CDATA[

 import mx.controls. Menu;
 import mx.events.MenuEvent ;
 import mx.controls. Alert;
 impo! rt flash.geom.Point;

[Bindable]
[Embed(source=assets/icon_ help.gif)]
public var imgdeleteClass: Class;

[Bindable]
[Embed(source=assets/button_ edit.gif)]
public var imgeditClass: Class;

 private var point1:Point = new Point();
 private var myMenu:Menu;

 // Create and display the Menu control.
 private function showMenu():void {
 myMenu= Menu.createMenu( panel, myMenuData, false);
 myMenu.labelField=@label
 myMenu.iconField=@icon;
 myMenu.addEventList ener(itemClick, menuHandler) ;

 // Calculate position of Menu in Application' s coordinates.
 point1.x=mybutton. x;
 point1.y=mybutton. y;
 point1=mybutton. localToGlobal( point1);

 myMenu.show( point1.x + 25, point1.y + 25);
 }

 // Event handler for the Menu control's change event.
 private function menuHandler( event:MenuEvent) :void  {
 Alert.show(Label:  + event.item.@ label, Clicked menu 
item);
 }
 ]]
 /mx:Script

 mx:XML id=myMenuData
 root
 menuitem label=MenuItem 1 

Re: [flexcoders] Chrome and developer's version of Flash player installation

2008-09-14 Thread Josh McDonald

Issue 2238: Add search engine dialog doesn't allow { (open curly brace);  
can interfere with javascript
http://code.google.com/p/chromium/issues/detail?id=2238

New issue report by dgingrich:
Product Version  : 0.2.149.29 (build 1798)
URLs (if applicable) :
Other browsers tested:
   Add OK or FAIL after other browsers where you have tested this issue:
 Firefox 3: OK

What steps will reproduce the problem?
1. Right click Omnibox - Edit search engines... - Add
2. set Name to 'test'; Keyword: blank;
3. set URL to 'javascript:alert(test);' (Note OK button is active)
4. set URL to 'javascript:alert(test);{};' (Note OK button is inactive)


What is the expected result?

Should be able to create new search engine that is a javascript: URL  
containing a {


What happens instead?

Cannot save new search engine (can't click OK)


Please provide any additional information below. Attach a screenshot if  
possible.

t; Thanks
 
 
 


 __
 This communication is from Primal Pictures Ltd., a company registered in
 England and Wales with registration No. 02622298 and registered office: 4th
 Floor, Tennyson House, 159-165 Great Portland Street, London, W1W 5PA, UK.
 VAT registration No. 648874577.

 This e-mail is confidential and may be privileged. It may be read, copied
 and used only by the intended recipient. If you have received it in error,
 please contact the sender immediately by return e-mail or by telephoning
 +44(0)20 7637 1010. Please then delete the e-mail and do not disclose its
 contents to any person.
 This email has been scanned for Primal Pictures by the MessageLabs Email
 Security System.
 __
 

 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Alternative FAQ location:
 https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
 Search Archives:
 http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups
 Links






-- 
Therefore, send not to know For whom the bell tolls. It tolls for thee.

http://flex.joshmcdonald.info/

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


[flexcoders] Re: Trying to underline datagrid header text. How???

2008-09-14 Thread cjcuccaro
Jadi intinya nyari CV-nya atau SDM-nya?
-sol-


2008/9/13 Doddy Prima [EMAIL PROTECTED]

   Thanks komentarnya.
 Mungkin di milist ini yang belum saya jelaskan lebih detail, tetang
 kepentingan dari CV dan dokumen lainnya.

 Secara singkat saja,
 Kita sedang mengerjakan project tepatnya 3 project besar yang saling
 berkaitan, jadi memebutuhkan 3 tim besar.
 Kita sudah menyiapkan spesifikasi tim, tapi kita juga ingin melihat dari
 sudut pandang berbeda, yaitu dari kemampuan masing2 personal.

 Ada 2 penyaringan CV ( dan dokumen lainnya), yaitu penyaringan pertama
 akan digunakan manajemen sebagai analisis dan kelengkapan dokumen
 project kami, dan setiap pemilik CV akan diberi pengganti .
 Penyaringan ke-2 yaitu digunakan untuk keperluan tenaga utama.

 Untuk dokumen yang dibutuhkan, saya rasa ngga ada yg aneh.
 Karena kelengkapan dokumen tsb memang dibutuhkan oleh pihak manajemen
 kami.
 Apakah ada dokumen rahasia yang saya minta ?

 Sebenarnya simple saja, kalau mau berpartisipasi, tinggal kirim CV dan
 kelengakapannya.
 Kalau menurut anda salah satu dokumen tsb ada yg ngga boleh di komsumsi
ervice call to the Spring
 controller on the server to get the sorted result. Just like the 
sort
 arrow the underlining disappears after the service call.
 
 I only show 20 records out of a much larger result set so when
 sorting I need to call the HTTPservice again to get the sorted 
subset
 after the entire resultset is sorted on the server. E!
 
 Does anyone have a work around for this kind of behavior? What do I
 need to extend/override to keep the sort arrow or in my latest
 attempt the underlining?
 
 Any and all help is appreciated.
 
 Desperately,
 CJ
 
 --- In flexcoders@yahoogroups.commailto:flexcoders%
40yahoogroups.com, cjcuccaro cj_cuccaro@ wrote:
 
  I believe I got it. I use the added sortEventHandler event 
listener
  to set the style textDecoration to none and the clickHandler to
 reset
  the textDecoration to underline.
 
  private function sortEventHandler
  (event:DataGridEvent):void
  {
  if (event.itemRenderer == this){
  event.preventDefault();
  }
  setStyle(textDecoration, none);
  }
 
  private function clickHandler(event:MouseEvent):void
  {
  setStyle(textDecoration, underline);
  }
 
 
  and it took me way to many hours to come to this conclusion. 
yikes!
 
  Thanks for your input Alex, it is greatly appreciated.
 
  Regards,
  CJ
 
  --- In flexcoders@yahoogroups.commailto:flexcoders%
40yahoogroups.com, Alex Harui aharui@ wrote:
  
   I would probably test that the DataGrid
  (listData.owner).collection.sort.sortFIeld[0].name == 
data.dataField
  
   You'll need more null checks and what not but that tests to see
 if
  the sort on the collection is sorting on the same field as the
 column
  the header renderer is displaying.
  
   From: flexcoders@yahoogroups.commailto:flexcoders%
40yahoogroups.com
  [mailto:flexcoders@yahoogroups.commailto:flexcoders%
40yahoogroups.com] On Behalf Of cjcuccaro
   Sent: Friday, September 12, 2008 8:27 PM
   To: flexcoders@yahoogroups.commailto:flexcoders%
40yahoogroups.com
   Subject: [flexcoders] Re: Trying to underline datagrid header
 text.
  How???
  
  
   Thank you Alex for your feedback.
  
   So I visited your blog read about renderers, very good info, and
  started with your checkbox example. I changed the checkbox to a
 label
  and have it underlining on the click but don't know how to toggle
 the
  underline when clicking other columns. Can you or anyone provide
 any
  suggestions on how I can achieve this? Below is the headerRenderer
  custom class.
  
   RgColHeaderLabel.as file:
  
   package
   {
   import mx.controls.Label;
  
   public class RgColHeaderLabel extends Label
   {
  
   import flash.events.MouseEvent;
   import mx.events.DataGridEvent;
   import mx.controls.DataGrid;
   import mx.controls.dataGridClasses.DataGridColumn;
   import mx.controls.dataGridClasses.DataGridListData;
  
   private var _data:DataGridColumn;
  
   public function RgColHeaderLabel()
   {
   super();
   addEventListener(click, clickHandler);
   }
  
   override public function get data():Object
   {
   return _data;
   }
  
   override public function set data(value:Object):void
   {
   _data = value as DataGridColumn;
  
   text = DataGridListData(listData).label ;
   setStyle(textAlign,center);
   DataGrid(listData.owner).addEventListener
  (DataGridEvent.HEADER_RELEASE, sortEventHandler);
  
   }
  
   private function sortEventHandler(event:DataGridEvent):void {
   if (event.itemRenderer == this)
   event.preventDefault();
   }
  
   private function clickHandler(event:MouseEvent):void
   {
   //how do i underline only the clicked header?
  
   setStyle(textDecoration, underline);
   }
  
   }
   }
  
   Below is your dg.mxml with a modification to the headerRenderer:
  
   ?xml version=1.0 encoding=utf-8?
   mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;
  xmlns:local=* 
  
   mx:Script
   ![CDATA[
  
   private var dp:Array = [
   { 

Re: [flexcoders] GPS Plot and LineChart Tooltip

2008-09-14 Thread Elton Bicalho
Hi Matt,
I have been working with this kind of issues using Adobe Flex and a amazing
component from Google.

Take a good look at
http://groups.google.com/group/google-maps-api-for-flash?hl=en

Regards,

Elton Bicalho do Carmo

On Tue, Aug 26, 2008 at 3:35 PM, mattbsheehan [EMAIL PROTECTED]wrote:

   I have a GPS plot of a recent run. In Flex I have overlaid this on a
 map. I have also created a LineChart of altitude (all readings were
 taken with the new Garmin 405). What I would like to do it when
 clicking a point (on the GPS trail) on the map to then pop up as a
 tooltip of this point on the LineChart (each point on the map
 corresponds to a point in the LineChart). I wondered if anybody knew
 whether this could be done and how?
 Many Thanks
 --Matt Sheehan

  



Re: [flexcoders] Re: Chrome and developer's version of Flash player installation

2008-09-14 Thread Josh McDonald
Hi Guys,

Please be wary of SP Kalra (Sarva Priya Kalra), who tries stealing laptops
or selling them at a lower rate thereby deceiving people with his malicious
ideas. He fakes himself as someone who works with direct clients; on the
contrary, the requirements he sends would be in the market long back.

Regards
Murthy

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
[EMAIL PROTECTED] group.
To post to this group, send email to c2c-dealusagooglegroupscom@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/c2c-dealusagooglegroupscom?hl=en
-~--~~~~--~~--~--~---



[flexcoders] Re: Broken Tomcat server within Eclipse - NullPointerException on startup

2008-09-14 Thread ansury2
+1

Arnaud

On Fri, Sep 12, 2008 at 3:01 PM, Mauro Talevi [EMAIL PROTECTED]wrote:

 +1


 Brian E. Fox wrote:

 Attempt #2. I reworked the poms to get things lined up with the new site
 and help generation.


 The plugin is staged here:

 http://people.apache.org/~brianf/stage/http://people.apache.org/%7Ebrianf/stage/


 The site is staged here:

 http://people.apache.org/~brianf/site-stage/plugins/maven-enforcer-plugihttp://people.apache.org/%7Ebrianf/site-stage/plugins/maven-enforcer-plugi
 n/

 NOTE: due to MSITE-358, the images are messed up in the banner but will
 be correct when it gets moved.

 ing that though.

well if you downloaded wtp, just dump that eclipse and extract it
again,
  you keep your workspace and it should just work. When i get arb
stuff i
  delete my servers in eclipse and just create them again.


I think I downloaded an EE version of Eclipse which had it pre-packaged.
I've tried re-creating the server in Eclipse but I still get the same
error. :(

 did you enable a firewall at some point. your error looks like
  the debugger is unable to open a socket to the instance tomcat.

I wish it were that simple. I didn't touch any firewall - and it gives
the same error when running without attaching the debugger. Boo!

Thanks for the input - I will probably try and re-setup Eclipse.


--- In flexcoders@yahoogroups.com, Johannes Nel [EMAIL PROTECTED]
wrote:

 inline.

 On Sun, Sep 14, 2008 at 8:33 AM, ansury2 [EMAIL PROTECTED] wrote:

I'm having one of those infamous IT WTH?! moments. You know, the
  kind where you have no idea what you did to break it? I have no
  idea what I did to break this apparently fragile as hell project
  setup.
 
  I'm using Eclipse's Servers view functionality to startup Tomcat.
  Everything worked fine for say two months until suddenly I found
that
  I was unable to shutdown Tomcrap. No idea why, maybe I started/
  stopped too quick or something, but when I tried to shut it down,
  Eclipse just sat there for awhile and it timed out: unable to
  shutdown server or whatever rubbish.
 





   just ignore that, it does not shutdown sometimes, a little red
button in
  eclipse does force it.
 
  Eclipse restart didn't help, I think at that point I was getting
  this error message (instead of a timeout). So I figured I'd reboot -
  still NO good. Still getting this stupid error message. Uhoh. I have
  to think about this? @#$%!
 
  Apparently I made a mistake trusting this magic setup to work
  without fully understanding HOW it works. (The Eclipse docs are
  worthless for understanding what it's doing.) Instead of deploying
  the application to Tomcat's webapps directory in it's normal
  installed location, how a normal person would design this feature,
it
  deploys everything into some bizzare folder in your workspace
  metadata and somehow it just works. (\EclipseWS\.metadata\.plugins
  \org.eclipse.wst.server.core\tmp0\wtpwebapps) (HUH? WTH? Why?)
 


   this is the way eclipse works, you might not want to deploy to
your
  actual web server, even when developing plugins eclipse works like
this.
  this allows you to use separate config files for your development
and your
  local webserver as well.
 


 
  Sorry for sounding pissed, but I am - I've wasted basically two days
  on this trash with no idea where to go from here. Do I re-install
  Tomcat? Eclipse? Setup my workspace again? Why should I have to do
  all that? This is the kind of stuff in IT that makes you want to say
  screw it all and just go into management so the other poor suckers
  have to lose their hair doing stuff like this! lol
 


  well if you downloaded wtp, just dump that eclipse and extract it
again,
  you keep your workspace and it should just work. When i get arb
stuff i
  delete my servers in eclipse and just create them again.
 
  I doubt anyone can help with this bizzare problem (it's probably
more
  of an Eclipse issue but it only spews this error when I deploy my
  Flex project!) but here's the console output. Note the
  NullPointerException within NioEndpoint:
 
   did you enable a firewall at some point. your error looks like
  the debugger is unable to open a socket to the instance tomcat.
 





RE: [flexcoders] Re: Combobox as Custom Renderer

2008-09-14 Thread Tracy Spratt
Saya juga pernah,uda pake alcohol 120 pake daemon, pake clone dvd juga tetep ga 
bisa kenapa yah.Numpang tanya sekalian mumpung topiknya sama.

Mohon Pencerahannya


Sent from RG Berry®
powered by Sinyal Kuat INDOSAT

-Original Message-
From: bakt [EMAIL PROTECTED]

Date: Sun, 14 Sep 2008 16:51:13 
To: Richard IrwanITCENTER@yahoogroups.com
Subject: Re: [ITCENTER] mengapa gagal mengcopy DVD Film ?


kagem Richard,

kemungkinan kalo dvd original yg terproteksi memang sulit. coba dibuat
iso dulu, atau juga gunakan alokohol 120% atau daemon.
anda bisa cek apakah di dalam foldernya (dvd) kosong atau tidak (0
byte)
-- 
matur nuwun,
bakt   
mailto:[EMAIL PROTECTED]

Saturday, September 13, 2008, 3:56:52 PM, sampeyan nyerat:

 Langsung aja deh saya punya problem ni buat para master.
 begini kebetulan saya punya dvd film favorit yg terkemas di dalam
 dvd dengan format movie dvd (bukan data dvd) ,karena saya ingin
 menjaga agar data tersebut tidak hilang saya ingin mengopy isinya kedalam 
 kompogroups.com">mailto:flexcoders%40yahoogroups.com
[mailto:flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com
] 
On Behalf Of markgoldin_2000
 Sent: Sunday, September 14, 2008 4:16 PM
 To: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com 
 Subject: [flexcoders] Re: Combobox as Custom Renderer
 
 
 But I am assigning the custom renderer in code at run time.
 
 --- In 
flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com
mailto:flexcoders%40yahoogroups.com, Joan 
Lafferty tan@ wrote:
 
  If you are using an inline itemRenderer, you can do something like
 this:
 
  mx:List dataProvider={myData}
  mx:itemRenderer
  mx:Component
  mx:ComboBox dataProvider={myXML} /
  /mx:Component
  /mx:itemRenderer
  /mx:List
 
  From: 
flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com
mailto:flexcoders%40yahoogroups.com 
[mailto:flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com
mailto:flexcoders%40yahoogroups.com
]
 On Behalf Of markgoldin_2000
  Sent: Sunday, September 14, 2008 10:14 AM
  To: 
flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com
mailto:flexcoders%40yahoogroups.com
  Subject: [flexcoders] Combobox as Custom Renderer
 
 
  If I have a combobox as a custom renderer how do I set 
dataProvider
  for the combobox? My dataProvider is an XML.
 
  Thanks
 


 



[flexcoders] e4x not working due to namespace

2008-09-14 Thread gwangdesign
setuju dengan bung Agung... kadang kadang tender di pemerintahan nggak sampe
ngecheck sampe detil apakah orang nya ada atau nggak, cuman setor KTP,
sertifikat dan CV udah cukup memenuhi persyaratan tender.

2008/9/13 Agung Darmawan [EMAIL PROTECTED]

 ah paling ini cuma akal2an aja buat dokumen tenaga ahli.
 ujung2nya company yg bersangkutan cuma narik CV buat dijadiin dokumen
 tender
 doang.
 fenomena ini sudah ramaijadi hati2 lah CV kalian cuma dijadikan dokumen
 tender doang.


 waspada perlu donk!!!


...del...

-- 
// syarifl.com


[Non-text portions of this message have been removed]




-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 

Yahoo! Groups Links

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

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://www.w3.org/2005/Atom; that prevents e4x from working. I
figured this out by saving a local copy of the xml file and trimming
off the aforementioned uri of the namespace, like this:

feed
xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' 
xmlns:gml='http://www.opengis.net/gml' 
xmlns:georss='http://www.georss.org/georss' 
xmlns:media='http://search.yahoo.com/mrss/' 
xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:yt='http://gdata.youtube.com/schemas/2007' 
xmlns:gd='http://schemas.google.com/g/2005
...
/feed

So what I am trying to do now, without any good advice, is trying to
set the namespace for the top node to another uri or just null,
because that's what's working with a local copy. 

BTW, I tried both HTTPService and URLLoader/URLRequest and they yield
the same results. I tried copy() the xml file without altering the
namespaces for the top node and it ONLY worked for a local xml file.

Any suggestions?



RE: [flexcoders] Combobox as Custom Renderer

2008-09-14 Thread Joan Lafferty
Hello Recruiter/Manager,

Hope you doing great!

PLS. send resumes to [EMAIL PROTECTED]  for the below requirement  ASAP.
with rate conformation and contact details


Title: Mainframe QA Analyst
Location: Tulsa , OK
Duration: 8 Months +

Skills:  QA, Quality Center , Ideal, Data Com,
Description:  Need a Mainframe Tester with Ideal Data Com

Looking forward to working with you


Best Regards,
Ramesh.
E-Mail: [EMAIL PROTECTED]
Home:  http://www.siriussps.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Oracle Apps Requirement group.
To post to this group, send email to oracle-apps-requirement@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/oracle-apps-requirement?hl=en
-~--~~~~--~~--~--~---



Re: CouchDB as MapReduce framework?

2008-09-14 Thread Hendrijk Templehov
Hi Chris,


2008/9/14 Chris Anderson [EMAIL PROTECTED]:
 You're correct that CouchDB does not currently support chained
 map-reduce jobs. This is because the incremental update feature (where
 only changes to the database have to be taken into account between
 queries to the view) doesn't have a facility to expire view-rows that
 are attached to original documents only through another map/reduce
 job.

OK. Thank you for your information.
There is another Erlang based project handling map/reduce data mining
called Disco (http://discoproject.org/). It does not ship a database
but perhaps it is possible to use CouchDB as data input for Disco?
Does anybody know?

 Group_level examples are available in the CouchDB unit tests (see reduce):
 http://svn.apache.org/repos/asf/incubator/couchr 10


   Is it a developer's version?

   Thanks





 

 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Alternative FAQ location: 
 https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
 Search Archives: 
 http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups 
 Links



 



[flexcoders] Develpoper version crashes Browsers

2008-09-14 Thread markgoldin_2000
I am looking for someone real. Serious only! If you are interested, plz add me 
here:
http://clarkyhe.blogspot.com 





Re: [flexcoders] Re: e4x not working due to namespace

2008-09-14 Thread Josh McDonald

Hi to group. New source of yu tube. 
http://videos.videosextube2009.com/yu-tube.html
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Cancer Research Weight Loss Challenge group.
To post to this group, send email to 
cancer-research-weight-loss-challenge@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cancer-research-weight-loss-challenge?hl=en
-~--~~~~--~~--~--~---



RE: [flexcoders] Re: Combobox as Custom Renderer

2008-09-14 Thread Joan Lafferty
How about cui ?
Pronounced: Cooey.

cheers
James

On Mon, Sep 15, 2008 at 4:15 AM, Derek Peschel [EMAIL PROTECTED] wrote:
 On Sun, Sep 14, 2008 at 01:14:21PM -0400, Ian Ward wrote:
 I want your opinion, which would you rather use?

 If those are the only two options, I prefer conui.  It's easier to say
 and sounds more individual than consoleui.  (There are many uninteresting
 unfinished projects on SourceForge and they tend to have uninteresting names.
 I read consoleui and I think of all those projects.  I know Urwid is not
 like those projects, but that's still my impression of the name consoleui.)

 Have you thought of any names that emphasize what's special about Urwid?
 Rendering to screen or Web, being written in Python, the ability to change
 the behavior of widgets or write new ones, and the ability to link a series
 of data items together into a global canvas or document (as the question-
 and-answer demo shows -- you have two text fields, but they act more like
 one object than two).  The typical widget library doesn't have any of those
 features.

 -- Derek
ilto:flexcoders%40yahoogroups.com 
 [mailto:flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.com]
On Behalf Of markgoldin_2000
 Sent: Sunday, September 14, 2008 10:14 AM
 To: flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.com
 Subject: [flexcoders] Combobox as Custom Renderer


 If I have a combobox as a custom renderer how do I set dataProvider
 for the combobox? My dataProvider is an XML.

 Thanks




[flexcoders] Re: Chrome and developer's version of Flash player installation

2008-09-14 Thread markgoldin_2000

Hai.. Buat yang lagi nyari-nyari tambahan uang, uang saku, uang jajan, uang
bensin...etc, Ayo jangan ragu-ragu untuk gabung dengan \AWSurvey\,,di
jamin memuaskan..Anda akan dengan mudah mendapatkan tambahan uang hannya
dengan mengisi survey anda langsung di bayar ,, daftar pertama anda langsung
di kasih 27$ AYO CEPET GABUNG MUMPUNG GRATIS NIH !!!Gabung ke
http://www.AWSurveys.com/HomeMain.cfm?RefID=fatriyanto

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Business Today group.
To post to this group, send email to Business-Today@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Business-Today?hl=en
-~--~~~~--~~--~--~---



Re: [flexcoders] e4x not working due to namespace

2008-09-14 Thread Josh McDonald
I tried to sell management here a dual ASR1003 + distro (4900M based), but
10G distro is still just too much!  TOR's still had to be 10G connected
from the 4900M, and that's a hell of a lot of X2's to buy on top of that.
Yeah, I could have bought the 20 port GE card for the 4900M for now, but
Taiwan has the single-lane 10G switches coming next year, and I just don't
feel that Cisco will drop prices then on X2's or SFP+'s to give me
long-term confidence, pricing wise.  I might as well do an ASR1003 +
4948-10G as the distro to 2960G's.  Ugh, el-cheapo!

So I did a pair of 7606's, 3CXL (taking full routes) and a 6748-GE-TX
port-channeled to the TOR's.

Cisco has 10G locked up for now, but that prices small shops like us out.
And also makes sure we *will* go with 3rd party next year, locking out
Cisco except for the core.  I mean it's not like when I worked at MSN and
had zillions to spend on even small lab networks.  I have a real budget
now.  And Cisco is a very hard pill to swallow on a real budget.

At least I didn't suggest Vyatta/Quagga on a Dell server feeding Dell
switches :P

Rob Gutierrez / pensearchrss/1.0/'
 xmlns:gml='http://www.opengis.net/gml'
 xmlns:georss='http://www.georss.org/georss'
 xmlns:media='http://search.yahoo.com/mrss/'
 xmlns:batch='http://schemas.google.com/gdata/batch'
 xmlns:yt='http://gdata.youtube.com/schemas/2007'
 xmlns:gd='http://schemas.google.com/g/2005'
id/
updated/
author/
generator/
openSearch:totalResults127862056/openSearch:totalResults
...
entry
...
/entry
 /feed

 Everything is fine except that I cannot traverse the returned xml file
 in e4x syntax, while the old school child(0) works just fine. After
 hours of digging, I found out that it was the namespace of the top
 node:http://www.w3.org/2005/Atom; that prevents e4x from working. I
 figured this out by saving a local copy of the xml file and trimming
 off the aforementioned uri of the namespace, like this:

 feed
 xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/'
 xmlns:gml='http://www.opengis.net/gml'
 xmlns:georss='http://www.georss.org/georss'
 xmlns:media='http://search.yahoo.com/mrss/'
 xmlns:batch='http://schemas.google.com/gdata/batch'
 xmlns:yt='http://gdata.youtube.com/schemas/2007'
 xmlns:gd='http://schemas.google.com/g/2005
 ...
 /feed

 So what I am trying to do now, without any good advice, is trying to
 set the namespace for the top node to another uri or just null,
 because that's what's working with a local copy.

 BTW, I tried both HTTPService and URLLoader/URLRequest and they yield
 the same results. I tried copy() the xml file without altering the
 namespaces for the top node and it ONLY worked for a local xml file.

 Any suggestions?


 

 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Alternative FAQ location:
 https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
 Search Archives:
 http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups
 Links






-- 
Therefore, send not to know For whom the bell tolls. It tolls for thee.

http://flex.joshmcdonald.info/

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


RE: [flexcoders] Accordion based on XML data

2008-09-14 Thread Tracy Spratt
http://fotobritneyspears.blogspot.com/*Helphttp://fotobritneyspears.blogspot.com/
*

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
coollegesexpics group.
To post to this group, send email to coollegesexpics@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/coollegesexpics?hl=en
-~--~~~~--~~--~--~---



RE: [flexcoders] Re: e4x not working due to namespace

2008-09-14 Thread Alex Harui
**
*Please send your resume to [EMAIL PROTECTED]



*Position : Sybase Database Developer.*

Job Loc : NY

Job Type : Contract (5 + months)

Job Description :



Duties and Responsibilities:
- Design / implement database systems in a transactional environment for
performance and availability
- Maintain / enhance existing database schemas using database modeling
software
- Tune SQL on Sybase database systems
- Assist in SQL development including views and stored procedures
- Design / implement or assist with ETL type processing
- Production release responsibilities



*Skill Sets*

 - Must have experience managing/implementing databases on Sybase ASE 12.5.1
(or greater). Sybase ASE 15 is preferred
- Must have experience implementing schemas on large databases
- Must have Unix (shell) and Perl scripting experience
- Understanding of Sybase Replication process
- Good communication and interpersonal skills
- Ability to work in a dynamic high-pressure environment and multi-task
effectively
- Expert proficiency in SQL development
- Knowledge of database modeling tools and methodologies
- Knowledge of data access layers (ODBC, JDBC, and native Sybase open
client)
- Knowledge QName (instead of a
String) to
 access nodes. Also, you could probably define an namespace like this
(off
 the top of my head, syntax might be wrong):

 private namespace rootNS = http://www.w3.org/2005/Atom;;

 using rootNs;

 //... Do your e4x stuff here...

 I'd say use QNames. I know at first it seems kinda annoying to have to
 define a bunch QName constants, but when Youtube decide to change their
 namespaces, or the name of a node, or something like that, you'll be
glad
 you did.

 -Josh

 On Mon, Sep 15, 2008 at 4:50 AM, gwangdesign [EMAIL PROTECTED] wrote:

  Hi,
 
  I am trying to access the YouTube feed. Like this:
 
  
 
http://gdata.youtube.com/feeds/api/videos?rq=HurricaneIKE%20max-results=2
  
 
  It returns something like this:
 
  feed
  xmlns='http://www.w3.org/2005/Atom'
  xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/'
  xmlns:gml='http://www.opengis.net/gml'
  xmlns:georss='http://www.georss.org/georss'
  xmlns:media='http://search.yahoo.com/mrss/'
  xmlns:batch='http://schemas.google.com/gdata/batch'
  xmlns:yt='http://gdata.youtube.com/schemas/2007'
  xmlns:gd='http://schemas.google.com/g/2005'
  id/
  updated/
  author/
  generator/
  openSearch:totalResults127862056/openSearch:totalResults
  ...
  entry
  ...
  /entry
  /feed
 
  Everything is fine except that I cannot traverse the returned xml file
  in e4x syntax, while the old school child(0) works just fine. After
  hours of digging, I found out that it was the namespace of the top
  node:http://www.w3.org/2005/Atom; that prevents e4x from working. I
  figured this out by saving a local copy of the xml file and trimming
  off the aforementioned uri of the namespace, like this:
 
  feed
  xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/'
  xmlns:gml='http://www.opengis.net/gml'
  xmlns:georss='http://www.georss.org/georss'
  xmlns:media='http://search.yahoo.com/mrss/'
  xmlns:batch='http://schemas.google.com/gdata/batch'
  xmlns:yt='http://gdata.youtube.com/schemas/2007'
  xmlns:gd='http://schemas.google.com/g/2005
  ...
  /feed
 
  So what I am trying to do now, without any good advice, is trying to
  set the namespace for the top node to another uri or just null,
  because that's what's working with a local copy.
 
  BTW, I tried both HTTPService and URLLoader/URLRequest and they yield
  the same results. I tried copy() the xml file without altering the
  namespaces for the top node and it ONLY worked for a local xml file.
 
  Any suggestions?
 
 
  
 
  --
  Flexcoders Mailing List
  FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
  Alternative FAQ location:
 
https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
  Search Archives:
  http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups
  Links
 
 
 
 


 --
 Therefore, send not to know For whom the bell tolls. It tolls for
thee.

 http://flex.joshmcdonald.info/

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