Flash Cs5 website gallery

Hello I have made a website and a gallery both in seperate files. I made the gallery of size for the page i want it on and everything works standalone. However when i tryed to get it to load in the website it would not i read to move your swf file to the website and place it but that did not work because 1. it did not load the pictures 2 got an compile error saying "1046: Type was not found or was not a compile-time constant" .
Picutres:
     (website)
(Gallery) I want the gallery into ^ that
Pictures are temp... I don't have a bee limo sorry
Added pictures

assign the loader's x and y properties:
var ldr:Loader=new Loader();
ldr.contentLoaderInfo.addEventListener(Event.COMPLETE,f)
ldr.load(new URLRequest("gallery.swf"));
addChild(ldr);
function f(e:Event){
ldr.x=(stage.stageWidth-ldr.width)/2;
ldr.y=(stage.stageHeight-ldr.height)/2;
p.s.  please mark this thread as answered.

Similar Messages

  • How to add an adobe bridge photo galley to flash cs5 website?

    Hello everybody. I am creating a website for an tourist walking site in Lisbon. I have a page with pictures which I made to buttons and now I want to make them to go after clicking to an adobe bridge photo gallery. I tried allready some codesnippers but I can't make it work. The photogalleries are in the same file as the other webfiles for this projects. Does anyone now how to make this work?
    If you know please tell me because it is, you can imagine, very frustrating and stops the project for to long allready, it is the final touch. Thanks!
    David

    You created the movieclip animation in Flex or in Flash?
    If in Flash Pro, you'll have to "prep" the SWC for use in Flex.  Use the Flash Component Kit for Flex ( http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&loc=en_us&extid=1273 018 / http://adobedev.adobe.acrobat.com/p75214263/ ).
    To use spark groups and addElement, I think your class will have to implement IVisualElement , though.

  • Flash cs5 gallery problem...

    Hello I have made a website and a gallery both in seperate files. I made the gallery in fireworks cs 4 (as2), and the website in flash cs5 (as3).  When I imported the gallery.swf to the library it just shows the outline of the gallery (picture1) with no pictures or even the menu just the outline. Could anyone please help me out in this matter?

    You need to specify the correct path/name for the swf file...
    fl_Loader_2.load(new URLRequest("player_black"));
    does not do that.  As a minimum it should have an ".swf" at the end of the file name, as in "player_back.swf".
    Any time you get error messages, you should include both the complete error messages and the relevant code in your initial posting.   It can help get to solving think more readily.

  • Is it possible to Embed Youtube Widescreen windows full options on Flash CS5 AS2 Website?

    Good Day
    Does anyone know How to Embed a Youtube widescreen Video window on a Flash Website, i'm using Flash CS5 and ActionScript 2???!!
    I've seen several video tutorials on youtube and other websites about this, but they only work with a window of 480px for 385px (4:3),
    which doesn't allow the fullscreen option on the lower bar of the video, because the player still had a silver bar not a black one !!!!
    This is the one i've been using!!!  http://www.youtube.com/watch?v=wfU5Hj3uKZ4
    I would like to use a widescreen window (16:9; 16:10), like the ones youtube curently uses, 360p; 480p;720p, like in this case:
    http://www.worldcarfans.com/111102637687/filming-the-new-porsche-911-at-speed-around-lagun a-seca
    http://www.youtube.com/watch?v=ZxqcEYpKYWY; inside Porsche Channel - http://http://www.youtube.com/user/Porsche#p/c/C62AA82F9212FB59/0/ZxqcEYpKYWY
    I would very much appreciate any help you can give me!!!
    Thank you

    There are two options here that I can think of..
    1.  Preinstall AIR on their machines, and use AIR files.  That will work IF AIR is already installed.     Flash projectors have no ability to control the file system in this way, but AIR does.
    2. Use a Director projector.   There are Director Xtras that can control the file system, and you can embed a SWF in Director.  So you wouldn't have to recreate the SWF content, you'd only need to have Director and learn some basics about using SWF and making projectors.
    That's all I can think of.

  • I need help for actionscript 3, sending php info to my email, website created in Flash cs5 pro

    Hi,  My name is David and I followed a course creating my own website from Lynda.com by Paul Trani. After that I created my first own webste. After I finished it, everything was working well in flash and firefox. I have only one problem and question concerning the feed back form for sending info from my website to my emailaddres. I created my website “LisbonDreamWalking”in Flash CS5 pro. I herein have a contact page, where people can send an email for a walk in Lisbon, date,the number of people etc. Now I want through my ISP / host funpic.org, that the input, info text fields to be sended to my emailaddress [email protected]. My mail URL adress  iss: http://lisbondreamwalk.li.funpic.org  This is a free host, so they don't work with forms like in the course, and I need some additional info for the php. Here is my HTML (Flash actionscript 3.0) for the sending I only have the red text to fill in (php), I was told by the adobe course.I really hope someone can help me?! Thanks in advance!
    Instructions: 1. Add your custom code on a new line after the line that says "// Start your custom code" below. The code will execute when the symbol instance is clicked. */  send_btn.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler_13);  function fl_MouseClickHandler_13(event:MouseEvent):void {          if (thename.text == "" || theemail.text == "" || thetime.text == "" || thepersons.text == "" || themessage.text == "")      {           thankyou.text = "please fill out all fields";      }      else      {           // create a variable container           var allVars : URLVariables = new URLVariables();           allVars.name = thename.text;           allVars.email = theemail.text;           allVars.time = thetime.text;           allVars.persons = thepersons.text;           allVars.message = themessage.text;           //Send info to a URL           var mailAddress:URLRequest = new URLRequest("http.www.namewebsite.com/gdform.php");           mailAddress.data = allVars;           mailAddress.method = URLRequestMethod.POST;           sendToURL(mailAddress);            thankyou.text = "Thank YOU!";           thename.text = "";           theemail.text = "";           thetime.text = "";           thepersons.text = "";           themessage.text = "";      } }
    H

    Thank you Kglad, I am going to see if I can make it work. I will let you know!
    Date: Thu, 13 Oct 2011 08:55:05 -0600
    From: [email protected]
    To: [email protected]
    Subject: I need help for actionscript 3, sending php info to my email, website created in Flash cs5 pro
        Re: I need help for actionscript 3, sending php info to my email, website created in Flash cs5 pro
        created by kglad in Action Script 3 - View the full discussion
    you missed part of the tutorial (or the tutorial is incomplete):  send_btn.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler_13); function fl_MouseClickHandler_13(event:MouseEvent):void{     if (thename.text == "" || theemail.text == "" || thetime.text == "" || thepersons.text == "" || themessage.text == "") { thankyou.text = "please fill out all fields"; } else { // create a variable container var allVars : URLVariables = new URLVariables(); allVars.name = thename.text; allVars.email = theemail.text; allVars.time = thetime.text; allVars.persons = thepersons.text; allVars.message = themessage.text; //Send info to a URLvar mailAddress:URLRequest = new URLRequest("http.www.namewebsite.com/gdform.php"); mailAddress.data = allVars; mailAddress.method = URLRequestMethod.POST; sendToURL(mailAddress);
    }}  var urlLoader:URLLoader=new URLLoader(); function sendToURL(mailAddress):void{urlLoader.addEventListener(Event.COMPLETE,completeF);urlLoade r.load(mailAddress);} function completeF(e:Event):void{ thankyou.text = "Thank YOU!"; thename.text = ""; theemail.text = ""; thetime.text = ""; thepersons.text = ""; themessage.text = "";}
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/3969414#3969414
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/3969414#3969414. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Action Script 3 by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Getting Flash Player Error when uploading Flash CS5.5 Website

    Hi Guys,
    I m trying to upload my website from Flash CS5.5 and I m getting following "error" on the web site : "Für diese Seite ist Flash Player Version 10.2.0 oder höher erforderlich " (For this Site only Flash Player Version 10.2.0 or higher is needed). I set up Action Script 3 and Flash Player 10 and 10.1. (hashed Flash Player recognize) in HTML settings.
    Any idea where I m doing mistake? I would be greatful for each help.
    Many thanks
    Siriusk

    Show the link and the html code you used

  • Want to create flash design websites using creative suite cs5.5/beginner

    Hello everyone! I would really like to learn how to create a great flash design website. I already have website hosting with 2 different companies for two different websites that I have not added content to yet. But I want to add my own templates and and custom feel , design and graphics to and I want it to be great! I have downloaded the dreamweaver free trial and I am seriously considering purchasing Adobe creative suite cs5.5 like tomorrow along with the tutorial that has to be purchased separately. I am a beginner to creating websites and I would really appreciate it if someone could point me in the right direction or let me know if I am already headed there by purchasing the complete tutorial for cs5.5. Does any one know if I will be making a smart move?

    I suggest a visit to Lynda.com. Check out the video training there. This link will get you a one week trial. http://bit.ly/fcGpiI
    Bob

  • How can I pubish SWF interactive magazine to flash based website? It's not working!

    I hope someone can help me launch my first interactive magazine (SWF) to our website with ID 5. Okay, my hard copy mag came out great so then I started on the interactive edition. Everything was going swell with adding 3 short videos ( FLV  ) and creating 3 slide shows. When I previewed it by exporting to SWF I could preview it in my browser fine. Page curls, fade in words (although the “hide until animated” options only works in two out of about 7 instances. (same settings) file:///C:/Users/lauralaptop/Documents/NEW%20PUBLICATION%20QUARTERLY%20JOURNAL%202011%20se pt%202/LIFE%20apr-may-june%202011%201st%20issue%20INTERACTIVE%20TRYOUT%20Aug%2031%204pm.ht ml
    I then followed instructions from another Adobe exercise, exported it to Flash, went to Publish Settings, but of course when I pressed “publish” I didn’t get the same result as the teacher…I got an error message about text. I searched a forum with the same message I got and saw that making sure my text setting was set for Classic, solved someone else’s problem. So I did and was able to “publish”. But now, when I open either the SWF or HTML file, it’ just rapidly repeating the 12 pages in my file in a loop!
    file:///C:/Users/lauralaptop/Desktop/LIFE%20apr-may-june%202011%201st%20issue%20INTERACTIV E%20TRYOUT%20Aug%2031%204pm.html
    I have spent most of the summer self teaching myself InDesign CS5 (not easy!) and am excited to be able to put out an interactive SWF file that can be opened in a Flash player through our Flash based website. I feel like I’m just inches away for launch but now I’m getting frustrated. Isn’t this going to be possible?
    Also, when I publish it in Flash, it creates a SWF file AND an HTML file. But on our website, I have only one option to make a link to a document OR an outside link to open a file. How does that work?
    Many thanks for whoever can help me out here. This was supposed to be a spring issue. Had to change it to summer and now I guess it’s a fall launch!

    Thank you for your quick reply, Rob. Well, i can't open the link you gave me to mysite (got a 404 error), could you resend it?
    Originally, I exported the file to SWF (player) and just tried to link that file from our flash based website. It opens fine, page curls fine, slide shows fine, but when you click on the photos with videos, page 5 (father and baby) and two others, the image disappears and only a white comes up to fill that area.
    http://scpres.org/#/media-sermons-online/our-publications. Could you go to this link on our website to see what I mean? Go to the NEWSBREAK TRANSFORMS and click on the Life, Stories of Transformation.
    Rob, here is where i have very limited knowledge: As I said we use a flash based (read very user friendly) web hosting company. When I am in the back end to upload the swf file, I have only one option  - "attach a video, attach a document, attach a link" so how would I upload a "folder" with more than one item to the server?
    I thought it would be considered a video since the SWF file says SWF movie, but when I when i try to upload as a video, it doesn't come up as importable. (am i sounding really stupid?) Maybe I should admit that yes, I'm an ID5 newbie AND yes,  I'm no spring chicken but I have been working in CS2,3,4 for several years and now 5 and am quite proficient in the create aspect of Adobe products. It's just now the technical part about how to actually get my  in work published to the site.There isn't anyone else in my company able to help me so I have to reach out to this forum!
    I love ID and this is just my first effort but I'm looking forward to creating many more interactive magazines for my company.
    Thanks for any help.

  • Flash CS5 problem - missing text

    We've got several Flash files created by a partner organization that we're trying to edit. The files are for an e-learning course and contain four or five "tabs," each with a multiple choice or true/false question, each option labeled A, B, C, etc.. The learner clicks through the tabs, answers each question using either radio buttons or click boxes, and clicks "submit" to check the answers. When they click submit they should get a line below that either says "Correct!" or, if they're wrong, "Answer:" followed by the letter of the correct option(s).
    What's happening instead is that about 75% of the time when you answer incorrectly nothing at all appears after "Answer:", or in a couple of cases where it was a multiple choice question with more than one correct option, it may only display one of the correct answers.
    Things that may or may not be relevant:
    We are working in Flash Pro CS5. These were created in an earlier version, probably CS3 or 4. The published SWF files we received from the original developer at our partner agency don't have this problem, but if we open the Flash files and republish them the error shows up, even if we make no changes to the files. We had a developer working on contract with us for a while using I think CS4 and he was able to republish them without a problem.
    Every time we run the debugger on the files we get a Font Mapping dialog box indicating that it contains a font (Universal Condensed) that is not available on our system. I always opt to map it to a font we do have but the next time I open the file I get the same message again.
    On any of the question tabs where happening, when I run debugger I get several messages like this in the output window: Target not found: Target="_parent.q1r5" Base="_level0.checkbuttons.q1r1" or Target not found: Target="_parent.q1r6" Base="_level0.checkbuttons.q1r2". I believe the "r5", "r6", etc. is referring to something that the original developer created to automate the creation of these animations. In Designer view, off to the side there are set up instructions, invisible when published, that apparently allow you to enter letters and numbers to create up to 6 questions in any of 8 styles, with up to 8 answers each.
    Again in the output window, I'm getting this message: "Fonts should be embedded for any text that may be edited at runtime, other than text with the "Use Device Fonts" setting. Use the Text > Font Embedding command to embed fonts.". I've embedded both fonts that I believe are used in the animation but it doesn't seem to change anything.
    I was also getting errors like this in the compiler window: Symbol=radio button, layer=Layer 2, frame=1, Line 1  Case-insensitive identifier 'button' will obscure built-in object 'Button'. I am able to click over to the "Actions-Frame" window and the first line there reads either button = "off" or button = "on". If I change button to Button this message is cleared but it doesn't seem to impact the other problem.
    I've spent what is officially now a stupid amount of time trying to figure this out, and I'm starting from search a knowledge deficit that my usual Google research skills are failing me. None of us on staff have any formal Flash training, but two of us have taught ourselves enough to successfully make minor changes to all but this one type of file, and there are several of them like this. I have a vague idea that it has something to do with embedding fonts and dynamic text fields, but none of the suggestions I've seen so far works and I'm at a loss. Would appreciate ideas anyone might have about where to look before I pull out any more hair.

    Hi,
    We have a problem with our action script and seems to be using cookies of clients computers.
    We have a action script as under ..........----------
    function my_function38()
        var _loc1 = my_xml.firstChild.childNodes;
        totalNodes = _loc1.length;
        cityname_mc.fl_name_mc.fl_name.text = my_xml.firstChild.childNodes[cnt].attributes.name;
        rate_mc.rate_anim_mc.fl_rate.text = my_xml.firstChild.childNodes[cnt].attributes.rate;
        fl_month.text = my_xml.firstChild.childNodes[cnt].attributes.month;
    // End of the function
    my_Date = new Date();
    my_xml = new XML();
    my_xml.load("DEL.xml?uniqueID=" + getTimer());
    my_xml.onLoad = my_function38;
    my_xml.ignoreWhite = 1;
    if (!cnt)
        var cnt = 0;
    } // end if
    ++cnt;
    if (cnt >= totalNodes)
        cnt = 0;
        gotoAndPlay(1);
    else
        gotoAndPlay(1);
      Xml Data as under
    <?xml version="1.0" encoding= "UTF-8" ?>
    <cities>
      <city name="Delhi" rate="£365" month=""file location"></city>
    </cities>
    What is happening is we are storing many swf files and xml files for different cities on server location 1 with same code but are just changing the xml file to be picked.
    I.e
    DELHI.XML    DELHI.SWF
    BANGKOK.XML  BANGKOK.SWF
    SYDNEY.XML SYDNEY.SWF
    All are in one folder and we are just changing the xml path in fla files and loading the new swf.
    Then we are giving out swf urls to an advertising company which is in turn picking up swf files from sever location 1 and displaying the same on their website.
    The problem is each time we access the swf file on there site the data doesnot display properly. It is picking up the wrong xml data. When we check the fla the path for xml is ok. What we think is it is saving swf or xml in cookies of user computer. Is there anyway to prevent it from happening.
    We Are using Adobe Flash CS5.
    Thanks
    kam.p

  • How link from html page to a specific frame in flash cs5 as3

    Hi!
    I'm kinda new around here. I am interested in knowing how to link from a specific html page to a specific frame in flash cs5 as3.
    I have a website that I originally began to design in flash but later started developing new pages for it in html. The flash part of it has several pages on different frames and I have created links from the flash part to the other html pages, but, I can only link the html pages back to the main flash home page, and not the other pages in the flash part of the website.
    I have read that in cs3 it was possible using the flashvars skip variable, but I don't know how to do it. I have not yet seen any working examples and I could not find any instructions / tutorials online for cs5.
    Can someone help here?

    add a query string, to the swf's embedding html, with variable/value indicating the frame you want to display in your swf.  add a javascript function to return the query string (or entire url), call the javascript function from flash using the externalinterface class.  and finally add code to your swf to parse the returned url or query string, parse it and then direct your timeline to the appropriate frame.

  • Flash CS5 Newbie - Need help adding URL link to animated banner

    I apologize if this is a very basic question, but I am a newbie at designing in Flash. I have created a basic animation in Flash CS5 and I need to add a clickable URL link to it. I've tried a few tutorials that looked promising, but none of them solved my problem. I've tried a number of things including converting parts or all of the images to simple buttons or movies and linking them that way as well as typing in code for ActionScript 2 and 3, none of which were successful. The animation plays correctly when viewed in my browser, but when I click on it, the link does not work. I would prefer that the entire banner be clickable to take viewers to the linked website rather than using hyperlinked text. Also, when I open the Code Snippets window, it is empty, no matter what image or frame I've selected. Do I need to import code snippets from somewhere or am I simply going about things the wrong way? Any help is greatly appreciated!

    It all depends whether you're decisively using AS2.0 or AS3.0 .
    In the latter, you would need to use a URLRequest() method in conjunction with a navigateToUrl() call (not sure the exact syntax for navigate to Url, it might be a capitalized "URL" in the method but the request takes a String argument such as http://www.adobe.com)

  • Flash CS5 Button Help

    To start, I'm a total newbie in Flash, so I'm sorry if what I'm asking is ridiculously primitive, but I was literally thrown into this blindfolded and I'm using google and several forums to help me out.
    What I'm doing:  redesigning a website.  At the moment, the website has a flash file that introduces it's logo and subcategories of its' website on the top of the page.  What I wanted to do was make sure there was a hyperlink on the logo that would bring anyone back to the homepage, very basic stuff.  The issue I have run into is that the logo is actually a flash movie.  Different parts of the logo appear at different times, and I think this is what is specifically causing me issues.
    The logo that I want to hyperlink has several layers, and what I've done so far is select them all and create a button (F8, select 'Button' and rename it).  When I did that, I noticed the layers significantly changed and when I tested the movie, it looks terrible, choppy and not how it originally looked.
    I know the step after that is to go into behaviors and insert the url to which I want it to be hyperlinked.  The only thing is that I don't want to show a terrible flash movie to my boss even if it's hyperlinked to the homepage. 
    Anyone understand all that gibberish I wrote down?  Or does anyone see a flaw in what I'm doing?  I'm not 100% positive if the steps I'm taking are correct, I've been to several different sites, all of which tell me to do different things. 
    Initially I tried coding it with ActionScript, but I was having terrible issues with that as well. 
    If it helps, the file I'm working on was altered a while back.  Could it be that the file is not compatible or proper for Flash CS5? 
    Help!!!

    ... how do I give that shape/button a url?
    Since it is a button, it is already a self animating object that will react to mouse interactions, but only visually at this stage.  The first thing you need to do to make it useful code-wise is to assign it a unique instance name.  So you drag a copy of it out to the stage from the library, and while it's still selected, you enter that unique instance name for it in the Properties panel... let's say you name it "btn1"
    In AS3, to make a button work with code, you need to add an event listener and event handler function for it.  You might need to add a few (for different events, like rollover, rollout, clicking it, but for now we'll just say you want to be able to click it to get a web page to open.  In the timeline that holds that button, in a separate actions layer that you create, in a frame numbered the same as where that button exists, you would add the event listener:
    btn1.addEventListener(MouseEvent.CLICK, btn1Click);
    The name of the unique function for processing the clicking of that button is specified at the end of the event listener assignment, so now you just have to write that function out:
    function btn1Click(evt:MouseEvent):void {
       var url:String = "http://www.awebsite.com/awebpage.html";
       var req:URLRequest = new URLRequest(url);
       navigateToURL(req);
    ... how do I know it's properly placed on the correct area?
    What area?  If you place it where you want it, that should be correct. (?)
    ... how do I make sure it's invisible...?
    If you can't see it when you test the file and you know it's there and your cursor turns into  a hand when you are over where it should be, it's invisible.
    ...how do I see the other objects in the flash file I'm working on?
    Select Edit -> Edit Document to get out of the symbol editing mode and back to the file editing mode.  If you doubleclick an object on the stage, rather than clickingit in the library, you open it up in editing mode on the stage, but the stage and everything else will still be visible behind it in a faded tone.

  • Importing a flash Catalyst .swf file in Flash CS5 ?

    Hi,
        I found Flash Catalyst by luck while browsing the Adobe website and downloading the Flash CS5 trial...
    One simple question....
    Can I import a .swf file created in Flash Catalyst into a Flash CS5 .fla as an element ?
    I created a scrolling text attached to a custom made scrolling bar in Flash Catalyst, and I would now like to use it in my Flash CS5 project...
    Well, I will be waiting for your responses...
    Thanks in advance for your help !
    Gilbert Gour

    Unfortunately you can't import an SWF from Flash Catalyst into Flash CS5.  Flash Catalyst uses the Flex Framework for building the its SWF.  Flash CS5 does not use the Flex Framework and doesn't know what to do with that kind of file.  You can load an SWF from Flash CS5 into your Flash Catalyst project, though. 

  • Flash CS5 - Email Button

    I've tried searching online, in Adobe, through the Flash Help section, as well as Lynda.com to try and find a SIMPLE "mailto" feature for an email button I created for a portfolio website I have in Flash CS5. It used to be SO SIMPLE in previous versions to set this up, but now, I can't seem to find it anywhere - and a code set up that works.
    Anyone have the code and/or Step-by-Step How To instructions on how to set up a simple mailto: email button in Flash CS5 with AS3.0?
    Louise

    If you mean that you are used to using Code Assist to do all of your Actionscript, then I can't really help you there.  I gave up using that after the first time I ever tried, somewhere about Flash 4.  I have since always done all of my coding via manual input into the Actions panel.  The code you would enter would look something like...
    email_btn.addEventListener(MouseEvent.CLICK, openMail);
    function openMail(evt:MouseEvent):void {
         navigatetToURL(new URLRequest("mailto:[email protected]"));
    And be sure to test on a server.

  • Flash CS5 will not open!

    I downloaded adobe cs5 from my school's website and everything downloaded on my mac correctly. But when I go to open up any product (specifically flash cs5),it looks like its about to open but then automatically closes! I don't know what to do! Help!

    VA Girl wrote:
    Also, in my user home folder the applications file is empty, but I can access all the apps from the HD or doc/apps alias.  Is this a new thing for 10.8?
    OS X has two Applications: one in your user folder and the other at the top of the volume. Applications are installed in /Applications, and you should use the user folder for applications that you are going to open in your account only, and not in another one.
    Open Java Preferences and install it

Maybe you are looking for

  • Contract item not appearing in Shopping cart sourcing

    Hi Team, I created a contract from External Catalog that has  Description and Product Category, but no product ID for the item selected. Now, I created a Shopping cart from the same catalog. I need this Contract to appear in the Sourcing area of the

  • Executing Dynamic actions in Background???

    Hello Experts, We have a requirement where we need to automate PA40. The data would be sent in csv file and we need to perform the required steps to insert data into Infotypes. The issue is in batch mode (background mode), the dynamic actions wouldn'

  • Not able to install GTK+-2.12.0 in Solaris 9: Pango link Error

    Hi I am trying to install GTK+-2.12.0 in my solaris 9 machine from last couple of days but while doing ./configure its throwing error with Pango: checking Pango flags... -I/usr/local/include/pango-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/gl

  • Add A label to a resizable an movable image

    I have a project that does multi-touch...image moving, resizing etc. These images are loaded on the fly, so I don't know how many may load onto the canvas. The moving and resizing has all been worked out. However, I would like to put a label on each

  • Impressionist brush only changes white and very light colours

    I'm new to Photoshop Elements and am trying to grapple with the Impressionist brush.  It seems to function like CS5's Art History brush except that I cannot get it to affect mid and dark value areas.  It appears no matter what the area or tolerance s