Help with Alert.show()

I need help with Alert.show(). My goal is to display a message box when a button is pressed.
My program header:
<?xml version="1.0" encoding="utf-8"?>
<s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
actionBarVisible="true" fontWeight="normal" overlayControls="false"
tabBarVisible="true" textAlign="right" title="tipCalc">
//// start of script section:
<fx:Script>
        <![CDATA[
        import mx.controls.Alert;
        import mx.events.CloseEvent;
// show a message box when button pressed
protected function about_clickHandler(event:MouseEvent):void
            Alert.show( "This is a message!", "Dialog Title" );    }
This results in the errors below:
Access of undefined property Alert.
Definition mx.controls:Alert could not be found.  

Well, me and my three days of Flash Builder are lost in the woods. I have no idea how to do what you suggest. The code Google's showing me seems to call for scrapping my working functional program and starting from scratch. For a message box.
Can I add a message box to my existing code?
Here's the header...
<?xml version="1.0" encoding="utf-8"?>
<s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
actionBarVisible="true" fontWeight="normal" overlayControls="false"
tabBarVisible="true" textAlign="right" title="tipCalc">
And here's theclickHandler that should call the popup.
    protected function about_clickHandler(event:MouseEvent):void
                //  Call a message box.

Similar Messages

  • DragDrop Question With Alert.show

    Hi Everyone,
    I have some list controls which I have set the property dropEnabled="true".
    <mx:HBox label="SMR Vessels" height="220" width="100%" horizontalAlign="left" dropEnabled="true">
      <mx:List id="ls1" width="100%" height="100%" dropEnabled="true" dragDrop="ls1_dragDrop(event)"  >
      </mx:List>
      <mx:List id="ls2" width="100%" height="100%" dragEnabled="true" dragMoveEnabled="false"  >
       </mx:List>
    </mx:HBox>
    private function ls1_dragDrop(evt:DragEvent):void
      // Get the data from the dragEvent parameter.
      objDragSource = evt.dragSource.dataForFormat("items");
      //.... Do some things
      //Call an alert.show function to confirm from user if proceed.
      Alert.show('Proceed?', 'TITLE', Alert.YES | Alert.NO, null, alertHandler, null, Alert.YES);
      // Some scripts here...but these are executed right away even before the alert.show's button is clicked.
    When the alert message shows, the only recourse I have is to continue the operation in the alertHandler event.  But I how will I be able to reference the dragDrop event parameter from the alertHandler?
    I am banging my head the whole day on this.  Shouldn't it be that the script after the alert.show only continue once the alertHandler has finished executing its scripts.  But apparently, with Flex, that is not the case since it executes the script after the alert.show was called concurrently with the alerthandler.
    Inputs highly appreciated.
    Thanks.

    The alert handler is also declared in the same MXML file.
    <mx:HBox label="SMR Vessels" height="220" width="100%" horizontalAlign="left" dropEnabled="true">
      <mx:List id="ls1" width="100%" height="100%" dropEnabled="true" dragDrop="ls1_dragDrop(event)"  >
      </mx:List>
      <mx:List id="ls2" width="100%" height="100%" dragEnabled="true" dragMoveEnabled="false"  >
       </mx:List>
    </mx:HBox>
    private function ls1_dragDrop(evt:DragEvent):void
      // Get the data from the dragEvent parameter.
      objDragSource = evt.dragSource.dataForFormat("items");
      //.... Do some things
      //Call an alert.show function to confirm from user if proceed.
      Alert.show('Proceed?', 'TITLE', Alert.YES | Alert.NO, null, alertHandler, null, Alert.YES);
      // Some scripts here...but these are executed right away even before the alert.show's button is clicked.
    private function alertHandler(evt:CloseEvent):void
      if(evt.detail == Alert.YES)
        // Continue with the drag and drop processing here.
        // Take note that I need to reference the dragEvent parameter which was only visible in the ls1_dragDrop event.
      else
        // Here i should be calling the dragEvent's preventDefault function to prevent the drag and drop from happening since the user
        // does not confirm to proceed with the operation
    I tried to declare a application level scope variable, and set the value, but the scripts after the alert.show are executed right away without checking the values set in the alertHandler event.  Thus, I am getting incorrect execution.

  • Need help with gallery showing .jpg AND .swf

    Hi all,
    I have an image gallery that loads images and swf-files from an XML-file. The .jpg's load and display just fine, but the .swf files won't show. The data is loaded though. Any help is greatly appreciated!
    Thanks so much in advance,
    Dirk
    My XML file looks like this:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <slideshow>
    <image src="photo1.jpg" time="1" title="test" desc="test" artist="sabre" link="" target="_self" />
    <image src="photo2.jpg" time="3" title="test2" desc="test2desc" artist="sabre" link="" target="_self" />
    <image src="flash1.swf" time="2" title="test3" desc="test3desc" artist="sabre" link="" target="_self" />
    </slideshow>
    And the AS3:
    // import tweener
    import caurina.transitions.Tweener;
    // delay between slides
    const TIMER_DELAY:int = 5000;
    // fade time between slides
    const FADE_TIME:Number = 1;
    // flag for knowing if slideshow is playing
    var bolPlaying:Boolean = true;
    // reference to the current slider container
    var currentContainer:Sprite;
    // index of the current slide
    var intCurrentSlide:int = -1;
    // total slides
    var intSlideCount:int;
    // timer for switching slides
    var slideTimer:Timer;
    // slides holder
    var sprContainer1:Sprite;
    var sprContainer2:Sprite;
    // slides loader
    var slideLoader:Loader;
    // current slide link
    var strLink:String = "";
    // current slide link target
    var strTarget:String = "";
    // url to slideshow xml
    var strXMLPath:String = "xml.xml";
    // slideshow xml loader
    var xmlLoader:URLLoader;
    // slideshow xml
    var xmlSlideshow:XML;
    function initSlideshow():void {
    // hide buttons, labels and link
    mcInfo.visible = false;
    btnLink.visible = false;
    var request:URLRequest = new URLRequest (strXMLPath);
    request.method = URLRequestMethod.POST;
    var variables:URLVariables = new URLVariables();
    variables.memberID = root.loaderInfo.parameters.memberID;
    request.data = variables;
    var loader:URLLoader = new URLLoader (request);
    loader.addEventListener(Event.COMPLETE, onXMLLoadComplete);
    loader.dataFormat = URLLoaderDataFormat.VARIABLES;
    loader.load(request);
    // create new timer with delay from constant
    slideTimer = new Timer(TIMER_DELAY);
    // add event listener for timer event
    slideTimer.addEventListener(TimerEvent.TIMER, nextSlide);
    // create 2 container sprite which will hold the slides and
    // add them to the masked movieclip
    sprContainer1 = new Sprite();
    sprContainer2 = new Sprite();
    mcSlideHolder.addChild(sprContainer1);
    mcSlideHolder.addChild(sprContainer2);
    // keep a reference of the container which is currently
    // in the front
    currentContainer = sprContainer2;
    // add event listeners for buttons
    btnLink.addEventListener(MouseEvent.CLICK, goToWebsite);
    btnLink.addEventListener(MouseEvent.ROLL_OVER, showDescription);
    btnLink.addEventListener(MouseEvent.ROLL_OUT, hideDescription);
    mcInfo.btnPlay.addEventListener(MouseEvent.CLICK, togglePause);
    mcInfo.btnPause.addEventListener(MouseEvent.CLICK, togglePause);
    mcInfo.btnNext.addEventListener(MouseEvent.CLICK, nextSlide);
    mcInfo.btnPrevious.addEventListener(MouseEvent.CLICK, previousSlide);
    // hide play button
    mcInfo.btnPlay.visible = false;
    function onXMLLoadComplete(e:Event):void {
    // show buttons, labels and link
    mcInfo.visible = true;
    btnLink.visible = true;
    // create new xml with the received data
    xmlSlideshow = new XML(e.target.data);
    var  unesc_xmlSlideshow:XML = new XML(unescape(xmlSlideshow));
    // get total slide count
    intSlideCount = unesc_xmlSlideshow..image.length();
    // switch the first slide without a delay
    switchSlide(0);
    function fadeSlideIn(e:Event):void {
    var  unesc_xmlSlideshow:XML = new XML(unescape(xmlSlideshow));
    // add loaded slide from slide loader to the
    // current container
    addSlideContent();
    // clear preloader text
    mcInfo.lbl_loading.text = "";
    // check if the slideshow is currently playing
    // if so, show time to the next slide. If not, show
    // a status message
    if(bolPlaying) {
      mcInfo.lbl_loading.text = "Next slide in " + unesc_xmlSlideshow..image[intCurrentSlide].@time + " sec.";
    } else {
      mcInfo.lbl_loading.text = "Slideshow paused";
    // fade the current container in and start the slide timer
    // when the tween is finished
    Tweener.addTween(currentContainer, {alpha:1, time:FADE_TIME, onComplete:onSlideFadeIn});
    function onSlideFadeIn():void {
    // check, if the slideshow is currently playing
    // if so, start the timer again
    if(bolPlaying && !slideTimer.running)
      slideTimer.start();
    function togglePause(e:MouseEvent):void {
    var  unesc_xmlSlideshow:XML = new XML(unescape(xmlSlideshow));
    // check if the slideshow is currently playing
    if(bolPlaying) {
      // show play button
      mcInfo.btnPlay.visible = true;
      mcInfo.btnPause.visible = false;
      // set playing flag to false
      bolPlaying = false;
      // set status message
      mcInfo.lbl_loading.text = "Slideshow paused";
      // stop the timer
      slideTimer.stop();
    } else {
      // show pause button
      mcInfo.btnPlay.visible = false;
      mcInfo.btnPause.visible = true;
      // set playing flag to true
      bolPlaying = true;
      // show time to next slide
      mcInfo.lbl_loading.text = "Next slide in " + unesc_xmlSlideshow..image[intCurrentSlide].@time + " sec.";
      // reset and start timer
      slideTimer.reset();
      slideTimer.start();
    function switchSlide(intSlide:int):void {
    // check if the last slide is still fading in
    if(!Tweener.isTweening(currentContainer)) {
      // check, if the timer is running (needed for the
      // very first switch of the slide)
      if(slideTimer.running)
       slideTimer.stop();
      // change slide index
      intCurrentSlide = intSlide;
      // check which container is currently in the front and
      // assign currentContainer to the one that's in the back with
      // the old slide
      if(currentContainer == sprContainer2)
       currentContainer = sprContainer1;
      else
       currentContainer = sprContainer2;
      // hide the old slide
      currentContainer.alpha = 0;
      // bring the old slide to the front
      mcSlideHolder.swapChildren(sprContainer2, sprContainer1);
      // delete loaded content
      clearLoader();
      // create a new loader for the slide
      slideLoader = new Loader();
      // add event listener when slide is loaded
      slideLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, fadeSlideIn);
      // add event listener for the progress
      slideLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, showProgress);
      var  unesc_xmlSlideshow:XML = new XML(unescape(xmlSlideshow));
      // load the next slide, seems to f*ck up here...
      slideLoader.load(new URLRequest(unesc_xmlSlideshow..image[intCurrentSlide].@src));
      // show description of the next slide
      mcInfo.lbl_description.text = unesc_xmlSlideshow..image[intCurrentSlide].@title;
      // show artist's name of the next slide
      mcInfo.lbl_artist.text = unesc_xmlSlideshow..image[intCurrentSlide].@artist;
      // set link and link target variable of the slide
      strLink           = unesc_xmlSlideshow..image[intCurrentSlide].@link;
      strTarget          = unesc_xmlSlideshow..image[intCurrentSlide].@target;
      mcInfo.mcDescription.lbl_description.htmlText = unesc_xmlSlideshow..image[intCurrentSlide].@desc;
      // show current slide and total slides
      //mcInfo.lbl_count.text = (intCurrentSlide + 1) + " / " + intSlideCount + " Slides";
      mcInfo.lbl_count.text = " Slide " + (intCurrentSlide + 1) + " / " + intSlideCount;
    function showProgress(e:ProgressEvent):void {
    // show percentage of the bytes loaded from the current slide
    mcInfo.lbl_loading.text = "Loading..." + Math.ceil(e.bytesLoaded * 100 / e.bytesTotal) + "%";
    function goToWebsite(e:MouseEvent):void {
    // check if the strLink is not empty and open the link in the
    // defined target window
    if(strLink != "" && strLink != null) {
      navigateToURL(new URLRequest(strLink), strTarget);
    function nextSlide(e:Event = null):void {
    // check, if there are any slides left, if so, increment slide
    // index
    if(intCurrentSlide + 1 < intSlideCount)
      switchSlide(intCurrentSlide + 1);
    // if not, start slideshow from beginning
    else
      switchSlide(0);
    function previousSlide(e:Event = null):void {
    // check, if there are any slides left, if so, decrement slide
    // index
    if(intCurrentSlide - 1 >= 0)
      switchSlide(intCurrentSlide - 1);
    // if not, start slideshow from the last slide
    else
      switchSlide(intSlideCount - 1);
    function showDescription(e:MouseEvent):void {
    // remove tweens
    Tweener.removeTweens(mcInfo.mcDescription);
    // fade in the description
    Tweener.addTween(mcInfo.mcDescription, {alpha:1, time:0.5, y: -1});
    function hideDescription(e:MouseEvent):void {
    // remove tweens
    Tweener.removeTweens(mcInfo.mcDescription);
    // fade out the description
    Tweener.addTween(mcInfo.mcDescription, {alpha:0, alpha:1, time:0.5, y: 30});
    function clearLoader():void {
    try {
      // get loader info object
      var li:LoaderInfo = slideLoader.contentLoaderInfo;
      // check if content is bitmap and delete it
      if(li.childAllowsParent && li.content is Bitmap){
       (li.content as Bitmap).bitmapData.dispose();
    } catch(e:*) {}
    function addSlideContent():void {
    // empty current slide and delete previous bitmap
    while(currentContainer.numChildren){Bitmap(currentContainer.getChildAt(0)).bitmapData.disp ose(); currentContainer.removeChildAt(0);}
    // create a new bitmap with the slider content, clone it and add it to the slider container
    var bitMp:Bitmap =  new Bitmap(Bitmap(slideLoader.contentLoaderInfo.content).bitmapData.clone());
    currentContainer.addChild(bitMp);
    // init slideshow
    initSlideshow();

    I'm sorry, you're right! Didn't intend to be lazy...
    This line loads the image in the loader 'slideLoader'. This seems to work fine with image files (.jpg), but .swf files are ignored. Is it possible to load both .jpg AND .swf files in a loader, or do I have to use some other method for this?
    slideLoader.load(new URLRequest(unesc_xmlSlideshow..image[intCurrentSlide].@src));
    Thanks again,
    Dirk

  • Please help with slide show creation

    I purchased the bundle of photoshop and premier elements 10.  I was trying to create a slide show and was informed that photoshop elements 10 does not come with a slide show for APPLE.  now I hae been told I can creat a slide show in premier.  can anyone tell me how and where do I go to create it in preimer.
    Also I had purchased the professional version of Photoshop but when I purchased elements 10 on line and downloaded it my professional photoshop was replaced with the elements 10 vesion of photoshop.  Is there anyway I can recover my professional version.
    I was thinking of buying elements 11 but beging to fell what is the use if I can not get element 10 to work for me.
    Please help thanks
    Cham

    filmmaker863 wrote:
    ....when you drop the pic in to the time line do you use the scene setting or the standard timeline setting.  how do you change the time eact pic will show on screen.
    I'm confused by what you mean when you write "scene setting or standard timeline setting".  In version 11, I use "Expert" as my standad timeline setting.  The other is "Quick" and I have never used it.
    The time for each pic starts with a default setting that can be changed.  Then each slide can be streched or shrunk with mouse control.
    Bill

  • Help with Alerts

    Hi Gurus,
    We are on SAP Business One version 9 PL03 and we maintain an after-sales MS Access SAP add-on where users input the details of a damaged/faulty after-sales item(s) (under warranty) which the customer(s) has brought back for repair. The user punches a Goods Receipt to receive the item(s) for repair which upon repair, a job card is opened, the item repaired and the job card number punched in a Goods Issue as the item(s) is returned to the customer(s).
    The problem we are now facing is that some of the items that have been repaired and returned to the customers keep on appearing in the after-sales alerts with the job status reading as 'CANCELED'. Please help.

    Hi philg and welcome to the blackberry forums
    How do i set a tone as an alert for incoming emails?
    You need to press menu (the blackberry logo key), go to profiles, scroll down to advanced, normal or which one is active, and you can change the sounds for each applicaton. 
    How do i stop carbon copy emails being sent to me?
    Is a gmail account?, check this link
    http://www.blackberry.com/btsc/search.do?cmd=displayKC&docType=kc&externalId=KB10332&sliceId=SAL_Pub...
    If I help you with any inquire, thank you for click kudos in my post.
    If your issue has been solved, please mark the post was solved.

  • New help with "slide show"

    Up until 2009 I used Final Cut Express to create "slide shows" using stills, video footage, alpha overlays, and animated transitions with a voice track and one or or more music and audio effects tracks.
    In 2009 I retired and later bought a new iMac with Final Cut Pro X and Mountain Lion. "Just for fun."
    Naturally, somebody important in my life has now asked me to produce a 5 minute show and I have less than two months to get it done using FCPX.
    It needs to be NTSC SD because of the projection equipment available and I'd like to create the stills in Photoshop, just as I did in the "old days".
    Can anybody point me toward some material that will help me make this transition to the new software, and rapidly? Unfortunately, the expectations are high.
    Please?
    Thanks.

    OK as nobobdy's answered I'll recommend my book and online training. Go here
    http://www.fcpxbook.com
    for more information.
    As you might expect I stand to profit from this message.

  • Help with BT6500 showing "no number"

    I purchased a pair of BT6500 about 4 months ago and it has been brilliant for screening out nuisance calls, witheld calls and international calls etc but for the last 2 days whenever anyone rings the screen says "no number" instead of showing who's calling. I definitly have caller ID on my phone and  it has always worked fine. This has got so annoying and I have answered a couple of numbers which I know should be blocked but they are now getting through. Nothing has changed on the settings, no one has been messing around with the phones, I am now finding this increasinly frustrating. Can anyone shed any light on this please. I would be really greatful. Thanks

    Hi Flowerfairy,
    Welcome and thanks for posting!
    Have you had a look at the user guide for that model of handset?  My advice would be to check it out and you can also contact product support if the problem persists.  Their number is on there too.
    All the best,
    Robbie
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry that we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Help with emails showing in reverse order

    I have a friend who just got their Curve 83XX from Verizon. They are telling me that their emails are showing in reverse order. They have to scroll down to see the newest emails. I have the 8310 and have not been able to locate any options to prevent or correct this. Has anyone run across this before and if so, how can this be corrected? Thanks!

    The NEWEST JUST RECEIVED emails go to the bottom of the message folder, and the older ones are at the top?
    OR, does the user open their message folder each time and it defaults to the bottom of their message list, and they must scroll UP to the top?
    The latter is most likely. Tell them -- while IN the message folder to press the T key to go immediately to the top of the list, press B to go immediately to the bottom of the list.
    When they exit the Message folder, make sure they are / have scrolled to the top of the list, and the next time they open the messages folder it will open to the point in which it was closed.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Help with HD shows on iTunes

    Hi...when i download the tv shows in HD (i also get the SD version i know) but the problem is that it says the HD version cant be found (it has the ! next to it) Also on my parents iTunes account it wont sync to the apple TV, it says the "Apple TV" cant be found. but it syncs everything but the HD shows...very frustrating bc ive unplugged it, wiped it and everything
    thanks

    It's happening to everyone. iTunes downloads the HD version, then downloads the SD version, and overwrites the HD version with the SD version. Thus, the HD version is gone.
    The workaround I've found is to pause the SD download but allow the HD one to finish. Then quit iTunes and restart it, and allow the SD download to proceed, and it will save alongside the HD version instead of erasing it.
    One assumes that when Apple fixes the problem they will let you re-download the lost files.

  • Alert.Show WEIRDNESS

    OK, riddle me this, Batman:
    I've got a function (example attached) with a number of items
    running in it (alot of setting of variables, and outputting them to
    text areas and such). When I have an Alert.show call, all is well
    and the variables get set and output just fine.
    But when I remove or comment out the Alert.show call, the
    whole thing comes to a grinding halt and variables are not set.
    And here's the weird part (like the stuff above wasn't weird
    enough): the Alert.show can't be a hard-coded string, it has to be
    the value that one of the variables is being set to (in other
    words, the original value that was saved as a variable, not he
    variable itself).
    I've hit this now both in Flex 3 and Flex 3 AIR
    applications...
    HELP! (and thanks)

    I was having trouble with Alert.show and thought it was a
    problem with the function, too. But it was something I was doing.
    You don't say how myGameText is declared, but it seems pretty
    obvious. You might want to try enclosing variables in String() when
    you are passing them to functions that require strings. Like
    gmDate.text=String(myGame.@date);

  • Hoping for some help with a very frustrating issue!   I have been syncing my iPhone 5s and Outlook 2007 calendar and contacts with iCloud on my PC running Vista. All was well until the events I entered on the phone were showing up in Outlook, but not

    Hoping for some help with a very frustrating issue!
    I have been syncing calendar and contacts on my iPhone 5 and Outlook 2007 using iCloud  2.1.3 (my PC is running Vista). All was well until the events I entered on the phone were showing up in Outlook, but not the other way around. I’ve tried the usual recommended steps: deselecting calendar and contacts in the iCloud control panel and then re-selecting, signing out of the panel and back in, and repairing the Outlook installation in control panel.  I even uninstalled iCloud on the PC and downloaded it again (same version). 
    The furthest I’ve gotten is step 2 (and once, step 3) of 7 while performing “Outlook Setup For iCloud.” At that point I get, “Your setup couldn’t be started because of an unexpected error.”  After the first attempt at all this, all my calendar events disappeared from Outlook, although they are still in iCloud calendar and on my phone.
    Sound familiar?  Any ideas on how to solve this iCloud/Outlook issue?  Thanks much in advance!

    Hoping for some help with a very frustrating issue!
    I have been syncing calendar and contacts on my iPhone 5 and Outlook 2007 using iCloud  2.1.3 (my PC is running Vista). All was well until the events I entered on the phone were showing up in Outlook, but not the other way around. I’ve tried the usual recommended steps: deselecting calendar and contacts in the iCloud control panel and then re-selecting, signing out of the panel and back in, and repairing the Outlook installation in control panel.  I even uninstalled iCloud on the PC and downloaded it again (same version). 
    The furthest I’ve gotten is step 2 (and once, step 3) of 7 while performing “Outlook Setup For iCloud.” At that point I get, “Your setup couldn’t be started because of an unexpected error.”  After the first attempt at all this, all my calendar events disappeared from Outlook, although they are still in iCloud calendar and on my phone.
    Sound familiar?  Any ideas on how to solve this iCloud/Outlook issue?  Thanks much in advance!

  • On Windows 7, CS6 all products, but especially need help with ID.  Fonts that are showing in other applications are not showing in ID.

    on Windows 7, CS6 all products, but especially need help with ID.  Fonts that are showing in other applications are not showing in ID.

    The ID Program folder will be relevant to your OS...
    I took a shot and right clicked on my Scripts Samples, choose reveal in Explorer and opened up the ID Program folder.
    As shown, there is a Fonts folder.
    Drag/Copy/Paste fonts to this folder.

  • G5, 10.6.8, trying to print biz cards, instead of clear print with sharp edges I get fuzzy print with pixels showing. Saving as PDF doesn't help. Any solution?

    G5, 10.6.8, trying to print biz cards, instead of clear print with sharp edges I get fuzzy print with pixels showing. Saving as PDF doesn't help. Any solution?

    Mac OS X Version 10.6.8, iMac12,1
    .cwk (Appleworks)
    Kodak Easyshare 5100
    If I paste the jpeg on a draw page and shrink it to fit, fuzzy print. If I create the text directly on a draw page, it's fine. (That suggests to me the problem isn't in the printer.) But I want to include a small drawing on the card, and the pasted jpeg of that small drawing is very poor quality.

  • Help with Datatip Not showing on 2 different charts at the same time

    What's up guys?  I am building a massive application and came across an issue. I was able to create a smaller flex application that recreate the problem. Basically its about the datatip. Let's say you have a Main application with tab navigation that calls 2 different modules:  Module A, and Module B. Module A has a piechart with datatip enabled. Module B has a linechart with datatip also enabled. For some reason the piechart datatip are showing while the linechart datatip are not showing on mouse over (only on click). Any idea what's going on or how to fix it so that both charts show their datatip on mouse over? -Thank you
    Here are the codes below:
    MAIN APPLICATION:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" paddingTop="20">
        <mx:VBox paddingTop="50" width="80%" height="100%" paddingLeft="50">       
                <mx:TabNavigator width="80%" height="100%" >           
                    <mx:VBox label="Module A" >
                        <mx:ModuleLoader url="tester2.swf" width="100%" height="100%"/>
                    </mx:VBox>
                    <mx:VBox label="Module B" mouseChildren="true" >
                        <mx:ModuleLoader url="tester.swf" width="100%" height="100%" />
                    </mx:VBox>                   
                </mx:TabNavigator>   
        </mx:VBox>   
    </mx:Application>
    Module A:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Module xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"   xmlns:local="assets.*"  initialize="_onInitialize( event )">
        <mx:Script>
            <![CDATA[
                import mx.controls.Alert;
                import mx.events.FlexEvent;
                import mx.collections.ArrayCollection;
                [Bindable] private var _chartDP:ArrayCollection;
                private function mouser(event:MouseEvent):void
                    Alert.show("RPG");
                private function  _onInitialize( event:FlexEvent ):void
                    // set up our chart data
                    _chartDP = new ArrayCollection();
                    _chartDP.addItem( { quarter:1, shooter:1000, racing:400, rpg:550 } );
                    _chartDP.addItem( { quarter:2, shooter:875, racing:230, rpg:600 } );
                    _chartDP.addItem( { quarter:3, shooter:920, racing:310, rpg:512 } );
                    _chartDP.addItem( { quarter:4, shooter:750, racing:130, rpg:489 } );
            ]]>
        </mx:Script>
        <!-- defining the chart -->
        <mx:LineChart id="gameSales_chrt"   
           dataProvider="{ _chartDP }" showDataTips="true"  y="45" x="83" >
            <!-- Setting our Axis/Axes -->
            <mx:horizontalAxis>
                <mx:CategoryAxis categoryField="quarter" title="Sales Quarter" />
            </mx:horizontalAxis>   
            <!-- Set up our data series -->   
            <mx:series >
                <mx:LineSeries yField="shooter" displayName="First Person Shooter" form="segment" />
                <mx:LineSeries yField="racing" displayName="Racing Simulation" form="segment" />
                <mx:LineSeries yField="rpg" displayName="Role Playing Game" form="segment"  />
            </mx:series>
        </mx:LineChart>
        <!-- Set up the legend for the chart -->
        <mx:Legend dataProvider="{ gameSales_chrt }" direction="horizontal"  x="121" y="10"/>
    </mx:Module>
    Module B:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Module xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"  initialize="_onInitialize( event )">
        <mx:Script>
            <![CDATA[
                import mx.events.FlexEvent;
                import mx.collections.ArrayCollection;
                [Bindable] private var _chartDP:ArrayCollection;
                private function  _onInitialize( event:FlexEvent ):void
                    // set up our chart data
                    _chartDP = new ArrayCollection();
                    _chartDP.addItem( { genre:"Shooter", quarter1:1000, quarter2:932,  quarter3:845, quarter4:663 } );
                    _chartDP.addItem( { genre:"Racing",  quarter1:565,  quarter2:875,  quarter3:732, quarter4:432 } );
                    _chartDP.addItem( { genre:"RPG",     quarter1:432,  quarter2:743,  quarter3:531, quarter4:289 } );
            ]]>
        </mx:Script>
        <!-- defining the chart -->
        <mx:PieChart id="gameSales_chrt"   
           dataProvider="{ _chartDP }"
           showDataTips="true" y="60" x="10">
            <!-- Set up our data series -->   
            <mx:series>
                <mx:PieSeries
                    nameField="genre"
                    field="quarter2"
                    labelPosition="insideWithCallout" />
            </mx:series>
        </mx:PieChart>
        <!-- Set up the legend for the chart -->
        <mx:Legend dataProvider="{ gameSales_chrt }" direction="horizontal"  y="10" x="24"/>
    </mx:Module>

    Well upon using the debug function and having a stop at the show datatip static function, i came across this error
    TypeError: Error #1034: Type Coercion failed: cannot convert mx.managers::DragManagerImpl@195b9b21 to mx.managers.IDragManager.
    at mx.managers::DragManager$/get impl()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\managers\DragManager.as:15 2]
    at mx.managers::DragManager$/get isDragging()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\managers\DragManager .as:187]
    at mx.charts.chartClasses::ChartBase/processRollEvents()[C:\work\flex\dmv_automation\project s\datavisualisation\src\mx\charts\chartClasses\ChartBase.as:2310]
    at mx.charts.chartClasses::ChartBase/mouseMoveHandler()[C:\work\flex\dmv_automation\projects \datavisualisation\src\mx\charts\chartClasses\ChartBase.as:4308]

  • One question I am looking for help with is, when you hit the history button I want my last fifty pages to show up instead of just fifteen. Is it possible to

    one question I am looking for help with is, when you hit the history button I want my last fifty pages to show up instead of just fifteen. Is it possible to change that setting?
    TY

    The History menu can only show that fixed maximum of 15 as that is hard coded.
    Maybe this extension helps:
    *History Submenus Ⅱ: https://addons.mozilla.org/firefox/addon/history-submenus-2/

Maybe you are looking for

  • Can I open a new tab but stay on my current tab instead of automatically jumping to the new one?

    In the older version of Firefox, when I opened a new tab, it would not jump to it but rather remain on my current tab. I've tried safe mode and it wasn't any of my add-ons that are the problem and I haven't selected the option of automatically switch

  • Redirect page from one application to another application

    Suppose there are 2 links in one application. whenevr a link is clicked, it redirects to another appex application. how do you accomplish it?

  • How to Hide a Subform in an ADOBE Form

    Hi All, I need to hide a subform, if the table(Under this subform) does not have the Data. Otherwords, if the Table is empty, the entire subform should be hidden. Please provide me a sample code using Javascripts and without using the Javascripts. Th

  • Tabuler display in query designer

    HI , How can we enables tabular display (we want change the order like  CHAR1 KF1 CHAR2 KF2 CHAR3 KF3 ) in query designer  in  sap bi 7.0    not   in  analyzer . can anyone please share information on this .. Thanks, EDK... Edited by: EdK666 on Nov 8

  • Problem with table maintenance event

    Hi Experts, In the table maintenance event 05 for a ztable, I have written logic to validate if few key fields and non key fields are not initial. If they are initial,need to throw an error message and it has to stay in the same screen.But right now