[Flashcoders] UNSUBSCRIBE ME PLEASE!

2007-03-08 Thread Sebastián Sirvent




Sebastián Sirvent


___
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


Re: [Flashcoders] Help with updating a nodeValue in an XML file

2007-03-08 Thread Sebastián Sirvent



On 3/8/07 7:48 PM, "Teresa Hardy" <[EMAIL PROTECTED]> wrote:

> Wow, I seriously misread something along the line. But it sounds like I can
> pass something back to the script and that would work. Thanks I'll go look
> at the other forum but I thought this was way above a newbie question.
> Teresa
> 
> On 3/8/07, Muzak <[EMAIL PROTECTED]> wrote:
>> 
>> That's because Flash can't write any files, only read.
>> You'll need a server side language to handle that for you (ASP, PHP,
>> ColdFusion, etc..) or look into Remoting.
>> 
>> And you probably may wanna join the Flash Newbie (figleaf) or
>> FlashMacromedia (yahoogroups) list for this type of questions.
>> http://chattyfig.figleaf.com/mailman/listinfo/flashnewbie
>> http://tech.groups.yahoo.com/group/FLASHmacromedia/
>> 
>> regards,
>> Muzak
>> 
>> - Original Message -
>> From: "Teresa Hardy" <[EMAIL PROTECTED]>
>> To: 
>> Sent: Thursday, March 08, 2007 11:12 PM
>> Subject: Re: [Flashcoders] Help with updating a nodeValue in an XML file
>> 
>> 
>>> This definitely loads the Flash object...I get that part. But it doesn't
>>> write to my file called setup.xml. I am in the OReilly ActionScript book
>> now
>>> and this is the first time it has ever failed me. I tried parseXML and
>>> sendAndLoad but I can't seem to write into the file.
>>> 
>>> Thanks for helping me.
>>> Teresa
>>> 
>>> On 3/8/07, Rost, Andrew <[EMAIL PROTECTED]> wrote:
>>>> 
>>>> All you need to do is set the nodeValue rather than access it.
>>>> 
>>>> var trial_xml:XML = new XML("This is a
>>>> category");
>>>> trace(trial_xml.firstChild.firstChild.firstChild.nodeValue);
>>>> trial_xml.firstChild.firstChild.firstChild.nodeValue = "This is a NEW
>>>> category";
>>>> trace(trial_xml.firstChild.firstChild.firstChild.nodeValue);
>>>> trace(trial_xml);
>>>> stop();
>>>> 
>>>> trace output:
>>>> 
>>>> This is a category
>>>> This is a NEW category
>>>> This is a NEW category
>>>> 
>>>> Hope that helps,
>>>> Andrew
>> 
>> 
>> ___
>> 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
> 

-- 

Sebastián Sirvent


___
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


Re: [Flashcoders] Global functions

2007-03-08 Thread Sebastián Sirvent



On 3/8/07 7:57 PM, "Geoff Stearns" <[EMAIL PROTECTED]> wrote:

> a good way to do this would be to make a static class for your
> tracking stuff.
> 
> then you can do things like:
> 
> StatsTracker.trackPage(url);
> 
> from any class or timeline (assuming you import the class first, etc.
> etc.)
> 
> then you can use ExternalInterface to make the js call to your
> tracking function.
> 
> 
> 
> On Mar 8, 2007, at 5:31 PM, Glen Pike wrote:
> 
>> Hi,
>> 
>>I am trying to wrap the getURL function in order to track
>> outgoing links using Google analytics...
>> 
>>e.g.
>> 
>>function getURLTracked(url, window, method) {
>>getURL(url, window);
>>getURL("javascript:alert('"+ url+"')");
>>   //getURL("javascript:urchinTracker('/app/" + url +"');");
>>  }
>> 
>>I would like to create a global function that is available to
>> AS2 classes and the timeline
>> 
>>I have tried to write it in an external file and #include this
>> file in the constructor of my classes, but still don't get the
>> function in scope at compile time.
>> 
>>Apart from writing a method in my class, which I would have to
>> repeat for a few different classes, is there a way of making this
>> function available to the timeline and the AS2 classes in one foul
>> swoop?
>> 
>>I have a core application and lots of loaded SWF's with nasty
>> timeline buttons to track...
>>  Thanks
>> 
>>Glen
>> 
>> ___
>> 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
> 

-- 

Sebastián Sirvent


___
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


Re: [Flashcoders] DINAMIC MENU

2006-04-04 Thread Sebastián Sirvent
How can I center text among height, depending on the amount of  
characters?



Sebastián Sirvent
http://www.e-foco.com


On Mar 29, 2006, at 11:57 PM, <[EMAIL PROTECTED]>  
<[EMAIL PROTECTED]> wrote:


make the textfield dynamic, make it multilined, wordwrap and make  
sure it

can autosize.
mytxt.autoSize='left'; (can also be true)



Hi,

I'm loading texts from a XML file to be assigned to different
buttons, but this texts have different amout of characters, and  
I   need

the buttons to adjust to the amout of characters, keeping the   same
widht for all of them, and just changing height and make this
text to

wrap.
  For example, when text is "home" this button must have one line,
but when text is "This text is to long for a button" I need it to be
set in 2 or maybe 3 lines.

Thanks in advance.


Sebastián Sirvent
http://www.e-foco.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




___
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


[Flashcoders] DINAMIC MENU

2006-03-29 Thread Sebastián Sirvent

Hi,

I'm loading texts from a XML file to be assigned to different  
buttons, but this texts have different amout of characters, and I  
need the buttons to adjust to the amout of characters, keeping the  
same widht for all of them, and just changing height and make this  
text to wrap.
 For example, when text is "home" this button must have one line,  
but when text is "This text is to long for a button" I need it to be  
set in 2 or maybe 3 lines.


Thanks in advance.


Sebastián Sirvent
http://www.e-foco.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


[Flashcoders] PDF forced to download

2005-11-30 Thread Sebastián Sirvent

Hi,

How can a PDF be forced to download instead of opening in the browser?
It can't be zipped...

Thanks


Sebastián Sirvent
http://www.e-foco.com


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


Re: [Flashcoders] ROTATING WITH AS

2005-11-28 Thread Sebastián Sirvent
My problem is not how to make a tweening, but how to make it slow  
down progressively until it stops when rolling Out the MC.

Thanks

On Nov 28, 2005, at 8:41 PM, Merrill, Jason wrote:


http://www.macromedia.com/devnet/flash/articles/tweening.html
http://chattyfig.figleaf.com/mailman/listinfo/flashnewbie

Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com




-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf
Of Sebastián Sirvent
Sent: Monday, November 28, 2005 6:25 PM
To: Flashcoders mailing list
Subject: [Flashcoders] ROTATING WITH AS

Hi,

I need to rotate a logo, onRollover of different MCs.
I've got a list with the same logo on every item side, and when you
point to one sentence of this list, the logo on its side have to
start rotating, and when pointer rolls out, this logo has to stop
progressively.

Any comment will be welcome.

Thanks in advance

Sebastian






NOTICE:
This message is for the designated recipient only and may contain  
privileged or confidential information. If you have received it in  
error, please notify the sender immediately and delete the  
original. Any other use of this e-mail by you is prohibited.

___
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] ROTATING WITH AS

2005-11-28 Thread Sebastián Sirvent

Hi,

I need to rotate a logo, onRollover of different MCs.
I've got a list with the same logo on every item side, and when you  
point to one sentence of this list, the logo on its side have to  
start rotating, and when pointer rolls out, this logo has to stop  
progressively.


Any comment will be welcome.

Thanks in advance

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