I have tried using both content (which is read-only) and contentPath
(which seems to target a enternal source, or a movieclip in the library
with a linkage set). The problem is I am dynamically creating the clips
first on the stage, then placing them in the scrollpane, so it does not
contain
Yes I have done quite a bit of testing and searching different web sites
including all the standard goto sites like actionscript.org /
ultrashock.com etc... It seems like I should be able to use
scrollpane.contentPath = _root.productHolder; but this doesnt work.
Steve Krichten wrote:
Flash
So I should be able to do something like this rather than putting all
the clips in a empty_mc first:
myScrollpane.attachMovie(productDisplay, product_+i, i, {_x:700,
_y:pro_startY});
?
Steve Krichten wrote:
Sorry, you can't do that with the V2 component. However I don't see
why you
Derek Vadneau wrote:
_root.productPane.contentPath = productHolder;
The contentPath code will do the attachMovie for you. You either have to
specify a symbol name from the library or a URL.
Derek Vadneau
- Original Message -
From: Mike Boutin [EMAIL PROTECTED]
To: flashcoders
-
From: Mike Boutin [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Wednesday, November 30, 2005 5:55 PM
Subject: Re: [Flashcoders] Scrollpane in the arse
So I should be able to do something like this rather than putting all
the clips in a empty_mc
;
pro_startY += 160;
}
That'll make 10 panes, each with a productDisplay loaded in it.
- Original Message -
From: Mike Boutin [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Wednesday, November 30, 2005 6:06 PM
Subject: Re: [Flashcoders] Scrollpane
Perfect! thanks it works great!
Mike Boutin wrote:
Thanks for the example, except I need 10 productDisplay clips in 1
scrollpane.
JesterXL wrote:
Then try:
var pro_startY= 0;
for(i=0; i10; i++)
{
var ref:ScrollPane = ScrollPane(attachMovie(ScrollPane, pane +
i, i));
ref.move(0
Have you tried somethign like
a attrib=name1![CDATA[This is the atmoic value. It's so cool]]/a
Ramon Tayag wrote:
Hey everyone,
How do I properly render text that was pulled from an atomic value?
For example, here's the node:
a attrib=name1This is the atomic value. It's so cool./a
Getting
Does anyone have any good links for explaining how to navigate through
an xml object?
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Merrill | E-Learning Solutions | icfconsulting.com
-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders-
[EMAIL PROTECTED] On Behalf Of Mike Boutin
Sent: Thursday, December 01, 2005 12:26 PM
To: Flashcoders mailing list
Subject: [Flashcoders] Navigate through XML
Does
I have downloaded XPath implementation for AS2. Where do I extract the
*.as files to? There seems to be no documentation on how to install.
http://www.xfactorstudio.com/ActionScript/AS2/XPath/
Thanks!
___
Flashcoders mailing list
This works great, but this does not have syntax highlighting, is that
another issue in itself?
Chris Hill wrote:
http://ubergeek.tv/article.php?pid=90
Mike Boutin wrote:
I have downloaded XPath implementation for AS2. Where do I extract
the *.as files to? There seems
I am trying to target an object inside my scrollpane. This is what im
trying to achieve:
my_pane.content[product_+i].[color_+j].loadMovie
What is the correct way to target a movieclip in this way?
Thanks!
___
Flashcoders mailing list
I am doing a loadVars call to a php file, that then returns a bunch of xml.
Is it possible to show a preloader for this load?
var catalog_xml:XML = new XML();
catalog_xml.ignoreWhite = true;
catalog_xml.onLoad = function(success:Boolean) {
if (success) {
} else {
}
.
- Original Message -
From: Mike Boutin [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Thursday, December 01, 2005 7:16 PM
Subject: [Flashcoders] preload loadvar xml return
I am doing a loadVars call to a php file, that then returns a bunch of xml
to parse, or use Remoting where possible.
- Original Message -
From: Mike Boutin [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Thursday, December 01, 2005 7:40 PM
Subject: Re: [Flashcoders] preload loadvar xml return
Thanks! The problem I have seems
productNames = XPath.selectNodes(catalog_xml,
/shirtBin/shirt/name/text());
var ttTotal = XPath.selectNodes(catalog_xml,/shirtBin/shirt[price12.00]);
Is it possible to say do another XPath query and get back a list of
results. Then pass that xml object (ttTotal) through instead of
I am bring in some html text to show in flash in an xml file like this:
description id=0
title![CDATA[bpicture 0/b]]/title
/description
When i trace it back in flash, it shows up like this:
lt;bgt;picture 0lt;/bgt;
How can I keep it show it shows the html tags because it wont show up
I a user login but the input fields do not all sit in the same
movieclip. The structure is as such:
userMovie.user_input.inputText.text, passMovie.pass_input.inputText.text
How do I set the fields so I can tab through them? And also will doing
this cause the onFocus function for each
Yes this is how I have been fixing the problem. Seems like a pain to
have to use both methods, rather than just using the xpath.
Morten Barklund Shockwaved wrote:
Merrill, Jason wrote:
[...]
Problem overview: using Xpath, HTML tags inside of XML does not render,
even with CDATA tags
Still wasnt able to get it working. I had to resort to using nodeValue
instead. pain in the ass
Mike Boutin
Juicy Studios
Merrill, Jason wrote:
Quote: http://www.w3.org/TR/xpath#section-Expressions
I can never seem to make heads or tails of the w3.org documentation -
maybe I'm just
I was able to use xpath to return titlesome html/title then use
nodeValue on that.
but I *wish* i could just do /xmlnode/xmlnode/text() and cut nodeValue
out but i dont think its possible.
Morten Barklund Shockwaved wrote:
Mike Boutin wrote:
Still wasnt able to get it working. I had
string = XPath.selectNodes(my_xml, /path/to/nodes).nodeValue;
This results in undefined.
Johannes Nel wrote:
try dropping the last slash in ur xpath statement
On 12/7/05, Merrill, Jason [EMAIL PROTECTED] wrote:
Why is it a workaround? Doesn't the XPath return the XMLNode?
I haven't used
even in this case the result is undefined
string = XPath.selectNodes(my_xml, /pathto[1]/xml).nodeValue; !--
single node
Johannes Nel wrote:
sorry no, u r doing a query which returns an array, try slectSingleNode, and
that will work
On 12/7/05, Johannes Nel [EMAIL PROTECTED] wrote:
try
Where is the documentation on selectSingleNode
It doesnt seem to be in flash 8 help files.
Johannes Nel wrote:
use the selectSingleNode method or use the array accessor
On 12/7/05, Mike Boutin [EMAIL PROTECTED] wrote:
even in this case the result is undefined
string = XPath.selectNodes
Perfect, thanks for the help!
Morten Barklund Shockwaved wrote:
Mike Boutin wrote:
even in this case the result is undefined
string = XPath.selectNodes(my_xml, /pathto[1]/xml).nodeValue;
I've just gotten the libraries, and it is exactly as I expected.
selectNodes returns an Array
Sweet that works. thanks for the update! ;)
Mike Boutin
Juicy Studios
Merrill, Jason wrote:
By the way Martin, I hope I didn't come across as being unappreciative -
thanks again for your help. Mike too. Mike, if it's any less painful,
while not pretty, I knocked it down to a single line
Can anyone tell me why when I call the displayImage() function after I
fully loaded, and try to get the _width and _height of holderClip, it
comes back as zero. But if I wait 1 second after the load and run the
displayImage() function through the button click, it then finds the
width and
Is it possible to check a number to see if its even / odd?
Thanks!
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Yes i agree, Subversion seems to do the trick for me.
eric dolecki wrote:
What's your situation? How big is your team, how often are you changing
binary assets, are you working from a large class library, etc?
I use SubVersion and its super nice. Nothing is perfect when working with
binary
I just want to be able to see the incoming/outgoing data, as well as just
send random traces to it when developing.
Heather
- Original Message -
From: Pranav [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Monday, December 12, 2005 7:54 PM
Does
LuminicBox.Log also work in flash 8? i cant seem to get it to log a
message though it doesnt get any errors...
John Grden wrote:
Yeah i agree, if you're just into logging, LuminicBox/Flashinspector is a
great tool
John
On 12/13/05, Jim Tann [EMAIL PROTECTED] wrote:
LuminicBox
movieclip.stopAllTweens() will stop all tweening on all the instances
that are currently tween. Not sure if this helps.
[EMAIL PROTECTED] wrote:
Hello everybody,
i use tween of laco [laco.wz.cz] with delay on some instances. i want
to delete a delay and the tween to on previous instance
How exactly are you delaying the tween? the tween class doesnt have a
delay in it as far as I know
Cinetryx wrote:
stopAllTween delete the tween event but not the delay before the
tween
Mike Boutin a écrit :
movieclip.stopAllTweens() will stop all tweening on all the
instances
this delay.
Mike Boutin a écrit :
How exactly are you delaying the tween? the tween class doesnt
have a delay in it as far as I know
Cinetryx wrote:
stopAllTween delete the tween event but not the delay before the
tween
Mike Boutin a écrit :
movieclip.stopAllTweens() will stop all
);
myButton.onRelease = function(){
clip.stopTween();
}
Cinetryx wrote:
yes, i want.
Mike Boutin a écrit :
So you are calling the tween, but you want to delete it before the
delay happens?
Cinetryx wrote:
When you write this :
my_mc.tween(property, pEnd, seconds, animType, delay, callback
Is it possible to have a hyperlink (loaded from xml)gotoandplay a certain frame
in the movie?
Heather
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
?
sort of... you could do:
a href=asfunction:_root.gotoAndPlay,label /
- Original Message -
From: Mike Boutin [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Tuesday, December 13, 2005 11:40 PM
Subject: [Flashcoders] Hyperlink to frame
Just a few questions about SVN TortoiseSVN. I have ran the 1 click
setup SVN that installs Subversion and TortoiseSVN. It created the
repository in c:\svnrepos
I stuck my project in a folder c:\svnrepos\project1, then I import it
into the repos. Now when I make a new directory and use
- From: Mike Boutin [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Wednesday, December 14, 2005 10:09 PM
Subject: [Flashcoders] SVN TortoiseSVN
Just a few questions about SVN TortoiseSVN. I have ran the 1 click
setup SVN that installs Subversion
.
Subversion keeps the files inside its db in its own special format,
only keeping the parts of the files that have changed between
revisions to save disk space.
C
Mike Boutin wrote:
Just a few questions about SVN TortoiseSVN. I have ran the 1 click
setup SVN that installs Subversion
it, you'll never
look back. Enjoy!
C
Mike Boutin wrote:
Perfect this is what I was just reading in TortoiseSVN help. I just
wasnt sure if I could then delete the folder I had imported. It says
in the help that their are 2 ways in which it can store the files, in
a db, or in the native filesystem
file(except when you first import).
Subversion rules, btw. Once you get used to using it, you'll never
look back. Enjoy!
C
Mike Boutin wrote:
Perfect this is what I was just reading in TortoiseSVN help. I just
wasnt sure if I could then delete the folder I had imported. It says
= passwd
### This option specifies the authentication realm of the repository.
### If two repositories have the same authentication realm, they should
### have the same password database, and vice versa. The default realm
### is repository's uuid.
# realm = My First Repository
Peace
C
Mike Boutin wrote
Does anyone have any links on stuff Not to do in flash that maybe
cause the plugin to slow down or halt. Maybe even some best practices
when working on large projects?
Thanks!
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
Maybe something like this may help?
myText=XMLNode((XPath.selectNodes(myxml,myNodePath/mynode())[0])).nodeValue;
Mike Boutin
Merrill, Jason wrote:
AFAIK, XPath.selectNodes() returns an Array.
How do you use Xpath to return node values then?
Jason Merrill | E-Learning
Has anyone played with OpenLaszo as well as Flex? Does flex allow you
to compile a stand-alone swf file such as OpenLaszlo does?
Thanks!
Mike Boutin
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman
Value;
Mike Boutin
Merrill, Jason wrote:
AFAIK, XPath.selectNodes() returns an Array.
How do you use Xpath to return node values then?
Jason Merrill | E-Learning Solutions | icfconsulting.com
-Original Message-
From
Im having a wierd problem with using .split on an array. I create an
array 3 frames before in the same timeline like so:
_root.cat_colors = new Array();
_root.cat_colors[0] = bob,john,betty;
Then 2 frames down the timeline I run a loop like so:
for (i=0; i_root.cat_colors.length; i++) {
and it works for me. Is
anything else happening in the movie or any included movies?
See it here: http://www.adrianlynch.co.uk/temp/colours.fla
Ade
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Mike
Boutin
Sent: 20 December 2005 23:41
To: Flashcoders mailing
Thanks Adrian, your code works exactly like mine should but for some
reason mine doesnt get the same results (though its the same code) ;)
Mike Boutin
Adrian Lynch wrote:
Just took your code and plonked it in a new .fla and it works for me. Is
anything else happening in the movie or any
So OpenLaszlo may be a better solution as it does not need a OpenLaszlo
licence to have a standalone swf on the server?
- Original Message -
From: Spike [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Wednesday, December 21, 2005 8:27 AM
Subject:
I recently installed and have been using Firefox as my main browser. I
have noticed that all my flash sites in firefox perform noticably
slower than they do in internet explorer. Is this an issue with firefox
plugin itself or should I just go back to oh no internet explorer.
Mike
I have a swf file that has a combobox component in it with two options.
This is loaded into _root.holderClip
For some reason when I publish and view it in flash player, it works
fine. When I run the same thing in Internet Explorer and comobox does
not drop down anymore? Am I missing
Can anyone tell me how to go about creating a comobox that can hold a
10x10 pixel color palette image and a label beside it per row? Has
anyone seen anything like this?
Thanks!
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
I am able to view at both urls
tech wrote:
I uploaded to the root directory. Try this.
http://mike.randm.org/scrollpain.html
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Merrill,
Jason
Sent: Friday, December 23, 2005 2:42 PM
To: Flashcoders
.
- Original Message -
From: Mike Boutin [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Friday, December 23, 2005 3:23 PM
Subject: Re: [Flashcoders] Custom combobox
Hi Chris, thanks for the help by the way, i managed to get it working
like so
Does anyone know how to change the color of the title in the window
component?
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
I have a NumericStepper that changes the value of a price textfield
based on the stepper value. Is there anyway to check if the user
increment/decrement the stepper so I can muliply/divide the number when
needed. Thanks
var nstepListener:Object = new Object();
nstepListener.change =
Is there anyway for flash to find out how many files exist within a
specific directory?
Thanks
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Ok thanks, I think ill give'er a try with php :)
Ian Thomas wrote:
Alternatively, if you're looking in a directory on a server, code up
something in a server-side language - PHP or whatever - to do the file
count, and have flash request the result.
HTH,
Ian
On 1/6/06, Merrill, Jason [EMAIL
Hi All,
I have a FLVPlayback component in flash 8 with the skinAutoHide set to
true. In Firefox everything works fine, when you roll over the video,
the player controls come up and then go away when you roll off. In
Internet Explorer once you roll over the video the controller stays and
I am working on a fullscreen flash project. Can anyone tell me why this
code acts like a loop rather than just happening once? I am trying to
position an object at the bottom of the browser window no matter what
the window size. I am using this code to set it right off the start.
This all
Yes thanks this seems to work. Still not sure why it was doing what it
was, either way thanks for the help!
Marc Hoffman wrote:
not sure why, but try putting Stage properties in a new variable that
doesn't get reset when repositioning the object:
theWidth=Stage.width/2;
What is the proper way to write the loop that the names of the posted
vars and be dynamically named based on i in the loop, as in
myData.color_0 = white; myData.color_1 = blue etc. Any ideas?
var myData:LoadVars = new LoadVars();
myData.action = create;
myData.count =
I copy and paste this code from flash docs and I get a type mismatch
error on line 3. I used this same code in a different swf and it worked
fine, but in this particular movie I get this error, does anyone know
what is causing this? ( I have a window component in my library )
import
Hi,
I am making a fullscreen flash site and I have the width and height set
to 100%. In internet explorer it all views fine, but when I view the
same page in Firefox and Safari, the flash document doesnt stretch to
100%, it only shows like 1/3 of the page as flash and the rest as just
plain
XHTML doctype certainly works for me.
HTH,
Ian
On 1/26/06, Mike Boutin [EMAIL PROTECTED] wrote:
Hi,
I am making a fullscreen flash site and I have the width and height set
to 100%. In internet explorer it all views fine, but when I view the
same page in Firefox and Safari, the flash
I am trying to make a window pop up. I take the code from flash docs
(put a window component in the library) and put this code, then I get
this error everytime. Can anyone tell me why i get it?
CODE:
import mx.managers.PopUpManager;
import mx.containers.Window;
var newWindow =
: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mike
Boutin
Sent: Friday, January 27, 2006 1:58 PM
To: Flashcoders mailing list
Subject: [Flashcoders] Window Error wont go away
I am trying to make a window pop up. I take the code from flash docs
(put a window component in the library
You might want to check out smartfox server at Http://www.gotoandplay.it
I am using it for a multi-user isometric rpg and so far so good! ;)
Rich Rodecker wrote:
im considering making a multiuser game in flash, which involves multiple
users (no more than 5 at a time probably) chasing each
have going simultaneously?
On 2/15/06, Mike Boutin [EMAIL PROTECTED] wrote:
You might want to check out smartfox server at Http://www.gotoandplay.it
I am using it for a multi-user isometric rpg and so far so good! ;)
Rich Rodecker wrote:
im considering making a multiuser game
We have a project.that is created in flash 8 but exported to flash
player 6, AS1. When I test the file in flash player 6 standalone
locally, the file runs fine as well as publishing directly out of
flash. When I embed the swf file into html and post it on the web, it
is only viewable through
Is there anyway to get the label of a highlighted item in a list
component (flash8)? I can get the lable of the selected item by doing
my_list.selectedItem.label but is there something like
my_list.highlightedItem.label??
___
Is it possible to use an xpath query?
XPath.selectNodes(myXml,/products/[EMAIL PROTECTED] = 'blah'][name/text() =
'blah']);
julian atienza wrote:
HI,
Using this XML Example:
products
product SKU=7123734
nameBig Metal Pot/name
price19.95/price
Hey,
You could use php/xml to do it. I have done this making the user
updating end of things in php (which writes a xml file), and then flash
loads it.
http://www.sephiroth.it/tutorials.php
Ben Deroo wrote:
Hi,
Are there any tutorials or samples out there that explain how I can make
Yes I have this problem too, except the xml im loading can be rather large
and it causes flash player to freeze up for a few seconds when parsing.
- Original Message -
From: Scott Pobiner [EMAIL PROTECTED]
To: flashcoders@chattyfig.figleaf.com
Sent: Wednesday, March 01, 2006 9:02 AM
Has anyone used the Flash 8 Custom UI Components to control a sound
object rather than binding them to the FLV Player? Is this even possible
or are they for use only with FLV not mp3? Thanks!
___
Flashcoders@chattyfig.figleaf.com
To change your
;
}
}
}
- Original Message -
From: Mike Boutin [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Wednesday, March 01, 2006 1:05 PM
Subject: Re: [Flashcoders] multi-threading / xml progress meter
solutions?
Yes I have this problem too, except the xml
Hello everyone,
I am using a MediaPlayback component (Media - Player 6-7) from Flash 8
to stream some mp3s. I have a combo box that changes the current mp3
with this code:
flashMp3.setMedia(mp3ToLoad, MP3);
The problem is everytime I change the file, the old file continues to
download.
That seems to have no affect on it. Very wierd that there isnt a way to
flush out the old streams.
eric dolecki wrote:
have you tried flashMp3.setMedia( null ) ?
not sure what that might do...
On 3/10/06, Mike Boutin [EMAIL PROTECTED] wrote:
Hello everyone,
I am using a MediaPlayback
I keep getting this error in the debugger whenever I type in a input box
in my application. Everything seems to work fine still but does anyone
know what it could mean or where to start debugging it?
*** Security Sandbox Violation ***
SecurityDomain 'http://localhost:8081/project' tried to
Have you tried using netstream object to play your flvs instead?
Wouter Steidl wrote:
Thx for your respose,
But I cant believe it has to do with thatcause it works if I don't try
to load flvs from the same project but throw in the file from that other
project..
Any more thoughts?
is
that it all works, but in this weirtd way I described
Thx for the tip though!
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mike Boutin
Sent: Wednesday, April 26, 2006 10:27 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders
Anyone have any links to easing dynamic text? Ive searched google high
and low with no luck.
Thanks!
Boots
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
Do you know of any tutorials that explain the logic behind easing
dynamic text? I understand that a tween class would/could be used but
looking for more of how its done.
Boots
eric dolecki wrote:
mc_tween2 does that
On 5/3/06, Mike Boutin [EMAIL PROTECTED] wrote:
Anyone have any links
I am trying to move all my animations so that they arecentered in the
movieclip they were created in (was created off-centered) except I dont
want to go through every keyframe and adjust the positioning frame by
frame. Is there an easier way of doing this? I am using flash 8 pro...
Any
You could use php to write an xml file.
Flash guru wrote:
Hey all,
Can anyone point me in the right direction of how to save an xml doc from
flash.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
Hello everyone,
I have been doing some work with Flash Remoting and AMFPHP. The problem
im having is the same problem I get with using PHP and XML. The Flash
player seems to just freeze whenever I make a backend call. No loading
animations or anything causing the user to think the app has
Yes im having the same problem, but with Flash Remoting.
Matt Jurgemeyer wrote:
I'm building my menus dynamically from xml docs, but I'm having a problem
with a lag while the xml parses. I have a graphic indicating that the xml is
loading, but it isn't showing up for me on broadband. I'm
Yes OpenLaszlo is a great solution. Ive used it quite a bit. They have
a awesome community for help and getting started with it.
jcanistrum wrote:
and what about OpenLaszlo, has someone given it a try ?
I saw some very good demos overthere
http://www.openlaszlo.org/demos
2006/5/25,
, it seemed to me that the Laszlo support was lacking compared to
what I've found with Flex.
Jim
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mike Boutin
Sent: Thursday, May 25, 2006 1:34 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Flex
PROTECTED] wrote:
I was considering to use it but it was disapointing to me the fact that
they
don´t have AS 2.0 language support
2006/5/25, Mike Boutin [EMAIL PROTECTED]:
I found the Laszlo mailinglist to be very helpful. I got a quicker
response rather than using the forums. I believe
Hello, I have this code on the first frame of a blank movie. For some
reason it always autmatically denies access to the camera without even
popping up the standard Allow/Deny dialog. Any help would be
greatly appreciated! thanks!
function allowCamera() {
var my_camera:Camera =
Does your service class load properly with no errors in the amfphp
Service Browser? can you post some code?
Mike
Sam wrote:
Hi,
Are there issues between flash player 7 8, When I try to connect using
player 7 it works, when trying connect with p[layer 8 it fails.
Any Ideas why this would
Hmm odd. Can you post an example of your connection script?
Mike
Sam wrote:
Hi,
Yes the service works fine in the Service Browser.
Opening the swf in SAFlashPlayer 7 the service connects SAFlashPlayer 8
I get a connection failure
On Jun 6, 2006, at 12:01 PM, Mike Boutin wrote:
Does your
Is it possible for you to just grab the name after it is selected from
the FileReference object?
var listener:Object = new Object();
listener.onSelect = function(file:FileReference):Void {
trace(file.name);
};
Boots
[EMAIL PROTECTED] wrote:
I am
FileReference();
newFile.open(backup-data.txt);
// operate on new file
// ...
}
[EMAIL PROTECTED] wrote:
Thanks for the reply.
I can get the name, however it doesn't provide the path (i.e.
c:\images\image001.jpg)
Mike Boutin mikeb at juicystudios.com
Thu Jun 15 13:03:32
page you can use a hidden file field and
communicate with it via ExternalInterface / getURL and javascript.
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mike Boutin
Sent: Thursday, June 15, 2006 1:56 PM
To: Flashcoders mailing list
Subject: Re
You may also want to look into amfphp and Flash Remoting as it greatly
simplifies this approach.
http://amfphp.org/
Mike Boutin
Jim Robson wrote:
Matt:
http://php.net/ has tutorials and a comprehensive manual. If you have
experience with ASP, then you should be able learn the basics of PHP
1 - 100 of 114 matches
Mail list logo