Re: [flexcoders] Re: filtering an array collection using 2 or 3 textinputs

2013-03-05 Thread Andrew Wetmore
I did a quick Google search on array collection multiple filters and came up with several tutorials with examples. Here is one: http://nwebb.co.uk/blog/?p=371 On Tue, Mar 5, 2013 at 12:21 AM, ZIONIST stinas...@yahoo.com wrote: ** any help guys? am really stuck. -- Andrew Wetmore

Re: [flexcoders] Re: filtering an array collection using 2 or 3 textinputs

2013-03-04 Thread Andrew Wetmore
of a pain to build, but it should work without any noticeable delays. a On Mon, Mar 4, 2013 at 8:17 AM, ZIONIST stinas...@yahoo.com wrote: ** any help out there... am stuck. -- Andrew Wetmore http://cottage14.blogspot.com/ http://portfolio.cottage14.com https://sites.google.com

Re: [flexcoders] Re: Export data to Excel

2009-01-22 Thread Andrew Wetmore
-- Andrew Wetmore and...@cottage14.com skype:cottage14

Re: [flexcoders] Re: Flex training

2008-12-10 Thread Andrew Wetmore
] wrote: We might be getting funding for Flex training early next year. What are some good training vendors that will come on-site for Adobe Flex training? Thanks - Todd Go with Farata Systems - practitioners plus Adobe certified trainers. SD -- Andrew Wetmore

[flexcoders] FlexBuilder has forgotten my project's build history

2008-11-10 Thread Andrew Wetmore
We are about to move from alpha to beta of an AIR application. For the last fifty builds, when I have selected Export Release Build in FlexBuilder, the system has defaulted to the link to the certificate I have been using for the project. The resulting package, when used, knows to check for a

[flexcoders] Odd message on export of release build of AIR app

2008-10-01 Thread Andrew Wetmore
Hi: For the last few weeks when I export a release build of the current project, i get this error message: Flex Builder could not publish the project source: The application file courseDevClient336.mxml was not found.. The referenced file, courseDevClient336.mxml, was an artifact of a Subversion

[flexcoders] images not appearing in AIR app

2008-09-30 Thread Andrew Wetmore
Hi: I have an AIR application going into alpha test. Images embedded in buttons appear fine, but several images that I display using the mx:Image component are not appearing. This started on the Mac a colleague uses, and I thought it was maybe a lab issue; but now it is happening in the installed

[flexcoders] strange null error on popupMenuButton

2008-09-19 Thread Andrew Wetmore
I use a ton of popupMenuButtons in my application, and they have generally worked pretty well. Today, one set of them has started crashing if you click on them. The error, strangely enough, refers to popupButton, which is a different control type. Has anyone else run into this kind of bad

[flexcoders] is anyone using a CryptGuard digital certificate

2008-09-17 Thread Andrew Wetmore
I see CryptGuard offers a free digital certificate for use by new non-profits. This is a much better price than Thawte's $300 a year! Is anyone now using a CryptGuard certificate to sign their AIR app? Does it seem to work ok? Thanks in advance. a

[flexcoders] Odd problem with autoupdater

2008-09-17 Thread Andrew Wetmore
I have added applicationupdater_ui.swc to my project, and it works fine along with the required code to manage automatic updates of the published application. HOWEVER, when I have it in the project, the buttons and other UI elements lose their style and get crappy. When I comment it out, the

Re: [flexcoders] Preventing cutpaste in Flex3 application

2008-09-16 Thread Andrew Wetmore
area. a -- Andrew Wetmore User Experience Director Open Learning Exchange - www.ole.org 978-319-7324

Re: [flexcoders] Preventing cutpaste in Flex3 application

2008-09-16 Thread Andrew Wetmore
editable = false doesn't seem to do the trick. I will try selectable = false. -- Andrew Wetmore User Experience Director Open Learning Exchange - www.ole.org 978-319-7324

Re: [flexcoders] Preventing cutpaste in Flex3 application

2008-09-16 Thread Andrew Wetmore
16, 2008 at 10:41 AM, Andrew Wetmore [EMAIL PROTECTED]wrote: editable = false doesn't seem to do the trick. I will try selectable = false. -- Andrew Wetmore User Experience Director Open Learning Exchange - www.ole.org 978-319-7324 -- Andrew Wetmore User Experience Director Open

Re: [flexcoders] Preventing cutpaste in Flex3 application

2008-09-16 Thread Andrew Wetmore
Yes. I need to write about 15 context menus for various states in the app, and use a generic menu elsewhere. On my to-do list. a -- Andrew Wetmore User Experience Director Open Learning Exchange - www.ole.org 978-319-7324

[flexcoders] problem with soundAsset

2008-09-16 Thread Andrew Wetmore
Hi: I am trying to add sounds to my app. I have imported mx.core.SoundAsset and flash.media.*, and am trying to embed the files like this: [Embed('soundfx/oleLogin.mp3')] private var oleLogin_mp3:Class; private var oleLogin:SoundAsset = new oleLogin_mp3() as SoundAsset; The correct files are in

Re: [flexcoders] problem with soundAsset

2008-09-16 Thread Andrew Wetmore
As one of the fifteen sounds is working correctly, I guess I have to assume that the other 14 mp3 files are corrupt in some way. Wil investigate. -- Andrew Wetmore User Experience Director Open Learning Exchange - www.ole.org 978-319-7324

Re: [flexcoders] key listeners in air windows

2008-09-11 Thread Andrew Wetmore
; ... } } } This gives me a lot of control over what function responds in each part of the application, and lets me govern a variety of keys in different ways depending on what page we're on. You could dispense with the switch statement and have the key click work the same everywhere. -- Andrew Wetmore User

Re: [flexcoders] Re: key listeners in air windows

2008-09-11 Thread Andrew Wetmore
presume you have this line: import flash.events.KeyboardEvent; In the event handler I am dealing with the enter, escape, and sometimes tab keys, and in different ways on different screens, all from one process. -- Andrew Wetmore User Experience Director Open Learning Exchange

[flexcoders] how to give focus to a new browser window

2008-09-05 Thread Andrew Wetmore
Hi: In my AIR project I need to pop a browser window and give it focus. The current code is: private function launchAFile():void{ var theURL:String = resourceContentsList.selectedItem.path; navigateToURL(new URLRequest(theURL)); } Is there a way to give that new window focus? At the moment,

[flexcoders] Re: how to give focus to a new browser window

2008-09-05 Thread Andrew Wetmore
IMiJ Software http://www.imijsoft.com http://www.ianmjones.net (blog) On 5 Sep 2008, at 09:42, Andrew Wetmore wrote: Hi: In my AIR project I need to pop a browser window and give it focus. The current code is: private function launchAFile():void{ var

[flexcoders] Re: how to give focus to a new browser window

2008-09-05 Thread Andrew Wetmore
As it turns out, I already have that in use in a couple of places, and it does not give focus to the new window in tabbed browser systems. Seems to be okay if you don't already have a browser window open, or if you do not use tabbed browser windows. Any other thoughts? a --- In

[flexcoders] Re: dealing with apostrophes in text saved to Sqlite from an AIR app

2008-08-24 Thread Andrew Wetmore
using parameters seems to have solved the problem. What a relief!! a -- Andrew Wetmore User Experience Director Open Learning Exchange - www.ole.org 978-319-7324

[flexcoders] dealing with apostrophes in text saved to Sqlite from an AIR app

2008-08-23 Thread Andrew Wetmore
I am developing an AIR app which has a lot of text-entry fields. I have not managed to figure out how to escape apostrophes that users may enter so that the text can be saved properly to the Sqlite database. As a workaround, we can insert '' where we mean ', and the dB swallows it. This is not a

Re: [flexcoders] Re: dealing with apostrophes in text saved to Sqlite from an AIR app

2008-08-23 Thread Andrew Wetmore
all those ' thingies... -- Andrew Wetmore User Experience Director Open Learning Exchange - www.ole.org 978-319-7324

Re: [flexcoders] dealing with apostrophes in text saved to Sqlite from an AIR app

2008-08-23 Thread Andrew Wetmore
I am concatenating in text. I will try using @ or : parameters and see what happens. Thanks for the suggestion! a -- Andrew Wetmore User Experience Director Open Learning Exchange - www.ole.org 978-319-7324

[flexcoders] Trouble passing values to a child window

2008-07-09 Thread Andrew Wetmore
Hi. I have an app where the user can select a note and opt to pop the note into a child window that will float beside the main window. I can create the window fine, and I can pass it its title. However, when I try to pass the title and contents of the note, I get a null object reference error.

Re: [flexcoders] Trouble passing values to a child window

2008-07-09 Thread Andrew Wetmore
sorry, I should have said below if I DO comment out the two lines that are currently commented out, the code runs fine On Wed, Jul 9, 2008 at 2:02 PM, Andrew Wetmore [EMAIL PROTECTED] wrote: Hi. I have an app where the user can select a note and opt to pop -- Andrew Wetmore User

[flexcoders] Re: Trouble passing values to a child window -- solved

2008-07-09 Thread Andrew Wetmore
Thank you all for your help! It was indeed a timing issue. Be back at you with a couple more questions soon. andrew

Re: [flexcoders] Re: Is there a flex based Tag Cloud component?

2008-06-05 Thread Andrew Wetmore
Are you susceptible to coding the thing in SwishMax and then using the resulting Flash movie as a plugin? Here is part one of a two-part tutorial about building a really cool linksphere: http://blog.swishzone.com/?p=73 -- Andrew Wetmore User Experience Director Open Learning Exchange

Re: [flexcoders] Re: Unable to Display Hindi

2008-06-05 Thread Andrew Wetmore
at a loss. a -- Andrew Wetmore User Experience Director Open Learning Exchange - www.ole.org 978-319-7324

Re: [flexcoders] Unable to Display Hindi

2008-06-04 Thread Andrew Wetmore
am using the resource manager to retrieve the strings:... -- Andrew Wetmore User Experience Director Open Learning Exchange - www.ole.org 978-319-7324

[flexcoders] Bump: problem with missing dB on Mac for AIR app

2008-05-15 Thread Andrew Wetmore
! a --- In flexcoders@yahoogroups.com, Andrew Wetmore [EMAIL PROTECTED] wrote: Hi: A colleague tried to install the app I am working on on his Mac. App installed, but the database is nowhere to be seen. App stalls at the first point where it would be expected to call (as opposed to initialize) the dB. Where

[flexcoders] Re: Bump: problem with missing dB on Mac for AIR app

2008-05-15 Thread Andrew Wetmore
--- In flexcoders@yahoogroups.com, shaun [EMAIL PROTECTED] wrote: What is the path to your db file? C:\My Documents ain't gunna work.. :) Indeed it would not. Here is the declaration: var dbFile:File = File.documentsDirectory.resolvePath(Open Learning Exchange/OLEcds.db); According to

[flexcoders] Re: Bump: problem with missing dB on Mac for AIR app

2008-05-15 Thread Andrew Wetmore
--- In flexcoders@yahoogroups.com, Andrew Wetmore [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, shaun shaun@ wrote: What is the path to your db file? C:\My Documents ain't gunna work.. :) Indeed it would not. Here is the declaration: var dbFile:File

[flexcoders] Re: Bump: problem with missing dB on Mac for AIR app

2008-05-15 Thread Andrew Wetmore
Our investigations seem to show that the installer can't create a subdirectory on Mac in the documents folder, either with the name as displayed above or as OLE without spaces. If we create the folder manually, the installer is able to create the database in it. I am now going to switch

[flexcoders] Re: Bump: problem with missing dB on Mac for AIR app

2008-05-15 Thread Andrew Wetmore
--- In flexcoders@yahoogroups.com, Andrew Wetmore [EMAIL PROTECTED] wrote: Our investigations seem to show that the installer can't create a subdirectory on Mac in the documents folder, either with the name as displayed above or as OLE without spaces. If we create the folder

[flexcoders] problem with missing dB on Mac for AIR app

2008-05-11 Thread Andrew Wetmore
Hi: A colleague tried to install the app I am working on on his Mac. App installed, but the database is nowhere to be seen. App stalls at the first point where it would be expected to call (as opposed to initialize) the dB. Where should I start looking to figure out what is going on? a

[flexcoders] Re: currentState question

2008-04-25 Thread Andrew Wetmore
The other possibility is that the problem comes from using double quotation marks () instead of single(''). currentState likes single quotation marks. --- In flexcoders@yahoogroups.com, Dmitri Girski [EMAIL PROTECTED] wrote: Bonjour, I am pretty sure that this error comes as a consequence

[flexcoders] Can't change state from the menu bar

2008-04-21 Thread Andrew Wetmore
Hi: I want the menu bar choices in my app to change the app's current state. In the code below, the correct value shows up in the alert when one of the two active options is selected, but the state does not change whether I use the first pattern or the second. What am I missing? private

[flexcoders] Re: Can't change state from the menu bar

2008-04-21 Thread Andrew Wetmore
Got this figured out. Now if I can figure out why half of the localizations aren't working, I'll be all set.

[flexcoders] My AIR installer does not include my icons

2008-04-16 Thread Andrew Wetmore
I have an AIR installer for the app we are developing. I have specified four icons in the app xml file, and have put them in the folder I have named. They are png's of the appropriate sizes. When I build the app, the icons are not used and never appear. What's with that? a

[flexcoders] Re: AIR installer works on PC, not on Mac

2008-04-05 Thread Andrew Wetmore
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andrew Wetmore Sent: 04 April 2008 14:23 To: flexcoders@yahoogroups.com Subject: [flexcoders] AIR installer works on PC, not on Mac Hi: I am using FB3 and compiled the first version of an AIR app to test the installation process

[flexcoders] AIR installer works on PC, not on Mac

2008-04-04 Thread Andrew Wetmore
Hi: I am using FB3 and compiled the first version of an AIR app to test the installation process. I built an install badge following the instructions, and posted .air file and the install page where they could be accessed by the team. I work on WinXP. If I go to the website and click the badge I

Re: [flexcoders] HTML Wrapper

2008-03-21 Thread Andrew Wetmore
engine optimization stuff yet. Maybe there is a better way now. Recommendations? Thanks, Don -- Andrew Wetmore User Experience Director Open Learning Exchange - www.ole.org 978-319-7324

Re: [flexcoders] localization issue: acute accents display incorrectly

2008-03-12 Thread Andrew Wetmore
that might help, but it didn't. Thanks, Paul _ -- Andrew Wetmore User Experience Director Open Learning Exchange - www.ole.org 978-319-7324 -- Andrew Wetmore User Experience Director Open Learning Exchange - www.ole.org 978-319-7324

[flexcoders] Trouble with resource files and language display

2008-03-06 Thread Andrew Wetmore
I am using FB beta 3 (will be buying the real deal in a day or so). I have noticed an odd thing when I create properties files. The project is set to UTF-8 encoding, but when I create a properties file its encoding is set to ISO-8859.1, which it calls default. Why doesn't the file inherit the

Re: [flexcoders] general flex usage question

2008-03-04 Thread Andrew Wetmore
(unless I can demonstrate they are not needed) will be in Ajax, with as much of the same functionality as can be achieved. The business and data layers will be the same for both versions. -- Andrew Wetmore User Experience Director Open Learning Exchange - www.ole.org 978-319-7324

Re: [flexcoders] BlazeDS and Acegi

2007-12-24 Thread Andrew Wetmore
someone will be able to help me to resolve this strange error. -- Andrew Wetmore User Experience Director Open Learning Exchange - www.ole.org 978-319-7324

Re: [flexcoders] New App Developed in Flex

2007-12-21 Thread Andrew Wetmore
-- Andrew Wetmore User Experience Director Open Learning Exchange - www.ole.org 978-319-7324