[Flashcoders] dynamically tween gradient

2006-12-15 Thread Scott Brantley
I'm building a website. The background for each of the sections of the
site is a different colored linear gradient. Does anyone have any ideas
on how to build a class, prototype or series of functions that will
dynamically change the background gradient from one colored gradient to
another over a period of time? If anyone has any pre-built code and
wouldn't mind sharing I will greatly appreciate it!

Thanks

 

___
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] Alpha fade problem

2006-06-01 Thread Scott Brantley

You could use the alphaTo property of the tween class. It's much easier.



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Tony
Watkins
Sent: Thursday, June 01, 2006 9:58 AM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] Alpha fade problem

So, the following script will cause a MC to fade in. What would I change
to
make a MC fade out?

onClipEvent (load) {
loadTime = getTimer();
alphaTime = 1000;
myAlpha = 0;
this._alpha = myAlpha;
}
onClipEvent (enterFrame) {
if (this._alpha100) {
myAlpha = ((getTimer()-loadTime)/alphaTime)*100;
this._alpha = myAlpha;
}
}

___
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] problems with dynamic text field autosize property

2006-05-26 Thread Scott Brantley
Hi Everyone,

 

I'm having a problem with the dynamic text field autosize property. The
problem I'm having is that I'm not catching the correct height of the
textfield directly after the textfield is filled with text. In other
words, I create a dynamic textfield and give it a set width and then I
set all the properties (selectable, multiline, wordwrap, embed fonts,
autosize, html etc). Then I fill it with html text and then I get its
height. If you will look at my code below you can see that I have the
variables a, b, and c all set to question._height. Every single time I
test this and trace it in the output window I get a =34, b=92, and c=92
(92 is the correct height of the textfield). Does anyone have an
explanation? The text I'm filling the textfield with is loaded from the
data base way before this code executes. It seems that the code is
faster than the textfield can fill up. Is there anyway to detect when
the textfield has filled and autosized?  

 

test_mc.createTextField(question_txt, 1000, 0, 0, 385, 0);

question = _root.test_mc.question_txt;

question.selectable = false;

question.multiline = true;

question.wordWrap = true;

question.embedFonts = true;

question.autoSize = true;

question.html = true;

//flash is taking too much time rendering out this text

question.htmlText = p align='center'font face='myVerdana' size='25'
color='#FF'b+myHTML+/b/font/p;

//the following is jerry rigged and needs to be fixed

a = question._height;

trace(a =  + a);

b = question._height;

trace(b =  + b);

c = question._height;

trace(c =  + c);

 

Thanks,

Scott

___
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] problems with dynamic text field autosize property

2006-05-26 Thread Scott Brantley

I think you may be right. If you look at my code it works perfectly. I'm
just pissed that it took something as stupid as getting the height of
the textfield in 3 different variables. It actually works on the 2nd
variable. You see I put all my code in functions. But, I don't use
classes and prototypes and the like. I was thinking maybe it had
something to do with that. Thanks for answering though. I posted the
same question on a couple of forums and got no response at all.




-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Duncan
Reid
Sent: Friday, May 26, 2006 4:15 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] problems with dynamic text field autosize
property

Hi Scott,

I think it's one of those wait a frame type deals, either that or try
question.textHeight.

Dunc


On 5/26/06, Scott Brantley [EMAIL PROTECTED] wrote:

 Hi Everyone,



 I'm having a problem with the dynamic text field autosize property.
The
 problem I'm having is that I'm not catching the correct height of the
 textfield directly after the textfield is filled with text. In other
 words, I create a dynamic textfield and give it a set width and then I
 set all the properties (selectable, multiline, wordwrap, embed fonts,
 autosize, html etc). Then I fill it with html text and then I get its
 height. If you will look at my code below you can see that I have the
 variables a, b, and c all set to question._height. Every single time I
 test this and trace it in the output window I get a =34, b=92, and
c=92
 (92 is the correct height of the textfield). Does anyone have an
 explanation? The text I'm filling the textfield with is loaded from
the
 data base way before this code executes. It seems that the code is
 faster than the textfield can fill up. Is there anyway to detect when
 the textfield has filled and autosized?



 test_mc.createTextField(question_txt, 1000, 0, 0, 385, 0);

 question = _root.test_mc.question_txt;

 question.selectable = false;

 question.multiline = true;

 question.wordWrap = true;

 question.embedFonts = true;

 question.autoSize = true;

 question.html = true;

 //flash is taking too much time rendering out this text

 question.htmlText = p align='center'font face='myVerdana'
size='25'
 color='#FF'b+myHTML+/b/font/p;

 //the following is jerry rigged and needs to be fixed

 a = question._height;

 trace(a =  + a);

 b = question._height;

 trace(b =  + b);

 c = question._height;

 trace(c =  + c);



 Thanks,

 Scott

 ___
 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] SeekBarHandle ???

2006-05-24 Thread Scott Brantley
Does anyone know how to reference the SeekBarHandle? My problem is that
I'm trying to toggle its visibility on and off and I have no way of
knowing what its instance name is.

 

 

___
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] SeekBarHandle ??? -- still problems

2006-05-24 Thread Scott Brantley

Thanks Elibol for the traceClip function. I ran your function on my
seekbar that is named 'seeker';

It traced back: 
'seeker: _level0.seeker
progress_mc: _level0.seeker.progress_mc'

So it is telling me that the seekbarhandle is named progress_mc (I
guess).

But when I write a piece of code like

_level0.seeker.progress_mc._visible = false;
or
seeker.progress_mc._visible = false;
or
progress_mc._visible = false

It is still visible. 





-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of elibol
Sent: Wednesday, May 24, 2006 1:35 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] SeekBarHandle ???

Real vague post mang, maybe you want to be a bit more descriptive next
time
=]

Look for the instance name using the flash debugger. You can also use a
recursive function to trace out all instance names of movieclips.
Something
like this:

function traceClip(mc:MovieClip){
trace(mc._name+': '+mc);
for(var i in mc){
if(mc[i] instanceof MovieClip) arguments.callee(mc[i]);
}
}

M.

On 5/24/06, Scott Brantley [EMAIL PROTECTED] wrote:

 Does anyone know how to reference the SeekBarHandle? My problem is
that
 I'm trying to toggle its visibility on and off and I have no way of
 knowing what its instance name is.





 ___
 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


RE: [Flashcoders] SeekBarHandle ??? -- still problems

2006-05-24 Thread Scott Brantley
I just sent it to your gmail account

Scott Brantley
Multi-media Designer/Programmer
Hammond Communications Group

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of elibol
Sent: Wednesday, May 24, 2006 2:30 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] SeekBarHandle ??? -- still problems

I'm thinking that you are setting the visibility of the movieclip before
it's instantiated. I'm not certain, it's either this or the movieclip is
set
to be visible at some point after you set it to be invisible.

At this point I can only give you an idea of what could be happening. I
will
check it out if you send me the fla ( you must send it directly to me,
not
to the list ).

Regards,

M.

On 5/24/06, Scott Brantley [EMAIL PROTECTED] wrote:


 Thanks Elibol for the traceClip function. I ran your function on my
 seekbar that is named 'seeker';

 It traced back:
 'seeker: _level0.seeker
 progress_mc: _level0.seeker.progress_mc'

 So it is telling me that the seekbarhandle is named progress_mc (I
 guess).

 But when I write a piece of code like

 _level0.seeker.progress_mc._visible = false;
 or
 seeker.progress_mc._visible = false;
 or
 progress_mc._visible = false

 It is still visible.





 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of elibol
 Sent: Wednesday, May 24, 2006 1:35 PM
 To: Flashcoders mailing list
 Subject: Re: [Flashcoders] SeekBarHandle ???

 Real vague post mang, maybe you want to be a bit more descriptive next
 time
 =]

 Look for the instance name using the flash debugger. You can also use
a
 recursive function to trace out all instance names of movieclips.
 Something
 like this:

 function traceClip(mc:MovieClip){
 trace(mc._name+': '+mc);
 for(var i in mc){
 if(mc[i] instanceof MovieClip) arguments.callee(mc[i]);
 }
 }

 M.

 On 5/24/06, Scott Brantley [EMAIL PROTECTED] wrote:
 
  Does anyone know how to reference the SeekBarHandle? My problem is
 that
  I'm trying to toggle its visibility on and off and I have no way of
  knowing what its instance name is.
 
 
 
 
 
  ___
  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@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


RE: [Flashcoders] \t in html - how to use tabStops

2006-05-17 Thread Scott Brantley

Anybody got any answers? Please!

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Scott
Brantley
Sent: Wednesday, May 17, 2006 11:41 AM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] \t in html - how to use tabStops

Hey everyone,

 

I'm having a problem using the tabStops property from within HTML text
in a dynamic textfield. I'm using CSS to format the text. I don't know
if my code is conflicting with itself or not. Here's what my code looks
like.

 

var myStyle = new TextField.StyleSheet();

myStyle.onLoad = function() {

myText.styleSheet = this;

myText.html = true;

myText.htmlText = myHTML;

//format the tabs

var myformat:TextFormat = new TextFormat();

myformat.tabStops = [40, 80, 120, 160];

myText.setTextFormat(myformat);

};

//load the stylesheet

myStyle.load(myExternalCSS.css);

 

myHTML = p class =
'body'\tSTRENGTH\tDURABILITY\tCONTROL\tEFFECTIVE/p

 

 

The tabs are recognized but they are only moving to default value of
4px. They are not recognizing the tabStops at all.

 

Any help is appreciated.

 

Thanks,

Scott

___
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


RE: [Flashcoders] \t in html - how to use tabStops

2006-05-17 Thread Scott Brantley
To answer my own question:

http://chattyfig.figleaf.com/pipermail/flashcoders/2003-February/063062.
html



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Scott
Brantley
Sent: Wednesday, May 17, 2006 1:02 PM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] \t in html - how to use tabStops


Anybody got any answers? Please!

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Scott
Brantley
Sent: Wednesday, May 17, 2006 11:41 AM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] \t in html - how to use tabStops

Hey everyone,

 

I'm having a problem using the tabStops property from within HTML text
in a dynamic textfield. I'm using CSS to format the text. I don't know
if my code is conflicting with itself or not. Here's what my code looks
like.

 

var myStyle = new TextField.StyleSheet();

myStyle.onLoad = function() {

myText.styleSheet = this;

myText.html = true;

myText.htmlText = myHTML;

//format the tabs

var myformat:TextFormat = new TextFormat();

myformat.tabStops = [40, 80, 120, 160];

myText.setTextFormat(myformat);

};

//load the stylesheet

myStyle.load(myExternalCSS.css);

 

myHTML = p class =
'body'\tSTRENGTH\tDURABILITY\tCONTROL\tEFFECTIVE/p

 

 

The tabs are recognized but they are only moving to default value of
4px. They are not recognizing the tabStops at all.

 

Any help is appreciated.

 

Thanks,

Scott

___
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] fscommand question

2006-05-17 Thread Scott Brantley
Hey everyone,

I'm building an Interactive CD-ROM. In the PC version I'm using the
fscommand to run a .bat file that opens Microsoft Word and Word then
opens the correct .DOC. How can I do this for the MAC version? Do I have
to use applescript? Does anyone have any advice or answers?

Thanks

 

___
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] How to make a MAC - PC hybrid CD-ROM

2006-05-16 Thread Scott Brantley
Hey everyone,

I have built a CD-ROM deliverable PC (flash) application. The client now
wants to make it a hybrid application that will run on both PC and MAC.
Currently I'm using an AUTORUN.ini file to auto launch the app.exe. How
would I do this for the MAC projector (.hqx) file? Is there anything I
need to be aware of because of the differences MAC OS 9 and MAC OS 10+?

Thanks in advance

___
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] How to make a MAC - PC hybrid CD-ROM

2006-05-16 Thread Scott Brantley

Here is me answering my own question.



http://www.were-here.com/content/templates/articles.asp?articleid=140zo
neid=7





-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Scott
Brantley
Sent: Tuesday, May 16, 2006 2:54 PM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] How to make a MAC - PC hybrid CD-ROM

Hey everyone,

I have built a CD-ROM deliverable PC (flash) application. The client now
wants to make it a hybrid application that will run on both PC and MAC.
Currently I'm using an AUTORUN.ini file to auto launch the app.exe. How
would I do this for the MAC projector (.hqx) file? Is there anything I
need to be aware of because of the differences MAC OS 9 and MAC OS 10+?

Thanks in advance

___
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


RE: [Flashcoders] Tools to create flv with screen recording codec

2006-04-19 Thread Scott Brantley

Camtasia Studio works pretty well.



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Lee 
McColl-Sylvester
Sent: Wednesday, April 19, 2006 10:04 AM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] Tools to create flv with screen recording codec

Yeah, but MDM's product has a much better encryption algorythm that  either of 
those two... Plus, I've always found Captivate to be very buggy.

Lee



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of erixtekila
Sent: 19 April 2006 14:43
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Tools to create flv with screen recording codec


Le 19 avr. 06, à 15:43, Lee McColl-Sylvester a écrit :

 Screen recording?  Did MX 2004 have Screen recording then?  I don't
 recall that being a feature :-S
Yes it was.

   My suggestion would be a third party
 product for this offering.  Certainly Multidmedia's Capture looks like
 it should be your best bet.
Like Breeze and Captivate for ex ;) ?

Thanks anyhow...
---
erixtekila
http://blog.v-i-a.net/
___
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


RE: [Flashcoders] FLV frame capture

2006-04-18 Thread Scott Brantley


On Mac (apple + shift 3) on PC (print screen). Then bring the pic into
photoshop and crop and so forth.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jon
Robert
Sent: Tuesday, April 18, 2006 2:50 PM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] FLV frame capture

Hi,

I need to capture the first frame of an FLV video file
and convert it to bmp or jpeg. What's the best way to do this?
Is it possible?

Thank you in advance,
JP
___
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] problems with unc paths in flash 8

2006-04-17 Thread Scott Brantley
Hey Everyone,

Does anyone have any idea how to get around Flash's new securities when
playing an flv over a UNC? It works just fine in Flash 7. So the problem
has to be with the new securities.

Thanks

___
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] problems with unc paths in flash 8

2006-04-17 Thread Scott Brantley


That is exactly what I'm referring to -- Universal Naming Convention

Thanks,

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Merrill,
Jason
Sent: Monday, April 17, 2006 4:08 PM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] problems with unc paths in flash 8

Could he be referring to the UNC being the Universal Naming Convention
- the filepath to the FLV? 

Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com










-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders-
[EMAIL PROTECTED] On Behalf Of John Dowdell
Sent: Monday, April 17, 2006 4:02 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] problems with unc paths in flash 8

Scott Brantley wrote:
 Does anyone have any idea how to get around Flash's new securities
when
 playing an flv over a UNC? It works just fine in Flash 7. So the
problem
 has to be with the new securities.

UNC is undefined, and initial web searches decode it as University
of
North Carolina which I assume is not at issue here, so it's hard for
me
to answer directly.

But I do know that for the answerable question What changed with
security in Flash Player 8? that resources are available with search
term flash player 8 security. Full-domain-name matching is one of
the
frequent catches, if that context is of help in this case.

jd




--
John Dowdell . Adobe Developer Support . San Francisco CA USA
Weblog: http://weblogs.macromedia.com/jd
Aggregator: http://weblogs.macromedia.com/mxna
Technotes: http://www.macromedia.com/support/
Spam killed my private email -- public record is best, thanks.
___
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
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@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


RE: [Flashcoders] problems with unc paths in flash 8

2006-04-17 Thread Scott Brantley

With the way the client wants this app set up, there will be no browser
involved. Basically the interface will be a flash 7 (I wish 8) exe that
people in the company will run on their computers at work (around the
country). The exe will get UNC paths from a database and use those to
play the flvs within their LAN.
Basically the app is video heavy! So they don't want to install the
videos and so forth on each of the computers. They can't play them over
the net either because they weigh so much. There are also security
issues they have with internet -- so that is most definitely out of the
question with them.
My fellow programmers and I have read every bit of documentation out
there on all the new flash 8 security stuff. We didn't find anything.
Doesn't mean there wasn't something there. I was recommended to this
discussion list by a friend and I wanted to see if anybody here knows
anything. Like I said it works in Flash 7 exe, so I do have a work
around. I just really want to use the new Flash 8 components.
Thanks,


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of John
Dowdell
Sent: Monday, April 17, 2006 4:31 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] problems with unc paths in flash 8

Scott Brantley wrote:
 That is exactly what I'm referring to -- Universal Naming Convention

So, is the question something about accessing local files while in a 
browser, something along those lines? If so, then have you checked the 
docs on the changes in FP8, as referenced in the previous post?

jd





-- 
John Dowdell . Adobe Developer Support . San Francisco CA USA
Weblog: http://weblogs.macromedia.com/jd
Aggregator: http://weblogs.macromedia.com/mxna
Technotes: http://www.macromedia.com/support/
Spam killed my private email -- public record is best, thanks.
___
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