[Flashcoders] Flash Builder 4.6 Spark button skin

2012-05-17 Thread Creighton, Gerry
I created a custom skin for three buttons that have the same background for up, 
over and down states.
I'm setting those with png's like so..






This works great and allows me to set the label for each but I'm having a 
problem setting & positioning the icon for each
Button that uses this skin. I want to display a different icon for each of the 
buttons using this skin.

Can this be done? I think there might be a conflict with the skin I created and 
setting an icon. The icon for each button
Doesn't even show up.

Anyone run into this? I've looked online but nothing related to my situation.

Thanks,

-Gerry

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


Re: [Flashcoders] Get Timezone City?

2012-05-17 Thread Karl DeSaulniers
You could always prompt your user to enter their city if your needing 
specifics. Getting the city from the time zone is a bit general. Getting the 
city by ip can also get a little misleading since ips can be spoofed or you 
could end up getting their ISPs ip or if it's a virtual machine. But that's my 
experience. Someone may have a solution I'm not aware of.

Best,
Karl

Sent from losPhone

On May 17, 2012, at 6:48 AM, Karl DeSaulniers  wrote:

> That's what this code does.
> Gets the timezone like CST or America/Chicago for example based on local 
> settings.
> Or is that not what your wanting?
> 
> Best,
> Karl
> 
> 
> On May 17, 2012, at 4:30 AM, David Hunter wrote:
> 
>> Thanks Karl,
>> 
>> I can grab the time using the Date class in AS3, I'm more stuck on how to
>> detect what city they have set in their system preferences or some other
>> way to detect what city they are in.
>> 
>> IP address?
>> 
>> Thanks,
>> 
>> David
>> 
>> On 17 May 2012 00:37, Karl DeSaulniers  wrote:
>> 
>>> You could use PHPs date function.
>>> 
>>> http://us.php.net/manual/en/**function.date.php
>>> http://www.w3schools.com/php/**func_date_date.asp
>>> 
>>> >> $timezone = date('T');
>>> ?>
>>> 
>>> or
>>> 
>>> >> $timezone = date('e');
>>> ?>
>>> 
>>> Then flashvars it into your flash clock.
>>> Just a thought.
>>> 
>>> Best,
>>> Karl
>>> 
>>> 
>>> 
>>> On May 16, 2012, at 5:20 PM, David Hunter wrote:
>>> 
>>> Hi All,
 
 I'm making a screensaver / air app of a clock and one of the desired
 features is to grab the city of the timezone that the computer is set to.
 For example my clock is set to GMT and London, but I could set it to
 Eastern Daylight Time and the city to New York or Miami.
 
 Does anyone know if it is possible to grab the city selected associated
 with the time of the computer? (I'm on a mac, not sure if the setup is the
 same on a PC...)
 
 Thanks,
 
 David
 
 --
 David Hunter
 
 www.davidhunterdesign.com
 +44 (0) 7869 104 906
 __**_
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.**com 
 http://chattyfig.figleaf.com/**mailman/listinfo/flashcoders
 
>>> 
>>> Karl DeSaulniers
>>> Design Drumm
>>> http://designdrumm.com
>>> 
>>> __**_
>>> Flashcoders mailing list
>>> Flashcoders@chattyfig.figleaf.**com 
>>> http://chattyfig.figleaf.com/**mailman/listinfo/flashcoders
>>> 
>> 
>> 
>> 
>> -- 
>> David Hunter
>> 
>> www.davidhunterdesign.com
>> +44 (0) 7869 104 906
>> ___
>> Flashcoders mailing list
>> Flashcoders@chattyfig.figleaf.com
>> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> 
> Karl DeSaulniers
> Design Drumm
> http://designdrumm.com
> 
> ___
> 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] Get Timezone City?

2012-05-17 Thread Karl DeSaulniers

That's what this code does.
Gets the timezone like CST or America/Chicago for example based on  
local settings.

Or is that not what your wanting?

Best,
Karl


On May 17, 2012, at 4:30 AM, David Hunter wrote:


Thanks Karl,

I can grab the time using the Date class in AS3, I'm more stuck on  
how to
detect what city they have set in their system preferences or some  
other

way to detect what city they are in.

IP address?

Thanks,

David

On 17 May 2012 00:37, Karl DeSaulniers  wrote:


You could use PHPs date function.

http://us.php.net/manual/en/**function.date.php
http://www.w3schools.com/php/**func_date_date.asp




or



Then flashvars it into your flash clock.
Just a thought.

Best,
Karl



On May 16, 2012, at 5:20 PM, David Hunter wrote:

Hi All,


I'm making a screensaver / air app of a clock and one of the desired
features is to grab the city of the timezone that the computer is  
set to.

For example my clock is set to GMT and London, but I could set it to
Eastern Daylight Time and the city to New York or Miami.

Does anyone know if it is possible to grab the city selected  
associated
with the time of the computer? (I'm on a mac, not sure if the  
setup is the

same on a PC...)

Thanks,

David

--
David Hunter

www.davidhunterdesign.com
+44 (0) 7869 104 906
__**_
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.**com >
http://chattyfig.figleaf.com/**mailman/listinfo/flashcoders




Karl DeSaulniers
Design Drumm
http://designdrumm.com

__**_
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.**com >
http://chattyfig.figleaf.com/**mailman/listinfo/flashcoders






--
David Hunter

www.davidhunterdesign.com
+44 (0) 7869 104 906
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Karl DeSaulniers
Design Drumm
http://designdrumm.com

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


RE: [Flashcoders] Get Timezone City?

2012-05-17 Thread Karina Steffens
Hi David,

The IP address could work if your Air has access to that. I don't know much
about it, but for a web project I worked on a few years ago, the SEO people
used the IP to determine the user's country and redirect according to that
(Ireland or US site). I think they were using some kind of Geo-IP database
service for this. 

Karina



-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of David Hunter
Sent: 17 May 2012 10:31
To: Flash Coders List
Subject: Re: [Flashcoders] Get Timezone City?

Thanks Karl,

I can grab the time using the Date class in AS3, I'm more stuck on how to
detect what city they have set in their system preferences or some other way
to detect what city they are in.

IP address?

Thanks,

David

On 17 May 2012 00:37, Karl DeSaulniers  wrote:

> You could use PHPs date function.
>
> http://us.php.net/manual/en/**function.date.php al/en/function.date.php> 
> http://www.w3schools.com/php/**func_date_date.asp .com/php/func_date_date.asp>
>
>  $timezone = date('T');
> ?>
>
> or
>
>  $timezone = date('e');
> ?>
>
> Then flashvars it into your flash clock.
> Just a thought.
>
> Best,
> Karl
>
>
>
> On May 16, 2012, at 5:20 PM, David Hunter wrote:
>
>  Hi All,
>>
>> I'm making a screensaver / air app of a clock and one of the desired 
>> features is to grab the city of the timezone that the computer is set to.
>> For example my clock is set to GMT and London, but I could set it to 
>> Eastern Daylight Time and the city to New York or Miami.
>>
>> Does anyone know if it is possible to grab the city selected 
>> associated with the time of the computer? (I'm on a mac, not sure if 
>> the setup is the same on a PC...)
>>
>> Thanks,
>>
>> David
>>
>> --
>> David Hunter
>>
>> www.davidhunterdesign.com
>> +44 (0) 7869 104 906
>> __**_
>> Flashcoders mailing list
>> Flashcoders@chattyfig.figleaf.**com 
>> 
>> http://chattyfig.figleaf.com/**mailman/listinfo/flashcoders> attyfig.figleaf.com/mailman/listinfo/flashcoders>
>>
>
> Karl DeSaulniers
> Design Drumm
> http://designdrumm.com
>
> __**_
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.**com 
> 
> http://chattyfig.figleaf.com/**mailman/listinfo/flashcoders ttyfig.figleaf.com/mailman/listinfo/flashcoders>
>



--
David Hunter

www.davidhunterdesign.com
+44 (0) 7869 104 906
___
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] Get Timezone City?

2012-05-17 Thread David Hunter
Thanks Karl,

I can grab the time using the Date class in AS3, I'm more stuck on how to
detect what city they have set in their system preferences or some other
way to detect what city they are in.

IP address?

Thanks,

David

On 17 May 2012 00:37, Karl DeSaulniers  wrote:

> You could use PHPs date function.
>
> http://us.php.net/manual/en/**function.date.php
> http://www.w3schools.com/php/**func_date_date.asp
>
>  $timezone = date('T');
> ?>
>
> or
>
>  $timezone = date('e');
> ?>
>
> Then flashvars it into your flash clock.
> Just a thought.
>
> Best,
> Karl
>
>
>
> On May 16, 2012, at 5:20 PM, David Hunter wrote:
>
>  Hi All,
>>
>> I'm making a screensaver / air app of a clock and one of the desired
>> features is to grab the city of the timezone that the computer is set to.
>> For example my clock is set to GMT and London, but I could set it to
>> Eastern Daylight Time and the city to New York or Miami.
>>
>> Does anyone know if it is possible to grab the city selected associated
>> with the time of the computer? (I'm on a mac, not sure if the setup is the
>> same on a PC...)
>>
>> Thanks,
>>
>> David
>>
>> --
>> David Hunter
>>
>> www.davidhunterdesign.com
>> +44 (0) 7869 104 906
>> __**_
>> Flashcoders mailing list
>> Flashcoders@chattyfig.figleaf.**com 
>> http://chattyfig.figleaf.com/**mailman/listinfo/flashcoders
>>
>
> Karl DeSaulniers
> Design Drumm
> http://designdrumm.com
>
> __**_
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.**com 
> http://chattyfig.figleaf.com/**mailman/listinfo/flashcoders
>



-- 
David Hunter

www.davidhunterdesign.com
+44 (0) 7869 104 906
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders