Scroll step width

Hello

I searched the forum for a couple of hours now, but has not found a solution to my problem. My problem is that I have a VerticalFieldManager that contains other managers (HorizontalManagers with content, for example) and it should be possible to scroll the contents of the VerticalFieldManager without having to concentrate every single field. In other words: I want to scroll in a VerticalFieldManager by a certain width of not (e.g., 50 pixels), rather than focusing.

Is there a way to do it for a BlackBerry with a Trackball or a Trackpad?

If you do not want to replace navigationMovement() and start setting vertical scrolling position manually (for example Manager.setVerticalScroll ()), you might consider to add NullField Focus s each pixel of 50 or more.  This way your trackball/trackpad movement are always managed by framework BB according to focus, but through the NullField they scrolls never more than your chosen distance.

If you have some TextFields to the breast and want to scroll instead of jumping on them, consider making their focus but not editable (read ONLY).

This will not give you the exact behavior you want to reach, but it will save you a lot of headaches.

However, if you're feeling brave, replace navigationMovement() and use setVerticalScroll() and setFocus() as you deem necessary.  Prepare for a long time debugging hours (days? weeks?) doing a fairly intuitive interface.  And don't complain when it does not work for touch screen devices.

Good luck!

Tags: BlackBerry Developers

Similar Questions

  • Vertical scrolling step VBox

    Hi all

    I'm new to Flash so...

    1. How can I set vertical value increment/decrement used by arrow keys?

    2. Furthermore, I saw this: when I use a VBox object added to a UIComponent , event drag the supported mouse scroll bar is transferred to VBox parent. How can I disable the transmission of this event?

    Thank you

    You can set verticalLineScrollSize, verticalPageScrollSize on your VBox and properties:


            
            
       

    d

  • How to the center stage of the width to 100% in a browser?

    I created a web page edge that I intend to concentrate in the web browser. If I keep the scene fixed-width (960 px) so I can center it in the browser with the following in the compositionReady of the stage event:

    $("#Stage").css ("margin", "auto");

    However, I would like to create a tiled background, for which I use the following in the compositionReady of the stage event:

    $("#Stage").css ('background-image', 'url (images/[email protected])', 'background-repeat', "re peat");

    If I keep the scene to width fixed so I don't see the tiled background because the scene is full of objects and of the tiled background does not extend beyond 0 and 960px. If I do the step width 100% then everything becomes left-aligned, but I do not see the tiled background (to the right objects in the scene).

    I tried to think intelligently to position everything compared to a transparent element that has its property set to 100% width, but nothing helped.

    Does anyone know how to make sure everything is positioned by the middle of the stage while retaining ownership of course 100% width?

    You can delete the lines with cover.

  • Scrolling text in given area

    What would be the most effective or the best approach to the creation of a text box that allows the user to scroll its content?

    A scrolling div will do...

    CSS base to get a scrolling div: change the px of width and height as needed:

    {#scrolling}

    Width: 500px;

    height: 500px;

    overflow: auto;

    padding: 4px;

    border: 1px solid black;

    }

    HTML:


    Your text content will go here.

  • The pages are at the wide. eBay, PayPal use Internet Explorer only.

    eBay and PayPal (both companies eBay) State they only use Internet Explorer as their official browser. When you view sites like the PayPal home page and some ads from sellers on eBay, the page is not formatted to display the entire page without having to scroll the width of the page to see the entire page.

    Also as a seller I've had trouble with my pictures not showing in Firefox. I've done some searching about this problem, and others have too. What I come up with is that its eBay only supporting Internet Explorer. I'm wondering if Firefox has a fix for this issue???
    

    I was at both sites without problem. The whole page is too big?
    Printing / photos? Have you tried to adjust the zoom settings?

    < control > and (+) = greater / smaller = (-) / (0) = default restore.

    ================================

    To better help you with your question, please provide us with a screenshot. If you need help to create a screenshot, please see How to make a screenshot of my problem?

    Once you have done so, attach the file to screen shot saved to your post on the forum by clicking on the button Browse... under the box to post your reply . This will help us to visualize the problem.

    Thank you!

  • inverted waveform channel values

    Hello world

    Anyone know how I can reverse the values of a tiara waveform channel? (practically activates the function of inverse matrix 1 d of Labview).

    See you soon

    Hi Saloutios,

    So let's say your channel signals departure has waveform properties that define the X axis range from 0 up to 0.999 with a stage with 0.001, for a total of 1000 values.  You ask how to redefine the properties of waveform so that the x-axis instead starts to 0.999 and goes down to 0 with-0,001 step width?  If that's what you want, just redefine the properties of waveform like this:

    Adjust the strings = Data.Root.ChannelGroups (1). Channels (3)
    StartValue = Channel.Properties ("wf_start_offset"). Value
    Increment = Channel.Properties ("wf_increment"). Value
    Length = Channel.Properties ("length"). Value
    EndValue = StartValue + (Length-1) * Increment
    Channel.Properties ("wf_start_offset"). Value = EndValue
    Channel.Properties ("wf_increment"). Value = - Increment

    Brad Turpin

    Tiara Product Support Engineer

    National Instruments

  • Placement of buttons in a container

    I'm trying to get a container to layout buttons horizontally (as the documentation says it should) but everytime I try, my buttons end up on the other.  Is there a way to get a layout simple flow so that my buttons are staggered automatically?  Here is a snippet of my code.  Code examples or suggestions is appreciated.

    var scrollercrollPane = new ScrollPane();
    scroller. Width = 1024;
    scroller. Height = 200;
    scroller.y = 400;
                
    var c:Container = new Container();
    c.Align = ContainerAlign.NEAR;
    c.Flow = ContainerFlow.HORIZONTAL;
    c.Containment = Containment.CONTAINED;
                
    var i: int;
    for (i = 0; i<5;i++)>
    var b:LabelButton = new LabelButton();
    b.label = buttonNames [i];
    b.Containment = Containment.CONTAINED;
    b.sizeMode = SizeMode.FLOW;
    c.addChild (b);
    }
    scroller.addScrollContent (c);
                
    c.Layout ();
    addChild (scroller);

    Hey morpheus.

    Here's a working version of your code with changes in bold:

    package{ import flash.display.Sprite;  import flash.display.StageAlign;  import flash.display.StageScaleMode;
    
      import qnx.ui.buttons.LabelButton;    import qnx.ui.core.Container; import qnx.ui.core.ContainerAlign;    import qnx.ui.core.ContainerFlow; import qnx.ui.core.Containment;   import qnx.ui.core.SizeUnit;  import qnx.ui.core.Spacer;    import qnx.ui.listClasses.ScrollPane;
    
      [SWF(width="1024", height="600", backgroundColor="#CCCCCC", frameRate="30")]  public class RandomTests extends Sprite   {     public function RandomTests()     {         super();
    
              // support autoOrients            stage.align = StageAlign.TOP_LEFT;            stage.scaleMode = StageScaleMode.NO_SCALE;
    
              var scroller:ScrollPane = new ScrollPane();           scroller.width = 1024;            scroller.height = 200;            scroller.y = 400;
    
              var c:Container = new Container();            c.align = ContainerAlign.NEAR;            c.flow = ContainerFlow.HORIZONTAL;
    
              var i:int;            for (i=0;i<5;i++) {                var b:LabelButton = new LabelButton();                                //didnt have an array for buttonname[]                b.label = "Some Button " + i;                              //make sure to set the size of the contained objects              b.size = 150;             b.sizeUnit = SizeUnit.PIXELS;
    
                  c.addChild(b);
    
                  //add spacers to add a space between objects              c.addChild(new Spacer(3, SizeUnit.PIXELS));          }
    
              scroller.addScrollContent(c);
    
              c.layout();
    
              addChild( scroller );
    
              //set the width and the height of the container
    
              c.setSize(stage.stageWidth,stage.stageHeight);       } }}
    

    The key here is to do not forget to set the width and height of the container so that he knows how to work with space on your objects in the room. Make sure you also set widths for your objects such as buttons for the container knows exactly where to place your items.

    on a note side I didn't know what you were doing with scrollpane so I left there assuming that it was important in the rest of your code. hope that helps and good luck!

  • Orientation of the Tablet and entirely sensitive Web sites

    Hi, I'm trying to get my head around the limitations of adobe muse regarding design entirely reactive sites which, in 2015, should be standard.

    first of all, I know that to design 3 different layouts... for desktop PC, 1 tablet 1 and 1 for phone separately, but how adjust you the orientation of the Tablet and phone versions based on the views of landscape and portrait? I don't think it was possible to have 2 different tablets page layouts, 1 for the portrait and 1 for landscape but it seems that this site of the day he succeeded with their version of the Tablet (the phone is identical on both directions)

    http://studionora.xyz/

    also, with regard to sites being fully admissible, it is possible to have Office sites shrink and adjust the layout when the browser window is resized on the desktop versions? other sites that are built with things like wordpress etc can do it why not muse?

    At this stage, you can use summary, pine and features scrolling browser width.

    It's already in our list for further consideration.

    Thank you

    Sanjit

  • Differect behavior of css in IR between inline in css file to workspace

    Hello

    I have an interactive report. I'm under the Version of database Enterprise Edition 11.2.0.3.0 with APEX 4.2.1.00.08 and using the Blue theme reagent 25.

    I have a CSS with the following content:



    {#apexir_DATA_PANEL}
    margin-bottom: 10px;
    overflow: scroll;
    }

    {#apexir_REMARKS}
    Width: 300px;
    }

    TR.even td {vertical-align: top! important ;}}
    TR. Odd td {vertical-align: top! important ;}}




    I use this in the CSS online on the Page that has the IR in order to align vertically to the top the content of cells in the IR and automatically present-use scroll bars for the IR to not exceed the width of the report.
    When I have this code in the CSS Inline in the corresponding Group Page, it works perfectly.

    When I put the previous content in a CSS file, named ir_default.css and upload via the shared components. The CSS option to the database, and I put the following code in CSS | File URL in the Page of the international registration:

    #WORKSPACE_IMAGES #ir_default.css

    in order to use other IRs too and not post online all the time.

    After the execution of the page, I have the correct behavior with respect to the alignment of data in the cells and the width of field NOTES, but the mechanism of scroll bars present / not at all work, and the grid is larger than the width.

    Why the different behavior? How can I make it work like inline too?
    What do evil?

    Any help will be appreciated.

    TIA
    Dionisis

    Ms. wrote:
    Finally, I managed to solve the problem by droping the WORKSPACE_IMAGES CSS file and reload again.

    I also tried the same thing in apex.oracle.com without any problems, so I consider the matter closed.

    The question remains: if I want to be included in each interactive report as I have, to do not include the file in the page that IR exist, I suspect I need to move this line to the model.

    Yes.

    If I use systematically the model level Tabs - No. Sidebar, where should the line:

    #WORKSPACE_IMAGES #ir_default.css

    I guess in: the Page Template | Cascading Style sheet. URL of the file.

    Yes.

  • AS3 external swf close self

    Hello

    After looking through the forums online and video tutorials...

    I am always facing errors of loading an external swf into my main swf (full step width).

    In my main.swf... i have several scenes.

    On one of these scenes, I have an external SWF that loads my main.swf step size.

    Which works very well...

    BUT

    I now want to close the external swf on a button (in my external swf) and to return to one of my scenes in my hand. SWF

    I read many forums that talk about dispatchEvent

    I tried these methods and I am still facing errors.

    I want just one button on my external.swf that is farm/unloads/deletes itself... so that the user can continue by HAND. SWF after that they played OUTSIDE. SWF.

    in actionscript 2, it was a breeze.

    in as3, it's a useless pain in my rectum

    Sorry if I've missed a lot

    any help would be appreciated

    jayquery

    Try to change the code of loader main file for more like the following (blue nine):

    var defaultSWF:URLRequest = new URLRequest ("gametestG.swf");

    var loader: Loader = new Loader();
    loader.contentLoaderInfo.addEventListener (Event.COMPLETE, loaderCompleteHandler);
    Loader.Load (defaultSWF);

    function loaderCompleteHandler(evt:Event):void {}
    MovieClip (evt.target.content) .addEventListener ("closeChild", onChildClose);
    addChild (loader);
    }

    function onChildClose(event:Event):void {}
    loader.unloadAndStop ();
    removeChild (loader);
    }

  • Content by lining up in the sidebar with the content located in the main area?

    Hello, I have created a website using Dreamweaver CS4 and have encountered a problem when using a model. The model I use is: 2 fixed columns, sidebar, header and footer to the right. The problem seems to be in the sidebar where content does not start at the top, it seems to be 15px under the content in the main area. I can't find CSS or any reason why it starts where it comes from. It seems to look like even and properly in Firefox, Google Chrome, and Safari but not in IE9. The page is online at www.Lots2Homes.com and you will see that the content is lower to the right sidebar in the main area to the left. Below is the code for the home page and of the CSS. This got me going in circles, any help or ideas would be greatly appreciated. Thank you!

    Home page.jpghome page - firefox.jpg

    <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN".
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > ""
    "< html xmlns ="http://www.w3.org/1999/xhtml">".
    < head >
    <! - no right click script start - >

    < script type = "text/javascript" src = "includes/no_right_click.js" > < / script >

    <! - end of the no right click script - >
    < name meta = "norton-safeweb-site-verification" content = "q5pn0zppxw16pngb17u9bt3gtuklju0mr-wug3hpwmudp0h70hgx44yjn2m3235nuxr6l17xlfnqszrz 3q3pjp75afqpecotqbh2pd6c485pxvehuee2wqihtjqa1uut" / >
    < name meta = "generator" content = "HTML Tidy for Linux (to November 6, 2007), see www.w3.org"/ >
    < meta http-equiv = "Content-Type" content = text/html"; charset = utf-8 "/ >"
    < name meta = "description" content = "Search the MLS, programs for professional buyers, Marketing Plans, NH Information, free Guides, short sale, NH buyer and seller representation information" / >
    < name meta = "keywords" content = "New Hampshire real estate, your Source for New Hampshire real estate, real estate Agent in NH, Paul R. Martin, Agent of the buyer, GRI, ABR, e-PRO, SFR, real estate, Agent Listing, Portsmouth, House for sale" / >
    < name meta = "rating" content = "Général" / >
    < meta content = "revisit-after" name = "fourteen days" / >
    < name meta = "Robots" content = "All" / >
    < name meta = "google-site-verification" content = "hch3bvgPs2nwvn-waiOpfg4j9mJJTd5k-OZ-NiGFFr8" / >
    < link rel = "shortcut icon" type = "image/x-icon" href="images/favicon.ico"/ >
    "< link rel ="icon"href ="http://www.lots2homes.com/images/favicon.ico"type="image/favicon.ico"/ >"
    < title > Lots2Homes.com - your Source for NH Real Estate < /title >
    < link href = "css/2012_layout.css" rel = "stylesheet" type = "text/css" / > "
    < style type = "text/css" >
    <!--
    {.twoColFixRtHdr #mainContent
    padding: 0; / * Remember that the fill is space inside the box of div and margin is the space outside the div box * /.
    margin-top: 0;
    right margin: 344px;
    margin-bottom: 0;
    left margin: 0;
    background-image: url(images/2-column/main-middle.png);
    background-repeat: repeat-y;
    }
    {.twoColFixRtHdr #sidebar1}
    float: right; / * because this element is floating, it takes a width * /.
    Width: 344px;
    padding: 0px;
    margin: 0px;
    background-image: url(images/2-column/r-sidebar-middle.png);
    background-repeat: repeat-y;
    }
    ->
    < / style > <!-[if IE 5] >
    < style type = "text/css" >
    / * Place corrections for IE 5 css box model * in this conditional comment * /.
    .twoColFixRtHdr #sidebar1 {width: 220px ;}}
    < / style >
    <! [endif]--> <!-[if IE] >
    < style type = "text/css" >
    / * place patches css for all versions of Internet Explorer in this conditional comment * /.
    .twoColFixRtHdr #sidebar1 {padding-top: 30px ;}}
    .twoColFixRtHdr #mainContent {zoom: 1 ;}}
    / * the owner above zoom gives IE the hasLayout property, avoid several bugs * /.
    < / style >
    <! [endif]-->
    < script src = "SpryAssets/SpryMenuBar.js" type = "text/javascript" > < / script > "
    < script src = "Scripts/swfobject_modified.js" type = "text/javascript" > < / script > "
    < script src = "SpryAssets/SpryAccordion.js" type = "text/javascript" > < / script > "
    < link href = "SpryAssets/SpryMenuBarHorizontal.css" rel = "stylesheet" type = "text/css" / > "
    < style type = "text/css" >
    <? php require_once('includes/back_ground.php');? >
    < / style >
    < script type = "text/javascript" >
    <! [CDATA]
    function MM_preloadImages() {//v3.0
    var d = document; If (d.images) {if(!d.MM_p) d.MM_p = new Array();
    var i, j is d.MM_p.length, a = MM_preloadImages.arguments; for (i = 0; i <.) Length; i ++)
    If (a [i].indexOf("#")! = 0) {d.MM_p [j] = new Image; d.MM_p [j ++] .src = a [i] ;}}
    }
    function MM_swapImgRestore() //v3.0 {}
    var i, x = offline. MM_sr; for (i = 0; a & & I <.) Length & & (x = a [i]) & & x.oSrc; i ++) x.src = x.oSrc;
    }
    function MM_findObj (n, d) {//v4.01
    var p, i, x;  if(!d) d = document; If ((p = n.IndexOf ("?")) > 0 & & parent.frames.length) {}
    d = parent.frames [n.Substring(p+1)] .document; n = n.Substring (0, p) ;}
    If (!) () x = d [n]) & & copyrights) x = d.all [n]; for (i = 0;! x & & i < d.forms.length; i ++) x = d.forms [i] [n];
    for (i = 0;! x & & d.layers & & I < d.layers.length; i ++) x = MM_findObj (n, d.layers [i] .document);
    If (! x & & d.getElementById) x = d.getElementById (n); Return x;
    }

    function MM_swapImage() {//v3.0
    var i, j = 0, x, a = MM_swapImage.arguments; document. MM_sr = new Array; for (i = 0; i <(a.length-2); I += 3).
    If ((x = MM_findObj (a [i]))! = null) {document. MM_sr [j ++] = x; if(!x.oSrc) x.oSrc = x.src; x.SRC = a [i + 2] ;}
    }
    []] >
    < /script >
    < link href = "SpryAssets/SpryAccordion.css" rel = "stylesheet" type = "text/css" / > "
    < script type = "text/javascript" >

    var _gaq = _gaq. [];
    _gaq.push (['_setAccount ',' UA-24136715-1 ""]);
    _gaq.push (['_trackPageview ']);

    (function() {}
    GA var = document.createElement ('script'); GA.type = ' text/javascript '; GA. Async = true;
    ga.src = ("https:" == document.location.protocol? ) https://SSL ' : ' http://www ( ') + «.google-analytics.com/ga.js ";
    var s = document.getElementsByTagName ('script') [0]; ParentNode.InsertBefore (ga, s);
    })();

    < /script >

    < style type = "text/css" >
    <!--
    body, td, th {}
    Police-family: Trebuchet MS, Arial, Helvetica, without serif.
    }
    a: hover {}
    Color: #F00;
    }
    ->
    < / style > < / head >

    < body class = "twoColFixRtHdr" >

    < div id = "container" >
    < div id = "header_flash_window" >
    <? PHP require('includes/header_flash.php');? >
    < / div >
    < div id = "header" >
    <? PHP require('includes/header.php');? >
    <!-end #header--> < / div >
    < div id = "navigation" >
    <? PHP require('includes/navbar.php');? >
    < / div > <! - close nav - >
    < div id = "top" > < / div >
    < div id = "sidebar1″" >
    < div id = "content" >

    < div id = "social-media-buttons" >
    "< a href ="http://www.facebook.com/EPRO.AGENT"target ="_blank"" > < img src="images/social_media/facebook_32.png" name = "facebook_icon" width = "35" height = "36" border = "0" id = "facebook_icon" alt = "Paul Martin facebook" / > < /a > "
    "< a href ="http://www.flickr.com/lots2homes"target ="_blank"" > < img src="images/social_media/flickr_32.png" name = "flickr_icon" width = "36" height = "36" border = "0" id = "flickr_icon" alt = "Paul Martin Flicker" / > < /a > "
    "< a href ="http://www.linkedin.com/in/paulrmartin"target ="_blank"" > < img src="images/social_media/linkedin_32.png" name = "linkedin_icon" width = "35" height = "37" border = "0" id = "linkedin_icon" alt = "Paul Martin Linkedin" / > < /a > "
    "< a href ="http://www.lots2homes.com/weblog/"target ="_blank"" > < img src="images/social_media/wordpress_32.png" name = "wordpress_icon" width = "35" height = "36" border = "0" id = "wordpress_icon" alt = "Paul Martin Wordpress" / > < /a > "
    "< a href ="http://www.youtube.com/user/EstatesNland"target ="_blank"" > < img src="images/social_media/youtube_32.png" name = "youtube_icon" width = "36" height = "37" border = "0" id = "youtube_icon" alt = "Paul Martin Youtube" / > < /a > "
    "< a href ="http://www.delicious.com/save"target ="_blank"onclick =" window.open ('http://www.delicious.com/save?v=5 & noui & jump = close & url ='+ encodeURIComponent (location.href) + '& title =' + encodeURIComponent(document.title) 'delicious', 'toolbar = no, width = 550, height is 550'); return false; "" > < img src="images/social_media/delicious_32.png" alt = "Paul Martin Delicious" width = "35" height = "36" border = '0' / > < / a >
    "< a href ="http://twitter.com/#! / Lots2Homes"target ="_blank"" > < img src="images/social_media/twitter_32.png" alt = "Paul Martin Twitter" width = "35" height = "36" border = "0" / > < /a > "
    < / div >
    "< div id ="index_like"> < iframe src ="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.facebook.com%2FEPRO.AGENT & a mp; send = false & amp; page = standard & amp; width = 292 & amp; show_faces = true & amp; action = as & amp; co lorscheme = light & amp; font = tahoma & amp; height = 80"scrolling =" "frameborder ="0"style =" border: none; overflow: hidden; Width: 292px; height: 80px; "allowTransparency ="true"> < / iframe > < / div >

    < div id = "stick" > < div id = "stik" style = "width: 225px;" height: 75px; text-align: center; "> < a href ="http://www.stik.com/paul.martin"class ="it"target ="blank"style =" position: relative; " display: block; "" > < img src = "http://www.stik.com/badge/image?v=1 & amp; stikid = 1005641" alt = "Paul Martin, real estate agent with Keller Williams coastal Realty, is recommended and revision to Stik.com" title = "Paul Martin, real estate agent with Keller Williams coastal Realty, is recommended and revision to Stik.com" style = "border: 0px;" " margin: 0px; "/ > < iframe src ="http://www.stik.com/badge/frame?v=1 & amp; stikid = 1005641"frameBorder ="0"scrolling =" "style =" width: 116px; height: 36px; border: 0px; position: absolute; left: 98px; Top: 0px; "" > < / iframe > < br / > < /a > < div class = "l" style = "height: 18px;" > < a href = "http://www.stik.com/paul.martin"target = style "in white" ="font family: Arial; do-size: 9px; color: # 3 b 5998; text-decoration: none; make-weight: not bad; "" > read recommendations and comments on < /a > < a href = "http://www.stik.com"target = "blank" style ="font family: Arial; do-size: 9px; color: # 3 b 5998; text-decoration: none; make-weight: not bad; "> Stik.com < /a > < / div > < / div > < / div >
    < hr / >
    < div id = "my_listings" >
    My current listings < h2 > < / h2 >
    < div id = "Accordion1" class = "Accordion" >
    < div class = "AccordionPanel" >
    < div class = "AccordionPanelTab" > $139 900 - Raymond Ranch < / div >
    < div class = "AccordionPanelContent" > < a href = "listing_page_24_sesame.php" "> < img src="images/listings/24_sesame.jpg "width ="299"height ="198"alt ="Sesame St St Raymond, NH 24"/ > < / has > < / div >"
    < / div >
    < div class = "AccordionPanel" >
    < div class = "AccordionPanelTab" >$ 194 900 - Northwood Ranch < / div >
    < div class = "AccordionPanelContent" > < a href = "listing_page_27_bass.php" "> < img src="images/listings/Harvey-Lake-Home-Northwood,.jpg "width ="299"height ="198"alt ="27 Bass Rd Northwood, NH"/ > < / has > < / div >"
    < / div >
    < div class = "AccordionPanel" >
    < div class = "AccordionPanelTab" > $249 900 - Milton Custom Cap < / div >
    "< div class ="AccordionPanelContent"> < a href ="listing_page_99_gold_milton.php"> < img src="images/listings/99_gold_st.jpg "width ="299"height ="198"alt ="99 gold St Milton NH for sale by Paul Martin and Keller Williams Realty coastal"/ > < / a > < / div >
    < / div >
    < div class = "AccordionPanel" >
    < div class = "AccordionPanelTab" > $159 900 - Effingham Multi Unit < / div >
    < div class = "AccordionPanelContent" > < a href = "listing_page_108_champion_hill.php" "> < img src="images/listings/108_champion_hill.jpg "width ="299"height ="198"alt ="Champion Hill Rd Effingham, NH 108"/ > < / has > < / div >"
    < / div >
    < div class = "AccordionPanel" >
    < div class = "AccordionPanelTab" > Epsom Colonial $ 324 900 - < / div >
    < div class = "AccordionPanelContent" > < a href = "listing_page_206_copperline_epsom.php" "> < img src="images/listings/206_copperline/199x198.jpg "width ="299"height ="198"alt ="206 Copperline Rd Epsom, NH"/ > < / has > < / div >"
    < / div >
    < div class = "AccordionPanel" >
    < div class = "AccordionPanelTab" > $189 900 - Middleton Ranch < / div >
    < div class = "AccordionPanelContent" > < a href = "listing_page_60_lakeshore_middleton.php" "> < img src="images/listings/Sunrise-Lake-Home.jpg "width ="299"height ="198"alt ="60 Lakeshore Dr. Middleton, NH"/ > < / has > < / div >"
    < / div >
    < div class = "AccordionPanel" >
    < div class = "AccordionPanelTab" > $259 900 - Exeter Duplex < / div >
    < div class = "AccordionPanelContent" > < a href = "listing_page_34_36_south_st.php" "> < img src="images/listings/34_36_south_st.jpg "width ="299"height ="198"alt ="34-36 South St Exeter, NH"/ > < / has > < / div >"
    < / div >
    < div class = "AccordionPanel" >
    < div class = "AccordionPanelTab" > $249 900 - Sunrise Lake Ranch < / div >
    < div class = "AccordionPanelContent" > < a href = "listing_page_86_lakeshore.php" "> < img src="images/listings/86-Lakeshore-Dr.jpg "width ="299"height ="198"alt ="86 Lakeshore Dr. Middleton, NH"/ > < / has > < / div >"
    < / div >
    < div class = "AccordionPanel" >
    < div class = "AccordionPanelTab" > $249 000 - Dover Point Colonial < / div >
    "< div class ="AccordionPanelContent"> < img src="images/listings/Colonial-Condex.jpg "width ="299"height ="198"alt ="Dover Point Colonial sold by Paul Martin"/ > < / div >
    < / div >
    < div class = "AccordionPanel" >
    < div class = "AccordionPanelTab" >$ 235 500 - Chichester Cape < / div >
    "< div class ="AccordionPanelContent"> < img src="images/listings/26_cross_rd.jpg "width ="299"height ="198"alt ="Sold by Paul Martin"/ > < / div >
    < / div >
    < div class = "AccordionPanel" >
    < div class = "AccordionPanelTab" > $ 295,000 - Londonderry Colonial < / div >
    "< div class ="AccordionPanelContent"> < img src="images/listings/25_king_henry.jpg "width ="299"height ="198"alt ="Sold by Paul Martin"/ > < / div >
    < / div >
    < div class = "AccordionPanel" >
    < div class = "AccordionPanelTab" > put your House up for sale here! < / div >
    < div class = "AccordionPanelContent" > < img src = "images/listing_ad.jpg" width = "299" height = "198" alt = "Your home for sale on Lots2Homes.com list" / > < / div > "
    < / div >
    < / div >
    < / div >
    < hr / >
    < div id = "info_1" >
    < h2 > 2012 will see improvement? < / h2 >
    < p > by Carla Hill < br / >
    < br / >

    We saw the effects of the terms of the mortgage tightened last year. Existing and new home sales have struggled, and now we have significant pent-up demand. This trend will continue in 2012? < br / >
    < br / >


    To begin with, consumer prices fell in October, which means that low-paid workers, and others who are struggling to make both ends meet will find more affordable...
    < br / >
    < br / >
    "" < a href = "Read" _mce_href = "http://realtytimes.com/rtpages/20111121_realestateoutlook.htm" > read "> http://re altytimes.com/rtpages/20111121_realestateoutlook.htm" > read more < /a > < /p >
    < / div >
    < hr / >
    < div id = "info_2" >
    Timing < h2 > real estate Cycle < / h2 >
    < p > Paul Martin < br / >
    < br / >
    Real estate cycles are created by an imbalance that occurs between the supply of homes available on the market and the demand for these homes ready willing and able buyers. < br / >
    < br / >

    The reasons for a more or the terms of the offer of houses and one more or under demand for these homes may differ from one cycle to the other... < br / >
    < br / >

    "" < a href = "Read" _mce_href = "http://www.lots2homes.com/weblog/?p=84" > read "> http://www.lots2homes.com/weblog /?" p = 84 "> read more < /a > < /p >
    < / div >
    < hr / >
    < div id = "info_3" >
    < h2 > thinking about a short sale? < / h2 >
    < p > if you are looking for short sale information and assistance, I can help you. Like a SFR (specialist resources foreclosure and short sale) and CML (loss mitigation consultant), sales of Shorts are one of my specialties! < br / >
    < br / >

    Do not lose time, call me today! I work hand in hand with the training group loan out of law office address in Londonderry, one of the most experienced and specialists of the short sale of first New Hampshire. We work together as a team in order to get your short sale accepted and your House sold in time to save you from foreclosure. < /p >
    < / div >
    < hr / >
    < div id = "sidebar_flash_ad" >
    < object classid = "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width = "214" height = "320" id = "FlashID3" title = "Training loan group Ad" > "
    < param name = "movie" value = "flash/loan_workout_group.swf" / > "
    < param name = "quality" value = "high" / >
    < param name = "wmode" value = "opaque" / >
    < param name = "swfversion' value ="6.0.65.0"/ >
    <!-this param tag prompts users with Flash Player 6.0 r65 or later to download the latest version of Flash Player. Delete it if you do not want users to display the prompt. ->
    < param name = "expressinstall" value = "Scripts/expressInstall.swf" / > "
    <!-next object tag is for non - IE browsers. Then he hide from IE using IECC. ->
    <!-[if! IE] >->
    < object type = "application/x-shockwave-flash" data = "flash/loan_workout_group.swf" width = "214" height = "320" > "
    <!-<! [endif]-->
    < param name = "quality" value = "high" / >
    < param name = "wmode" value = "opaque" / >
    < param name = "swfversion' value ="6.0.65.0"/ >
    < param name = "expressinstall" value = "Scripts/expressInstall.swf" / > "
    <!-the browser displays the following alternative content for users of Flash Player 6.0 and higher. ->
    < div >
    < h4 > the content of this page requires a newer version of Adobe Flash Player. < / h4 >
    "< p > < a href ="http://www.adobe.com/go/getflashplayer_fr "" > < img src = "http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt = 'Get Adobe Flash player' width = '112' height = "33" / > < /a > < /p >
    < / div >
    <!-[if! IE] >->
    < / object >
    <!-<! [endif]-->
    < / object >
    < / div >
    < / div >
    < div id = "sidebar-bottom" > < / div >
    <!-end # sidebar1″--> < / div >

    < div id = "mainContent" >
    < div id = "content" >
    < div id = 'welcome_message' >
    Welcome to Lots2Homes.com - your Source for NH Real Estate < h1 > < / h1 >
    < p > As a New Hampshire REALTOR®, I designed and built < span class = "bold" > Lots2Homes.com </span > specifically to help people who are looking to buy a House here in New Hampshire and give our sales staff the home advantage through technology-based marketing. The goal here on < span class = "bold" > Lots2Homes.com </span > must become your first source for NH real estate information and a useful guide for buying and selling homes in Rockingham, Strafford and Belknap County region. < br / >
    < br / >

    Here on < span class = "bold" > Lots2Homes.com </span > accession can search for available on the local MLS houses, sign up for notifications of automatic search and search for information on each city found here in NH. Buyers can also receive great home buying advice through my free < a href = "buyer_guides.php" > GUIDES BUYER < /a > and get information on my full service buyer representation < /a > < a href = "my_buyers_program.php" > as one < span class = "bold" > ABR REALTOR® </span >. My buyer program is delivered free of charge and can help you in the home buying process from start to finish. It will help you to take advantage of the excellent market buyer knew and it comes with an < a href = "my_buyers_program.php" > < /a > Bonus buyer just for you sign up! < br / >
    < br / >

    Home sellers can get information here about how local and < a href = "housing_prices.php" > real estate market national < /a > is trend and how State of the art of marketing can help to sell their home in today's difficult economy. Sellers can also get information on the way to their competitive home with the help of an assessment study of price and know how I am help NH home sellers to succeed in the market today as and < span class = "bold" > e-PRO, specialist marketing through my Marketing Plan < /a > < a href = "my_marketing_plan.php" > </span >. < /p >
    < / div >
    < hr / >
    < h2 > Search homes of New Hampshire available now! < / h2 >

    "< div id ="quick_search_area"> < img src="images/buttons/home-page-search.png "alt ="search for homes now"width ="599"height ="300"border = '0' well ="#Map2"/ >
    < map "Map2" id = name = "Map2" >
    "< area shape ="rect"coords ="40,28,274,223"href ="http://www.lots2homes.idxco.com/idx/6152/basicSearch.php"target ="_self"alt ="Quick MLS Search"/ >"
    "< area shape ="rect"coords ="320,29,554,223"href ="http://www.lots2homes.idxco.com/idx/6152/mapSearch.php"target ="_self"alt ="MLS map search"/ >"
    "< area shape ="rect"coords ="407,263,557,291"href ="http://www.lots2homes.idxco.com/idx/6152/advancedSearch.php"target ="_self"alt ="Advanced MLS Search"/ >"
    < / map >
    < / div >
    < br / >

    < hr / >
    < div id = "featured_property_title" > < img src = "images/featured_property_title.png" width = "351" height = "49" alt = "Well-behaved" / > < / div > "
    < div id = "featured_listing" >
    < object classid = "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width = "212" height = '132' id = 'FlashID2' title = '27 Bass Rd Northwood, NH' > "
    < param name = "movie" value = "flash/27_bass.swf" / > "
    < param name = "quality" value = "high" / >
    < param name = "wmode" value = "opaque" / >
    < param name = "swfversion' value ="6.0.65.0"/ >
    <!-this param tag prompts users with Flash Player 6.0 r65 or later to download the latest version of Flash Player. Delete it if you do not want users to display the prompt. ->
    < param name = "expressinstall" value = "Scripts/expressInstall.swf" / > "
    <!-next object tag is for non - IE browsers. Then he hide from IE using IECC. ->
    <!-[if! IE] >->
    < object type = "application/x-shockwave-flash" data = "flash/27_bass.swf" width = "212" height = "132" > "
    <!-<! [endif]-->
    < param name = "quality" value = "high" / >
    < param name = "wmode" value = "opaque" / >
    < param name = "swfversion' value ="6.0.65.0"/ >
    < param name = "expressinstall" value = "Scripts/expressInstall.swf" / > "
    <!-the browser displays the following alternative content for users of Flash Player 6.0 and higher. ->
    < div >
    < h4 > the content of this page requires a newer version of Adobe Flash Player. < / h4 >
    "< p > < a href ="http://www.adobe.com/go/getflashplayer_fr "" > < img src = "http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt = 'Get Adobe Flash player' width = '112' height = "33" / > < /a > < /p >
    < / div >
    <!-[if! IE] >->
    < / object >
    <!-<! [endif]-->
    < / object >
    "< a href ="listing_page_27_bass.php"> < img src="images/featured_properties/27_bass_northwood.jpg "width ="630"height ="480"alt ="Featured Listing"/ > < /a > < / div >
    < br / >
    < hr / >

    < div id = "buyer_program" >
    My program buyers < h2 > < / h2 >
    < p > real estate market competitive today, calendar and knowledge is everything. You have your purchase strategy put in place even at home? < br / >

    < br / >
    As one of the Accredited Buyer Representative REALTORS® of New Hampshire, helping home buyers to succeed is one of my specialties. My program can help you with: < /p >
    "< div id ="abr_logo"> < img src="images/icons/abr_oval_196.png "width ="196"height ="123"alt ="logo ABR"/ > < / div >
    < ul id = "list" >

    < li > locate the homes available that match your search criteria in your favorite domains < /li >

    price Negotiate, the terms and conditions that are suitable for your needs and protect your interests < /li > < li >

    inspections at home < li > contact information and the preparation of the closing documents < /li >

    < li > the problems of closure that arise to keep you on track < /li >
    < li > helps you get the keys to your new home! < /li >
    < /ul >
    "< p > < span class = 'fat' > contact me today or </span > < a href =" my_buyers_program.php"class = 'fat' > READ MORE HERE < /a > < span class = 'fat' > for more information on </span > < a href =" my_buyers_program.php "class = 'fat' > my buyers program < /a > < /p >
    < / div >
    < hr / >
    < div id = "marketing_plan" >
    Plan Marketing My < h2 > < / h2 >
    < p > home sellers face difficult market conditions these days. Over time just to need a sign in front of selling your home quickly and for a great price. Today, buyers have a crowded market to choose and most are experts in advanced as well. < br / >
    < /p >
    < div id = "epro-logo" > < a href = "epro.php" > < img src="images/icons/ePRO_196.png" alt = "Logo of the e - PRO" width = "196" height = "107" border = '0' well = "#Map3" / > < / has > "
    < name of map = "Map3' id ="Map3">
    < area shape = "poly" coords = "3,39,32,64,32,104,83,103,82,71,143,67,184,55,192,39,188,23,158,8,99,1,46,5,19,14, 4.26" href = "#" / >
    < / map >
    < / div >
    < p > they want to see as much as possible of your home online before you make an appointment to see it in person.
    This is where my marketing expertise excels. < br / >
    < br / >
    As one of the few < span class = "italic_and_bold" > e-PRO REALTORS® </span > in New Hampshire, I have been trained in all the latest technical web marketing. < br / >
    < br / >
    Combine the power of marketing with traditional methods of marketing on the web to maximize exposure of your home in a crowded market. < /p >
    < br / >
    "< Center > < span class = 'fat' > contact me today or </span > < a href =" my_marketing_plan.php"class = 'fat' > READ MORE HERE < /a > < span class = 'fat' > for more information on </span > < a href =" my_marketing_plan.php "class = 'fat' > my Marketing Plan < /a > < / center >
    < / div >
    < hr / >
    < div id = "media-1" >
    < div id = 'video-1' >
    "" < embed src = "http://c.brightcove.com/services/viewer/federated_f8/1465406675"bgcolor = "#FFFFFF" flashvars ="videoId = 1288013534001 & playerId = 1465406675 & viewerSecureGatewayURL =https://console.brightcove.com/services/amfgateway & servicesURL = http: / / services.brightcove. com/services & cdnURL = http://admin.brightcove.com & area = embed & autoStart = false &" base ="http://admin.brightcove.com" name = "flashObj" width = "400" height = "320" seamlesstabbing = "false" type = "application/x-shockwave-flash" swliveconnect = "true" pluginspage = "http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" > < mbed/e> "
    < / div >

    < div id = "video-1_text" >
    < h3 > October existing-home sales increase, while the unsold stock continues to decline < / h3 >
    < hr / >
    < p > Washington, D.C., 21 November 2011

    Existing home sales improved in October while the number of homes on the market has continued to decline, according to the National Association of Realtors®. < br / >

    ' Find out more and read the full article < a href = "REALTOR. Org. http://www.REALTOR.org/press_room/news_releases/2011/11/ehs_oct "> REALTOR." Org. < /a > < a href = "& lt; img src = & quot;images/icons/Realtor_org-logo_thumb.jpg & quot; width = & quot; 160 & quot; height = & quot; 90 & quot; ALT = & quot; REALTOR. Org & quot; / & gt; "" > < img src="images/icons/Realtor_org-small.jpg" width = "80" height = "47" alt = "Realtor.org" / > < /a > < /p > "

    < / div >
    < / div >
    < / div >
    < div id = 'hand down' > < / div >
    <!-end #mainContent--> < / div >
    <!-this element of compensation should immediately follow the #mainContent div in order to force the #container div to contain all the child floats--> < br class = 'clearfloat' / >
    < div id = "footer" >
    <? PHP require('includes/footer_menu_6.php');? >
    < / div >
    <!-end #container--> < / div >
    < / div >
    < script type = "text/javascript" >
    <!--
    swfobject.registerObject ("FlashID2");
    swfobject.registerObject ("FlashID2");
    var Accordion1 = new Spry.Widget.Accordion ("Accordion1");

    ->
    < /script >
    < / body >
    < / html >

    @charset "utf-8";
    / * CSS document * /.
    #mainContent {}
    padding: 0; / * Remember that the fill is space inside the box of div and margin is the space outside the div box * /.
    margin-top: 0;
    right margin: 344px;
    margin-bottom: 0;
    left margin: 0;
    background-repeat: repeat-y;
    background-image: url (.. / images/2-column/main-middle.png);
    }
    {#sidebar1}
    float: right; / * because this element is floating, it takes a width * /.
    Width: 344px;
    padding: 0px;
    margin: 0px;
    background-repeat: repeat-y;
    background-image: url (.. / images/2-column/r-sidebar-middle.png);
    }
    {body
    margin: 0; / * It is advisable to zero, the margin and the filling of the body to hold element has a different default browser * /.
    padding: 0;
    text-align: center; / * This centers the container in IE 5 * browsers. The text is then set left aligned by default in the #container selector * /.
    Color: #000000;
    do-family: Georgia, "Times New Roman", Times, serif;
    do-size: 100%;
    background-color: #5783A 6;
    }
    {p}
    do-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    do-size: 14px;
    text-align: justify;
    }
    an img {}
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;

    }
    H1 {}
    do-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font size: 20px;
    text-decoration: underline;
    margin: 0px;
    }
    H2 {}
    do-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    do-size: 18px;
    text-align: center;
    margin: 0px;
    }
    H3 {}
    do-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    do-size: 14px;
    text-align: center;
    }
    H4 {}
    do-family: "Comic Sans MS", cursive;
    do-size: 14px;
    make-style: italic;
    make-weight: normal;
    text-align: center;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    left margin: 0px;
    }

    a {}
    make-weight: bold;
    text-decoration: underline;
    color: #900;
    }
    {h}
    margin-top: 10px;
    margin-bottom: 10px;
    }
    #container {}
    Width: 1024px; / * margins (in conjunction with a width) auto Center the page * /.
    text-align: left; / * This setting overrides the text-align: center on the body element. */
    margin-right: auto;
    left margin: auto;
    background-repeat: repeat-y;
    background-image: url (.. / images/2-column/bg.png);
    margin-top: 0px;
    padding: 0px;
    }
    #header {}
    padding-top: 0;
    padding-right: 0px;
    padding-bottom: 0;
    padding-left: 0px;
    background-image: url(images/2-column/bg.png);
    background-repeat: repeat-y;
    }
    #container #top {}
    background-image: url (.. / images/extention_page/2_column/2_column_top_wide.png);
    background-repeat: no-repeat;
    Width: 1024px;
    height: 38px;
    padding: 0px;
    }
    #footer {}
    padding: 0;
    background-image: url(images/2-column/bg.png);
    background-repeat: repeat-y;
    }
    #footer p {}
    margin: 0; / * zero setting the margins of the first element in the footer will avoid the possibility of the collapse of the margin - a space between the div tags * /.
    padding: 10px 0; / * padding on that element will create space, just as it would the margin, free margin collapse question * /.
    }
    .fltrt {/ * this class can be used to float right to the item in your page.} The floating element must precede the element it should be next to the page. */
    float: right;
    left margin: 8px;
    }
    .fltlft {/ * this class can be used to float an element on your page to the left * /}
    float: left;
    right margin: 8px;
    }
    .clearfloat {/ * this class must be placed on an element div or break and should be the last item before closing a container should completely contain a float * /}
    Clear: both;
    height: 0;
    font size: 1px;
    line-height: 0px;
    }

    #container #header_flash_window {}
    position: absolute;
    top of the margin: 182px;
    margin left: 239px;
    border: 1px solid #848484;
    }

    {#sidebar - bottom #container #sidebar1
    background-image: url (.. / images/2-column/r-sidebar-bottom.png);
    background-repeat: no-repeat;
    height: 33px;
    }
    {#main - low #container #mainContent
    background-image: url (.. / images/2-column/main-bottom.png);
    background-repeat: no-repeat;
    height: 33px;
    }

    #container #sidebar1 #content {}
    padding-right: 16px;
    padding-left: 13px;
    padding-bottom: 10px;
    padding-top: 0px;
    margin-top: 0px;
    }

    #mainContent #content {}
    padding-right: 16px;
    padding-left: 30px;
    }
    #mainContent #content #quick_search_area {}
    padding-left: 20px;
    }
    #content #featured_property_title {}
    padding-left: 140px;
    }
    #content #featured_listing #FlashID2 {}
    Clear: both;

    float: none;
    top of the margin: 292px;
    margin left: 391px;
    position: absolute;
    }
    #mainContent #content #buyer_program #abr_logo {}
    Width: 196px;
    float: right;
    }
    #mainContent #content #buyer_program #list li {}
    do-size: 16px;
    do-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    }
    #mainContent #content #marketing_plan #epro - logo {}
    Width: 196px;
    float: left;
    right margin: 15px;
    }
    #container #mainContent #content #marketing_plan p .bold {}
    text-align: left;
    }
    #container #mainContent #content #media - 1 {}
    Width: 640px;
    height: 340px;
    }
    #mainContent #content #media-1 #vidéo - 1 {}
    Width: 400 PX;
    float: left;
    }
    #mainContent #content #media-1 #vidéo - 1_text {}
    height: 320px;
    Width: 220px;
    margin left: 400px;
    margin-top: 0px;
    padding-top: 0px;
    padding-right: 5px;
    padding-left: 10px;
    }
    #mainContent #content #media-1 #vidéo - 1_text p an img {}
    float: right;
    right margin: 65px;
    top of the margin: 15px;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    }
    #container #sidebar1 #content #stick {}
    padding-left: 44px;
    }
    #container #sidebar1 #content #social - media - buttons {}
    margin-bottom: 0px;
    left margin: 22px;
    }
    #container #sidebar1 #content #index_like {}
    padding-left: 12px;
    }
    #sidebar1 #content #my_listings {}
    padding-left: 7px;
    }
    #sidebar1 #content #info_1 {}
    padding-right: 15px;
    padding-left: 15px;
    }
    #sidebar1 #content #info_2 {}
    padding-right: 15px;
    padding-left: 15px;
    }
    #sidebar1 #content #info_3 {}
    padding-right: 15px;
    padding-left: 15px;
    }
    #sidebar1 #content #sidebar_flash_ad {}
    padding-left: 50px;
    }
    #container #container #mainContent2 {}
    background-image: url (.. / images/2-column/thin-sidebar/main-middle.png);
    background-repeat: repeat-y;
    right margin: 269px;
    }
    #container #container #sidebar2 {}
    Width: 269px;
    float: right;
    background-image: url (.. / images/2-column/thin-sidebar/sidebar-middle.png);
    background-repeat: repeat-y;
    }
    #container #sidebar2 #content {}
    padding-right: 15px;
    padding-left: 11px;
    }
    #sidebar2 #content info # 1 {}
    padding-right: 10px;
    padding-left: 10px;
    }
    {#main - bottom2 #mainContent2
    background-image: url (.. / images/2-column/thin-sidebar/main-bottom.png);
    background-repeat: no-repeat;
    height: 33px;
    }
    #mainContent2 #content {}
    padding-left: 30px;
    padding-right: 15px;
    }
    {#sidebar - bottom2 #sidebar2
    background-image: url (.. / images/2-column/thin-sidebar/sidebar-bottom.png);
    background-repeat: no-repeat;
    height: 33px;
    }
    #sidebar2 #content #paul_logo {}
    left margin: 7px;
    }
    #listings-table table tr td {}
    border: 1px solid 484848;
    height: 199px;
    Width: 299px;
    }
    #listings-table table tr td img {}
    border: 1px solid #000;
    }
    #navigation {}
    height: 32px;
    margin: 0px;
    }

    It looks good.

    Nancy O.

  • The skin is not updating the display

    Hallo. I have my list with my itemRenderer. Inside my itemRenderer, I have a label and a button:

    < s: states >

    " < s: State name ="normal"/ > "

    " < s: State name ="hovered"/ > "

    " < s: State name ="selected"/ > "

    < / s: states >

    " < s:Label id ="dataOrdine "" "

    x="2"

    "maxWidth ="70"

    "maxDisplayedLines ="1"

    "red ="0"

    "color.selected ="#FFFFFF"

    "fontSize ="12"

    paddingTop ="2"/ > "

    "" < ns:mioPulsante id = "dettagliTransazione_btn'x ='685" label ="step-by-step" width = "70" skinClass ="skins.pulsanteSemplice_skin"click = "dettagliTransazioneClickHandler (event)" "

    " coloreSfondoPulsanteComune= ' data.coloreSfondoPulsanteComune{}" coloreEtichettaPulsanteComune ="data.coloreSfondoEtichettaPulsanteComune{}"/ >

    < / s:ItemRenderer >

    mioPulsante is a custom button and inside, there are 2 (coloreSfondoPulsanteComune and coloreEtichettaPulsanteComune). If within my itemRenderer I trace data.coloreSfondoPulsanteComune the value is true, anyway I do not see the right color on screen... Maybe I should do something to refresh the view... I don't know what to do...

    Pls help...

    Max

    No doubt to use the skin conditions? Add a few States to the skin and change the colrs. How to change the State of the skin? Seel the

    example below.

    http://saturnboy.com/2009/09/Flex4-component-States-skin-States/

  • Dimensions of tracing stage

    Hey there ' All, I know it's easy...
    How to track step width and height in AS3? I traced stage.width, and he gave me the width of the work, not the scene.

    DP

    Too bad... I thought about it. stage.stageWidth. sorry for display with or without look around first! :)

  • Movement of scrolling or animated full-width for Tablet?

    I created an animation of movement of scrolling for my site, but can't find a way to make it work on a Tablet and a phone. The temp site is invisibleoakley.businesscatalyst.com

    What I read:

    • Movement of scrolling works on mobile and tablet or on sensitive sites. So I made a website for the office and is trying to get a job of alternative layout of Tablet.

    • I have considered rather create an animation in animated cc, but can't find a way to make it appear the width on the tablet. (as you can see, many elements come out of the screen) Is there a full-width oam widget that works on the tablets and phones?

    • Looked in motion 2 muse widget but cannot get that to work either.

    Would appreciate any ideas on how to make my scrolling animation (or something similar) are working on an ipad and phone. I put so much work into this. I hope that the desktop version will not be alone in some movements. The key is objects needs to scroll off the screen to the right, and from top to bottom left. Crossing my fingers that some genius can help!

    Thanks - Jami

    p.s. I'm not good with code, but can I cut and paste with the best of them ;-)

    Yes, htm5 animation to animate CC will work. You can also take a look at widgets, like this Widget host OnLoad for Adobe Muse by MuseThemes

  • Effects of scrolling does not allow to define page layout fluid width

    Hello

    I created a menu at the top of the site and you want to enable the scrolling effects when you click on a button and are directed to any part of the website menu is visible, but my page is configured for a fluid width, why I want that my menu is 100% on the sides, but preventing me to use scrolling effects.

    Does anyone have a solution for this? There is another method to enable scrolling effects and leave my menu full time?

    An example of how I want my site get is the following: http://splitstudio.com.br/

    This is not possible with scrolling effects like effects scroll uses absolute positioning and sensitive sites use relative positioning. This movement of scrolling is disabled on sensitive sites.

Maybe you are looking for