Embedding Resource / Game On Site?
Jan 29, 2010
not sure where this should go so putting it here? I have created a game through a third party website: [URL] and want to embed it into my own website but it isnt working? the game is stuck on LOADING.
View 1 Replies
Similar Posts:
May 21, 2010
I'm currently making a website and flash game for a university project but have come across a problem i really cannot solve.
The site is now full functioning and just needs a few tweaks here and there, I started work on adding in the flash game i created.
At the moment on the "games" page there is a button which takes you to the next frame on which there is a movieclip for the game to load into. On this frame i have the following code:
Actionscript Code:
loadMovie("maze.swf", "gameBox");stop();
-maze.swf is the filename of the game
-gameBox is the movieclip i want it to load into
Ok so the game itself displays fine and the character moves as it should but for some reason anything that relies on hit tests now fails to work (walls, enemies, powerups etc.) Everything works as it should when i test the maze.swf on it's own but doesn't when it's embedded into the site.
View 1 Replies
Apr 6, 2010
I'm usually creating 1 .as file per font and exports these .as files to swf's that I load in to my flash projects. This way I can choose what characters to embed. Now I tested copying my verdana ttf fontfiles from my Windows font folder and embedded this to create a Verdana swf fontfile. When I tested running this I tried with some swedish characters with dots. The dots above the characters from some of these characters was positioned slightly offset (like a few pixels to the right or left). Anyone had the same problem?
Example code:
[Embed(source = 'fontfiles/verdana.ttf', fontName = 'Verdana', mimeType="application/x-font-truetype", unicodeRange = 'U+00-U+FF')]
public static var font:Class;
public function Verdana() {
Font.registerFont(font);
[Code] .....
View 1 Replies
Jan 20, 2011
I've created an application that includes a number of Modules and uses Parsley framework. Ant is used to build the application.Recently I thought of using Resource Bundles and implemented it in the system by creating a locale/en_US folder under the src. I added a portal.properties file with all my strings defined.In my modules, I added the metadata
<fx:Metadata>
[ResourceBundle("portal")]
</fx:Metadata>
In the ant build file, I added the below lines within mxmlc.
<locale>@{locale}</locale>
<source-path path-element="${myapp.flex.app.locale}/{locale}"/>
<include-resource-bundles>portal</include-resource-bundles>
The build works fine and when I deploy the application and open it in my browser, I'm greeted with many errors thrown by the Flash player.But if I dismiss the messages, its working fine. My strings are replaced with the values in the property file, but how do I stop the runtime errors being thrown up?I get the below error.
Error: Unable to load resource module from portal at MethodInfo-637()at flash.events::EventDispatcher/dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()[code].....
View 1 Replies
Mar 20, 2011
I'm trying to embed a swf file on a site. Here a link to the file on a page that works. Example Problem is, I need to place it on a different site (we have two servers) and it's not working once I link to the file on the other server. Below is the code. I've highlighted the part that I changed.
[Code]...
View 3 Replies
Nov 13, 2009
I've searched the web and tried a number of different approaches to embed a font in my Flash movie but each has ended in frustration. I have created several buttons with dynamic text fields that use the font I need. I have added the font to my library, given it a unique name, exported for actionscript and then used the unique name when selecting the font in my dynamic text fields. I am probably not using the right AS code to embed and use the font. What's the easiest way to embed the font? I am also using the same embedded font in a around 5 flash movies on the site.
View 5 Replies
Aug 21, 2010
i'm trying to make a quick and easy personal flash website in a short period of time, and i've decided to use 'pictobrowser' [URL] software to create a slideshow gallery easily (my flash knowledge isn't great and my time is limited!). basically it pulls photo info from my flickr sets and creates a slideshow- but all it gives me is some html coding and i'm not sure how to incorporate this into the flash file so it loads every time the page loads.
[Code]...
View 1 Replies
Mar 23, 2010
Here is my situation:
I have a Flash file hosted at:
http://static.mydomain.com/flash.swf
I have a web page that embeds that Flash file at:
http://www.mydomain.com/embed.html
The <embed> code for that SWF has the "allowScriptAccess" parameter set to "sameDomain". Currently, I cannot put links in "flash.swf" that change the location of the embedding page, because they are on different domains, and making a getURL() or ExternalInterface call won't be permissible.
Changing "allowScriptAccess" to "always" is not an option. Putting both files on the same domain is also not an option.
Policy files don't seem to be the solution (perhaps I'm coding them wrong?) and changing the "document.domain" of the embedding page doesn't seem to work either.
View 1 Replies
Feb 24, 2010
how I can embed a video hosted on Vimeo on a Flash (AS2) web page.
View 0 Replies
Sep 16, 2007
Heres a direct link to the swf. (Flash Player 9 Req) [URL] Note that it loads random images to the right.
Now, when I embed this same swf into the actual site: [URL]
I don't understand
I've taken out the new javascript embed code, just to make sure that wasn't messing things around, but to no avail.
[Code].....
If I hard code the php file with the values listed above, everything works perfectly. But I'm using a php script that checks the directory for images, then provides that output.
View 9 Replies
Oct 12, 2011
There is lots of site to publish flash games, but all have different special offers. What is the best way to publish a flash (browser) game to end users.
View 1 Replies
Jan 23, 2011
I can't type into text fields in an online flash game. Videos play normally at sites like Youtube.I have uninstalled/reinstalled Flash to no avail.I have Vista Home and Firefox 3.6.13
View 6 Replies
Feb 12, 2010
Are there any relatively simple programs for building flash applications. I want to add a basic card game to my site, that can keep track of the user's score. The site right now is built in just html, though I will be changing it over to php shortly to implement a log in system. I'd really like to avoid having to learn actionscript on top of it, there has to be some sort of.. basic wysiwyg type flash builder out there?
View 2 Replies
Dec 22, 2009
I have created a Flash site that I need to add another swf file to. how I can insert this other swf file into my existing website which is also a swf file? Can it be done? I've been tinkering with adding another layer and the timelines but can't seem to get it to work. The site is using AS2 but this newer swf file which I created from SlideShow Pro is using AS3.
View 1 Replies
Dec 21, 2011
I'm trying to work through the Vertical Shooter Game within the tutorials section of this site:[URL]I noticed an code error of if spriteX -= steps; (which should have been += steps)However there are further errors within the tutorial as on page 3 where the man should be able to move and shoot his arrows, mine just shoots his arrows and has stopped moving. I'm using CS5 ActionScript3 to do this tutorial.
//---- variables ----
var steps:Number = 5;
var spriteX:Number = 265;
var spriteY:Number = 265;
[code]....
View 2 Replies
May 5, 2005
This is one of the first real things i tried creating using actionscript. I wanted to create a flash version of Conway's game of life ( [URL] ). I got it working succesfully in flash but it's turning out to be a huge resource hog . If i put it one a 100*100 grid it freezes up my computer. i uploaded a temporary version that's supposed to run at 25fps, but as you can see it runs alot slower:[URL] is there any way i can improve my code to make it run faster? Am i using a wrong method to draw the cells? here's the code (all located on the first frame of the root timeline)
[Code]...
View 1 Replies
Jun 16, 2011
I have checked ResourceManager, but seems like i missed something or i just checked into the wrong place
I have an resource ( embed image ) which i need to retrieve by it's name. How to do that ?
View 1 Replies
Apr 27, 2007
While we have a dedicated AS3 forum, we know that a lot of Flex 2 users will cross back and forth across forums because while Flex's core scripting is MXML, it fully supports AS3 as well so it's confusing sometimes what forum to post in and who is best suited to offer help. A lot of topics have been covered in the last 6-8 months at a lot of the more well known guru sites and popular blogs and as we get going we will link up anything that might be of use to users in here.Url...
View 7 Replies
Jul 7, 2011
As below seen in the code, I have created two objects from one object in the library. When you click on them , the trace says object sample_mc for both. So how can I check it in the code if multiple objects are from same resource in the library...
[Code]...
View 7 Replies
Oct 6, 2011
How do I save a resource like "something.rar" from the web, like when it is located on a regular web page?
View 2 Replies
Mar 27, 2012
Some places in my flex app, I use ResourceManager.getInstance().getString, and other places I use mxml @Resource tag to retrieve resource properties dynamically loaded from ResourceManager. resourceManager.loadResourceModule(resourceModuleURL); But only strings from ResourceManager.getInstance().getString show proper locale based values, while the @Resource tag only returns values from en_US resource. I guess it is because en_US is what I compiled with (-locale=en_US ). So I am wondering if I am using a dynamicly-loaded resource, do I have to abandon the @Resource tag and use ResourceManager.getInstance().getString ?
View 1 Replies
Dec 10, 2011
I haven't been here for a while but as a resource of excellent ideas I am back to ask something that I feel you guys would know about.I am a teacher thinking of going self employed and I want to set up an online business charging for access to resources I create myself online to any students that would be interested.I can figure out how to set up password protected areas on my website where access is given when payment is made.
Of course this is for a limited period, say a week and then the password would automatically and randomly change.
I would give the password to those that had paid for access for the agreed period for access.As I aim to have more than one person at a time, this needs to be self regulating. Is this at all possible?Online teaching resource not exactly flash related!
View 3 Replies
Sep 14, 2009
Hopefully this is a straight forward question but as far as resources when compiling a flash project is flash more cpu dependent or gpu dependent? Trying to spec out a machine and need to determine what flash is going to use more.
View 1 Replies
Jul 16, 2009
I want to store some test data for a FlexUnit test in small XML files in my Flex project, and access them trivially for the flex test. How can I load these bits of data synchronously? HTTPService is the way I'd be loading them _a_synchronously, but adding event handlers to my test cases seems like a bit of overkill.
View 2 Replies
Jan 26, 2010
I'm creating a generic flash navigation. I'd like to allow people to use their own fonts like sIFR. I know i can just create a swf file with a font embedded but i'd like to make it as easy as possible for someone to swap fonts so an existing method of creating a swf font file would be preferred.
View 3 Replies
May 26, 2010
I am using Adobe Flash Builder 4.
I've run into this issue with my latest project, but I was able to re-create it with an almost empty project. Here is what I've done.
Created a new Flex Project Created a locale/en_US folder within this project. Added a class that extends SparkDownloadProgressBar. All this class does is attempt to create a Label.
When I try to debug this application, I get the following error.
Error: Could not find compiled resource bundle 'components' for locale 'en_US'.
at mx.resources::ResourceManagerImpl/installCompiledResourceBundle()[E:dev4.0.0frameworksprojectsframeworksrcmx
esourcesResourceManagerImpl.as:340]
[Code]....
The Flex Compiler/Additional Compiler Arguments section does contain "-locale en_US", but I do not want to just remove this as I am planning to have this load different property files based on the localization region at run-time and how I understand it, I will need to add each locale that I am planning to use on the compile argument line.
View 1 Replies
Sep 21, 2010
In the simplest of Flex Projects, create an MXML Flex Module and then load it using the ModuleManager.Create an ActionScript class that extends Module and then configure your project to compile that into a Module.Load this new module instead. The project compiles, but crashes when running with the following error:"Error: Could not find compiled resource bundle 'containers' for locale 'en_US'."I believe the compiler is failing to compile the required class definitions into ActionScript only module, while it succeeds for the MXML module.I can see that my skeleton MXML module is slightly larger than my ActionScript module (66KB vs. 45KB).
View 3 Replies
Mar 17, 2011
I want to compile my locale, resource.properties file into a swf.The documentation on Adobe site seems to be insufficient.
View 3 Replies
Oct 17, 2011
I use Flex3.0(SDK 3.2).
I have a question Flex(resourceModuleURLs).
I am making loading of the resource using flashVars properties in the HTML wrapper as follows now.
AC_FL_RunContent(
"src", "ResourceModuleApp",
"flashVars", "resourceModuleURLs=es_ES_ResourceModule.swf&localeChain=es_ES",
[Code].....
View 1 Replies
Mar 18, 2011
I have a situation where I am trying to build a path to an xml node like this:
Code:
var personName:Object = ["xmLoader.xmlData.profilepage.p"]+num+[".p1name"];
Where "num" is a number passed into to the function. What is happenning is when I trace out personName after this code I get:
"xmLoader.xmlData.profilepage.p2.p1name"
instead of the value that resides at that node name (I can trace out p1name which is John from my processed xml earlier in the code).
View 5 Replies