Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7601781
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T23:14:50+00:00 2026-05-30T23:14:50+00:00

Here is the code I am using in the label function. Some of the

  • 0

Here is the code I am using in the label function. Some of the values are numbers and some are strings. It works:

private function getLabel (area:AreasVO):String
{
  return "Area Name: " + area.areaName + "  " + area.areaWidth + " X " + area.areaLength + " X " + area.areaHeight;
}

It produces: Living Room 14 x 12 x 9

In the message function, I want to mix some computations and strings…can’t figure it out. The AreasVO has all the measurements as Type:Number So I can do something like this

private function getMessage (area:AreasVO):Number
{
return area.areaWidth x areaLength;
}

That will give me the area of the ceiling or floor…

What I want is to have this returned:

Totals for Living Room: Area of Ceiling = 144, LF of Walls = 64, SF of Walls = 642

When I try something like this:

private function getMessage (area:AreasVO):Number
{
return "Totals for Living Room: Area of Ceiling = " + area.areaWidth x areaLength;
}

I just get error upon error…Numbers as Strings or a bunch of others…How do I do this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T23:14:51+00:00Added an answer on May 30, 2026 at 11:14 pm

    Enclose the bits of math you want to happen within parenthesis like this:

    private function getMessage (area:AreasVO):String
    {
        return "Totals for Living Room: Area of Ceiling = " + (area.areaWidth * area.areaLength);
    }
    

    Or
    [In your AreasVO]

    public function get computedArea():Number
    {
        return length*width;
    }
    

    then in the original file

    private function getMessage (area:AreasVO):String
    {
        return "Totals for Living Room: Area of Ceiling = " + area.computedArea;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm looking for something like break for loops. Here's some example code (using Symfony's
I'm using some code from here to determine when determining when the last finger
here is a code : using System; using Nemerle.Collections; using Nemerle.Text; //using Nemerle.Utility; using
I am using pseudo-code here, but this is in JavaScript. With the most efficient
Having this code: using (BinaryWriter writer = new BinaryWriter(File.Open(ProjectPath, FileMode.Create))) { //save something here
Im using Doctrine and i dont quite understand this code here: $this->hasColumn('id', 'integer', 8,
I have a piece of code here that does not work despite me using
Here is the current code I am using: <UserControl xmlns=http://schemas.microsoft.com/winfx/2006/xaml/presentation xmlns:x=http://schemas.microsoft.com/winfx/2006/xaml x:Class=ButtonPrototype.MainPage Width=640 Height=480>
Here's a version of the code I'm using, stripped down to just the parts
I'm using an HTML sanitizing whitelist code found here: http://refactormycode.com/codes/333-sanitize-html I needed to add

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.