Re: [flexcoders] Implement Multiple Interfaces in a MXML component

2009-09-08 Thread Fidel Viegas
Hi Michael, On Tue, Sep 8, 2009 at 10:48 AM, Michael Ridlandrid...@gmail.com wrote: Hi I want to be able to implement multiple interfaces in a MXML Component. But I get this error, 'Attribute implements was already specified for element mx:Canvas.'. Without the sample code, it is really

Re: [flexcoders] Bind ComboBox to returning XML (HOW TO)

2009-03-23 Thread Fidel Viegas
Here is another alternative: declare an HTTPService like this: mx:HTTPService id=listService url=path/to/list.jsp method=POST showBusyCursor=true fault=onFault(event); result=onResult(event); useProxy=false/ and an array collection mx:ArrayCollection

Re: [flexcoders] MySQL and Flex

2009-03-22 Thread Fidel Viegas
On Sun, Mar 22, 2009 at 10:14 AM, christophe_jacquelin christophe_jacque...@yahoo.fr wrote: Hello, How to use mySQL with Flex ? Have a look at aSQL (http://asql.mooska.pl/). I think it is still experimental. I have tried it once, and I was able to communicate with mysql from both AIR and the

Re: [flexcoders] Compilers

2009-03-09 Thread Fidel Viegas
On Mon, Mar 9, 2009 at 7:09 AM, James Riffe jtri...@24x7-systems.com wrote: Does Flex have both a 32bit and a 64 bit compiler? Hi James, The Flex compiler is implemented in Java. So, if you want to take advantage of 64-bit architecture, you will need a 64-bit JVM. Fidel.

[flexcoders] Flex News Scroller

2009-03-06 Thread Fidel Viegas
Hi all! I was wondering if someone has an example of a news scroller in Flex. I have searched google and found nothing related to it, so I was wondering if anyone knows of any link somewhere. Thanks! Fidel.

Re: [flexcoders] Flex News Scroller

2009-03-06 Thread Fidel Viegas
On Fri, Mar 6, 2009 at 9:53 AM, Tom Chiverton tom.chiver...@halliwells.com wrote: On Friday 06 Mar 2009, Fidel Viegas wrote: I was wondering if someone has an example of a news scroller in Flex. Snackr Hi Tom, Thanks for the reply, but I am looking more for a news ticker to insert

Re: [flexcoders] Database connection from AIR application

2008-12-17 Thread Fidel Viegas
On Thu, Dec 18, 2008 at 7:59 AM, kotha poornima poorni_ag...@yahoo.com wrote: Hi all, I am going to create a AIR Desktop application. Am i able to connect to the database such as SQL Server or MYSQL from AIR to retrieve data. Can anyone give me an idea how can i do this task or send me any

Re: [flexcoders] How to wite a javascript that calls to ActionScript

2008-12-10 Thread Fidel Viegas
On Tue, Dec 9, 2008 at 6:14 PM, wkolcz [EMAIL PROTECTED] wrote: Sorry about that. Its not really my fault. Its the flexcoder list system. Actually I emailed one at 5pm yesterdays, waited for it to show up but it didnt. So I sent another one about 8:30 pm, it didn't show up either. Then I sent

Re: [flexcoders] How to wite a javascript that calls to ActionScript

2008-12-09 Thread Fidel Viegas
On Tue, Dec 9, 2008 at 2:07 PM, wkolcz [EMAIL PROTECTED] wrote: Can someone show me how to write a javascript function that calls to a Flex/AS function before a browser window closes? In my AS contructor I have: if (ExternalInterface.available)

[flexcoders] Barcode Scanners and Flex

2008-11-05 Thread Fidel Viegas
Hello all, I was wondering if anyone has tried reading a Barcode Scanner from Flash using either Flex or Flash CS. Since some Barcode Scanners emulate the keyboard, I thought that it should be possible to read it from Flash. Has anyone had any luck with that? And how did you go about doing it?

Re: [flexcoders] Re: Barcode Scanners and Flex

2008-11-05 Thread Fidel Viegas
On Wed, Nov 5, 2008 at 10:24 PM, markgoldin_2000 [EMAIL PROTECTED] wrote: With barcode readers you have two options: Keyboard scanner or serial port scanner. With a keyboard scanner you have to move a cursor to a text box you are entering data into, then a scan will go into that field. the

Re: [flexcoders] Re: Barcode Scanners and Flex

2008-11-05 Thread Fidel Viegas
On Wed, Nov 5, 2008 at 11:01 PM, markgoldin_2000 [EMAIL PROTECTED] wrote: In general, any modern scanner should work. As long as it has keyboard emulation. And I believe the majority of nowadays scanners have it. Thanks!

Re: [flexcoders] Re: Barcode Scanners and Flex

2008-11-05 Thread Fidel Viegas
On Thu, Nov 6, 2008 at 12:57 AM, Cato Paus [EMAIL PROTECTED] wrote: Hi Fidel, I wrote a litle app some weeks ago where I tested a RFID reader that emulate keyboard, here it is if you want it :) ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;

Re: [flexcoders] What would be the equivalent asp.net script of this PHP one (to upload a file)

2008-09-30 Thread Fidel Viegas
On Tue, Sep 30, 2008 at 6:16 PM, gilbert_mizrahi [EMAIL PROTECTED] wrote: I have been playing around uploading files from Flex/AIR to php with this script: ?php $tempFile = $_FILES['Filedata']['tmp_name']; $fileName = $_FILES['Filedata']['name']; if(move_uploaded_file($tempFile, ./videos/

Re: [flexcoders] Multiple viewstacks?

2008-08-22 Thread Fidel Viegas
On Fri, Aug 22, 2008 at 8:49 PM, Tracy Spratt [EMAIL PROTECTED] wrote: Absolutely you can nest ViewStacks. What didn't work. I second this. I have used it and it worked. Fidel.

Re: [flexcoders] JSON as dataprovider

2008-08-14 Thread Fidel Viegas
On Thu, Aug 14, 2008 at 2:50 PM, grimmwerks [EMAIL PROTECTED] wrote: Ok I've actually had to do this slightly different - as there will be a lot of flipping between items; what I'd hoped to do was something like like a static var of 'db' as ArrayCollection and do a db.removeAll() -- but when

Re: [flexcoders] JSON as dataprovider

2008-08-13 Thread Fidel Viegas
On Thu, Aug 14, 2008 at 5:54 AM, grimmwerks [EMAIL PROTECTED] wrote: I've got a class that gets a JSON object - and within this JSON object is a list of items. I'm trying to do what I think is very simple -- but I'm missing something -- being able to bind a tilelist to an array of this

Re: [flexcoders] JSON as dataprovider

2008-08-13 Thread Fidel Viegas
On Thu, Aug 14, 2008 at 6:19 AM, Fidel Viegas [EMAIL PROTECTED] wrote: On Thu, Aug 14, 2008 at 5:54 AM, grimmwerks [EMAIL PROTECTED] wrote: I've got a class that gets a JSON object - and within this JSON object is a list of items. I'm trying to do what I think is very simple -- but I'm

Re: [flexcoders] Re: How does AIR apps connect to database?

2008-08-11 Thread Fidel Viegas
On Mon, Aug 11, 2008 at 10:57 AM, Joshua Jackson [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, Douglas McCarroll [EMAIL PROTECTED] wrote: It sounds like you want to connect to a local DB. BlazeDS works fine to connect to a remote DB but for a local DB the standard approach is

Re: [flexcoders] Flex access of RMI server

2008-08-07 Thread Fidel Viegas
On Thu, Aug 7, 2008 at 11:07 PM, ron_mori [EMAIL PROTECTED] wrote: While I go off and explore the land of 'Flex to RMI' connections, anyone want to offer any insights? Things like: - Can you do this? Seems like a natural with BlazeDS remote objects. Just change the URL to point to

Re: [flexcoders] on the fly form validation

2008-07-28 Thread Fidel Viegas
On Mon, Jul 28, 2008 at 2:26 PM, Scott [EMAIL PROTECTED] wrote: In thinking about forms and flex events, how hard is it to validate a form as a user tabs through it? Without creating a ton of event handlers, is there an easy way to accomplish this? Hi Scott, Have a look at validators. Check

Re: [flexcoders] Digital clock

2008-07-15 Thread Fidel Viegas
I have asked this question before. If you do a search on the archive, you should be able to find an example posted by someone. But, generally speaking, it is just like Gordon has mentioned. Fidel. On Tue, Jul 15, 2008 at 5:59 PM, Easow Jacob [EMAIL PROTECTED] wrote: Hi, Any one having an

Re: [flexcoders] search functionality

2008-07-09 Thread Fidel Viegas
On Wed, Jul 9, 2008 at 11:43 AM, litesh_b321 [EMAIL PROTECTED] wrote: hi guys can you please tell me how can we designed a search functionality where backend is XML and frontend is in flex.where parameter of search is not fixed. user can search by various fields Hi there, This is something

Re: [flexcoders] Have doubt on Remote Object

2008-07-07 Thread Fidel Viegas
On Mon, Jul 7, 2008 at 3:20 PM, Tom Chiverton [EMAIL PROTECTED] wrote: On Saturday 05 Jul 2008, satishedara wrote: with out AMF can we use remote call to connect the java? Yes, but not using AMF - you can connect to a normal web service, or make REST-type AJAX calls instead. Or use the

Re: [flexcoders] Translate HTTPService

2008-07-06 Thread Fidel Viegas
On Sun, Jul 6, 2008 at 8:51 PM, jovialrandor [EMAIL PROTECTED] wrote: I have an HTTPService call that returns values. How do I convert to the following object format? private var inputTable2:Object = { Nevada:John Smith, Northern California:Jane Smith, Southern California:Al Gore,

Re: [flexcoders] question for the sample code for BlazeDS?

2008-07-04 Thread Fidel Viegas
On Sat, Jul 5, 2008 at 2:17 AM, markflex2007 [EMAIL PROTECTED] wrote: Hi, I install BlazeDS turnkey.the samples work fine now. I see the sample web root is D:\blazeDS\tomcat\webapps\samples.but I only can see the swf and html files. Hi Mark, They are found under

Re: [flexcoders] Flex app only works on Windows?

2008-07-02 Thread Fidel Viegas
It is crashing my browser under Linux Ubuntu 7.0.4 + Firefox 2.0.0.14 Fidel. On Tue, Jul 1, 2008 at 8:01 PM, jason_beloncik [EMAIL PROTECTED] wrote: Hi all, I built a Flex app which works fine on Windows machines, but on Macs and Linux it won't load. It shows the little loading box with the

Re: [flexcoders] How do I hide rows in a datagrid display?

2008-07-02 Thread Fidel Viegas
On Tue, Jul 1, 2008 at 8:10 PM, Tracy Spratt [EMAIL PROTECTED] wrote: Please do a bit of searching before posting. This was answered in a thread already today. Actually, it was yesterday. But, you are right. People should search the list before posting. Anthony, next time try to refine your

Re: [flexcoders] Getting Started with Java for use with BlazeDS/LCDS

2008-06-30 Thread Fidel Viegas
On Mon, Jun 30, 2008 at 3:29 AM, danneri21 [EMAIL PROTECTED] wrote: okay so I want to get going with Blazeds or live cycle data services. but I'm not sure where to start because I've been playing around a little bit and it seems like you have to know Java to create all these classes for the

Re: [flexcoders] Using Datagrid Data

2008-06-27 Thread Fidel Viegas
On Fri, Jun 27, 2008 at 6:35 PM, ghus32 [EMAIL PROTECTED] wrote: Hello everyone, Is it possible to send data from a poulated datagrid?? For example, I want to send row1 and make it a var.. is this possible? Thanks What exactly are you trying to achieve? Send data to a webservice, remote

Re: [flexcoders] Encoding Problem in linux

2008-06-19 Thread Fidel Viegas
2008/6/19 Deniz Davutoglu [EMAIL PROTECTED]: Hello Guys, Today I switched completely to Ubuntu Linux. Last month I produced some CMS for our corporate website in FLEX. From Linux I tried to update some content but I experienced something wear. When I try to enter new data from keyboard

Re: [flexcoders] Example of HTTPService.

2008-06-17 Thread Fidel Viegas
Hi Harshal, Have a look at the documenation. You have some examples. Or just search on google. There are plenty of examples on the net. Fidel. On Mon, Jun 16, 2008 at 10:09 AM, Harshal Anil Bhave [EMAIL PROTECTED] wrote: Hello People, I am new to the group and new to Flex as well.

Re: [flexcoders] Flex and java

2008-06-13 Thread Fidel Viegas
On Fri, Jun 13, 2008 at 2:44 PM, tosisodia [EMAIL PROTECTED] wrote: hi guys, I am trying to create a POS (point of sale) application which would be deployed at one system only. The back end logic (in nascent stage) is written in java/spring/hibernate, but I want my GUI to be in FLEX/AIR. So

Re: [flexcoders] Re: Flex and java

2008-06-13 Thread Fidel Viegas
On Fri, Jun 13, 2008 at 4:10 PM, tosisodia [EMAIL PROTECTED] wrote: Thanks Fidel, That clears a few things and raises a few more questions... Using a server for a standalone application looks a bit expensive. I wonder if it's possible to code whole business logic in Action Script. Is there

Re: [flexcoders] Re: Flex and java

2008-06-13 Thread Fidel Viegas
On Fri, Jun 13, 2008 at 4:49 PM, tosisodia [EMAIL PROTECTED] wrote: Thanks Fidel, Thanks a lot for your insight and quick replies. I think I will code everything using AIR, only thing I need to check is hardware interfacing and transaction management. Hum... I thought you wanted to develop a

Re: [flexcoders] How should we access our Flex apps from the browser?

2008-06-06 Thread Fidel Viegas
On Fri, Jun 6, 2008 at 4:02 PM, Nikunj Shroff [EMAIL PROTECTED] wrote: you must deploy your application on some server. then you can access your access your html on url. moreover your url must have a port as well. for ex: localhost:8080 You only use a port if it isn't the default port 80.

Re: [flexcoders] Flex for desktop application

2008-06-06 Thread Fidel Viegas
On Fri, Jun 6, 2008 at 2:30 PM, p.prasha [EMAIL PROTECTED] wrote: Hi Friendns, Is it possible to use flex for desktop application. If i have a java application(desktop application not web application) can i use flex as front end for it. I mean to say can i replace applet with flex. I have

Re: [flexcoders] OT (slightly) Gold standard method to make a web Flex app truly skinnable.

2008-06-05 Thread Fidel Viegas
On Thu, Jun 5, 2008 at 6:17 AM, David Kramer [EMAIL PROTECTED] wrote: Hello All, I'm beginning a project Flex, CF, IIS and SQL, and this time I'm finally going to make sure we all do the proper requirements gathering and research of best practices before writing code (or at least as

Re: [flexcoders] DataGrid What is the limit?

2008-06-04 Thread Fidel Viegas
On Wed, Jun 4, 2008 at 10:20 AM, Nadeem Manzoor [EMAIL PROTECTED] wrote: Hello Flex Gurus What is the maximum row count that a DataGrid Component can display at a time? Same Question is for Column so DataGrid Hi Nadeem, This topic has been discussed several times. Just do a search on the

Re: [flexcoders] Flex Kiosk Development

2008-06-03 Thread Fidel Viegas
On Tue, Jun 3, 2008 at 11:55 AM, Michael Trim [EMAIL PROTECTED] wrote: Hi Flexcoders, I hope this is sufficently on topic. Does anyone on the list have any experience of using Flex for Kiosk Development? I am interested in evidence (even anecdotal) for or against using the Flex Framework

Re: [flexcoders] Flex Kiosk Development

2008-06-03 Thread Fidel Viegas
On Tue, Jun 3, 2008 at 11:55 AM, Michael Trim [EMAIL PROTECTED] wrote: Hi Flexcoders, I hope this is sufficently on topic. Does anyone on the list have any experience of using Flex for Kiosk Development? I am interested in evidence (even anecdotal) for or against using the Flex Framework

Re: [flexcoders] Print a ticket

2008-05-27 Thread Fidel Viegas
On Tue, May 27, 2008 at 9:20 PM, Jean Szabo [EMAIL PROTECTED] wrote: Hello, I must print a ticket on a printer Epson (thermique), and I can send it a rtf file with special font for a quick print. How can I generate and send directely a rtf document with AIR ? Can I just send text, with

Re: [flexcoders] Populating Datagrid from Database

2008-05-23 Thread Fidel Viegas
On Fri, May 23, 2008 at 1:20 AM, kenny14390 [EMAIL PROTECTED] wrote: I am calling a PHP page, which reads my entire database and formats it to output as valid XML. How can I set this as the data provider for a Datagrid component? I know what the columns are, but not the number of rows nor the

[flexcoders] DataGrid custom itemRenderer using a ComboBox

2008-04-29 Thread Fidel Viegas
Hi All, I am trying to implement a DataGrid with one of the columns as a ComboBox. The thing is that I want to show a label with an icon when the column is in a normal (non editable state), and show the combo box when the user clicks the column to edit it. Does anyone have an example or some

Re: [flexcoders] Re: DataGrid custom itemRenderer using a ComboBox

2008-04-29 Thread Fidel Viegas
, Fidel Viegas [EMAIL PROTECTED] wrote: Hi All, I am trying to implement a DataGrid with one of the columns as a ComboBox. The thing is that I want to show a label with an icon when the column is in a normal (non editable state), and show the combo box when the user clicks

[flexcoders] DataGrid skinning problem

2008-04-19 Thread Fidel Viegas
Hello all, I am trying to create a skin for the DataGrid component in Flex SDK 3, and unfortunately my borderSkin and headerBackgroundSkin won't render. My problem is similar to this one http://img260.imageshack.us/my.php?image=datagridborderskinih5.png. Is this a known bug? Is there a

[flexcoders] Help using windowsXP theme

2008-04-15 Thread Fidel Viegas
Hi all, I have downloaded the windowsXP theme and wanted to give it a go, but unfortunately I get an error message that I don't know how to handle. I have looked all over the web, and found no solution. I have tried with both sdk2 and sdk3. This is the error I am getting: Error: unable to load

Re: [flexcoders] Editable DataGrid

2008-04-14 Thread Fidel Viegas
On Mon, Apr 14, 2008 at 5:09 PM, Alex Harui [EMAIL PROTECTED] wrote: There is a similar example on my blog (blogs.adobe.com/aharui) Hi Alex, Thanks for the link. I will have a look at that. Fidel.

[flexcoders] Editable DataGrid

2008-04-13 Thread Fidel Viegas
Hello all, How do I create a DataGrid that allows me to add new rows by hitting the tab key or pressing the mouse button in a DataGrid? Something like how MS Access works. Does anyone have a pointer to an example that does this? Thanks in advance, Fidel.

Re: [flexcoders] AIR SQL - Datatype issues

2008-04-07 Thread Fidel Viegas
On Mon, Apr 7, 2008 at 4:22 PM, Kevin Aebig [EMAIL PROTECTED] wrote: Hey all, I've looked at the documentation about 400 times now and can't seem to find myself an example of using a column of datatype Date within AIR SQL. I know that it's been customized to use Actionscript / JavaScript

[flexcoders] GroupBox component

2008-04-03 Thread Fidel Viegas
Hi all, Does anyone know how to emulate a GroupBox or knows of a ready made component? Thanks in advance, Fidel.

Re: [flexcoders] UK rapid adressing web api

2008-03-30 Thread Fidel Viegas
On Sun, Mar 30, 2008 at 2:12 PM, Glenn Williams [EMAIL PROTECTED] wrote: Hi anyone know if there is a rapid addressing (from postcode) web service with an actionScript/flex api. we are about to need to add this function to our current app and any heads-up would help Hi Glenn, I don't

Re: [flexcoders] Can a SWF be hosted on server A and have access to server B which does remoting?

2008-03-28 Thread Fidel Viegas
On Fri, Mar 28, 2008 at 3:58 PM, Mark Lapasa [EMAIL PROTECTED] wrote: Suppose the blaze server does have a crossdomain.xml. How can I point remote object to hit the blaze server at all? From what I've read so far, the .swf is usually hosted on the same server as the remoting server.

Re: [flexcoders] Re: Fwd: Security setup for a Flex application

2008-03-27 Thread Fidel Viegas
-and-Decrypt-in-ColdFusion --- In flexcoders@yahoogroups.com, Fidel Viegas [EMAIL PROTECTED] wrote: Hi Andrew, Thanks for taking the time to reply. But, that is not really what I am looking for. I guess my question was a bit vague. I am looking for ways to send encrypted data

[flexcoders] Security setup for a Flex application

2008-03-26 Thread Fidel Viegas
Hello folks, I have finished implementing a Flex application and now the client has requested that it is made available publicly. I am using BlazeDS in the backend, and I was wondering what the best security setup would be to make it a secure application. Does anyone have any suggestion on how

[flexcoders] Fwd: Security setup for a Flex application

2008-03-26 Thread Fidel Viegas
-Andrew --- In flexcoders@yahoogroups.com, Fidel Viegas [EMAIL PROTECTED] wrote: Hello folks, I have finished implementing a Flex application and now the client has requested that it is made available publicly. I am using BlazeDS in the backend, and I was wondering

Re: [flexcoders] GIS and Flex

2008-03-14 Thread Fidel Viegas
On Fri, Mar 14, 2008 at 7:52 AM, kapil b [EMAIL PROTECTED] wrote: Hi All, Does anybody have idea how to implement gis(geographyical information system) in flex with the gis data in it. What kind of gis data format files the flex requires so that i can retrieve the data and display it in

[flexcoders] Digital Clock

2008-03-04 Thread Fidel Viegas
Hello folks, Does anyone have a sample digital clock I can have a look at? Or give me a pointer? I have looked all over the web and was unable to find one. I hope someone can point me to some example. Thanks! Fidel.

Re: [flexcoders] Re: general flex usage question

2008-03-04 Thread Fidel Viegas
On Tue, Mar 4, 2008 at 5:03 PM, Abyss Knight [EMAIL PROTECTED] wrote: Flex really lends itself to application development, rather than entire website development. Widgets, full RIAs, and other projects within the site are more of how I use Flex in the workplace. Of course, with the Apache

Re: [flexcoders] Digital Clock

2008-03-04 Thread Fidel Viegas
On Tue, Mar 4, 2008 at 5:30 PM, Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 04 Mar 2008, Fidel Viegas wrote: Does anyone have a sample digital clock I can have a look at? Or give me a pointer? Would this not just be a suitable font and mx:Text ? Yes. Sometimes your brains are so

Re: [flexcoders] Flex Soap Object Arrays

2008-03-04 Thread Fidel Viegas
On Mon, Mar 3, 2008 at 11:03 PM, Telmo Dias [EMAIL PROTECTED] wrote: Thanks guys. As the time has passed we have been doing several tries and tests. The thing is, because of the schedule and the delays, we have decided to quit using SOAP, and went for AMF. I have had a similar experience.

Re: [flexcoders] Digital Clock

2008-03-04 Thread Fidel Viegas
On Wed, Mar 5, 2008 at 7:37 AM, Vivian Richard [EMAIL PROTECTED] wrote: If you are using LED characters for the clock display then how do you make the : between the hour and minute characters blink to indicate that a second has passed? I don't really need that sort of digital

Re: [flexcoders] Re: Flex Builder complaint

2008-03-03 Thread Fidel Viegas
On Mon, Mar 3, 2008 at 5:27 PM, Paul Decoursey [EMAIL PROTECTED] wrote: Did you read the thread... I had backups. It's a bug. When you import any other project into eclipse or Flex builder it doesn't delete files from your project as part of the import. The reason I bring it up isn't

Re: [flexcoders] Access MySQL directly from Flex client

2008-03-03 Thread Fidel Viegas
On Tue, Mar 4, 2008 at 12:57 AM, Shailesh Mangal [EMAIL PROTECTED] wrote: I need to quickly put together a dashboard where the data will come from mysql. I would like to eliminate middile layer (if possible). The only mysql connector a

[flexcoders] RemoteObject + remote connection

2008-03-02 Thread Fidel Viegas
Hello folks, How do I use the RemoteObject to connect to a remote location? Do I need to configure anything on the server? Does anyone have an example? I am using BlazeDS, and I was looking for some examples, but was unable to. I tried adding the endpoint, but still it didn't work. So, I presume

Re: [flexcoders] RemoteObject + remote connection

2008-03-02 Thread Fidel Viegas
, Mar 2, 2008 at 12:12 AM, Fidel Viegas [EMAIL PROTECTED] wrote: Hello folks, How do I use the RemoteObject to connect to a remote location? Do I need to configure anything on the server? Does anyone have an example? I am using BlazeDS, and I was looking for some examples

Re: [flexcoders] RemoteObject + remote connection

2008-03-02 Thread Fidel Viegas
with this. Thanks! Fidel. On Sun, Mar 2, 2008 at 10:58 AM, Fidel Viegas [EMAIL PROTECTED] wrote: Hi p, I have tried the samples and they all work fine. I have created a class of my own that accesses a firebird database. I have created some classes which I call from some webservices and they all

Re: [flexcoders] Re: RemoteObject + remote connection

2008-03-02 Thread Fidel Viegas
On Sun, Mar 2, 2008 at 4:44 PM, meteatamel [EMAIL PROTECTED] wrote: What channel are you using? Every destination in BlazeDS has to use a channel. You define channels in services-config.xml and you use them in the destination configuration. So I suggest you take a look in your

Re: [flexcoders] RemoteObject + remote connection

2008-03-02 Thread Fidel Viegas
On Sun, Mar 2, 2008 at 7:50 PM, [EMAIL PROTECTED] wrote: Ok...first steps...look in your project's propeties and make sure your server root and url are correct...then check to make sure it's compiling with the correct remote-service xml file...usually when it cant find it those are the

Re: [flexcoders] Re: HTTP Methods

2008-02-26 Thread Fidel Viegas
On Mon, Feb 25, 2008 at 5:03 PM, Troy Gilbert [EMAIL PROTECTED] wrote: Hum... so it does work with the normal HTTPService without using a proxy? Nope, not at all. If you want the full HTTP verb set you've got to use a proxy. Flash Player only speaks GET and POST, due to legacy issues

Re: [flexcoders] Re: HTTP Methods

2008-02-24 Thread Fidel Viegas
On Sun, Feb 24, 2008 at 4:36 PM, andrii_olefirenko [EMAIL PROTECTED] wrote: Look up URLRequestMethod constants. Just use them to define the http method - no need for proxy of any kind. (the server you are making request to should understand these methods, of course) Hi Andrii, Before

Re: [flexcoders] Re: HTTP Methods

2008-02-24 Thread Fidel Viegas
On Sun, Feb 24, 2008 at 5:54 PM, Omar Fouad [EMAIL PROTECTED] wrote: Nope Give a look on the HTTPService Properties mx:HTTPService id=LoginForm method=GET ... mx:HTTPService id=LoginForm method=DELETE ... mx:HTTPService id=LoginForm method=POST... Hum... so it does work with the

[flexcoders] HTTP Methods

2008-02-23 Thread Fidel Viegas
Hello folks, I have come across this article http://blogs.adobe.com/kiwi/2006/07/making_http_calls_in_actionscr.html, where it says that the HTTPService supports the basic HTTP methods (GET, POST, PUT, DELETE, HEAD, OPTIONS, and TRACE). Does it mean when using a proxy? Where can I find an

Re: [flexcoders] embedded background image not loading

2008-02-21 Thread Fidel Viegas
On Thu, Feb 21, 2008 at 4:30 PM, dsds99 [EMAIL PROTECTED] wrote: Trying to make a simple component..and trying to set the background image.. package{ import flash.display.Bitmap; import mx.containers.HBox; public class Hbox1 extends HBox{ [Embed(source=SkyBackground.jpg)]

Re: [flexcoders] embedded background image not loading

2008-02-21 Thread Fidel Viegas
On 2/21/08, Dsd Sds [EMAIL PROTECTED] wrote: that didn't work either: var img:imgcls= new imgcls() ; setStyle(backgroundImage,img) ; This is what I meant: package { import flash.display. Bitmap; import mx.containers. HBox; public class Hbox1 extends HBox{ [Embed(source=

Re: [flexcoders] Re: Implementing Office 2007 menus

2008-02-20 Thread Fidel Viegas
On Feb 20, 2008 12:02 PM, Glenn Williams [EMAIL PROTECTED] wrote: I have to say, I find the ribbon bar a joy to use. there was very small adoption time, and I actually now work faster in office than ever before. This really is (imho) something Microsoft UI team has got exactly right. It's

Re: [flexcoders] Power point in FLEX

2008-02-20 Thread Fidel Viegas
On Wed, Feb 20, 2008 at 10:39 AM, Karthik pothuri [EMAIL PROTECTED] wrote: Friends, I am new member to this group. Please drop your ideas on How to develop power point presentations in Flex on web browser. Microsoft powerpoint on web browser. To develop this which topics helps me ...

Re: [flexcoders] Download physical file with URLLoader

2008-02-20 Thread Fidel Viegas
Have a look at flash.net.FileReference that has a download method. That is what you should use to download or upload files. Fidel. On Wed, Feb 20, 2008 at 5:23 PM, Eric Cobb [EMAIL PROTECTED] wrote: I'm trying to figure out a way to connect to a remote URL, and download a file from

[flexcoders] Help with Skins with different sizes

2008-02-20 Thread Fidel Viegas
Hi everyone, I have created a button skin for up, down and over. Each one has a different size. They were all created in Flash. When I import them over in Flex, they seem to be fixed to one single size. The size of the button was supposed to increase when the mouse is over the button, and

Re: [flexcoders] Re: Implementing Office 2007 menus

2008-02-19 Thread Fidel Viegas
On Feb 19, 2008 8:15 PM, lytvynyuk [EMAIL PROTECTED] wrote: What is the point to copy?! What about to create something yourself? When I first started using Office 2007, I didn't really like it. But, now that I am used to it, I kind of like it, and I wanted to replicate it. First, because I

Re: [flexcoders] Re: Implementing Office 2007 menus

2008-02-19 Thread Fidel Viegas
children? On Feb 19, 2008, at 3:45 PM, Fidel Viegas wrote: On Feb 19, 2008 8:15 PM, lytvynyuk [EMAIL PROTECTED] wrote: What is the point to copy?! What about to create something yourself? When I first started using Office 2007, I didn't really like it. But, now that I am

Re: [flexcoders] JRE included in Ubuntu 7.10 mxmlc uses 100% CPU and infinite RAM when compiling .MXML, but not .AS

2008-02-19 Thread Fidel Viegas
On Feb 20, 2008 4:22 AM, David Barrett [EMAIL PROTECTED] wrote: Hi, this might already be well known, but it took me a long time to find the answer so I'm posting this lesson to the list in the hope that it helps others. The short of it is the JRE included by default in Ubuntu 7.10 needs

[flexcoders] Implementing Office 2007 menus

2008-02-15 Thread Fidel Viegas
Hello folks, I am trying to implement the Office 2007 menus, and I am trying to imagine what sort of Containers to use. So far, I have figured that I am going to use TabNavigator for the headings, but what sort of container would I use for the groups of buttons? Could it be Panels? I found this

Re: [flexcoders] Custom Tooltip Display

2008-02-15 Thread Fidel Viegas
On Fri, Feb 15, 2008 at 11:27 PM, Mark Lapasa [EMAIL PROTECTED] wrote: http://livedocs.adobe.com/labs/flex3/html/help.html?content=tooltips_4.html See Creating custom ToolTips Hi Mark, Thanks for the reply. That is the first thing I should have done before posting the question. I have to

[flexcoders] Custom Tooltip Display

2008-02-15 Thread Fidel Viegas
Hello folks, I was wondering if someone can point me to a tutorial that shows me how to customize the Tooltip Window (if that is what I may call it). I want to to be able to display formatted data, as I have seen in many demos. I look forward to hearing from you guys. Thanks in advance, Fidel.

Re: [flexcoders] Implementing Office 2007 menus

2008-02-15 Thread Fidel Viegas
On Feb 16, 2008 12:06 AM, Samuel Neff [EMAIL PROTECTED] wrote: I don't have info on how to help you with implementation, but just in case you were not aware, you need to license the UI from MS before implementing it yourself. Licenses are free, but as part of the license you have to abide by

[flexcoders] WebDAV

2008-02-14 Thread Fidel Viegas
Hello folks, I was wondering if it is possible to implement the WebDAV protocol in Actionscript. Has anyone attempted to to this? Thanks in advance, Fidel.

Re: [flexcoders] Upload with parameters

2008-02-09 Thread Fidel Viegas
Hi guys, It seems to be working, but only with GET parameters. The POST parameters never show up. I was wondering if it wasn't working because of the frame rate. I am using the default frame rate generated. Does the frame rate afect the transfer of the files? Thanks in advance, Fidel.

[flexcoders] Printing Receipts

2008-02-09 Thread Fidel Viegas
Hello folks, I am wondering if any of you has had any experience printing to a Receipt Printer. I have an Epson TM-U220 LPT printer, and I want to send the data to the printer. Does anyone have any idea or an example that does this? Thanks in advance, Fidel.

Re: [flexcoders] Adobe Partner Program ?

2008-02-08 Thread Fidel Viegas
On Feb 8, 2008 11:53 AM, [EMAIL PROTECTED] wrote: Hello list, I'm hoping to get in touch with an Adobe rep who can talk to our company ( Sirius IT ) about Adobe's Partnership Program. Adobe's site says that the program is closed until a new

Re: [flexcoders] Refreshing Page

2008-02-08 Thread Fidel Viegas
On Feb 8, 2008 1:45 AM, cool buddy [EMAIL PROTECTED] wrote: Hi, I developed a small application in FLEX.. Whenever i refresh a page it goes back to the HOME page.Is there anything wrong in the coding... For example there is a user registration page...when i refresh the page it goes back

Re: [flexcoders] Upload with parameters

2008-02-08 Thread Fidel Viegas
On Feb 8, 2008 11:45 PM, Ben Marchbanks [EMAIL PROTECTED] wrote: Try fileRef.upload(request); versus fileRef.upload(request, uploadfile); Done that. Problem persists.

Re: [flexcoders] issues with multiple module and HTTPService

2008-02-08 Thread Fidel Viegas
On Feb 8, 2008 11:49 PM, Seth Hodgson [EMAIL PROTECTED] wrote: Are these proxied or non-proxied HTTPServices? If proxied, you need to use a shared set of destinations and channels defined in your root swf currently. It is non-proxied. It is communicating with the service. The only problem

Re: [flexcoders] issues with multiple module and HTTPService

2008-02-08 Thread Fidel Viegas
Oops! Sorry, I thought this was a reply to my post. Apologies. Fidel. On Feb 8, 2008 11:55 PM, Fidel Viegas [EMAIL PROTECTED] wrote: On Feb 8, 2008 11:49 PM, Seth Hodgson [EMAIL PROTECTED] wrote: Are these proxied or non-proxied HTTPServices? If proxied, you need to use a shared set

Re: [flexcoders] Is there any way to use customized RemoteObject in mxml with mx:method?

2008-02-07 Thread Fidel Viegas
Sorry, I didn't read it properly. I thought you were using WebService.

Re: [flexcoders] Is there any way to use customized RemoteObject in mxml with mx:method?

2008-02-07 Thread Fidel Viegas
On Feb 7, 2008 5:38 PM, den.orlov [EMAIL PROTECTED] wrote: I wrote RemoteObject's sublcass that contains functionality common for all my appp's RemoteObjects: public dynamic class MyRemoteObject extends RemoteObject { public function MyRemoteObject() { super(); this.showBusyCursor

Re: [flexcoders] Object is Null? How can it be if it's a component in main.mxml. No access ?

2008-02-03 Thread Fidel Viegas
On Feb 3, 2008 2:39 AM, phipzkillah [EMAIL PROTECTED] wrote: I have a toggle bar that's data provider is a viewstack. When I click on the toggle bar an event is dispatched that my controller is listening for. My controller can access com1, com2, but always gives me a null pointer exception

Re: [flexcoders] Mac Aladin Effect posted on Made In Flex

2008-02-03 Thread Fidel Viegas
On Feb 3, 2008 11:18 AM, Carlos Rovira [EMAIL PROTECTED] wrote: Hi, I want to point you to an interesting and beautiful Flex effect based on the popular Mac OS X Aladin effect on the spanish Flex community site Made In Flex. Raul Diaz, the author, created this effect from scratch based on

RE: [flexcoders] Running a flex app from local file system

2008-01-29 Thread Fidel Viegas
mx:HTTPService id=photosIn url=images/gallery/photos.xml result=photosInHandler(event)/ Try adding useProxy=False as follows: mx:HTTPService id=photosIn url=images/gallery/photos.xml result=photosInHandler(event) userProxy=false/ Hope that helps.

[flexcoders] Re: TabNavigator+States=Crash

2008-01-28 Thread Fidel Viegas
Muzak wrote: Muzakread up on creationPolicy. Muzakhttp://livedocs.adobe.com/flex/201/langref/mx/core/Container.html#creationPolicy Yep, you should read that. I have experienced the same problem until I actually discovered that accidentally. Then, I went to read the manual, and everything was

  1   2   >