RE: [flexcoders] Flex 4.5: Flex in 5 Days

2012-01-12 Thread Jeff Hindman
I went through the entire series a few months ago . no crashes, no problems.

 

From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On
Behalf Of Davidson, Jerry
Sent: Thursday, January 12, 2012 5:58 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex 4.5: Flex in 5 Days

 

  

I'm going through the Flex in 5 Days tutorial on the Adobe website.  Has
anyone else done this?  I ask because I get 1-2 crashes for ever session in
every day.  I don't get the warm and fuzzies when a product crashes so
often.  I assume it was all written in LC, but it's the same company.

 

Does anyone know of less buggy tutorials?  They can't be "YouTube" based as
our firewall blocks that.  I'd love to see one for 4.0 as we might not
upgrade to 4.5, but even that is closer than 3.5.

 

TIA,

Jerry

 



<><>

[flexcoders] FB 4 serial number?

2010-02-11 Thread Jeff Hindman
Howdy group,

 

  My FB 4 Beta is asking for a serial number . my trial has expired. How do
I go about getting one that will last me until it is finally released?

 

Thanks,

 

  --Jake

 



RE: [flexcoders] Event Best Practices

2009-08-14 Thread Jeff Hindman
Maybe it's just me . but I usually stick all my custom components in
separate files. As long

As you import them correctly in the main app, you should be able to bubble
events up.

 

-jake

 

  _  

From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
Behalf Of jdizowat
Sent: Friday, August 14, 2009 8:49 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Event Best Practices

 

  

Super Noob Question Incoming - 

So if I my application looks like the following -







That deepest custom component dispatches an event and I would like that
event to make it to the application level. Is that even normal to have
components that nested? 

Thanks for any insight,
Jason





[flexcoders] Easing ScrollBar ... how hard can it be?

2009-07-17 Thread Jeff Hindman
Group,
I've searched high and low for a way to implement this, including a ready-made 
Flex component ... so far, nothing looks promising. I know I've seen one on 
several Flex sites ... is it a Flash component that was ported over? Any 
direction would be greatly appreciated.
Thanks,
  -- Jake



[flexcoders] Docking AIR app in upper right corner of user's monitor?

2009-05-15 Thread Jeff Hindman
... is there a way to do this? I'm pretty sure I can do it with Zinc ...but 
this is Flexcoders, not Zinc-coders :)

Thanks,
--jake



[flexcoders] Overriding margins using FlexPrintJob

2009-01-15 Thread Jeff Hindman
Flex & AIR gurus,

  Is it possible to force printing to be borderless without setting it
in the printer dialog box? I'm printing from an AIR application ... or
at least trying to. I'm trying to duplicate the wallet-sized option of
the Windows Photo Printing Wizard.

Thanks,

  -- Jeff



[flexcoders] Drag-n-dropping images from Mac OS to AIR app

2009-01-07 Thread Jeff Hindman
AIR gurus,

  The following code in my AIR app works fine on a PC, but not on a 
Mac:

  protected function handleDragEnter(event:NativeDragEvent):void {
if (event.clipboard.hasFormat
(ClipboardFormats.FILE_LIST_FORMAT)) {  
NativeDragManager.acceptDragDrop(event.currentTarget as 
InteractiveObject);}
  }

  protected function handleDrop(event:NativeDragEvent):void {
 var temp:Object = event.clipboard.getData
(ClipboardFormats.FILE_LIST_FORMAT);
 var tempImg:File = temp[0] as File;
 if (tempImg.extension == "jpg" || tempImg.extension == "JPG" ||
 tempImg.extension == "gif" || tempImg.extension == "GIF" ||
 tempImg.extension == "png" || tempImg.extension == 'PNG') {
 img1.source = tempImg.nativePath;
 img1.maintainAspectRatio = true;
 } else {
 Alert.show("File is not an image.", "Oops!");
 }

Any clues (or directionts to further research) would be greatly 
appreciated.

Thanks!

--jake
}



[flexcoders] Printing from AIR application

2008-12-23 Thread Jeff Hindman
I'm developing an AIR application that allows the user to drag-and-drop 
images from his/her local machine to the app and then print the images 
(via PrintJob). Easy, right? Everything works fine until I try to run 
the application after I print something... dragging and dropping images 
to the printable area in the app stops working. Is the printable area 
(canvas in this case) being locked up somehow by the PrintJob, and if 
so, how do I free it up for the user to drop more images to it?

Thanks, people ... and Merry Christmas!

--jake



[flexcoders] Dimensions of drag-n-dropped image in AIR

2008-12-03 Thread Jeff Hindman
Hi all,

 

  Is there a way to determine the height and width of an image dragged from
the native OS into AIR?

 

Thanks,

 

--jake



RE: [flexcoders] Re: Actionscript 3 Cookbook question

2008-05-13 Thread Jeff Hindman
Page xxiv in the preface, towards the bottom of the page.

 

You’re welcome :-)

 

--Jeff H.

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Amy
Sent: Tuesday, May 13, 2008 2:14 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Actionscript 3 Cookbook question

 

--- In [EMAIL PROTECTED] <mailto:flexcoders%40yahoogroups.com> ups.com,
"Jeff Hindman" <[EMAIL PROTECTED]> wrote:
>
> Actually, it's a Joey Lott package … check out
> http://rightactions <http://rightactionscript.com/ascb/> cript.com/ascb/

Thanks!

It would be SOOO cool if the index to that book pointed to some 
information like this when you look up ascb ;-)

 



RE: [flexcoders] Actionscript 3 Cookbook question

2008-05-13 Thread Jeff Hindman
Actually, it’s a Joey Lott package … check out
http://rightactionscript.com/ascb/

 

Regards,

 

  -- Jeff H.

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Amy
Sent: Tuesday, May 13, 2008 12:44 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Actionscript 3 Cookbook question

 

Hi, all;

I'm reading in the AS3 Cookbook about working with dates, and it 
frequently mentions ascb.util.DateUtilities. I'm thinking this is a 
Flash only package, and it seems a lot of the "recipes" depend on it. 
Is there a similar tutorial online that provides a more "Flexy" way to 
do this?

Thanks;

Amy

 



RE: [flexcoders] HTML links not working in published Flex swf ...

2008-03-28 Thread Jeff Hindman
Never mind … stoopid newbie error … C-drive is NOT a browser.

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Jeff Hindman
Sent: Friday, March 28, 2008 2:26 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] HTML links not working in published Flex swf ...

 

... but seem to work fine when I test the app in Flex builder. Could 
it be as simple as a compiler setting I'm missing? All the files I'm 
linking to are in the right places.

Advice?

Thanks --

-- Jake




 


--- 



 



[flexcoders] HTML links not working in published Flex swf ...

2008-03-28 Thread Jeff Hindman
... but seem to work fine when I test the app in Flex builder.  Could 
it be as simple as a compiler setting I'm missing?  All the files I'm 
linking to are in the right places.

Advice?

Thanks --

  -- Jake



  

  

--- 




[flexcoders] Re: Flex 3 is cool ... but I still need 2.0.1

2008-02-26 Thread Jeff Hindman
Flex Builder ...

Thanks,

--Jake

--- In flexcoders@yahoogroups.com, "Peter DeHaan" <[EMAIL PROTECTED]> 
wrote:
>
> Flex Builder or Flex SDK?
> 
>  
> 
> You can get the SDK from
> http://labs.adobe.com/technologies/flex/sdk/flex2sdk.html
> 
>  
> 
> 
> 
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
> Behalf Of Jeff Hindman
> Sent: Tuesday, February 26, 2008 12:29 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Flex 3 is cool ... but I still need 2.0.1
> 
>  
> 
> Is it still possible to download Flex 2.0.1 from the Adobe 
website? I 
> couldn't seem fo find it anywhere ...
> 
> Thanks --
> 
> -- jake
>




[flexcoders] Flex 3 is cool ... but I still need 2.0.1

2008-02-26 Thread Jeff Hindman
Is it still possible to download Flex 2.0.1 from the Adobe website?  I 
couldn't seem fo find it anywhere ...

Thanks --

  -- jake



RE: [flexcoders] Flex and Verisign

2007-09-12 Thread Jeff Hindman
I run that up the flag pole, but I don't think the legal department will buy
it :)

The search continues ...

--Jake

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Tom Chiverton
Sent: Wednesday, September 12, 2007 5:45 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Flex and Verisign

On Tuesday 11 Sep 2007, [EMAIL PROTECTED] wrote:
> Has anybody out there implemented a totally Flex e-commerce website
> with Verisign? I'm having trouble implementing the Verisign seal I
> downloaded from them 

Assuming this 'seal' is some sort of Java applet, DHTML, IFRAME or other
'your 
site is secure' thing that runs on the client, just use a static GIF
instead. 
99.9% of your visitors won't notice.

-- 
Tom Chiverton
Helping to widespreadedly establish holistic designs
on: http://thefalken.livejournal.com



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and
Wales under registered number OC307980 whose registered office address is at
St James's Court Brown Street Manchester M2 2JF.  A list of members is
available for inspection at the registered office. Any reference to a
partner in relation to Halliwells LLP means a member of Halliwells LLP.
Regulated by the Law Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may
be confidential or legally privileged.  If you are not the addressee you
must not read it and must not use any information contained in nor copy it
nor inform any person other than Halliwells LLP or the addressee of its
existence or contents.  If you have received this email in error please
delete it and notify Halliwells LLP IT Department on 0870 365 8008.

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



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







[flexcoders] Flex and Verisign

2007-09-11 Thread Jeff Hindman
Has anybody out there implemented a totally Flex e-commerce website 
with Verisign? I'm having trouble implementing the Verisign seal I 
downloaded from them (already have a certificate).  Also ... is it 
possible to test the functionality on a test server as opposed to a 
production server? I looks like the link will work correctly only if 
it's coming from your production domain, and I'd rather not test it 
there to see if it's working.

Thanks --

  --Jake



RE: [flexcoders] How to submit a bug to Adobe ? - 60 inch display is to wide

2007-03-08 Thread Jeff Hindman
Just out of curiosity, what's the internal vertical limit?

 

--Jeff H.

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Douglas Knudsen
Sent: Thursday, March 08, 2007 9:48 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] How to submit a bug to Adobe ? - 60 inch display
is to wide

 

Beta testers should be in on this too, eh?  I'll pay shipping!  :D

DK

On 3/8/07, Matt Chotin <[EMAIL PROTECTED]  com >
wrote:

PM should have to verify it too over an extended period of time IMHO

 

  _  

From: [EMAIL PROTECTED]  ups.com
[mailto:[EMAIL PROTECTED]  ups.com] On
Behalf Of Shannon Hicks
Sent: Thursday, March 08, 2007 9:31 AM
To: [EMAIL PROTECTED]  ups.com
Subject: RE: [flexcoders] How to submit a bug to Adobe ? - 60 inch display
is to wide

Oh no! I'd hate to be the Adobe engineer that is forced to switch to dual
30" cinema displays to fix this bug.

The sacrifices Adobe makes for us developers..

Shan

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
 com] On Behalf Of Clint Modien
Sent: Thursday, March 08, 2007 10:58 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] How to submit a bug to Adobe ? - 60 inch display
is to wide

http://www.adobe.  com/go/wish

On 3/8/07, oneproofdk <[EMAIL PROTECTED]  dk> wrote: 

For a internal application built in FB, we are deploying it on a
PowerMac Pro with 2 30" display's attached.
This enables a resolution of 5120 px by 1600 px.

A funny thing happens when I open the app strecthing the browser (FF)
to use both displays. The panel which holds a tile, displaying images
of the spreads, kinda "breaks" in the sense, that the background
doesn't extend to the full width, even though the Tile actually does !?.

How can I report this to Adobe ?

Screencap can be found here
:http://flex2. 
dk/index.php?entry=entry070308-112408

Thanks,
Mark




-- 
Douglas Knudsen
http://www.cubiclem  an.com
this is my signature, like it? 

 



RE: {Disarmed} Re: [flexcoders] First flex app - looking for feedback

2007-03-05 Thread Jeff Hindman
Doesn't work for me . couldn't move paddles.

 

--Jeff

 

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Toby Tremayne
Sent: Monday, March 05, 2007 6:11 PM
To: flexcoders@yahoogroups.com
Subject: Re: {Disarmed} Re: [flexcoders] First flex app - looking for
feedback

 

Um :) Yeah a link would have been handy wouldn't it *blush*

 

http://www.tobytrem  ayne.com

 

Toby

 

On 06/03/2007, at 10:07 , Adam Royle wrote:





 

Do you have a link to your app?

- Original Message -

From:   Toby Tremayne

To:   flexcoders@yahoogroups.com

Sent: Monday, March 05, 2007 5:04 PM

Subject: [flexcoders] First flex app - looking for feedback

 

Hi all,

 

   i'm new to this list, and to flex and flash. I've just posted
my first experiment with flex up on the web and if anyone has time to
examine it and would like to offer any feedback I'd be very grateful. It's a
very simplistic pong game, where you can control the movement of the paddles
up and down by waving your hands in front of the webcam. I wrote it as a
proof of concept, and in doing so tried to learn about the bitmap API and
various things like filters and matrices - making use of the excellent
tutorial by Guy Watson on webcam motion tracking. Code is posted, so if it's
of any use to other noobs like me please feel free, and if anyone can tell
me where I might do things better I'd love to hear from you.

 

cheers,

Toby

 

 

 

---

 

   Life is poetry, write it in your own words

 

---

 

Toby Tremayne

Senior Technical Consultant

Lyricist Software

0416 048 090

ICQ: 13107913

 

 

 

 

 

 

 

---

 

Life is poetry, write it in your own words

 

---

 

Toby Tremayne

Senior Technical Consultant

Lyricist Software

0416 048 090

ICQ: 13107913





 

 



RE: [flexcoders] Flex TFTS lesson 8

2007-02-06 Thread Jeff Hindman
Nope . worked for me.  You might try goring back to Lesson 7 and restarting
from there.  Whenever I got stuck in the book,

I found that usually corrected the problem.

 

--Jeff Hindman

  Simon Software Solutions

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Roger Ross
Sent: Tuesday, February 06, 2007 12:21 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex TFTS lesson 8

 

Hello,

Compiled mxml files clean up to the point where you display the
horizontal list bar with categories and images.
Problem is, NO images no text display just a white area where images
and text should display

Checked the code over and over, matches lesson code.
Anyone have this problem when they did this lesson???

Thanks,

Roger

 



RE: [flexcoders] Get a FlexJob - http://tech.groups.yahoo.com/group/flexjobs/

2007-01-23 Thread Jeff Hindman
Thanks Ted . I've already applied to a couple companies.

 

--Jeff Hindman

  Simon Software Solutions

  [EMAIL PROTECTED]

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Bjorn Schultheiss
Sent: Tuesday, January 23, 2007 4:46 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Get a FlexJob -
http://tech.groups.yahoo.com/group/flexjobs/

 

Go Teddy! good to have you on our side :)

 

On 24/01/2007, at 11:11 AM, Ted Patrick wrote:





 

Want a Job coding Flex 2.0?

Got mad Flex & AS3 skills?

Hiring Developers?

FlexJobs Discussion List

 <http://tech.groups.yahoo.com/group/flexjobs/>
http://tech.groups.yahoo.com/group/flexjobs/

I created FlexJobs to post jobs that I keep getting via email. I have talked
to hiring managers from Yahoo, Adobe, Ebay, HP (Snapfish) and a bunch of
other great companies and they will all be posting jobs to FlexJobs. If you
are posting jobs to FlexCoders, lets break these out so that FlexCoders
stays focused on code. Developers looking for work, subscribe to FlexJobs
and upgrade your career.

Also for developers the cloaking is enabled so that your boss cannot see you
lurking on the FlexJobs list.

Upgrade your career and get a serious FlexJob. Rates are rising and there
are tons of new positions opening up doing Flex full time.

Here are some companies posting to FlexJobs:

Playboy, JPMorgan Chase & Co, Modus, eBay, Adobe, BrightCove, Mentor
Graphics, Enterra, CitiGroup, Vangaurdm Allurent, EffectiveUI, Keane, State
Street Bank, PC Mall, Schematic, Buisiness Object

I will be pushing hard to get FlexJobs know in the Adobe sales channel. All
companies we visit talking about Flex will be referred to posting jobs on
FlexJobs.

Cheers,

Ted Patrick

Flex Technical Evangelist

Adobe Systems

 <http://www.onflex.org> http://www.onflex.org

 <http://www.linkedin.com/in/tedpatrick>
http://www.linkedin.com/in/tedpatrick

 

 

 



[flexcoders] Flex 2.0.1 installation - no problems

2007-01-10 Thread Jeff Hindman
3 minutes for the download, 24 hours to work up the guts, 2 minutes for 
the install.  So far, no problems ... maybe I'm just lucky.

Jeff Hindman
Simon Software Solutions



RE: [flexcoders] CRUD in XML

2007-01-08 Thread Jeff Hindman
Any chance of getting a CF solution (or hints) for this tool (way cool,
btw)? I have a client that could

use this immediately.

Thanks -

 

Jeff Hindman

Simon Software Solutions

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Tracy Spratt
Sent: Monday, January 08, 2007 10:57 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] CRUD in XML

 

Look at this example.

http://www.cflex.
<http://www.cflex.net/showfiledetails.cfm?ChannelID=1&Object=File&objectID=5
44> net/showfiledetails.cfm?ChannelID=1&Object=File&objectID=544

 

Tracy

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of devisbalsemin
Sent: Saturday, January 06, 2007 7:49 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] CRUD in XML

 

Hi,
can you help me to find some example how to implment Flex 2 CRUD with
xml file???
Thanks 
devis

 



[flexcoders] Who's your ISP?

2006-12-28 Thread Jeff Hindman
Just a quick survey asking who's your favorite ISP that supports Flex 
2.0 with all the bells and whistles (not FDS ... yet).  We're 
considering CrystalTech to host our start-up, but are interested in 
exploring other options as well.

Thanks --

  -- Jeff Hindman
 Simon Software Solutions



RE: [flexcoders] source code of Training from the Source

2006-12-28 Thread Jeff Hindman
It's on a CD that came with the book.

 

--Jeff Hindman

  Simon Software Solutions

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Shailesh Mangal
Sent: Wednesday, December 27, 2006 5:31 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] source code of Training from the Source

 

Does any one have the source code of "Adobe Flex2 - Training from the
Source". 

sxm

 



RE: [flexcoders] Looking to hire a Flash/Flex developer

2006-11-07 Thread Jeff Hindman












Are you taking telecommuters ?

I’m in Southern
 California.

 

  -- Jeff Hindman

 









From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf
Of jenunderscore
Sent: Monday, November 06, 2006
2:31 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Looking to
hire a Flash/Flex developer



 







Hey all, 
Our company in Ottawa
is currently seeking to hire another developer
with Flash experience. Does anybody know of some good resources for
flash developers seeking employment? 






__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___