Re: [Flashcoders] mac vs pc

2009-08-10 Thread FlashDev

100% Win XP Prof (Waiting for 7 to be shipped), CS4  FlashDevelop

We use a mac to test websites and air applications thats about it!

SJM

Allandt Bik-Elliott (Receptacle) wrote:
i'd completely understand if nobody wanted to touch this one but i 
thought i'd throw it out there


a bit of background: I've been developing on mac for 7 or 8 years, the 
first 5 were as an enthusiastic amateur but more recently i've gone 
full time flash developing. As time has progressed, i've started to 
use more tools to help with coding, I've tried FDT on Eclipse for mac 
which i found (at the time) to be overpriced, overfinicky, flaky and 
unreliable (i realise that with the release of the standalone FDT 
package the flakiness is something that has been rectified) and 
flexbuilder just doesn't have any of the text manipulation tools that 
a good coding IDE should imo (duplicating / transposing lines of code 
shouldn't require a mouse) so i've settled for using FlashDevelop 
(which i LOVE) with Parallels as a vm to run it.


This setup has kept me going for a while but it's not without it's 
problems: the keyboard changes from my mac-based Flash IDE to the 
pc-based FlashDevelop IDE has been a headache, I have 3 sources of 
program failures as opposed to 2 (Flash, FlashDevelop AND Parallels) 
which, while they don't account for a lot of my day, are usually 
pretty savage when they do occur. However, as I've been using a pc at 
work, I've really started to seriously consider simply buying a pc on 
my next round of hardware spend (end of this year, beginning of next) 
and be done with it. The mac will always be at the center of my home 
media but this is for my take along, work machine.


So the question I'm really getting to is, how many people use osX 
(using windows in boot camp doesn't count) and how many are using 
windows for their main work machine and what kind of software setup 
are you using?


thanks for your time guys
Allandt


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] [AS2] Set the default value of a ComboBox

2009-01-08 Thread FlashDev

Hi Guys, happy new year to you all!

I have a combobox added to the stage in the flash IDE and it is 
populated via Actionscript 2 from an external XML file. The trouble is I 
want to automatically select a label in the combobox rather than showing 
the first label which is the current default.


I populate my combobox like this:

combobox1.addItem({data:data1, label:lable1});
combobox1.addItem({data:data2, label:lable2});

Now I have a combobox with 2 labels, label1 and label2. I want label2 to 
display as the default instead of label1, now I understand I could do:


combobox1.selectedIndex = 1;

but I actually want to loop through the combobox labels and match if 
label2 = label2 then select that index, so is there any way I can read 
the labels / data of a combobox? I have tried combobox1.data and 
combobox1.labels, but it just returns undefined?


Thanks in advance
SJM
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] [AS2] Set the default value of a ComboBox

2009-01-08 Thread FlashDev

Thanks Jonathan, Sorted the problem basically i had to use this code...

function setValue (pValue:String):Void
{
for (var i:Number = 0; i  comboBox.length; i++)
{
if (comboBox.getItemAt(i).data == pValue)
{
comboBox.selectedIndex = i;
break;
}
}
}

setValue (MyVariable);


Regards
SJM


jonathan howe wrote:

That sounds like a potential for unneeded redundancy/potential sync errors
if things change later.. Better to use the ComboBox.getItemAt() method,
right?

trace(myBox.getItemAt(4).label);
-jonathan



On Thu, Jan 8, 2009 at 12:12 PM, Eric E. Dolecki edole...@gmail.com wrote:

  

populate with an array, and then go through the array, and use the matching
index.

On Thu, Jan 8, 2009 at 11:29 AM, FlashDev fl...@funkdaweb.com wrote:



Hi Guys, happy new year to you all!

I have a combobox added to the stage in the flash IDE and it is populated
via Actionscript 2 from an external XML file. The trouble is I want to
automatically select a label in the combobox rather than showing the
  

first


label which is the current default.

I populate my combobox like this:

combobox1.addItem({data:data1, label:lable1});
combobox1.addItem({data:data2, label:lable2});

Now I have a combobox with 2 labels, label1 and label2. I want label2 to
display as the default instead of label1, now I understand I could do:

combobox1.selectedIndex = 1;

but I actually want to loop through the combobox labels and match if
  

label2


= label2 then select that index, so is there any way I can read the
  

labels /


data of a combobox? I have tried combobox1.data and combobox1.labels, but
  

it


just returns undefined?

Thanks in advance
SJM
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

  


--
http://ericd.net
Interactive design and development
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders






  

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] AS3 - Cross Browser Issues

2008-11-14 Thread FlashDev
Hi guys, it seam is very system specific I am still yet to recreate the problem!

Does anyone have any suggestions on what I can do to fix this sporadic problem?

my head hurts!

SJM
  - Original Message - 
  From: Joel Stransky 
  To: Flash Coders List 
  Sent: Thursday, November 13, 2008 5:27 PM
  Subject: Re: [Flashcoders] AS3 - Cross Browser Issues


  WIN 9,0,124,0 debug
  Still does not work in IE. IE6 does throw an alert to continue loading the
  content of this page.

  On Thu, Nov 13, 2008 at 11:57 AM, Paul Andrews [EMAIL PROTECTED] wrote:

   All good for FP 9,0,124,0
  
   Paul
   - Original Message - From: FlashDev [EMAIL PROTECTED]
   To: Flash Coders List flashcoders@chattyfig.figleaf.com
   Sent: Thursday, November 13, 2008 4:37 PM
  
   Subject: Re: [Flashcoders] AS3 - Cross Browser Issues
  
  
   The white image is directly underneath the blue image, you will have ot
   click and drag the image to see the white one!
  
   I have IE 5, 5.5, 6  7 and ive tested on all of them with no trouble!
  
   FF, Chrome  Opera all work fine for me too!
  
   What version of flash player are you guys running? im on 10,0,2,54
- Original Message -  From: Joel Stransky
To: Flash Coders List
Sent: Thursday, November 13, 2008 4:19 PM
Subject: Re: [Flashcoders] AS3 - Cross Browser Issues
  
  
You can always get a stand alone version of IE6 here.
http://browsers.evolt.org/?ie/32bit/standalone
  
In my tests:
IE6  7 - no blue or white pattern image shows up
FF - just the blue image shows up
Chrome - just the blue image shows up
  
attached is the image I tried.
  
On Thu, Nov 13, 2008 at 10:23 AM, Glen Pike [EMAIL PROTECTED]
   wrote:
  
 I was okay too - I would possibly consider client stupidity / ineptitude
   at
 this point and maybe diplomatically walk through the problem with the
 client.
 There could be a host of problems - the type of image being sent, the
 browser used, the network, etc.

 For dev work, I would recommend testing on IE, at least 7 if not 6 where
 possible.  The percentage of users is still massive so should be
   considered.

 Glen


 FlashDev wrote:

 Thanks Paul, i cannot recreate the problem either! I dont know what to
   do!
  - Original Message -  From: Paul Andrews  To: Flash Coders
   List
  Sent: Thursday, November 13, 2008 2:56 PM
  Subject: Re: [Flashcoders] AS3 - Cross Browser Issues


  Works for me exactly as you describe in both FF2.0 and IE 7.0

  - Original Message -  From: FlashDev [EMAIL PROTECTED]
  To: Flash Coders List flashcoders@chattyfig.figleaf.com
  Sent: Thursday, November 13, 2008 2:26 PM
  Subject: [Flashcoders] AS3 - Cross Browser Issues


  Hi Guys,

  Im having a wired problem with a flash project ive been wroking on for
 some  time now. The application works fine on my localhost for me but
   will
 not  work properly when the client views my localhost.

  http://flashdev.dnsalias.org:8081/PartyDelights/pd/

  Basically, when the flash loads click the 'Photo Tools' tab then click
  upload am image. Select an image from your PC (dont worry its wont get
  uploaded its just to simulate an upload). Once this has been done you
 should  see a blue image under the word 'type' and a white/pattern
   image
 under the  blue one.

  This is what my client can not see! It also has issues between firefox
 and  internet explorer (apparently as i cannot test it)

  Anyone have any ideas on why this would be hapening?

  SJM
  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders





 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

  
  
  
--  --Joel
  
  
  
  
   
--
  
  
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
   ___
   Flashcoders mailing list
   Flashcoders@chattyfig.figleaf.com
   http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] AS3 - Cross Browser Issues

2008-11-13 Thread FlashDev
Hi Guys,

Im having a wired problem with a flash project ive been wroking on for some 
time now. The application works fine on my localhost for me but will not work 
properly when the client views my localhost.

http://flashdev.dnsalias.org:8081/PartyDelights/pd/ 

Basically, when the flash loads click the 'Photo Tools' tab then click upload 
am image. Select an image from your PC (dont worry its wont get uploaded its 
just to simulate an upload). Once this has been done you should see a blue 
image under the word 'type' and a white/pattern image under the blue one.

This is what my client can not see! It also has issues between firefox and 
internet explorer (apparently as i cannot test it)

Anyone have any ideas on why this would be hapening?

SJM
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] AS3 - Cross Browser Issues

2008-11-13 Thread FlashDev
Thanks Paul, i cannot recreate the problem either! I dont know what to do!
  - Original Message - 
  From: Paul Andrews 
  To: Flash Coders List 
  Sent: Thursday, November 13, 2008 2:56 PM
  Subject: Re: [Flashcoders] AS3 - Cross Browser Issues


  Works for me exactly as you describe in both FF2.0 and IE 7.0

  - Original Message - 
  From: FlashDev [EMAIL PROTECTED]
  To: Flash Coders List flashcoders@chattyfig.figleaf.com
  Sent: Thursday, November 13, 2008 2:26 PM
  Subject: [Flashcoders] AS3 - Cross Browser Issues


  Hi Guys,

  Im having a wired problem with a flash project ive been wroking on for some 
  time now. The application works fine on my localhost for me but will not 
  work properly when the client views my localhost.

  http://flashdev.dnsalias.org:8081/PartyDelights/pd/

  Basically, when the flash loads click the 'Photo Tools' tab then click 
  upload am image. Select an image from your PC (dont worry its wont get 
  uploaded its just to simulate an upload). Once this has been done you should 
  see a blue image under the word 'type' and a white/pattern image under the 
  blue one.

  This is what my client can not see! It also has issues between firefox and 
  internet explorer (apparently as i cannot test it)

  Anyone have any ideas on why this would be hapening?

  SJM
  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders 

  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] AS3 - Cross Browser Issues

2008-11-13 Thread FlashDev
Hey Glen

I just cant understand why now after months of development this problem has 
occurred!

It was working fine untill a week or so ago!
  - Original Message - 
  From: Glen Pike 
  To: Flash Coders List 
  Sent: Thursday, November 13, 2008 3:23 PM
  Subject: Re: [Flashcoders] AS3 - Cross Browser Issues


  I was okay too - I would possibly consider client stupidity / ineptitude 
  at this point and maybe diplomatically walk through the problem with the 
  client.
  There could be a host of problems - the type of image being sent, the 
  browser used, the network, etc.

  For dev work, I would recommend testing on IE, at least 7 if not 6 where 
  possible.  The percentage of users is still massive so should be considered.

  Glen

  FlashDev wrote:
   Thanks Paul, i cannot recreate the problem either! I dont know what to do!
 - Original Message - 
 From: Paul Andrews 
 To: Flash Coders List 
 Sent: Thursday, November 13, 2008 2:56 PM
 Subject: Re: [Flashcoders] AS3 - Cross Browser Issues
  
  
 Works for me exactly as you describe in both FF2.0 and IE 7.0
  
 - Original Message - 
 From: FlashDev [EMAIL PROTECTED]
 To: Flash Coders List flashcoders@chattyfig.figleaf.com
 Sent: Thursday, November 13, 2008 2:26 PM
 Subject: [Flashcoders] AS3 - Cross Browser Issues
  
  
 Hi Guys,
  
 Im having a wired problem with a flash project ive been wroking on for 
some 
 time now. The application works fine on my localhost for me but will not 
 work properly when the client views my localhost.
  
 http://flashdev.dnsalias.org:8081/PartyDelights/pd/
  
 Basically, when the flash loads click the 'Photo Tools' tab then click 
 upload am image. Select an image from your PC (dont worry its wont get 
 uploaded its just to simulate an upload). Once this has been done you 
should 
 see a blue image under the word 'type' and a white/pattern image under 
the 
 blue one.
  
 This is what my client can not see! It also has issues between firefox 
and 
 internet explorer (apparently as i cannot test it)
  
 Anyone have any ideas on why this would be hapening?
  
 SJM
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders 
  
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
   ___
   Flashcoders mailing list
   Flashcoders@chattyfig.figleaf.com
   http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
  
  
 

  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] AS3 - Cross Browser Issues

2008-11-13 Thread FlashDev
The white image is directly underneath the blue image, you will have ot click 
and drag the image to see the white one!

I have IE 5, 5.5, 6  7 and ive tested on all of them with no trouble!

FF, Chrome  Opera all work fine for me too!

What version of flash player are you guys running? im on 10,0,2,54
  - Original Message - 
  From: Joel Stransky 
  To: Flash Coders List 
  Sent: Thursday, November 13, 2008 4:19 PM
  Subject: Re: [Flashcoders] AS3 - Cross Browser Issues


  You can always get a stand alone version of IE6 here.
  http://browsers.evolt.org/?ie/32bit/standalone

  In my tests:
  IE6  7 - no blue or white pattern image shows up
  FF - just the blue image shows up
  Chrome - just the blue image shows up

  attached is the image I tried.

  On Thu, Nov 13, 2008 at 10:23 AM, Glen Pike [EMAIL PROTECTED]wrote:

   I was okay too - I would possibly consider client stupidity / ineptitude at
   this point and maybe diplomatically walk through the problem with the
   client.
   There could be a host of problems - the type of image being sent, the
   browser used, the network, etc.
  
   For dev work, I would recommend testing on IE, at least 7 if not 6 where
   possible.  The percentage of users is still massive so should be considered.
  
   Glen
  
  
   FlashDev wrote:
  
   Thanks Paul, i cannot recreate the problem either! I dont know what to do!
- Original Message -  From: Paul Andrews  To: Flash Coders List
Sent: Thursday, November 13, 2008 2:56 PM
Subject: Re: [Flashcoders] AS3 - Cross Browser Issues
  
  
Works for me exactly as you describe in both FF2.0 and IE 7.0
  
- Original Message -  From: FlashDev [EMAIL PROTECTED]
To: Flash Coders List flashcoders@chattyfig.figleaf.com
Sent: Thursday, November 13, 2008 2:26 PM
Subject: [Flashcoders] AS3 - Cross Browser Issues
  
  
Hi Guys,
  
Im having a wired problem with a flash project ive been wroking on for
   some  time now. The application works fine on my localhost for me but will
   not  work properly when the client views my localhost.
  
http://flashdev.dnsalias.org:8081/PartyDelights/pd/
  
Basically, when the flash loads click the 'Photo Tools' tab then click
upload am image. Select an image from your PC (dont worry its wont get
uploaded its just to simulate an upload). Once this has been done you
   should  see a blue image under the word 'type' and a white/pattern image
   under the  blue one.
  
This is what my client can not see! It also has issues between firefox
   and  internet explorer (apparently as i cannot test it)
  
Anyone have any ideas on why this would be hapening?
  
SJM
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
   ___
   Flashcoders mailing list
   Flashcoders@chattyfig.figleaf.com
   http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
  
  
  
  
  
   ___
   Flashcoders mailing list
   Flashcoders@chattyfig.figleaf.com
   http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
  



  -- 
  --Joel



--


  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] AS2 - Code not working in FP10

2008-11-06 Thread FlashDev
Yeah its just wired how it works in FP9 and not FP10 and I was wondering if it 
was this code or if it could be something else!?
  - Original Message - 
  From: sebastian 
  To: Flash Coders List 
  Sent: Wednesday, November 05, 2008 10:23 PM
  Subject: Re: [Flashcoders] AS2 - Code not working in FP10


  Hi,

  I'm sure someone else can give a reason, cause I wouldn't know; but 
  short of that, you could use a tween engine to center it. AS2 has 
  several good tween engines available.

  Seb.

  FlashDev wrote:
   Hi guys, ive got a bit fo code that works fine in flash player 9 but in 10 
it completely messes up!
   
   Its suppose to centre an image, any ideas why it no longer works?
   
   center_content.onEnterFrame = function() {
 // CENTER Y
 contentYTarg = Math.round((Stage.height - center_content._height)/2);
 contentYDist = contentYTarg - center_content._y;
 center_content._y += contentYDist/contentEase;
 if (contentYDist  0) {
  center_content._y = Math.ceil(center_content._y);
 }else{
  center_content._y = Math.floor(center_content._y);
 }
 if (Math.abs(contentYDist)  1) {
  center_content._y = contentYTarg;
 }
 // CENTER X
 contentXTarg = Math.round((Stage.width - center_content._width)/2);
 contentXDist = contentXTarg - center_content._x;
 center_content._x += contentXDist/contentEase;
 if (contentXDist  0) {
  center_content._x = Math.ceil(center_content._x);
 }else{
  center_content._x = Math.floor(center_content._x);
 }
 if (Math.abs(contentXDist)  1) {
  center_content._x = contentXTarg;
 }
 // WHEN CENTERING IS COMPLETE...
 if (contentYDist == 0  contentXDist == 0) {
  delete center_content.onEnterFrame
 }
}
   ___
   Flashcoders mailing list
   Flashcoders@chattyfig.figleaf.com
   http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
   
  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] AS2 - Code not working in FP10

2008-11-06 Thread FlashDev
yeah view it hear...

www.maryjanefashion.com/index.php 

SJM
  - Original Message - 
  From: Charles Parcell 
  To: Flash Coders List 
  Sent: Thursday, November 06, 2008 2:26 PM
  Subject: Re: [Flashcoders] AS2 - Code not working in FP10


  Is there a live link that shows this and we can test our FP versions on it?

  Charles P.


  On Thu, Nov 6, 2008 at 5:26 AM, FlashDev [EMAIL PROTECTED] wrote:

   Yeah its just wired how it works in FP9 and not FP10 and I was wondering if
   it was this code or if it could be something else!?
 - Original Message -
From: sebastian
To: Flash Coders List
Sent: Wednesday, November 05, 2008 10:23 PM
Subject: Re: [Flashcoders] AS2 - Code not working in FP10
  
  
Hi,
  
I'm sure someone else can give a reason, cause I wouldn't know; but
short of that, you could use a tween engine to center it. AS2 has
several good tween engines available.
  
Seb.
  
FlashDev wrote:
 Hi guys, ive got a bit fo code that works fine in flash player 9 but in
   10 it completely messes up!

 Its suppose to centre an image, any ideas why it no longer works?

 center_content.onEnterFrame = function() {
   // CENTER Y
   contentYTarg = Math.round((Stage.height - center_content._height)/2);
   contentYDist = contentYTarg - center_content._y;
   center_content._y += contentYDist/contentEase;
   if (contentYDist  0) {
center_content._y = Math.ceil(center_content._y);
   }else{
center_content._y = Math.floor(center_content._y);
   }
   if (Math.abs(contentYDist)  1) {
center_content._y = contentYTarg;
   }
   // CENTER X
   contentXTarg = Math.round((Stage.width - center_content._width)/2);
   contentXDist = contentXTarg - center_content._x;
   center_content._x += contentXDist/contentEase;
   if (contentXDist  0) {
center_content._x = Math.ceil(center_content._x);
   }else{
center_content._x = Math.floor(center_content._x);
   }
   if (Math.abs(contentXDist)  1) {
center_content._x = contentXTarg;
   }
   // WHEN CENTERING IS COMPLETE...
   if (contentYDist == 0  contentXDist == 0) {
delete center_content.onEnterFrame
   }
  }
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
   ___
   Flashcoders mailing list
   Flashcoders@chattyfig.figleaf.com
   http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
  
  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] AS2 - Code not working in FP10

2008-11-06 Thread FlashDev
haha! some how you both managed to get the same random image!

nice ass tho isnt it! :o)
  - Original Message - 
  From: Eamonn Faherty 
  To: Flash Coders List 
  Sent: Thursday, November 06, 2008 3:52 PM
  Subject: RE: [Flashcoders] AS2 - Code not working in FP10


  Me too!

  haha

  -Original Message-
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Eric E. Dolecki
  Sent: 06 November 2008 15:46
  To: Flash Coders List
  Subject: Re: [Flashcoders] AS2 - Code not working in FP10

  I opened that up at work and was presented was some chicks ass pulling jeans
  up on it. Someone walking by thought it was humorous.

  On Thu, Nov 6, 2008 at 10:26 AM, FlashDev [EMAIL PROTECTED] wrote:

   yeah view it hear...
  
   www.maryjanefashion.com/index.php
  
   SJM
 - Original Message -
From: Charles Parcell
To: Flash Coders List
 Sent: Thursday, November 06, 2008 2:26 PM
Subject: Re: [Flashcoders] AS2 - Code not working in FP10
  
  
Is there a live link that shows this and we can test our FP versions on
   it?
  
Charles P.
  
  
On Thu, Nov 6, 2008 at 5:26 AM, FlashDev [EMAIL PROTECTED] wrote:
  
 Yeah its just wired how it works in FP9 and not FP10 and I was wondering
   if
 it was this code or if it could be something else!?
   - Original Message -
  From: sebastian
  To: Flash Coders List
  Sent: Wednesday, November 05, 2008 10:23 PM
  Subject: Re: [Flashcoders] AS2 - Code not working in FP10


  Hi,

  I'm sure someone else can give a reason, cause I wouldn't know; but
  short of that, you could use a tween engine to center it. AS2 has
  several good tween engines available.

  Seb.

  FlashDev wrote:
   Hi guys, ive got a bit fo code that works fine in flash player 9 but
   in
 10 it completely messes up!
  
   Its suppose to centre an image, any ideas why it no longer works?
  
   center_content.onEnterFrame = function() {
 // CENTER Y
 contentYTarg = Math.round((Stage.height -
   center_content._height)/2);
 contentYDist = contentYTarg - center_content._y;
 center_content._y += contentYDist/contentEase;
 if (contentYDist  0) {
  center_content._y = Math.ceil(center_content._y);
 }else{
  center_content._y = Math.floor(center_content._y);
 }
 if (Math.abs(contentYDist)  1) {
  center_content._y = contentYTarg;
 }
 // CENTER X
 contentXTarg = Math.round((Stage.width - center_content._width)/2);
 contentXDist = contentXTarg - center_content._x;
 center_content._x += contentXDist/contentEase;
 if (contentXDist  0) {
  center_content._x = Math.ceil(center_content._x);
 }else{
  center_content._x = Math.floor(center_content._x);
 }
 if (Math.abs(contentXDist)  1) {
  center_content._x = contentXTarg;
 }
 // WHEN CENTERING IS COMPLETE...
 if (contentYDist == 0  contentXDist == 0) {
  delete center_content.onEnterFrame
 }
}
   ___
   Flashcoders mailing list
   Flashcoders@chattyfig.figleaf.com
   http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
  
  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
   ___
   Flashcoders mailing list
   Flashcoders@chattyfig.figleaf.com
   http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
  



  -- 
  http://ericd.net
  Interactive design and development
  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] AS2 - Code not working in FP10

2008-11-05 Thread FlashDev
Hi guys, ive got a bit fo code that works fine in flash player 9 but in 10 it 
completely messes up!

Its suppose to centre an image, any ideas why it no longer works?

center_content.onEnterFrame = function() {
  // CENTER Y
  contentYTarg = Math.round((Stage.height - center_content._height)/2);
  contentYDist = contentYTarg - center_content._y;
  center_content._y += contentYDist/contentEase;
  if (contentYDist  0) {
   center_content._y = Math.ceil(center_content._y);
  }else{
   center_content._y = Math.floor(center_content._y);
  }
  if (Math.abs(contentYDist)  1) {
   center_content._y = contentYTarg;
  }
  // CENTER X
  contentXTarg = Math.round((Stage.width - center_content._width)/2);
  contentXDist = contentXTarg - center_content._x;
  center_content._x += contentXDist/contentEase;
  if (contentXDist  0) {
   center_content._x = Math.ceil(center_content._x);
  }else{
   center_content._x = Math.floor(center_content._x);
  }
  if (Math.abs(contentXDist)  1) {
   center_content._x = contentXTarg;
  }
  // WHEN CENTERING IS COMPLETE...
  if (contentYDist == 0  contentXDist == 0) {
   delete center_content.onEnterFrame
  }
 }
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] AS3 - Code problem, can anyone help?

2008-10-22 Thread FlashDev
Hi Guys

Im trying to write a little piece of code to stop the submit button of a form 
be active until the form fields have been completely filled in, its a really 
simple for consisting of 1 form field and 1 checkbox, ive had a go at writing 
some code of my own but for some reason flash quits on export. 

Whats wrong with my code?
What do you think could be causing it to crash?

here is my stab at it...

submit_btn.useHandCursor = false;
submit_btn.mouseEnabled = false;

submit_btn.addEventListener(MouseEvent.CLICK, submit_btn_CLICK); 
this.addEventListener(Event.ENTER_FRAME, ENTERFRAME);

function ENTERFRAME(ev:Event):void
{
if((mobileNumber.text != ) || (mobileNumber.text != NaN) || 
(mobileNumber.text != undefined)  (terms.selected != false)){
submit_btn.useHandCursor = true;
submit_btn.mouseEnabled = true;
}else{
var frame:int = 0;
trace(EnterFrame+(frame+));
}
}
function submit_btn_CLICK(ev:Event):void
{
var url:String = formSubmit.php;
var request:URLRequest = new URLRequest(url);
var variables:URLVariables = new URLVariables();
variables.mobile = mobileNumber.text;
request.data = variables;
request.method = URLRequestMethod.POST;
try {
navigateToURL(request, _blank);
}
catch (err:Error) {
trace(err);
}
}

Thanks
SJM
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Is this site legit to buy the software???

2006-02-09 Thread FlashDev
Don't trust it. I know very few big name manufacturer's who offer 
download software products sold through any other site than their own.


The GM of a radio station I used to run IT for came to me one day saying 
that he bought some software from a vendor on e-bay. The software was 
way undercost. He wanted me to install it. There were programs from 4 
different manufacturers on one (inkjet) printed disk. After opening the 
folders and reading the install instructions I saw several references to 
files with passwords, that the install would read during the install. 
Some kind of verbiage in the install files as well no support, no 
upgrade, due to the low cost of this software


After calling Sony for verification we petitioned EBay to get our money 
back for the fraudulant software. The seller claimed that they were 
fully within the rights of the EULA agreements of the software they 
were dispensing. Sony's lawyers didn't see it that way when they went to 
court


Cutter

Helmut Granda wrote:


Actually the site was registered through go daddy:

http://who.godaddy.com/whois.aspx?domain=tekdealers.comprog_id=godaddy

and Domains by Proxy say:

Prohibitions:  Domains By Proxy will not do business with you,
nor protect your identity, if you:
• Transmit spam, viruses or harmful computer programs;
• Violate the law or infringe a third party’s trademark or copyright;
• Engage in morally objectionable activities, including but not limited to
those which are child pornographic, defamatory, abusive, harassing, obscene,
racist, or otherwise objectionable.

...So either the software is legal or they don’t know tekdealers is seling
illegal software?

Is there anyway to check with MM about this?

...helmut
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Martin Wood
Sent: Thursday, February 09, 2006 11:10 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Is this site legit to buy the software???

if you follow the WHOIS trail :

http://www.dnsstuff.com/tools/whois.ch?ip=http%3A%2F%2Fwww.tekdealers.com

'NOTE: This domain is registered through register.com, a poor WHOIS provider

that often violates ICANN regulations and does not provide WHOIS service.'

checking the WHOIS results from register.com gives this :

Registrant:

DomainsByProxy.com

Who's site says :

'...So if you want to keep your personal information private and still
retain 
full benefits of domain registration, then a “private registration” is for
you. 
Your identity is nobody’s business but ours.'


so, they appear to have done everything they can to avoid being contacted
directly.

Personally I like the services I use to have some public visibility.

I guess its a case of Caveat Emptor.

Martin.


Søren Christensen wrote:
 


Good question.
I dont know. But it definitely is worrying that they give you no
possibilities but a online forum to get in thouch with them. No adress nor
phone, email nada...


On 9/2/06 17:45, Jason Je [EMAIL PROTECTED] wrote:

   


Does anybody know if this site is legit or is it one of those warez
 


site???
 


http://www.tekdealers.com/?pg=product_detailsref=956846552productID=374

Thank you...
 


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

 


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com