[Flashcoders] actionscript versions

2005-12-10 Thread Waseem Shahzad
Hi
everyone
I want to get help about actionscript versions.
I am novice in flash world and just try to work in actionscript please guide
me about the flash.I use flash MX.
And in which we don't have any keyword like 'class' but instead we use
'function'  to make our code object oriented if we want please help me.
I'll be very grateful to my guiders in advance.
Thanx to all
Take care
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Re: 3D in Flash

2005-12-10 Thread Jason Cunliffe
Ralph I looked into Viewpoint in some depth about  2years ago. Wonderful 
plugin. especuilly when used with Right Hemisphere products.

http://www.righthemisphere.com/

Viewpoint is very powerful and mostly well documented it seemed. However the 
initial built-in Flash implementation was rather frustrating as it included 
no modern actoinsscript scripting and was limited to simple animated decals 
for 3D. Viewpoint is Uber cool when combin 3D with Flash and Poser 
choreography :-)


Has Viewpoint Flash imporved much or is it planned to soon?
love to know what you've been doing anyway and any general description of 
kinds of conenctivity paths you';ve forged - Flash XML sockets to Viewpoint 
API  dynmaically etc.


So many apps couldbe buildt with Viewpoint player, but so far all only 
simple catalog stuff is what I've seen .Shame really...


Would be great to integrate Flash-Viewpoint seamlessly into Skechup3D 
workflow

http://www.sketchup.com/


thanks
Jason

- Original Message - 
From: Ralph Caraveo [EMAIL PROTECTED]

To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Saturday, December 10, 2005 2:30 AM
Subject: RE: [Flashcoders] Re: 3D in Flash


We've done some working merging Flash and Viewpoint.  This is a gangsta
approach beware...there's quite a huge learning curve but we have a
fantastic product...to be released in January.

-Ralph


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


RE: [Flashcoders] MovieClipLoader - onLoadComplete event

2005-12-10 Thread Adrian Lynch
Could they have ment that they weren't available until the MC had fully
loaded?

Ade

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Nils
Millahn
Sent: 15 September 2005 11:19
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] MovieClipLoader - onLoadComplete event


Hi all,

just asking for clarification on what properties/methods I can access in
the onLoadComplete event of the MovieClipLoader class.

The documentation states that:

At this point it is impossible to access the loaded movie clip’s
methods and properties, and because of this you cannot call a function,
move to a specific frame, and so on.

However I seem to be able to call 'stop()' and change the _x value of a
target clip.

Is it the case then that the built-in MovieClip properties/methods ARE
available, whereas any custom code isn't?


Thanks - Nils.
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
--
No virus found in this incoming message.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.10.25/102 - Release Date: 14/09/2005

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


[Flashcoders] LuminicBox + as2lib logging works with Flash, not with Mtasc ??????????

2005-12-10 Thread lieven.cardoen
If I compile with Flash, all my loggings arrive at LuminicBox. If I compile 
with Mtasc (in Eclipse), no logging arrives at LuminicBox...

Can anybody explain me why and can I see those loggings in LuminicBox when 
compiling with Mtasc.

 

Lieven Cardoen, thx

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


RE: [Flashcoders] MovieClipLoader

2005-12-10 Thread Pete Hotchkiss
Hi 

Which of the MovieClipLoader events are you using ?I ask only because
I've had similar problems with the class in Flash 8. I did a bit of
digging and found this.

http://www.betriebsraum.de/blog/downloads/
http://www.betriebsraum.de/external_data/downloads/QueueLoader/QueueLoad
er.zip

It offers far great flexibility - and proper queuing of assets. It might
be a better solution to your problem than tackling the caching problem.

Pete

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
dancedrummer
Sent: 09 December 2005 21:50
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] MovieClipLoader


I'm running into a problem that only occurs with Flash8.  I have a swf
that loads additions swf's with a MovieClipLoader object.  The first
time I hit the page it works fine.  On subsequent tries when the
external swf's have been cached in the browser they are not getting
recognized as being loaded by the MCLoader object.  Is not an issue with
Flash7.  Anybody here know anything about this?
___
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] AS 2 Class Structure Question

2005-12-10 Thread Robert Sandie
Have an issue involving AS2 and Flash Remoting. Have created a remoting 
class:


class com.remoting Info{
   private var service:Service;
   public var remotingdata:Object;
  
   function Info(id:Number) {
   this.service = new 
Service(http://localhost/flashservices/gateway.php;, null, 
info_gateway, null, null);

   var pc:PendingCall = this.service.get_info(id);
   pc.responder = new RelayResponder(this, handleSuccess, 
handleRemotingError);

   }
   function handleSuccess(re:ResultEvent):Void {
   remotingdata= re.result;
   }
}

That is initialized in the super class as :
var info_obj:vInfo = new Info(id);
info_obj.handleSuccess = onRemoteFinish;

I would assume that it would send this to the public function 
onRemoteFinish in the super class, but that does not work. Am assuming 
that because it's not a subclass that it does not operate in this 
nature. The problem is that you cannot just call a variable at run time 
because it takes a half a second for remoting to get send the information.


I have also tried extending the class Info onto the main Class and get 
the 256 recursive calls error.


Have been noodling on this one for a while and would appreciate any 
assistance on this structure.


Thanks!
Robert Sandie



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


[Flashcoders] Select a newly focused textfield

2005-12-10 Thread erixtekila

Hi,


I must be stupid' on this one.
How could it be possible to select the entire textfield that is just 
focused ?


Seems easy…heu ?
_field.onSetFocus = function () {
trace(Selection.getFocus());
Selection.setSelection (0, this.text.length-1);
};

Doesn't work when I click on the Textfield.
Strange.
BTW, the trace output is correct.

Any idea ?

---
erixtekila
http://blog.v-i-a.net/
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] strange compiler error

2005-12-10 Thread MyName
I'm having similar problem(flash 7) too. And it's even stranger. All my 
class files are on local. Some have this error, some donn't. But all files 
can still be compiled even with this error.


- Original Message - 
From: Robin Burrer [EMAIL PROTECTED]

To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Thursday, December 08, 2005 8:33 PM
Subject: RE: [Flashcoders] strange compiler error


I set my system clock two years back (even though I'm pretty sure the
system clock of the computer I created the file originally is set
correctly) -didn't help either.

I had similar problem a couple of moth ago. I had two classes which both
had a variable of the data type of the other class.

The flash complier (back then it used flash 7) gave me the same error
message.

I found a workaround by declaring one of the variables as an object
datatype so I didn't have to import the class.

In this application this is however not the case. I hope all these
issues will be solved in AS3.

Robin



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Andy
Johnston
Sent: Friday, 9 December 2005 3:15 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] strange compiler error

*Shrug*

http://www.epresenterplus.com/blog/archives/30.html


I tried deleting the aso files and restarted my computer
- nothing helped :-(


---Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Andy
Johnston
Sent: Friday, 9 December 2005 2:25 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] strange compiler error

Are your classes on a network drive?

This usually is a time stamp syncing error

Try restarting your machine or deleting the aso files




Hi there,

I try compile a fla file with the flash 8 IDE. It always gives me this
pointless error message.

**Error**
E:\vss_data\ActionScriptClasses\org\hubb\flashBrowser\UserVO.as: Line



2:



The name of this class, 'org.hubb.flashBrowser.UserVO', conflicts with
the name of another class that was loaded,
'org.hubb.flashBrowser.UserVO'.

Where's the conflict here? That's the same class?

All my project classes are in the same directory
org.hubb.flashBrowser;
My main class imports all required classes.
e.g. import org.hubb.flashBrowser.UserVO'


And here's the wired thing:
When I try to compile this fla at home it works just fine. Also if I

do

a syntax check with MTASC it's not giving me an error.

Any ideas?


Robin
___
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

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


[Flashcoders] ImageContainer Component (Version 1.0.0)

2005-12-10 Thread Elvis Mehmedović

ImageContainer Component (Version 1.0.0)

http://chq.emehmedovic.com/?id=12

ImageContainer Component is an XMCA 0.3 based component. It loads images  
using a queue or simultaneously, offers several methods to resize images  
to component area, provides error handling, and allows easy and quick  
creation of custom skins (for preloading and transitions).


After installing the extension, you can find ImageContainer Component in  
the Components Panel in Flash MX 2004.


(Flash 8 ready; all components are freeware.)
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] flash and ASP.NET

2005-12-10 Thread Dan Thomas
For what its worth I have managed to get WebOrb working (with a bit of help 
from Scott Hyndman), yet to do anything other than take a look and mess around 
with the samples it comes with but looks pretty decent. Certainly a nice viable 
alternative for .net heads.
 
From their downloads page I downloaded WebOrb for .Net after setting up my 
local IIS to run .net properly and it worked fine.
 
Dan



From: [EMAIL PROTECTED] on behalf of Tjalle Groen
Sent: Sat 10/12/2005 17:56
To: Flashcoders mailing list
Subject: Re: [Flashcoders] flash and ASP.NET



Why don't you just use XML for the communication between flash en ASP.NET. 

Just use .net for the database connection and read/write actions. 

Write out your XML with .NET and import the page just like you would import 
XML in Flash. 

Use that all the time and it works like a charm... 

oioioi 

Tjalle 


On 12/7/05, Paul Hart [EMAIL PROTECTED] wrote: 
 
 I have written a .NET based web service(for a game scoreboard) which I 
 use to read/write to a SQL database from flash, the type of data 
 source doesn't matter to .NET, if you want I can package it up and 
 send the source to you?  Let me know because I'll need to remove 
 sensitive connection string details etc. 
 I can also send you the scoreboard as2 class which work well with the 
 web service. 
 
 Regards 
 Paul 
 On 07/12/05, Pete Hotchkiss [EMAIL PROTECTED] wrote: 
  Openamf is not .NET 
  
  http://starwolf.ch/ is 
  
  -Original Message- 
  From: [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED] On Behalf Of Serge 
  Jespers 
  Sent: 07 December 2005 12:56 
  To: Flashcoders mailing list 
  Subject: Re: [Flashcoders] flash and ASP.NET 
  
  
  Have a look at http://www.openamf.org 
  Don't know if this can help you but it's also a third party remoting 
  solution. 
  
  
  
   I need to create a Flash application for a small non-profit can't 
   afford the 
   $999 price tag of MM's Flash Remoting gateway. Is there a third party 
   remoting solution like AMFPHP that I could use? Essentially I need 
   to read 
   and write to an Access database on a Windows web host. 
   
   Thanks for any suggestions and pointers to examples for this. 
   
   Michael 
   ___ 
   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 
 



-- 
Tjalle Groen 

http://www.kermitsmistake.tk 
http://www.boredsheep.tk 
___ 
Flashcoders mailing list 
Flashcoders@chattyfig.figleaf.com 
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders 


This message and any attachments should only be read by those persons to whom 
it is addressed and be used by them for its intended purpose.  It must not 
otherwise be reproduced, modified, distributed, published or actioned. If you 
have received this e-mail in error, please notify us immediately by telephone 
on 01202 237000 and delete it from your computer immediately. This e-mail 
address must not be passed to any third party or be used for any other purpose. 
Every reasonable precaution has been taken to ensure that this e-mail, 
including attachments, does not contain any viruses. However, no liability can 
be accepted for any damage sustained as a result of such viruses, and 
recipients are advised to carry out their own checks. 


Moov2 Ltd cannot accept liability for statements made which are clearly the 
senders own and not made on behalf of the Moov2 Ltd. An e-mail reply to this 
address may be subject to interception or monitoring for operational reasons or 
for lawful business purposes.


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


[Flashcoders] AS2, FLVPlayback, and Cuepoints

2005-12-10 Thread Robert Sandie

Have been working with a class and have been trying to bring up ASCuepoints:

class FLVPlayer {
private var theVideo:FLVPlayback;

private function FLVPlayer ( mc:MovieClip) {
   theVideo = FLVPlayback(mc.theVideo);

   theVideo.addASCuepoint(3, a cuepoint);
   theVideo.addEventListener(cuePoint, EventDelegate.create(this, 
onaCuePoint));
   theVideo.addEventListener(onPlayheadUpdate, 
EventDelegate.create(this, onPlayhead));

}

private function onaCuepoint(e:Object):Void{
   trace(this never traces and is not working)
   trace(I am expecting it to trace at 3 seconds);
}

private function onPlayhead(e:Object):Void{
trace(this always traces)
}
}
Does anyone have any idea why this is not working for cuepoint but is 
for playhead?


-rob

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


Re: [Flashcoders] AS2, FLVPlayback, and Cuepoints

2005-12-10 Thread Robert Sandie
Figured it out... When using FLVPlayback if you declare addASCuepoint 
before you set the contentPath it will not load.


Robert Sandie wrote:

Have been working with a class and have been trying to bring up 
ASCuepoints:


class FLVPlayer {
private var theVideo:FLVPlayback;

private function FLVPlayer ( mc:MovieClip) {   theVideo = 
FLVPlayback(mc.theVideo);

   theVideo.addASCuepoint(3, a cuepoint);
   theVideo.addEventListener(cuePoint, EventDelegate.create(this, 
onaCuePoint));
   theVideo.addEventListener(onPlayheadUpdate, 
EventDelegate.create(this, onPlayhead));

}

private function onaCuepoint(e:Object):Void{
   trace(this never traces and is not working)
   trace(I am expecting it to trace at 3 seconds);
}

private function onPlayhead(e:Object):Void{
trace(this always traces)
}
}
Does anyone have any idea why this is not working for cuepoint but is 
for playhead?


-rob

___
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