<?xml version="1.0"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>Aflax Forums: Last 35 Posts</title>
<link>http://www.aflax.org/forums/</link>
<description>Aflax Forums: Last 35 Posts</description>
<language>en</language>
<pubDate>Wed, 20 Aug 2008 09:00:29 +0000</pubDate>

<item>
<title>Benh on "callFunction woes"</title>
<link>http://www.aflax.org/forums/topic.php?id=61#post-106</link>
<pubDate>Mon, 07 Jul 2008 18:22:15 +0000</pubDate>
<dc:creator>Benh</dc:creator>
<guid isPermaLink="false">106@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;hey folks,&lt;/p&gt;
&lt;p&gt;I have been smashing my head against a wall repeatedly for a few days on this one. I am trying to write a section of code which will create a textbox, set the text and format it. &lt;/p&gt;
&lt;p&gt;I have been using the dynamic font loading demo as a bit of a guide, and am using one of the fonts from that package to try and format the text.&lt;/p&gt;
&lt;p&gt;I am finding that everything is fine, if the text is completely unformatted, but if i try to format it as follows all sorts of strange things happen.&lt;/p&gt;
&lt;p&gt;using aptana javascript debugger I found this line is where the problem occurs: &lt;/p&gt;
&lt;p&gt;           textField.callFunction(&quot;setTextFormat&quot;, format); &lt;/p&gt;
&lt;p&gt;where the textField is a textField, and format is a format object. &lt;/p&gt;
&lt;p&gt;One of the strangest things about this problem is that when this line is executed, a variable called i which is used else where in the code, suddenly changes from 0 to 2! &lt;/p&gt;
&lt;p&gt;The only difference between this and the dynamic font demo is that there will be many textfields in the same flash instance.&lt;/p&gt;
&lt;p&gt;If possible I would like to use a similar method to the solution provided here: &lt;a href=&quot;http://www.ozzu.com/flash-forum/actionscript-dynamic-text-t70620.html&quot; rel=&quot;nofollow&quot;&gt;http://www.ozzu.com/flash-forum/actionscript-dynamic-text-t70620.html&lt;/a&gt; . I cannot see how this would be implemented using aflax though.&lt;/p&gt;
&lt;p&gt;If anyone could provide any advice on either method I would be most greatful!&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Ben
&lt;/p&gt;</description>
</item>
<item>
<title>syang94555 on "Could we use Aflax on developing a google finance like pages?"</title>
<link>http://www.aflax.org/forums/topic.php?id=60#post-105</link>
<pubDate>Thu, 03 Jul 2008 03:47:18 +0000</pubDate>
<dc:creator>syang94555</dc:creator>
<guid isPermaLink="false">105@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;Hi,&lt;br /&gt;
I like Google finance very much. It allows me to drag the stock chart, zoom-in and zoom-out, etc. Also, the chart also dynamicaly update the &quot;News&quot; part of the page according to the view of the stock chart.&lt;/p&gt;
&lt;p&gt;Could someone explain how it work? And could I use Aflax to develop a site like that?
&lt;/p&gt;</description>
</item>
<item>
<title>ddurham on "aflax integration with swf files"</title>
<link>http://www.aflax.org/forums/topic.php?id=59#post-104</link>
<pubDate>Mon, 16 Jun 2008 22:34:28 +0000</pubDate>
<dc:creator>ddurham</dc:creator>
<guid isPermaLink="false">104@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;Can I use aflax to add an event listener to an existing swf object?  I'd even be happy with a click handler over a certain area (exact coordinates) of a flash movie.  Perhaps I can simply overlay a transparent div at the position that I want with a click handler attached.
&lt;/p&gt;</description>
</item>
<item>
<title>subchen on "how to use flash.system.Security.loadPolicyFile"</title>
<link>http://www.aflax.org/forums/topic.php?id=58#post-103</link>
<pubDate>Fri, 18 Apr 2008 03:27:18 +0000</pubDate>
<dc:creator>subchen</dc:creator>
<guid isPermaLink="false">103@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;I'll connect remote socket ( cross domain )&lt;/p&gt;
&lt;p&gt;var aflax = new AFLAX('aflax.swf', true, true);&lt;br /&gt;
aflax.insertFlash(1, 1, '#ffffff', 'init', true);&lt;/p&gt;
&lt;p&gt;function init() {&lt;br /&gt;
    // why not working???? how to use???&lt;br /&gt;
    aflax.callStaticFunction('flash.system.Security', 'loadPolicyFile', 'http://localhost:8080/crossdomain.xml');&lt;/p&gt;
&lt;p&gt;    new AFLAX.Socket(aflax, 'localhost', 9998, 'onConnectEvent', 'onDataEvent', 'onCloseEvent');&lt;br /&gt;
}
&lt;/p&gt;</description>
</item>
<item>
<title>subchen on "__flash__argumentsToXML ??"</title>
<link>http://www.aflax.org/forums/topic.php?id=57#post-102</link>
<pubDate>Fri, 18 Apr 2008 03:22:38 +0000</pubDate>
<dc:creator>subchen</dc:creator>
<guid isPermaLink="false">102@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;function __flash__arrayToXML(obj) {&lt;br /&gt;
    var s = &quot;&quot;;&lt;br /&gt;
    for (var i=0; i&amp;lt;obj.length; i++) {&lt;br /&gt;
        s += &quot;&amp;lt;property id=\&quot;&quot; + i + &quot;\&quot;&amp;gt;&quot; + __flash__toXML(obj[i]) + &quot;&amp;lt;/property&amp;gt;&quot;;&lt;br /&gt;
    }&lt;br /&gt;
    return s+&quot;&quot;;&lt;br /&gt;
}&lt;br /&gt;
function __flash__argumentsToXML(obj,index) {&lt;br /&gt;
    var s = &quot;&quot;;&lt;br /&gt;
    for (var i=index; i&amp;lt;obj.length; i++) {&lt;br /&gt;
        s += __flash__toXML(obj[i]);&lt;br /&gt;
    }&lt;br /&gt;
    return s+&quot;&quot;;&lt;br /&gt;
}&lt;br /&gt;
function __flash__objectToXML(obj) {&lt;br /&gt;
    var s = &quot;&amp;lt;object&amp;gt;&quot;;&lt;br /&gt;
    for (var prop in obj) {&lt;br /&gt;
        s += &quot;&amp;lt;property id=\&quot;&quot; + prop + &quot;\&quot;&amp;gt;&quot; + __flash__toXML(obj[prop]) + &quot;&amp;lt;/property&amp;gt;&quot;;&lt;br /&gt;
    }&lt;br /&gt;
    return s+&quot;&amp;lt;/object&amp;gt;&quot;;&lt;br /&gt;
}&lt;br /&gt;
function __flash__escapeXML(s) {&lt;br /&gt;
    return s.replace(/&amp;#38;/g, &quot;&amp;amp;&quot;).replace(/&amp;lt;/g, &quot;&amp;lt;&quot;).replace(/&amp;gt;/g, &quot;&amp;gt;&quot;).replace(/&quot;/g, &quot;&amp;quot;&quot;).replace(/’/g, &quot;&amp;apos;&quot;);&lt;br /&gt;
}&lt;br /&gt;
function __flash__toXML(value) {&lt;br /&gt;
   var type = typeof(value);&lt;br /&gt;
    if (type == &quot;string&quot;) {&lt;br /&gt;
        return &quot;&amp;lt;string&amp;gt;&quot; + __flash__escapeXML(value) + &quot;&amp;lt;/string&amp;gt;&quot;;&lt;br /&gt;
    } else if (type == &quot;undefined&quot;) {&lt;br /&gt;
        return &quot;&amp;lt;undefined/&amp;gt;&quot;;&lt;br /&gt;
    } else if (type == &quot;number&quot;) {&lt;br /&gt;
        return &quot;&amp;lt;number&amp;gt;&quot; + value + &quot;&amp;lt;/number&amp;gt;&quot;;&lt;br /&gt;
    }&lt;br /&gt;
}
&lt;/p&gt;</description>
</item>
<item>
<title>prusikse on "Is Aflax dead?"</title>
<link>http://www.aflax.org/forums/topic.php?id=56#post-101</link>
<pubDate>Mon, 31 Mar 2008 19:36:19 +0000</pubDate>
<dc:creator>prusikse</dc:creator>
<guid isPermaLink="false">101@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;I've not heard anything from Paul on this for quite some time.  Is this a dead project?
&lt;/p&gt;</description>
</item>
<item>
<title>darwin on "Volume control"</title>
<link>http://www.aflax.org/forums/topic.php?id=55#post-100</link>
<pubDate>Tue, 04 Mar 2008 03:55:54 +0000</pubDate>
<dc:creator>darwin</dc:creator>
<guid isPermaLink="false">100@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;hi, how can i control the volume of the pc with aflax, i have a media player developed with aflax but i don't know how to control the volume, can you help me?&lt;/p&gt;
&lt;p&gt;PS// sorry, my english are a little bad :p.&lt;/p&gt;
&lt;p&gt;regards.
&lt;/p&gt;</description>
</item>
<item>
<title>luishp on "PFlash, a different approach to Flash from JavaScript"</title>
<link>http://www.aflax.org/forums/topic.php?id=54#post-99</link>
<pubDate>Sun, 17 Feb 2008 06:30:42 +0000</pubDate>
<dc:creator>luishp</dc:creator>
<guid isPermaLink="false">99@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;I have just released PFlash, a different approach to develop Flash animations from JavaScript:&lt;/p&gt;
&lt;p&gt;WEB:&lt;br /&gt;
&lt;a href=&quot;http://www.luishp.com/pflash&quot; rel=&quot;nofollow&quot;&gt;http://www.luishp.com/pflash&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Download:&lt;br /&gt;
&lt;a href=&quot;http://www.luishp.com/pflash/pf.zip&quot; rel=&quot;nofollow&quot;&gt;http://www.luishp.com/pflash/pf.zip&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Mirror:&lt;br /&gt;
&lt;a href=&quot;http://drop.io/pflash2&quot; rel=&quot;nofollow&quot;&gt;http://drop.io/pflash2&lt;/a&gt;
&lt;/p&gt;</description>
</item>
<item>
<title>xingqiliudehuanghun on "why the demo of socket can not work?"</title>
<link>http://www.aflax.org/forums/topic.php?id=53#post-98</link>
<pubDate>Sun, 17 Feb 2008 01:51:20 +0000</pubDate>
<dc:creator>xingqiliudehuanghun</dc:creator>
<guid isPermaLink="false">98@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;i have download the aflax,and execute them by iis.most of the examples can work. but the example of socket can not work.always show :Could not make connection to server.&lt;br /&gt;
   i have install activeperl and executed server.pl before execute the demo and change the code&lt;br /&gt;
   connection = new AFLAX.Socket        (aflax,&quot;http://localhost&quot;,7777,&lt;br /&gt;
			&quot;onConnectEvent&quot;, &quot;onDataEvent&quot;, &quot;onCloseEvent&quot;);&lt;br /&gt;
.but the demo didn't work?&lt;/p&gt;
&lt;p&gt;I do not know why? if you know please tell me,thanks
&lt;/p&gt;</description>
</item>
<item>
<title>rj on "hitTest always returns true"</title>
<link>http://www.aflax.org/forums/topic.php?id=27#post-97</link>
<pubDate>Thu, 14 Feb 2008 23:35:50 +0000</pubDate>
<dc:creator>rj</dc:creator>
<guid isPermaLink="false">97@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;btw, its hard to tell from the foregoing discussion whether the fix was in the js or as. could someone help me out. I need getpixel bad.
&lt;/p&gt;</description>
</item>
<item>
<title>rj on "hitTest always returns true"</title>
<link>http://www.aflax.org/forums/topic.php?id=27#post-96</link>
<pubDate>Thu, 14 Feb 2008 23:33:14 +0000</pubDate>
<dc:creator>rj</dc:creator>
<guid isPermaLink="false">96@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;how do you guys get aflax.as to even compile?  when I try to compile the unedited file with mtasc I get an &quot;unexpected var&quot; error on line 39!
&lt;/p&gt;</description>
</item>
<item>
<title>RyanAmos on "Upload with Flash throws script-timeout on &gt;2MBit/s"</title>
<link>http://www.aflax.org/forums/topic.php?id=38#post-95</link>
<pubDate>Tue, 22 Jan 2008 00:17:07 +0000</pubDate>
<dc:creator>RyanAmos</dc:creator>
<guid isPermaLink="false">95@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;Anyone got any suggestions on how to fix this?  I'm by no means a flash expert but doing some research this appears to be a fix here:&lt;br /&gt;
&lt;a href=&quot;http://groups.google.com/group/macromedia.flash.actionscript/browse_thread/thread/108b9acb68910210/5356542492c0456a?lnk=st&amp;#38;q=flash+upload+a+script+is+causing&amp;#38;rnum=1&amp;#38;hl=en#5356542492c0456a&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/macromedia.flash.actionscript/browse_thread/thread/108b9acb68910210/5356542492c0456a?lnk=st&amp;#38;q=flash+upload+a+script+is+causing&amp;#38;rnum=1&amp;#38;hl=en#5356542492c0456a&lt;/a&gt;
&lt;/p&gt;</description>
</item>
<item>
<title>bob on "FLASH and AJAX"</title>
<link>http://www.aflax.org/forums/topic.php?id=52#post-94</link>
<pubDate>Sun, 20 Jan 2008 16:24:40 +0000</pubDate>
<dc:creator>bob</dc:creator>
<guid isPermaLink="false">94@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I'm new to this, could you explain how flash communicates with AJAX normally and the benefits of AFLAX?&lt;/p&gt;
&lt;p&gt;Thanks
&lt;/p&gt;</description>
</item>
<item>
<title>mchan on "Can AFLAX JS installed in Linux with ARM?"</title>
<link>http://www.aflax.org/forums/topic.php?id=51#post-93</link>
<pubDate>Mon, 14 Jan 2008 05:24:08 +0000</pubDate>
<dc:creator>mchan</dc:creator>
<guid isPermaLink="false">93@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;To Aflax support, we are working on using Aflax JS in (Linux)ARM platform, we want to use the JS without launching the browser, and prefer this run on command line, please help..&lt;br /&gt;
Much thanks in advance...&lt;br /&gt;
MC
&lt;/p&gt;</description>
</item>
<item>
<title>psychcf on "Modified aflax to use a different json sanitizer, now it does not work"</title>
<link>http://www.aflax.org/forums/topic.php?id=50#post-92</link>
<pubDate>Wed, 09 Jan 2008 13:26:01 +0000</pubDate>
<dc:creator>psychcf</dc:creator>
<guid isPermaLink="false">92@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;I modified aflax to use a different json sterilizer then the one provided (dojo's), and now it's not working correctly on windows. Any browser on windows does not work. Firefox on linux and OSX don't have this issue at all.&lt;/p&gt;
&lt;p&gt;The applet doesn't seem to be making the correct callbacks, or running correctly. I'm not quite sure why either.&lt;/p&gt;
&lt;p&gt;Here's the source: &lt;a href=&quot;http://psychdesktop.net/subversion/file/1/trunk/desktop/api/aflax.js&quot; rel=&quot;nofollow&quot;&gt;http://psychdesktop.net/subversion/file/1/trunk/desktop/api/aflax.js&lt;/a&gt;
&lt;/p&gt;</description>
</item>
<item>
<title>mbyrne on "AFLAX and Wowza RMTP Support"</title>
<link>http://www.aflax.org/forums/topic.php?id=49#post-91</link>
<pubDate>Sun, 30 Dec 2007 12:59:23 +0000</pubDate>
<dc:creator>mbyrne</dc:creator>
<guid isPermaLink="false">91@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;I am wondering if AFLAX supports RMTP through Wowza Media server.&lt;/p&gt;
&lt;p&gt;We have tried using the AFLAX.VideoClip function with a fully qualified path to the FLV file on the Wowza server, such as &lt;a href=&quot;RMTP://server/application/directory/stream.&quot; rel=&quot;nofollow&quot;&gt;RMTP://server/application/directory/stream.&lt;/a&gt;  We are also omitting the FLV extension per the Wowza documentation.&lt;/p&gt;
&lt;p&gt;Has anyone done this through AFLAX?  Or does anyone have suggestions for how to to this?&lt;/p&gt;
&lt;p&gt;Thanks
&lt;/p&gt;</description>
</item>
<item>
<title>wantsomuch on "playing sounds (mp3)"</title>
<link>http://www.aflax.org/forums/topic.php?id=48#post-90</link>
<pubDate>Sat, 01 Dec 2007 11:42:08 +0000</pubDate>
<dc:creator>wantsomuch</dc:creator>
<guid isPermaLink="false">90@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;Hi there, I recently found the aflax package and it's exactly what I'm looking for-- full credit where credit due!  Fantasic bit of kit!&lt;/p&gt;
&lt;p&gt;I'm building a &lt;a href=&quot;http://www.wantsomuch.com&quot;&gt;social-networking site&lt;/a&gt; containing, amongst other things, ajax based chat room.&lt;/p&gt;
&lt;p&gt;Specifically, members can send &quot;nudges&quot; or &quot;winks&quot; to others -- which, of course, I'm using Aflax to play back the media via flash.&lt;/p&gt;
&lt;p&gt;The alerts on my site appear dynamically (subscribes to channel; publishes on interrupt) -- so, I needed to modify (clone) the insertFlash method.  Instead of issuing a document.write (which would affect the page) -- better, I return the html as a string and assign a SPAN tag with the new innerHTML.&lt;/p&gt;
&lt;p&gt;Seems to work well -- if anyone needs any help setting it up (though I did find it very straight-forward anyway) -- happy to explain through the code mods, etc.&lt;/p&gt;
&lt;p&gt;All the best!&lt;/p&gt;
&lt;p&gt;Dave.
&lt;/p&gt;</description>
</item>
<item>
<title>stimpy77 on "home page doesn't work correctly"</title>
<link>http://www.aflax.org/forums/topic.php?id=47#post-89</link>
<pubDate>Wed, 28 Nov 2007 01:56:45 +0000</pubDate>
<dc:creator>stimpy77</dc:creator>
<guid isPermaLink="false">89@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;yeah what's the deal with this??? Aptana is featuring Aflax and Aflax is getting all this visibility that most of us envy, but the web site doesn't even render.
&lt;/p&gt;</description>
</item>
<item>
<title>manuel on "home page doesn't work correctly"</title>
<link>http://www.aflax.org/forums/topic.php?id=47#post-88</link>
<pubDate>Tue, 20 Nov 2007 17:32:33 +0000</pubDate>
<dc:creator>manuel</dc:creator>
<guid isPermaLink="false">88@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;home page doesn't work correctly in IE7, wyzo, firefox, opera.... uhhhh???
&lt;/p&gt;</description>
</item>
<item>
<title>gabrieleds on "Camera image capture"</title>
<link>http://www.aflax.org/forums/topic.php?id=46#post-87</link>
<pubDate>Sat, 27 Oct 2007 22:51:54 +0000</pubDate>
<dc:creator>gabrieleds</dc:creator>
<guid isPermaLink="false">87@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;I am trying to find a way to capture an image with the webcam, using for example the Aflax camera demo, and send the image captured to the server...&lt;/p&gt;
&lt;p&gt;I need to save the image on the server or just into a MySql database.&lt;/p&gt;
&lt;p&gt;Is it possible may be combining the camera demo and the upload file demo of Aflax?&lt;/p&gt;
&lt;p&gt;Thanks&lt;br /&gt;
G
&lt;/p&gt;</description>
</item>
<item>
<title>pc1oad1etter on "Socket Demo returns "Could not make connection to server.""</title>
<link>http://www.aflax.org/forums/topic.php?id=45#post-86</link>
<pubDate>Wed, 24 Oct 2007 18:51:40 +0000</pubDate>
<dc:creator>pc1oad1etter</dc:creator>
<guid isPermaLink="false">86@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;Although the public example doesn't work, when I download the Aptana IDE, and uses the Run feature, I am able to get it to connect, if the server script is running on the same host as the web server.&lt;/p&gt;
&lt;p&gt;How can I connect to a separate server?  Is this a security requirement?&lt;/p&gt;
&lt;p&gt;If I can do that, I also want to know how I could make the HTML file be simply opened locally in a web browser - not have to have a web server locally.
&lt;/p&gt;</description>
</item>
<item>
<title>pc1oad1etter on "Socket Demo returns "Could not make connection to server.""</title>
<link>http://www.aflax.org/forums/topic.php?id=45#post-85</link>
<pubDate>Tue, 23 Oct 2007 20:31:34 +0000</pubDate>
<dc:creator>pc1oad1etter</dc:creator>
<guid isPermaLink="false">85@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;I cannot even get the socket demo on the web to work - it simply returns &quot;Could not make connection to server.&quot;&lt;/p&gt;
&lt;p&gt;When I try to run it locally, I get browser errors in IE, and nothing happens.  The perl script sits at &quot;Waiting for connections&quot;&lt;/p&gt;
&lt;p&gt;What could be wrong here?&lt;/p&gt;
&lt;p&gt;I am interested in using Aflax, but so far I'm having a lot of trouble and it's not very encouraging to see posts sitting unanswered for months on end!  Also&lt;br /&gt;
FYI, I was not able to login to the forum using Firefox 2.0.0.8 and Windows XP.
&lt;/p&gt;</description>
</item>
<item>
<title>cavva on "Problem running AFLAX locally"</title>
<link>http://www.aflax.org/forums/topic.php?id=44#post-84</link>
<pubDate>Sun, 14 Oct 2007 15:51:12 +0000</pubDate>
<dc:creator>cavva</dc:creator>
<guid isPermaLink="false">84@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;Hi, all the demos found online works fine,&lt;br /&gt;
but if i save the page and run the examples loaclly no one works!!&lt;/p&gt;
&lt;p&gt;I'm on a Debian lenny, using Firefox 2.0 and flashplayer 9.0.48.&lt;br /&gt;
I think it's a problem with the ExternalInterface, i've also tried with the FABridge and had the same behaviour:&lt;br /&gt;
if i'm running on remote site all work fine, if running locally nothing is displayed ...&lt;/p&gt;
&lt;p&gt;Anyone could help or say something?&lt;br /&gt;
thanks
&lt;/p&gt;</description>
</item>
<item>
<title>ycl on "how to rotate TextFiled"</title>
<link>http://www.aflax.org/forums/topic.php?id=43#post-83</link>
<pubDate>Fri, 05 Oct 2007 02:20:22 +0000</pubDate>
<dc:creator>ycl</dc:creator>
<guid isPermaLink="false">83@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;how to rotate TextFiled ?&lt;/p&gt;
&lt;p&gt;thanks
&lt;/p&gt;</description>
</item>
<item>
<title>jusob on "Problem retrieving ID3"</title>
<link>http://www.aflax.org/forums/topic.php?id=42#post-82</link>
<pubDate>Thu, 04 Oct 2007 03:48:50 +0000</pubDate>
<dc:creator>jusob</dc:creator>
<guid isPermaLink="false">82@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;Hello,&lt;br /&gt;
I'm trying to retrieve the MP3 ID3 while playing a file. The example is at &lt;a href=&quot;http://sobrier.org/test/aflax/examples/sound/sound.html&quot; rel=&quot;nofollow&quot;&gt;http://sobrier.org/test/aflax/examples/sound/sound.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;It looks like this:&lt;br /&gt;
var aflax = new AFLAX(&quot;../../lib/AFLAX/aflax.swf&quot;);&lt;/p&gt;
&lt;p&gt;        var soundObj = null;&lt;/p&gt;
&lt;p&gt;        function go()&lt;br /&gt;
        {&lt;br /&gt;
                AFLAX.trace(&quot;Here&quot;)&lt;/p&gt;
&lt;p&gt;                soundObj = new AFLAX.FlashObject(aflax, &quot;Sound&quot;);&lt;/p&gt;
&lt;p&gt;                AFLAX.trace(soundObj.id);&lt;/p&gt;
&lt;p&gt;                soundObj.exposeFunction(&quot;loadSound&quot;, soundObj);&lt;br /&gt;
                soundObj.exposeFunction(&quot;start&quot;, soundObj);&lt;br /&gt;
                soundObj.exposeFunction(&quot;stop&quot;, soundObj);&lt;br /&gt;
                soundObj.exposeProperty(&quot;position&quot;, soundObj);&lt;br /&gt;
                soundObj.exposeProperty(&quot;id3&quot;, soundObj);&lt;br /&gt;
               soundObj.mapFunction(&quot;addEventHandler&quot;);&lt;/p&gt;
&lt;p&gt;                //soundObj.addEventHandler(&quot;onLoad&quot;, &quot;readyToPlay&quot;);&lt;br /&gt;
                //soundObj.addEventHandler(&quot;onID3&quot;, &quot;OnId3&quot;);&lt;/p&gt;
&lt;p&gt;                //soundObj.checkPolicyFile = true;&lt;br /&gt;
                //soundObj.loadSound(&quot;http://sobrier.org/test/aflax/examples/sound/cergy.mp3&quot;, true);&lt;br /&gt;
                //soundObj.loadSound(&quot;http://scfire-chi0l-2.stream.aol.com:80/stream/1048&quot;, true);&lt;/p&gt;
&lt;p&gt;                soundObj.onID3 = function () {&lt;br /&gt;
                       for( var prop in soundObj.id3 ){&lt;br /&gt;
                                alert(prop);&lt;br /&gt;
                        }&lt;br /&gt;
                }&lt;br /&gt;
                soundObj.loadSound(&quot;http://sobrier.org/test/aflax/examples/sound/cergy.mp3&quot;, true);&lt;/p&gt;
&lt;p&gt;My mp3 file does contains ID3 tags, but it is never picked. soundObj.getId3().artist is always undefined.&lt;/p&gt;
&lt;p&gt;I've checked out &lt;a href=&quot;http://www.koders.com/javascript/fid4B32347A37700E84C064F9D6AA67E89F28897BDD.aspx.&quot; rel=&quot;nofollow&quot;&gt;http://www.koders.com/javascript/fid4B32347A37700E84C064F9D6AA67E89F28897BDD.aspx.&lt;/a&gt; This is very similar to what I did.&lt;/p&gt;
&lt;p&gt;Anybody tried to do the same thing?&lt;/p&gt;
&lt;p&gt;Thank you
&lt;/p&gt;</description>
</item>
<item>
<title>tigi on "remove the Flash"</title>
<link>http://www.aflax.org/forums/topic.php?id=41#post-81</link>
<pubDate>Mon, 10 Sep 2007 15:16:26 +0000</pubDate>
<dc:creator>tigi</dc:creator>
<guid isPermaLink="false">81@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;Does anyone know how to clean up the &amp;lt;div&amp;gt;/videoclip from screen once it's finished?&lt;/p&gt;
&lt;p&gt;It now starts when a users presses a button but it should completely be forgotten once it's finished. Now I keep a slight shadow in the div, the end of the clip.
&lt;/p&gt;</description>
</item>
<item>
<title>hansblink on "Upload with Flash throws script-timeout on &gt;2MBit/s"</title>
<link>http://www.aflax.org/forums/topic.php?id=38#post-80</link>
<pubDate>Tue, 07 Aug 2007 09:35:53 +0000</pubDate>
<dc:creator>hansblink</dc:creator>
<guid isPermaLink="false">80@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;does anybody answer any post's. Is there anyunit tests for the functions. I am very interested in using the EventListener method of the FileRef package, I have been unsuccessful any body can help here?
&lt;/p&gt;</description>
</item>
<item>
<title>hansblink on "How to attach an Event Listener"</title>
<link>http://www.aflax.org/forums/topic.php?id=34#post-79</link>
<pubDate>Mon, 06 Aug 2007 14:40:21 +0000</pubDate>
<dc:creator>hansblink</dc:creator>
<guid isPermaLink="false">79@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;I also need to attach EventListener to a FileReference, I am unable to get working. Any help greatly appreciated
&lt;/p&gt;</description>
</item>
<item>
<title>peted on "aflax socket not returning CR terminated string"</title>
<link>http://www.aflax.org/forums/topic.php?id=40#post-78</link>
<pubDate>Wed, 01 Aug 2007 09:47:33 +0000</pubDate>
<dc:creator>peted</dc:creator>
<guid isPermaLink="false">78@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;hi, i set up alfax and got it working with a socket connection to an IP device. I can see im sending string data ok, but im not getting the onData event to fire to pass through returned string information. I think this may be becasue the returned string data is CR/LF terminated instead of 0 xml. I think the flash xmlsocket may need to be overided. Can anyone tell me how to do this please.
&lt;/p&gt;</description>
</item>
<item>
<title>mrgibson on "Mouse wheel?"</title>
<link>http://www.aflax.org/forums/topic.php?id=39#post-77</link>
<pubDate>Sun, 29 Jul 2007 16:15:38 +0000</pubDate>
<dc:creator>mrgibson</dc:creator>
<guid isPermaLink="false">77@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;How I can handle the mouse wheel, I know I have to create a instance of Mouse object and use mouse listeners but does AFLAX support it and how I can do that? :)
&lt;/p&gt;</description>
</item>
<item>
<title>blurayne on "Upload with Flash throws script-timeout on &gt;2MBit/s"</title>
<link>http://www.aflax.org/forums/topic.php?id=38#post-76</link>
<pubDate>Tue, 24 Jul 2007 18:41:16 +0000</pubDate>
<dc:creator>blurayne</dc:creator>
<guid isPermaLink="false">76@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;Hi there!&lt;/p&gt;
&lt;p&gt;I've implemented the uploader and noted that connections &amp;gt; 1-3 MBit/s with big files causes flash to throw an “This script is running slowly. You wanna cancel?”-error. This also happens when uploading big files in local LAN.&lt;/p&gt;
&lt;p&gt;Anyway, this is a major problem here, because business broadband connections are widespread here, and most of our customers are agencies that use them.&lt;/p&gt;
&lt;p&gt;You can try out here (just take a 100MB file!):&lt;br /&gt;
&lt;a href=&quot;http://www.aflax.org/examples/fileupload/fileupload.html&quot; rel=&quot;nofollow&quot;&gt;http://www.aflax.org/examples/fileupload/fileupload.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Problem is that more than one onProgress are thrown at once (say 20!), then some seconds nothing happens, then again some 20 events are thrown at once and so on. After some seconds the flash timeout message appears :X&lt;/p&gt;
&lt;p&gt;Any ideas to solve that problem? I can reproduce it on every computer. And i also have it with other flash-based upload-solutions.
&lt;/p&gt;</description>
</item>
<item>
<title>guru on "resuming upload files."</title>
<link>http://www.aflax.org/forums/topic.php?id=37#post-75</link>
<pubDate>Fri, 29 Jun 2007 19:37:33 +0000</pubDate>
<dc:creator>guru</dc:creator>
<guid isPermaLink="false">75@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;yes it will
&lt;/p&gt;</description>
</item>
<item>
<title>amir on "resuming upload files."</title>
<link>http://www.aflax.org/forums/topic.php?id=37#post-74</link>
<pubDate>Wed, 27 Jun 2007 15:02:32 +0000</pubDate>
<dc:creator>amir</dc:creator>
<guid isPermaLink="false">74@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;hi,&lt;/p&gt;
&lt;p&gt;if i have a large file, can the upload be rsumed if the connaction is broken?&lt;/p&gt;
&lt;p&gt;and will it work on mac?&lt;/p&gt;
&lt;p&gt;thanks.
&lt;/p&gt;</description>
</item>
<item>
<title>fattymelt on "This is not Asynchronous"</title>
<link>http://www.aflax.org/forums/topic.php?id=36#post-73</link>
<pubDate>Tue, 19 Jun 2007 22:08:16 +0000</pubDate>
<dc:creator>fattymelt</dc:creator>
<guid isPermaLink="false">73@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;ExternalInterface is SYNCHRONOUS, and you note that Aflax uses ExternalInterface for js/flash communication.&lt;/p&gt;
&lt;p&gt;So how is it that Aflax is asynchronous?
&lt;/p&gt;</description>
</item>
<item>
<title>Cerin on "How Do You Set Handlers For Key Press Events?"</title>
<link>http://www.aflax.org/forums/topic.php?id=35#post-72</link>
<pubDate>Tue, 19 Jun 2007 06:24:01 +0000</pubDate>
<dc:creator>Cerin</dc:creator>
<guid isPermaLink="false">72@http://www.aflax.org/forums/</guid>
<description>&lt;p&gt;A couple examples set event handlers for mouse movement like:&lt;/p&gt;
&lt;p&gt;aflax.getRoot().addEventHandler(&quot;onMouseMove&quot;, &quot;onMouseMove&quot;);&lt;/p&gt;
&lt;p&gt;but how do you do this for capturing keyboard events? I've tried &quot;onKeyPress&quot;, &quot;onKeyDown&quot;, and &quot;onKeyUp&quot; but nothing works. I've Googled for the corresponding Actionscript but could find nothing.&lt;/p&gt;
&lt;p&gt;Any help is appreciated.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;br /&gt;
Chris
&lt;/p&gt;</description>
</item>

</channel>
</rss>
