ActionScript 3.0 :: Unloader Visible Online - Portfolio Images Don't Appear

Oct 25, 2009

i'm using uiloader to load my portfolio images... and when i test my movie the images appear, but when i put them online they don't... all my site is ok but my portfolio images just don't appear... i don't know if i'm missing some code... here's what i have in my actions layer:

[CODE]...

View 0 Replies


Similar Posts:


ActionScript 3.0 :: Online Photography Portfolio - Scalable Full Screen Images

Jun 7, 2010

I am currently building myself an online photography portfolio. I want scalable full screen photos. The only problem here is, photos are different sizes and landscape/portrait. This is what I have so far. [URL]. If you resize the browser to a different ratio to the landscape image, you see black margins top and bottom. I want the image to always bleed.

This is what I have used:
ActionScript Code:
//resize image function setImageSize():void {
// Portrait image
if (imageLoader.height>imageLoader.width) {
imageLoader.height=stage.stageHeight-thumbBase.height;
imageLoader.scaleX=imageLoader.scaleY;
[Code] .....

For a portrait image, I want to show the margins so I am happy how it is for portrait.

View 3 Replies

ActionScript 2.0 :: [Flash MX] Pop-up Alternative For Online Portfolio?

Apr 8, 2003

my web site is based on pop-ups... which i am thinking now was pretty stupid as most people seem to have pop-up blockers. Well i havnt got the time at the moment to change the whole site, but perhaps some one could tell me an alternative way of loading the first flash screen (after the index html page), centered and with no boarders from the initial screen.

View 1 Replies

Flash Mx Movie Published As CS4 Not Visible Online

May 9, 2010

I have not worked with Flash for quite awhile and just finished a personal project in Flash CS4, originally created in Flash MX, but when I uploaded the complete swf and html to the Web, the swf file is not visible at all I see a blank page. The previous version, saved in MX, works just fine online but I no longer have the MX version.

what ActionScript version should I output for the SC4 version, 1 or 2 (I tried version 3 and got an error message)?

View 2 Replies

ActionScript 3.0 :: Xml Portfolio Multiple Images?

Jun 28, 2009

I kinda got a problem with my xml portfolio image loader. I want to load multiple images and the images have a thumbnail and a big image. loading the thumbnails works, but what do i have to write in the mouse down handler to let it work right? since i really got no idea how to pick the right image :Othis is how my xml file looks like:

Code:
<?xml version="1.0" encoding="UTF-8"?>
<portfolio>

[code]......

View 1 Replies

ActionScript 3.0 :: Portfolio - How To Get Images As Buttons And Set TextField

Feb 4, 2009

I'm making a portfolio using XML and AS3. Loading the XML is all fine, I put images in a loader using a for loop. However, I would like these images to be buttons and set a TextField.alpha at 1 when hovering the image. The problem I'm having here, is whenever I hover an image, all the set textfields will show up. How do I change this? I've been trying to put it into an Array with no result.

View 1 Replies

Professional :: Preloader For Portfolio - Stutters On All The Images

Jan 11, 2011

I have created a portfolio with flash using action script 2. But when I click on the button going to the portfolio Scene (containing pictures and tweens) it stutters on all the images when they are first clicked on. As the image increases in size, it is a smooth tween until the one from last frame which it stops then flashes on to the final frame. Is there a way I can preload all the images so that this will not happen? Or anything else I could do?

View 1 Replies

Actionscript 3 :: XML Portfolio Images Stack On Top Of Each Other Instead Of Being Terminated

Feb 13, 2011

i recently started to learn AS3 and i decided to make a portfolio website with it. I am loading the information about the websites i created from an external XML file.Everything its working well but when i load a new picture to the stage the previous picture remains there which in my understanding it shouldn't happen. As i understood from Adobe's AS3 Guide once you create a new instance of a loader, the previous one should be erased.

I've been looking all over the place for a solution but i can't find one that will work. I tried using the .unload class and i tried removeChild as well but it keeps giving me errors.

[Code]...

View 1 Replies

ActionScript 2.0 :: Portfolio With Externally Loaded Images Fading In And Out

Mar 5, 2010

I'm still an amateur at flash (more precisely, actionscript), how to do a simple gallery with static thumbnails which, when clicked, dynamically load an image into an empty movie clip, fading in and out (using actionscript)? By that I mean, click on a thumbnail, main image fades in, click on another thumbnail, loaded image fades out, image of clicked thumbnail fades in. Is it possible? I have successfully achieved thumbnails that load an image externally using both XML and using the ordinary loadMovie function, opting in the end for the loadMovie function and modifying AnaS' [URL] code (some of his comments are still in there). The reasons being that I'm not particularly concerned if I can't use XML for this, but I do want the images to load externally to save space.

I figure that the thumbnails are small enough in file size for me to afford to put them in, but just in case anyone think that XML is better for the job, I'm also including my XML file. On top of AnaS' code, I have added an if-else statement (lines 13-21) but, as I have said before, I'm an amateur, so I can get my head around the 'if' part of the statement, but haven't figured out the 'else' section (namely, the fade out). From what I have seen (I've been looking for the solution for a long time), most people just settle for fading the image either in or out, but rarely both. If there IS a gallery with both fades, it is usually done professionally and the code is either unavailable or goes over my head.

How to click on a thumbnail and load and unload the image using in and out fades. I have seen something which is almost what I need (both fade in and fade out are present) in the form of Kirupa's XML gallery, but I wanted to make mine just the bare essentials and really simple (i.e., no carousel/sliding effects). I just noticed that there is no tutorial for something like this. Kirupa has two very, very good tutorials (the XML portfolio, which is very simple, and the XML gallery with the slide, which is quite advanced) but not an 'in-between' one, such as the one I'm trying to create. [URL]. I have an empty movie clip ('loader') and three thumbnails ('thumb1', 'thumb2' and 'thumb3') on the stage.

My code:
this.onEnterFrame=function() {
if (loader._alpha <100) {
loader._alpha += 5;
} /*else {
if (loader._alpha > 0) {
loader._alpha -= 5;
[Code] .....

View 2 Replies

ActionScript 3.0 :: Getting Errors! Manage To Create A Loader To Load The Images Of Portfolio?

Apr 8, 2010

I'm new in the flash world. I'm trying to set up my website but I keep on getting errors! I manage to create a loader to load the images of my portfolio, first I couldn't remove the previous image, when I loaded the second one, the first one was still there. Now it seems to disappear when I added the line removeChild(loader1). BUT I still get a message in the output panel:

ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller. at flash.display::DisplayObjectContainer/removeChild() at prueba3_fla::MainTimeline/clickF2()

I don't know if this is going to be a problem in the future or not. I don't have any idea of what this message is talking about

[Code]...

View 16 Replies

ActionScript 3.0 :: Loading In Images Online?

Jun 28, 2009

I'm making a 3d fly-through gallery, which is XML controlled, and loads in thumbnails, and then after loads in the images when you click on the thumbnails.Everything works fine when on my local hard drive, but after testing it on a website, it doesn't work.It loads the XML fine, but it never loads the images, or the thumbnails. The .xml file is in the same directory as the .swf, but the images and thumbnails are each in their own folders ("images" and "thumbnails").The funny thing is that it only does this when I tested it using Mozilla Firefox. I tried with Internet Explorer, and voila, it works magically!

I'm using the Loader class, and URLLoaders to load in everything, including the XML file, so it's either a thing about the different directories, or the fact that it's images...

View 4 Replies

ActionScript 3.0 :: Images Not Scaling Or Centering When SWF Online

Aug 20, 2011

I only recently switched to AS3 from 2 and I'm sure there are concepts. When I load a grid of images and scale and center them, why does this work locally but not when I upload it to a server? These images do not scale or center online, they just position themselves at top left at full size. Here's the portion of my code that centers the image when loading of image is 'done.'

ActionScript Code:
function thdone(e:Event):void {
if(e.currentTarget.width > e.currentTarget.height){
scaleFactor = (120/e.currentTarget.height);
} else {
scaleFactor = (120/e.currentTarget.width);
[Code] .....

View 1 Replies

ActionScript 3.0 :: Images Not Showing Up When Testing Online?

Dec 8, 2009

I'm running into a very strange issue when testing an application I'm building online: loaded images aren't showing.When testing locally everything works fine.I'm retrieving the images from an Adobe Scene7 server, and there's a crossdomain.xml in place there with the correct entries. I'm getting the right bytesLoaded and bytesTotal. I'm not getting an IOError Event.What could be wrong?

Here's a piece of the offending code: (I replaced Event.COMPLETE with Event.INIT, hoping it might make a difference, but it doesn't)
[AS]loader.contentLoaderInfo.addEventListener(Event.IN IT, onImageComplete);

[code].....

View 2 Replies

IDE :: Flash - Loads XML URL Images Locally, Not Online?

Jun 6, 2011

I have a flash project that uses an XML doc for data. The URL's in the XML load fine locally, but when published and placed online, they do not load. Is a policy file needed? If so, how do you do that?

View 1 Replies

ActionScript 3.0 :: Loading Images Doesn't Work Online?

Aug 23, 2010

But it works fine locally.

I've created an extremely simple flash website. I need it to display some pictures and to keep the filesize down I want to load these images on demand. The images are hosted on my server in folders in the same directory as the website swf and the html file that initializes the swf.

I use the most rudimentary way of loading an image, it looks like this:

Code:
var loadStart:Loader = new Loader();
loadStart.load(newURLRequest("images/start/screenshotstart.jpg"));
startScreenshot.addChild(loadStart);

When I upload the website to the server it simply does not display the image, it's not loaded, the place where it's supposed to be is blank.

I've searched the site and there have been some threads with similar issues but the answers given just don't seem relevant. Something about cross domain policies, but all my images are on the same domain as the website swf.

View 2 Replies

ActionScript 2.0 :: Visible And Invisible Loaded Images?

May 26, 2008

I have got some images that i have loaded flash from another website.

i have used the tween function to make it move about. i would like to know if there is a way to have many images in the same symbol and change there visiblility so that you can only see one at a time. when i use

Code:
_root.images.image1._visible = false
_root.images.images2._visible = true

[Code].....

View 1 Replies

Actionscript 3 :: Flash/AIR - Download Online Images And Save Locally?

Jan 24, 2011

The app itself will require some data from an online database to be downloaded and stored locally, so that the kiosk can be safely disconnected from the internet while running, and reconnected later to update its data.I'm currently trying to figure out the best way to do this. I figured that the data's easily enough loaded from a server-side PHP script and saved to a local SQLite database for offline usage, but I haven't been able to find any solid method of downloading and saving images. At least, not without using a save dialog.

View 1 Replies

JavaScript :: Flash - Resize / Rotate And Crop Images Then Save Online

Dec 3, 2009

Which is a better approach for this?
ActionScript3 or JavaScript+PHP?
Any open source tool?
After a long search, the only good example I found was this [URL] but I'd rather have a flash alternative.. Also I don't need all the extra functions such as filters.

View 2 Replies

ActionScript 3.0 :: In-visible Sprite With Visible Children?

Sep 28, 2011

My question is: Set parentSprite.visible = false will make all children in parentSprite all invisible, right? And is there any way to just make parentSprite itself invisible without effecting it's children?

View 2 Replies

ActionScript 3.0 :: On Click Object Visible Not Visible

Aug 8, 2010

I want to click on an object and make it appear and disappear. As the object is rectangular, I figured putting a white button the same size on a white background on a layer underneath the object would do this, but I can't seem to make it happen.I'm a complete novice, frustrated as I've been trying to achieve this all day and I'm sure it should be pretty simple, but could you give me the idiots guide. I know how to name an instance, make an object, script in actions on a separate layer. I would like to draw the button myself and give it an instance rather than drag it off the button component (as I can't work out how to make the component button white, change its size etc.!)

View 5 Replies

ActionScript 2.0 :: Visible = True & Visible = False?

Apr 1, 2009

Code:
my_Dyn_Txt1._visible = false
cb1.onRelease=function()[code]....

When the checkbox (cb1) is clicked the "my_Dyn_Txt1" is visible. The problem I'm having is - when I move forwad and back in my frames the checkboxes which were clicked are not visible due to

Code:
my_Dyn_Txt1._visible = false

How can I make ("my_Dyn_Txt1"), a clicked checkbox STAY VISIBLE even after I move forwad and back in my FLA frames?

View 11 Replies

ActionScript 1/2 :: Making Something Visible And Not Visible?

Mar 4, 2010

I want to make a little thing pop up when I put press a button... Would the best way to do this by doing a - movieclipname._visible = true/false

View 3 Replies

ActionScript 1/2 :: Not Visible At Start, Then Visible After Something Happens?

Sep 7, 2010

Okay, this should be relatively easy but I'm running into errors. My main character is visible in the beginning of the game (where the main menu is) and because I coded it so that all of the enemies don't spawn unless the main character is visible, the enemies spawn too. As a result, if you stay at the main menu for long enough, the score continues to go up, the health goes down when enemies attack, etc.

View 1 Replies

ActionScript 3.0 :: Makes Button Visible...but Button Stays Visible If They Seek Back In Video?

Mar 30, 2011

when the video reaches 1 minute, a button appears. is there a way to hide the button again if the user uses the seek bar to go back to the 30 second (or any time before 1 minute) point?

View 2 Replies

ActionScript 2.0 :: Trying To Be Clever With Portfolio

Nov 15, 2006

But need help at this point! Can't get both galleries to work in harmony they load in but only one functions properly Zipped up the source [URl]..

View 2 Replies

ActionScript 2.0 :: How To Make A Portfolio

Mar 31, 2007

how to make a portfolio like [URL] I really want to make a portfolio that I can upload easy with maybe just a couple of XML code or such.

View 8 Replies

IDE :: CS4 Buttons - Make A Portfolio

Sep 5, 2009

I'm new to this CS4 world and I can't make my buttons work...I'm trying to make a portfolio. I have a button created named "books". I created a new layer just to insert the AS of that button and to stop the movie clip...the button is inside that movieclip.
Here is what that layer contains:

[Code]...

EDIT I took off the ":void" part and the compiler doesnt show me any errors. But still it doesn't go to the "design" frame.

View 2 Replies

ActionScript 2.0 :: [FMX] Make A Portfolio?

Mar 29, 2004

I'm trying to make a portfolio. Nested in the mc portfolio are 15 other mc's. site_01, site_02, site_03 etc. When the portfolio button is pressed mc_portfolio is going to frame 2, where the 15 mc's are located. But I don't want them to appear all at ones! I want them to appear with let's say .5 of a seccond pause in between each mc.

View 5 Replies

Slow Loading Portfolio Website

Jan 4, 2012

Somehow through tons of research I've been able to make myself a flash website which features my work. There is one big problem, my site loads really slow and I'm afraid I'm loosing all of my potential clients who probably won't wait for it to load.

Here's my website url: [URL]

I'm hosting with hostgator if that matters at all, I've also optimized the images.

View 3 Replies

Best Dimension For Photography Portfolio In Flash?

Feb 27, 2012

What ist the best dimension for photography portfolio in Flash?I would like to make my portfolio website with my photographs.

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved