[flexcoders] Re: Embedding an SWF and RSL's / Cross Domain Policy File

2009-02-25 Thread uclamerrick
to 'framework.swc', highlight 'RSL URL' and click edit, enter in the location of the swc file: http://www.yoursite.com/somefolder/framework_3.0.0.477.swz do the same for swf thanks, -steve --- In flexcoders@yahoogroups.com, uclamerrick merrick@ wrote: I have an swf file that is possible

[flexcoders] Embedding an SWF and RSL's / Cross Domain Policy File

2009-02-24 Thread uclamerrick
I have an swf file that is possible to embed. When looking to reduce the file size I found out about runtime shared libraries so I changed the framework linkage to RSL in flex builder 3 and then in the deployment path setting for the swz and swf framework files I added the url for the policy file.

[flexcoders] Display Youtube Video using htmlText in Flex 3

2009-02-22 Thread uclamerrick
I am currently using htmlText to display some html and I cannot figure out if its possible to display a YouTube video inside an htmlText. While I might want to display more than one Youtube, even if I could just display one that would be great.

[flexcoders] Re: is it possible to track visitors / the page an swf is embedded on

2009-02-18 Thread uclamerrick
_ _ __ From: flexcod...@yahoogro ups.com [mailto:flexcod...@yahoogro ups.com] On Behalf Of uclamerrick Sent: Wednesday, February 18, 2009 12:24 AM To: flexcod...@yahoogro ups.com Subject: [flexcoders] is it possible to track visitors / the page an swf

[flexcoders] Re: is it possible to track visitors / the page an swf is embedded on

2009-02-18 Thread uclamerrick
mailto:flexcoders%40yahoogroups.com [mailto:flexcod...@yahoogro ups.com mailto:flexcoders%40yahoogroups.com ] On Behalf Of uclamerrick Sent: Wednesday, February 18, 2009 12:24 AM To: flexcod...@yahoogro ups.com mailto:flexcoders%40yahoogroups.com Subject: [flexcoders] is it possible to track

[flexcoders] is it possible to track visitors / the page an swf is embedded on

2009-02-17 Thread uclamerrick
Lets say I run a video site like youtube, how can I capture the url of the page where my swf object is embedded. For example someone takes the embed code from http://youtube.com/videoid123 and places it onto the page at http://myblog.wordpress.com/this_video_rocks I know how to use HTTPService

[flexcoders] navigateToURL and _self - Works locally, not when swf is on remote server

2009-02-09 Thread uclamerrick
I have an Image on an ApplicationControlBar and I am trying to make it such that when the image is clicked, the current browser window/tab is redirected to a URL. It works when the swf file is opened locally, but not if its a remote swf file. I am guessing this is some security issue, and am

[flexcoders] Re: navigateToURL and _self - Works locally, not when swf is on remote server

2009-02-09 Thread uclamerrick
file etc on the remote server. What do you mean when you say does not work? Do you get an error message? You click the image and nothing happens? Something else? --- In flexcoders@yahoogroups.com, uclamerrick merrick@ wrote: I have an Image on an ApplicationControlBar and I am trying

[flexcoders] Re: navigateToURL and _self - Works locally, not when swf is on remote server

2009-02-09 Thread uclamerrick
, uclamerrick merrick@ wrote: Thank you for helping. What I meant was that when I click the image nothing happens. Also, I was not clear with the local vs remote - my swf file can be embedded much like youtube, vimeo etc... When the swf file is generated from the code below

[flexcoders] Use parameter from flashvars in HTTPService

2009-01-28 Thread uclamerrick
In my code below, I am trying to use the variable id pulled from flashvars and use it in the URL of the HTTPService. creationComplete calls the initVars() function which sets the variable ID equal to the parameter id from flashvars. My variable ID is not accessible within HTTPService, but within

[flexcoders] Re: Use parameter from flashvars in HTTPService

2009-01-28 Thread uclamerrick
function serviceFault(event:FaultEvent) Change your serviceResult function to: contentText.htmlText = event.result as String; HTH Steve --- In flexcoders@yahoogroups.com, uclamerrick merrick@ wrote: In my code below, I am trying to use the variable id pulled from flashvars