Re: [Flashcoders] AS IDE for OSX

2006-03-16 Thread Michael Bianco
I use Xcode with a custom debugging utility:

http://osflash.org/xcode_actionscript_integration?s=xcode
http://developer.mabwebdesign.com/xtrace.html

On 3/16/06, Mischa Williamson <[EMAIL PROTECTED]> wrote:
> Thanks for the heads-up on the free SDK Darron, oh, and your informative
> posts about AS3 ;)
>
> Now just got to port my AS3 code base from alpha to beta *sigh*
>
> Incidentally, anyone had any problems with the Math parser in AS3? I ran
> into some wierd issues porting Robert Penner's easing equations in the alpha
> version of the compiler. I'll post code examples if anyone's interested...
>
> On 3/16/06, Darron J. Schall <[EMAIL PROTECTED]> wrote:
> >
> > eric dolecki wrote:
> > > Isn't MTASC going to die on the vine when AS3 enters the scene?
> > >
> > > :(
> >
> > There's going to a be free Flex 2 SDK that includes the Flex framework
> > and compiler, so you can use mxmlc without having to purchase
> > FlexBuilder.  There won't be a need for MTASC anymore (mxmlc, despite
> > the name, is an AS3 compiler as well).
> >
> > -d
> >
> > ___
> > 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
>


--
Michael Bianco
http://mabwebdesign.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] XMLSocket OS X

2005-11-21 Thread Michael Bianco
Thanks guys, exactly what I was looking for!

I actually think i discovered my problem, it might of not been with the

On 11/20/05, erixtekila <[EMAIL PROTECTED]> wrote:
> Hi Michael,
>
>
>
> If you want to dig inside XMLSocket implementation, you can investigate
> in Oregano java server.
> It is opensource and can help you a lot.
> As it use java, it's fairly easy to use it on osx…
>
> Here is the link :
> http://www.oregano-server.org/
>
> HTH.
> ---
> erixtekila
> http://blog.v-i-a.net/
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>


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


[Flashcoders] XMLSocket OS X

2005-11-20 Thread Michael Bianco
Hello,
Does anybody have a XMLSocket Server that works on os x?
I cant seem to get a connection working between the SWF and my java server.

Heres my java server:
-
import java.net.*;
import java.io.*;

public class serverTest {
public static void main(String[] args) {
System.setErr(System.out);

try {
int maxConnections = 100;
Socket[] clients = new Socket[maxConnections];

printAvailIp();

ServerSocket servSock = new ServerSocket(2500, 0,
InetAddress.getAllByName(InetAddress.getLocalHost().getHostName())[0]);

while(true) {
Socket newSock = servSock.accept();
newSock.setTcpNoDelay(true);

System.out.println("Got connection!");
printStatus(newSock);
}
}

catch (Exception a) {
System.out.println(a);
}
}

private static void printStatus(Socket sock) {
System.out.println("Connected: "+ sock.isConnected());
System.out.println("Is closed: "+ sock.isClosed());
}

private static void printAvailIp() {
try {
InetAddress[] ips =
InetAddress.getAllByName(InetAddress.getLocalHost().getHostName());
for(int a = 0; a < ips.length; a++) {
System.out.println(ips[a]);
}
}

catch (Exception a) {
System.out.println(a);
}
}
}
-

Heres my code on the client (flash side):
--
class mainEntryPoint {
static function main() {
XML.prototype.ignoreWhite = true;

setInterval(tryConnect, 1000);
//tryConnect();
}

static function tryConnect() {
trace("Try to Connect");

var socket = new XMLSocket();

socket.onConnect = function(success:Boolean) {
trace("connected! "+ success);
}

socket.onData = function() {
trace("got data");
}

socket.onClose = function() {
trace("closing");
}

socket.onXML = function(src:XML) {
trace("Got XML!"+src);
}

trace("Inital Connect: "+ socket.connect("192.168.0.4", 2500));
}
}
---

HEre the output i get from the flash SWF:
Inital Connect: true
connected! false

Nomatter what i do i cant get it to actually connect to the server. Any ideas?
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Player 8.5 standalone on OSX?

2005-10-31 Thread Michael Bianco
I'd like the answer to this also...

On 10/28/05, Jon Bradley <[EMAIL PROTECTED]> wrote:
> No answer from MM on their labs forums, or anywhere else for that
> matter.
>
> Anyone locate the standalone player for OS X yet? It aint in the
> FlexBuilder2 installer or in the plug-in installer.  Only the PC exe
> files are standalone.
>
> ??
>
> thanks...
>
> Jon
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>


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


Re: [Flashcoders] FAME on OS X

2005-10-21 Thread Michael Bianco
I wrote up some stuff on my blog: http://developer.mabwebdesign.com/blog/?p=6

I have alot of additions to make Actionscript integrated more tightly
with Xcode.
I have a updated Flash 8 keyword definition file with value
placeholders like obj-c almost ready to release, and a OS Flash  Help
viewer almost complete (heres a SS of what I have done so far with the
flash help viewer, http://mabwebdesign.com/xash.png). Theres a page
for Xcode Actionscript integration on OSFlash:
http://osflash.org/xcode_actionscript_integration.

On 10/21/05, Sam <[EMAIL PROTECTED]> wrote:
> hey thanks, yeah i tried the smylink trick, didn't work. Spent 3 days
> f'ing with eclipse, can't be bothered any longer
>
> On Oct 21, 2005, at 5:28 PM, Josh Gormley wrote:
>
> > I had some semblance of this working a while back, but I gave up on
> > it as well.  Part of the problem is that on OSX, spaces in the
> > classpath screw things up.  In order to work around this, I created
> > a symlink to the classes from a folder that did not have spaces in
> > it.  There were a couple of threads on this a while back, check the
> > archives.
> >
> > Here is a link to part of the thread, titled "FAMES for Mac?"
> > http://chattyfig.figleaf.com/pipermail/flashcoders/2005-August/
> > thread.html#147455
> >
> > Josh
> >
> >
> >
> > On Oct 21, 2005, at 4:10 PM, Sam wrote:
> >
> >
> >> Yeah, I gave up on Eclipse and started using Xcode.
> >> Do you have any links or reference or links to integrating MTASC
> >> and SWFMILL using Xcode?
> >>
> >> On Oct 21, 2005, at 5:01 PM, Michael Bianco wrote:
> >>
> >>
> >>
> >>> I use Xcode with Actionscript plugin instead. Works much better for
> >>> me, you can integrate building with MTASC and SWFMILL also.
> >>>
> >>> On 10/21/05, Alain Rousseau <[EMAIL PROTECTED]> wrote:
> >>>
> >>>
> >>>
> >>>> Then you  should check on http://potapenko.com/flashout/ to see
> >>>> if you
> >>>> have installed Flashout the right way.
> >>>> Other than that I can't help you much cos I'm still on Panther so I
> >>>> don't have FAME installed.
> >>>>
> >
> > ___
> > 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
>


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


Re: [Flashcoders] FAME on OS X

2005-10-21 Thread Michael Bianco
I use Xcode with Actionscript plugin instead. Works much better for
me, you can integrate building with MTASC and SWFMILL also.

On 10/21/05, Alain Rousseau <[EMAIL PROTECTED]> wrote:
> Then you  should check on http://potapenko.com/flashout/ to see if you
> have installed Flashout the right way.
> Other than that I can't help you much cos I'm still on Panther so I
> don't have FAME installed.
>
>
> Sam wrote:
>
> > I'm Using Tiger, and have Java 5 installed
> > On Oct 21, 2005, at 12:01 PM, Alain Rousseau wrote:
> >
> >> What version of OS X do you have ?
> >> If it's not Tiger then you can't use Flashout. It needs Java 5
> >> installed and it's only available for Tiger.
> >>
> >>
> >> Sam wrote:
> >>
> >>
> >>> Any one have success setting up FAME on OS X?
> >>> I have everything working except Flashout is having trouble with
> >>> the  classpath to Flash's classes
> >>>
> >
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>


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