Problem setting variables after initial page load

So, I'm pretty new to ColdFusion and hoping this is an easy fix.  I have a .cfm page that opens from several different points in a website.  Depen
ding on which point it opens from, the variables room and activebutton are assigned different values via an onclick event.  Based on these values, the room variable sets a background image for a div and the activebutton sets the textcolor for a different div via a stylesheet in the head of the document.  Now, this part works fine with the following code in the stylesheet in the documents head:
#fp_r1_c2 {
background-image:url('images/<cfoutput>#room#</cfoutput>');
width:599px;
height:577px;
float:left;
#<cfoutput>#activebutton#</cfoutput>
color:#FFF;
Heres where things get hairy.  After I have those initial variables set there are 6 divs (the ones that activebutton changes the color attribute of) that the user can click on.  When any div is clicked its color should set to #FFF and whatever div was previously selected should change back to the default color for the page.  In addition, the background-image attribute of the other div that was set by the room variable must change to a new image that corresponds to each button.
I've tried several methods, most of which I probably messed up anyhow.  But I'm completely stumped how to accomplish this.  Researching online has shown me that I can't include the new values in any kind of onclick command...so how exactly should I go about accomplishing what I need done?
Tthanks in advance for any assistance!

You need to understand the underlying premise that ColdFusion is a "server-side" language. Once the page is generated and sent to the client as HTML, everything is in the hands of the client until the next request back to the server. So, if you want to do much in between server calls, a client-side tool such as JavaScript is the answer.

Similar Messages

  • Execute search programatically during initial page load.

    hi,
    when the page is initially rendered, i have requirement to have the page automatically retrieve rows that belong to the user (ie execute a search programatically)
    to achieve that i did the following -
    1. created search page using autocustomizationcriteria
    2. mapped all search fields to corresponding VO fields ( i intend to not override the default where clause since all my search can directly be mapped to a VO attribute)
    3.populated the userlogin value into the corresponding search field as follows -
    String lg = pageContext.getUserName();
    OAMessageLovInputBean lovBean = (OAMessageLovInputBean)webBean.findChildRecursive("searchLogin"); //the searchfield is a messageLOVInput
    lovBean.setValue(pageContext, lg);
    the behavior i was expecting is for the page to automatically generate the where clause since i populated the search field that is mapped to the VO attribute and execute the query (i did not invoke executequery() per dev guide) BUT instead it is executing a BLIND query with no where clause.
    would appreciate any insight into what i am doing wrong....
    thank you.

    hi, i had initially done the setting of the whereclause and executing programatically. however, when you do that, subsequently, the 'Go' button also needs to be handled programatically (including all search criteria whereclause generation) and then you loose all the features of the queryBean especially the different search options (eg like , starts with etc) on the Advanced Panel unless you code for all those features yourself...... NOTE - the need to handle the 'Go' button yourself happens even though after executeQuery() for just the initial page load, i reset the whereclause and whereclauseparams to NULL....
    i also do not have a formvalue associated with the searchlogin field.
    any other inputs please ?
    thank you.
    Edited by: user8249972 on Jan 28, 2013 10:22 AM

  • CSS on some pages is not displaying properly on initial page load.

    I'm running into an issue where a page loads and the styles do not render correctly. After the page loads, I can temporarily fix this by choosing: View->Page Style->No Style, then doing it again with: View->Page Style->Basic Page Style. Though when navigating away from the page and then coming back to it, I will have to do it over again.
    I'm experiencing this issue on v. 36.0.3 for Windows and v. 36.0 for Ubuntu

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    You can check the Net log and the Network log in the Web Console (Firefox/Tools > Web Developer) to see how long it takes for content to arrive.
    *https://developer.mozilla.org/Tools/Network_Monitor
    You can also try to reset (power on/off) the router and maybe check with your ISP if it happens on more than one OS.

  • Problem setting up iDVD opening page after dragging in iMovie project

    Had a problem at one to one training yesterday to finish my project. I had completed my slide show with photos and video in imovie. I had premade the "opening" on iDVD with a title and subtitle.
    When we dragged the imovie file into the idvd opening page it brought in the title of the idvd name of that file. I typed in the name of the imovie show into that space. THen we typed in the title of project into "Revolution" space. At this point , the subtitle that i had previously put in would not work properly. AFter I gave up on the training and spent 4 more hours at home on this:
    I could only set up the opening idvd page properly AFTER
    publishing the movie..then dragging it into the idvd page...THen retyping in my subtitle info into
    that space (which will start the video on TV) and typing the title into the "Revolution" Space. This was very time consuming as each time I made a change in the imovie project..then republishing it...EACH TIME I had to remake the idvd beginning page as I just said. SOOO....it is not possible to set up beginning idvd page first ????ANy suggestions here ????
    THank you for any help.

    That;s the wrong way to move stuff to iDVD. Apple really blew it on iDVD and iMovie 08.
    Read this thread http://discussions.apple.com/thread.jspa?threadID=1520843&tstart=30

  • Using a4j to load a rich:dataTable after the page loads

    I have a rich:dataTable that calls a session bean which executes an SQL query to generate the data to be displayed in the table. Something simple like:
    <rich:dataTable rowClasses="evenRow,oddRow"
    rows="30"
    value="#{Bean.items}"
    var="items">
    where Bean.getItems() performs an SQL query and returns List<Item>.
    The problem is that the query takes a long time to execute (~45 seconds) and I'd like the page to initially load while the query is being executed, displaying a spinner while it loads. Once the query is done, I'd like to update the initially empty table using ajax.
    I set up a spinner using a4j:status and it works fine after the page initially loads (using a rich:datascroller).
    However, the page will not initially load until the query completes, which is a problem because the query is so slow. What happens is the user clicks on the "List Items" tab from my site's homepage, sits there on the same page for 45 seconds with absolutely no visual indication that anything is happening, and then finally is taken to the list of items page.
    What is needed to make the dataTable load via AJAX the first time, as well as all subsequent times?
    Thanks!
    Edited by: rcrowell on Sep 8, 2008 5:42 PM

    rcrowell wrote:
    The issue isn't the PK of the table; the query is joining across many tables and aggregating data from one table in particular with millions of rows. The table has paging, but again that won't help the timinig issues due to the aggregation that must be performed on a large table.
    Surely there must be a way to get the dataTable to always load its data via ajax, and not only after the first time.Well JSF does not have AJAX built-in, so why would there be? Perhaps one of the AJAX-based frameworks has this. I imagine it wouldn't be hard to do with the existing AJAX frameworks even without a built-in component specifically for it. Trigger an AJAX action on load which rerenders a panel which will only contain the dataTable upon the rerendering.
    >
    I think I could do it by adding a 'dataTableRendered' variable to the bean and using a jsFunction to set this variable to True when the page loads, but I'm looking for a better way. (I'm also not 100% sure this would do what I want.)

  • Place default checkbox value "in SESSION" on initial page load

    Oracle 11.2
    Apex 4.1
    Desire outcome: Chart renders on inital page load using default value of checkbox in query.
    I have a checkbox with a default (checked) value. It shows checked when the page renders for the first time but the value is not in the SESSION state. I use this value in a query for a chart. I do not want to use a Submit button so I have a dynamic action submitting the value for the checkbox and the chart refreshes as desired when I check and uncheck the box.
    I tried "Fire on Page Load" in the DA Execution Options, as well, but that caused a loop where the page renders and immmediately renders, and immediately renders, etc.
    Is there a declarative solution that submits the current, in this case default, values when the page is loaded? I only need and want the default values used the first time the page is accessed. This is the initial page of the application but I need the same behavior on all pages for the separate checkbox selections found there.
    May God Bless,
    Howard

    Howard (DBA in Training) wrote:
    If I remove the Default Value and add a Before Header page computation for the item with static assignment to
    a:bI get the 2 A/B checkboxes, both checked, and the value is set in session state.If you log in here, you can see it up close and personal!
    http://apex.oracle.com/pls/apex/f?p=21997:3 Login: Dever / Ima9Dever
    The Default Value colon-delimited string must contain the checkbox values, not the labels. In a static LOV the checkbox options are specified as <tt>label;value</tt> pairs. Thus in your checkbox LOV the labels are A/B, whilst the values are a/b. The values are case-sensitive.
    The Default Value should therefore be:
    a:bwhereas you've specified:
    A:BWith the checkbox item LOV Display Extra Values property set to Yes, APEX displays these extra values that are not included in the LOV definition as additional checkboxes. You can see this if you inspect the rendered checkbox elements in the HTML source:
    <input type="checkbox" id="P3_CHECKBOX_0" name="p_v01" value="a">
    <input type="checkbox" id="P3_CHECKBOX_1" name="p_v01" value="b">
    <input type="checkbox" id="P3_CHECKBOX_2" name="p_v01" value="A" checked="checked">
    <input type="checkbox" id="P3_CHECKBOX_3" name="p_v01" value="B" checked="checked">You get the a/b values defined in the LOV, plus the extra A/B values the LOV knows nothing about.
    ==== ) How do you keep it from setting/resetting these values each time the
    page is rendered?  The need is to do it only the very first time?  ( ====Put a Value of Item / Column in Expression 1 Is NULL condition on the Computation. Problem then is that the computation will be run if the user can [legitimately] deselect all of the checkboxes, either leaving you back where you started, or requiring the use of a further item to flag whether it is the really "the very first time" (which I find intellectually deeply unsatisfactory). This may be a sign that the control should really be a radio group that always has one option set, rather than a check box.

  • Date Picker has to submit the default value after the page load???

    Hello All,
    I have 2 date pickers 'Start' and 'End' on a screen with report that has a where clause using above values. Start defaults to current date, End defaults to current month end date, I have another radio group with default to Monthly......
    Now when the page loads, I see the default values for 'Start' and 'End' date pickers but the report doesn't reflect those values. I added an on change dynamic action, and so when I change the value of 'End' date picker, it submits the page and now the values are reflected in the report........
    I tried creating another dynamic action > with event On Page Load.....and disable fire on page load, and to submit the page, this is causing an infinite loop of submitions........can you please tell me how to achieve this with out putting an exclusive submit button on the Screen.......
    Thanks for your time.
    DK

    user12296343 wrote:
    Hello All,
    I have 2 date pickers 'Start' and 'End' on a screen with report that has a where clause using above values. Start defaults to current date, End defaults to current month end date, I have another radio group with default to Monthly......
    Now when the page loads, I see the default values for 'Start' and 'End' date pickers but the report doesn't reflect those values. I added an on change dynamic action, and so when I change the value of 'End' date picker, it submits the page and now the values are reflected in the report........
    I tried creating another dynamic action > with event On Page Load.....and disable fire on page load, and to submit the page, this is causing an infinite loop of submitions........can you please tell me how to achieve this with out putting an exclusive submit button on the Screen.......
    Thanks for your time.
    You don't have to submit the page here.
    What version of apex?
    What report is it? i.e. Interactive report/Classic report
    Depending on your version of apex you can simply use the Page Items to Submit attribute to set the session state

  • Safari's initial page load delay... where to turn off or change?

    Hi,
    A while back I read that Safari puts a few seconds delay when loading a new webpage, .. and 4.03 still has it. I just can't find where it was that I read how to take it off.. Does any one know?
    Basically I want Safari to start drawing the page as soon as it gets to it, kind of like opera does.
    Just in case Why don't I just use opera? I prefer Safari, but I don't always need the initial page that is loading but a link on it... and I find myself waiting.. and on fast connection, just to load a page I shouldn't have to be waiting until the browser feels the page load is complete.
    Thanks
    Oscar

    HI,
    There's no delay feature that you are referring to in Safari. If you can find the article you read, could you please post it here?
    Have you tried emptying the cache?
    From the Safari Menu Bar, click Safari/Empty Cache
    Also, try using Open DNS
    Carolyn
    Message was edited by: Carolyn Samit

  • Problem with variable in last page only context

    Hi,
    I am using a variable to sum the amount. And i need to print that variable in the footer of last page. I am using last page only context command(<?start@last-page-first:body?><?end body?><?call:footer_template?>) for printing the footer table in last page.
    Can i access the variable in last page only context. Its giving error for me. how can i access that variable.
    Thanks in advance.

    Yunus,
    I did what you said. I removed the variable from characteristic restrictions, saved the query and executed the query, appeared three variables Plant, Calender month and material. executed and saved the work book. disconeted from Bex analyzer, in RSRT Generated Report and logged into Bex analyzer ran the work book for selection Plant, calender month and material and went into change query definition and added the variable for customer which was removed earlier and and ran the query for selections Plant, Calender monmth, Material and customer. saved the work book. disconnected from Bex analyzer and closed all excel sheets and work books. In RSRT Generated Report and again connected to Bex analyzer and ran the work book, now appeared only three variables again missed variable customer.
    Yunus does any missed n the procedure what i did.
    It is helped what Chris was answered.
    Many Many Thaks for your time and replies.
    Thaks in advance
    Narendra

  • APEX dynamic action - How to hide an item after the page loads

    Hello
    I have a form  with  item  Type,  lesson and page.   I want to create a  dynamic action like "on page load" if Type = x then don't show lesson and page items. .
    How do I say if Type=x then  don't show lesson and page. otherwise show them.
    Please note Dynamic action,  Event=Page load
    Thanks

    create dynamic action like
    Event:Change
    Selection Type:Item
    Item:Type
    Condition:Equal To
    value:X
    Select Action:Hide
    Select Items to hide
    also create opposite false action
    and click on page checkbox below action to yes
    Hope this may helps
    pars.

  • Safari Locking Up After First Page Loads

    ...and sometimes even before the first page loads. I tried trashing those 3 files that iBod said, but it didn't do anything. Here's my error log:
    Date/Time: 2006-01-17 23:33:02.997 -0600
    OS Version: 10.4.4 (Build 8G32)
    Report Version: 3
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [67]
    Version: 2.0.3 (417.8)
    Build Version: 1
    Project Name: WebBrowser
    Source Version: 4170800
    PID: 458
    Thread: 2
    Exception: EXC_BREAKPOINT (0x0006)
    Code[0]: 0x00000001
    Code[1]: 0x90b2f620
    Thread 0:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x902b0114 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x902afa18 CFRunLoopRunSpecific + 268
    4 com.apple.HIToolbox 0x920191e0 RunCurrentEventLoopInMode + 264
    5 com.apple.HIToolbox 0x92018874 ReceiveNextEventCommon + 380
    6 com.apple.HIToolbox 0x920186e0 BlockUntilNextEventMatchingListInMode + 96
    7 com.apple.AppKit 0x9250b104 _DPSNextEvent + 384
    8 com.apple.AppKit 0x9250adc8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    9 com.apple.Safari 0x000072d4 0x1000 + 25300
    10 com.apple.AppKit 0x9250730c -[NSApplication run] + 472
    11 com.apple.AppKit 0x925f7e68 NSApplicationMain + 452
    12 com.apple.Safari 0x0005cfdc 0x1000 + 376796
    13 com.apple.Safari 0x0005ce80 0x1000 + 376448
    Thread 1:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x902b0114 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x902afa18 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x90b23664 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x90b2359c -[NSRunLoop run] + 76
    6 com.apple.WebKit 0x94133410 +[WebFileDatabase _syncLoop:] + 176
    7 com.apple.Foundation 0x90b146d4 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 2 Crashed:
    0 com.apple.Foundation 0x90b2f620 _NSRaiseError + 264
    1 com.apple.Foundation 0x90b2f35c +[NSException raise:format:] + 40
    2 com.apple.Foundation 0x90b52044 -[NSConcreteFileHandle readDataOfLength:] + 508
    3 com.apple.Foundation 0x90b52844 -[NSHTTPCookieDiskStorage(NSInternal) _saveCookies] + 292
    4 com.apple.Foundation 0x90b525ec saveTimerCallback + 96
    5 com.apple.CoreFoundation 0x902c3aec __CFRunLoopDoTimer + 184
    6 com.apple.CoreFoundation 0x902b0464 __CFRunLoopRun + 1680
    7 com.apple.CoreFoundation 0x902afa18 CFRunLoopRunSpecific + 268
    8 com.apple.Foundation 0x90b3bb9c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    9 com.apple.Foundation 0x90b146d4 forkThreadForFunction + 108
    10 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x902b0114 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x902afa18 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x90b3ccdc +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x90b146d4 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9001f20c select + 12
    1 com.apple.CoreFoundation 0x902c29a8 __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002b8a8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9003001c pthreadcondwait + 488
    2 com.apple.Foundation 0x90b1b840 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Syndication 0x9b6a950c -[AsyncDB _run:] + 192
    4 com.apple.Foundation 0x90b146d4 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 2 crashed with PPC Thread State 64:
    srr0: 0x0000000090b2f620 srr1: 0x000000000202f030 vrsave: 0x0000000000000000
    cr: 0x24024422 xer: 0x0000000000000007 lr: 0x0000000090b2f5f8 ctr: 0x0000000090af145c
    r0: 0x0000000000000000 r1: 0x00000000f0182400 r2: 0x00000000a0aef508 r3: 0x00000000f0181fb0
    r4: 0x0000000000000000 r5: 0x0000000090af0d84 r6: 0x00000000f0182034 r7: 0x00000000000000ff
    r8: 0x00000000f0182020 r9: 0x00000000004c3b20 r10: 0x000000009091e648 r11: 0x0000000024024422
    r12: 0x0000000090af145c r13: 0x0000000000000000 r14: 0x0000000000000001 r15: 0x0000000000000000
    r16: 0x0000000000000000 r17: 0x00000000a0b12720 r18: 0x00000000a0b12720 r19: 0x00000000a0b12720
    r20: 0x000000000000000c r21: 0x00000000ffffffff r22: 0x00000000004c32d8 r23: 0x00000000909885cc
    r24: 0x0000000000000000 r25: 0x0000000005af1000 r26: 0x0000000005626a70 r27: 0x00000000ffffffff
    r28: 0x0000000005683c90 r29: 0x00000000a0af5d28 r30: 0x00000000ffffffff r31: 0x0000000090b2f528
    Binary Images Description:
    0x1000 - 0xdafff com.apple.Safari 2.0.3 (417.8) /Applications/Safari.app/Contents/MacOS/Safari
    0x3f1000 - 0x3f3fff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x8fe00000 - 0x8fe54fff dyld 44.2 /usr/lib/dyld
    0x90000000 - 0x901b3fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x9020c000 - 0x9025ffff com.apple.CoreText 1.0.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9028d000 - 0x90366fff com.apple.CoreFoundation 6.4.4 (368.25) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x903b0000 - 0x90688fff com.apple.CoreServices.CarbonCore 681.3 (671.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x906ee000 - 0x9075cfff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90826000 - 0x90826fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908fe000 - 0x908fefff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9091b000 - 0x9099ffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x909fa000 - 0x90a86fff com.apple.DesktopServices 1.3.1 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90aef000 - 0x90d19fff com.apple.Foundation 6.4.2 (567.21) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90ef3000 - 0x90f4dfff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90f8d000 - 0x90f8dfff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90fb1000 - 0x90fbdfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x91037000 - 0x91037fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x910ca000 - 0x91102fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x91157000 - 0x9117bfff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9125b000 - 0x91318fff com.apple.QD 3.8.18 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91402000 - 0x91412fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9146d000 - 0x91481fff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9149d000 - 0x914a8fff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x914b4000 - 0x914c1fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x914e8000 - 0x914fdfff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91510000 - 0x91562fff com.apple.NavigationServices 3.4.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9158f000 - 0x9159efff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x915a7000 - 0x915b3fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91630000 - 0x91648fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x91a18000 - 0x91a3dfff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91a97000 - 0x91c5afff com.apple.security 4.3 (25966) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91df2000 - 0x91e34fff com.apple.LaunchServices 10.4.6 (168.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x92011000 - 0x92323fff com.apple.HIToolbox 1.4.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92470000 - 0x924cefff com.apple.HIServices 1.5.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92503000 - 0x92b36fff com.apple.AppKit 6.4.4 (824.33) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92ec4000 - 0x93201fff com.apple.CoreGraphics 1.256.30 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x93302000 - 0x93317fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x9331f000 - 0x9344dfff com.apple.AddressBook.framework 4.0.3 (483) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x936bc000 - 0x936d4fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9396c000 - 0x93989fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x93992000 - 0x93a13fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x93a6d000 - 0x93a89fff com.apple.securityfoundation 2.1 (24988) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x93b46000 - 0x93bcdfff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93c40000 - 0x93c84fff com.apple.securityinterface 2.1 (24981) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94131000 - 0x941bdfff com.apple.WebKit 417.9 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9426e000 - 0x947fefff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x94872000 - 0x94b82fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x94c83000 - 0x94d15fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x94d3b000 - 0x94da0fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x94e77000 - 0x94f6cfff com.apple.JavaScriptCore 417.8 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x9540a000 - 0x9550cfff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x9565d000 - 0x95725fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x957a7000 - 0x957b7fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x957fb000 - 0x95804fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9580c000 - 0x9581efff libauto.dylib /usr/lib/libauto.dylib
    0x95afb000 - 0x95b6bfff com.apple.CoreData 80 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x95c6b000 - 0x95c95fff com.apple.Metadata 10.4.4 (121.34) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x95efd000 - 0x95f26fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x95f2f000 - 0x95f6cfff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x96002000 - 0x96006fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x96120000 - 0x961edfff com.apple.ColorSync 4.4.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x96262000 - 0x96262fff com.apple.Accelerate 1.1.1 (Accelerate 1.1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x962b6000 - 0x962eefff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x96319000 - 0x9635afff com.apple.CFNetwork 10.4.4 (129.9) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x96554000 - 0x96605fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9720f000 - 0x9722efff com.apple.Accelerate.vecLib 3.1.1 (vecLib 3.1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x97421000 - 0x9745bfff com.apple.ImageIO.framework 1.4.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x97478000 - 0x9747cfff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x97501000 - 0x9751efff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x976b4000 - 0x976cdfff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x976d5000 - 0x97706fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x9770e000 - 0x97751fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9784d000 - 0x97917fff com.apple.audio.toolbox.AudioToolbox 1.4.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9798b000 - 0x9798bfff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x97af2000 - 0x97c6afff com.apple.QuartzCore 1.4.5 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9b55c000 - 0x9b564fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x9b6a6000 - 0x9b6dcfff com.apple.Syndication 1.0.3 (49) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9b6fc000 - 0x9b70efff com.apple.SyndicationUI 1.0.3 (49) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x9e33b000 - 0x9e35bfff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x9ea04000 - 0x9ea12fff libz.1.dylib /usr/lib/libz.1.dylib
    0x9f2d5000 - 0x9f304fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x9f314000 - 0x9f323fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9f32b000 - 0x9f358fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9f35f000 - 0x9f380fff com.apple.DirectoryService.Framework 3.0 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9f38d000 - 0x9f697fff com.apple.WebCore 417.17 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9f81e000 - 0x9f884fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9f8b5000 - 0x9f8c5fff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9f8d1000 - 0x9f8fefff com.apple.openscripting 1.2.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9f918000 - 0x9f936fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9f941000 - 0x9f991fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9f99a000 - 0x9fa88fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x9fa8b000 - 0x9fb0bfff com.apple.audio.CoreAudio 3.0.2 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9fb4a000 - 0x9fb67fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9fb79000 - 0x9fc63fff com.apple.vImage 2.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9fc6b000 - 0x9fc6efff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x9fc70000 - 0x9fcdffff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x9fcf6000 - 0x9fcfefff libbsm.dylib /usr/lib/libbsm.dylib
    0x9fd02000 - 0x9fd82fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9fdcc000 - 0x9fde0fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9fdee000 - 0x9fe81fff com.apple.print.framework.PrintCore 4.3 (172.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9fec8000 - 0x9ffa6fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x9ffc6000 - 0x9ffedfff com.apple.SystemConfiguration 1.8.2 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    Model: PowerBook5,4, BootROM 4.8.6f0, 1 processors, PowerPC G4 (1.1), 1.33 GHz, 1.25 GB
    Graphics: ATI Mobility Radeon 9700, ATY,RV360M11, AGP, 64 MB
    Memory Module: SODIMM0/J25LOWER, 1 GB, DDR SDRAM, PC2700U-25330
    Memory Module: SODIMM1/J25UPPER, 256 MB, DDR SDRAM, PC2700U-25330
    AirPort: AirPort Extreme, 404.2 (3.90.34.0.p16)
    Modem: Jump, , V.92, Version 1.0,
    Bluetooth: Version 1.7.0f18, 2 service, 0 devices, 1 incoming serial ports
    Network Service: Internal Modem, PPP (PPPSerial), modem
    Network Service: AirPort, AirPort, en1
    PCI Card: TXN,PCIXXXX-00, cardbus, PC Card
    Parallel ATA Device: MATSHITACD-RW CW-8123,
    Parallel ATA Device: FUJITSU MHT2060AT, 55.89 GB
    USB Device: Bluetooth HCI, , Up to 12 Mb/sec, 500 mA
    USB Device: Apple Optical USB Mouse, Mitsumi Electric, Up to 1.5 Mb/sec, 500 mA

    Hi Jeffrey,
    I'm not sure what files I suggested to delete but this:
    3 com.apple.Foundation 0x90b52844 -[NSHTTPCookieDiskStorage(NSInternal) _saveCookies] + 292
    would seem to indicate that your Cookies file is corrupt.
    Try dragging /Users/YourUsername/Library/Cookies/Cookies.plist onto your Desktop and then retry Safari.
    Hope that helps!

  • When i try to open a site, i get several new pages open with 4 tabs apiece, 2 index of files pages and 2 server not found pages. i have had as many as 10 of these pop up one after the other. initial page loads but i have to close all the other pages.

    i have an HP with mozilla 4 browser

    Hi,
    Thanks for the reply. I have tried this on another machine running the same version of Blackboard. It works fine.
    Only difference is that the machine that has the JVM crash is running on Fujitsu PrimePower and the OS is Solaris 9 (but twigged for PrimePower).
    The one where it runs and starts up successfully is running on SunFire (OS is Solaris 10).
    I am wondering if there is a problem with the JVM loading required libraries because of the OS being different versions.
    Any leads on this is welcomed. Thank you.
    Regards,
    Hon Peng
    ===================
    On Fujitsu Primepower
    SunOS 5.9 Generic_118558-33 sun4us sparc FJSV,GPUS
    the Dependencies for libjvm.so are as follows:
    ===================
    bash-2.05$ ldd -r libjvm.so
    libsocket.so.1 => /usr/lib/libsocket.so.1
    libsched.so.1 => /usr/lib/libsched.so.1
    libdl.so.1 => /usr/lib/libdl.so.1
    libCrun.so.1 => /usr/lib/libCrun.so.1
    libm.so.1 => /usr/lib/libm.so.1
    libthread.so.1 => /usr/lib/libthread.so.1
    libc.so.1 => /usr/lib/libc.so.1
    libnsl.so.1 => /usr/lib/libnsl.so.1
    libmp.so.2 => /usr/lib/libmp.so.2
    /usr/platform/FJSV,GPUS/lib/libc_psr.so.1
    =====================================
    On SunFire, Sun machine
    SunOS 5.10 Generic_118833-36 sun4u sparc SUNW,Sun-Fire-280R
    the dependencies are different for the libjvm.so:
    =====================================
    bash-2.05$ ldd -r libjvm.so
    libsocket.so.1 => /lib/libsocket.so.1
    libsched.so.1 => /usr/lib/libsched.so.1
    libdl.so.1 => /lib/libdl.so.1
    libCrun.so.1 => /usr/lib/libCrun.so.1
    libm.so.1 => /lib/libm.so.1
    libthread.so.1 => /lib/libthread.so.1
    libc.so.1 => /lib/libc.so.1
    libnsl.so.1 => /lib/libnsl.so.1
    libmp.so.2 => /lib/libmp.so.2
    libmd5.so.1 => /lib/libmd5.so.1
    libscf.so.1 => /lib/libscf.so.1
    libdoor.so.1 => /lib/libdoor.so.1
    libuutil.so.1 => /lib/libuutil.so.1
    /platform/SUNW,Sun-Fire-280R/lib/libc_psr.so.1
    libm.so.2 => /lib/libm.so.2
    /platform/SUNW,Sun-Fire-280R/lib/libmd5_psr.so.1

  • Problem with initial page load

    Hi,
    I have created an interactive guide to Yellowstone:
    http://www.expeditionguides.com/yellowstone/yellowstoneXG.html
    However, when I visit the site for the first time the main menu's background image doesn't show up. Instead, the page is black for 10-15 seconds (when I view it in a Firefox browser on my Galaxy smartphone, it never changes from black).  On my desktop Firefox browser, the main menu's background image eventually shows up and from that point on there is no problem.
    I am guessing that the problem stems from the fact that the page features a video and an extensive virtual tour, both of which are pretty large in size. My objective was to fade the main menu image when either the video or virtual tour buttons are selected, revealing the applicable content below.  Does anyone have a suggestion on how to tweak this to make the main menu image and buttons show up faster?
    Thanks,
    Paul

    I would try using OpenDNS servers. System Preferences>Network>Advanced>DNS. In the left side column click on the + sign and add the following:
    208.67.222.222
    208.67.220.220
    Click OK. Then click Apply.
    Info on OpenDNS is here:
    http://www.opendns.com/

  • Slow initia page load

    Hi there,
    I am experiencing another issue where loading the initial
    roboHelp home page can take up to 1-2 minutes. Once this page is
    loaded all subsequentrequests are fine. If I close the browser and
    wait an hour or so, I get the same slow response again. This
    happens even when I request the page on the server itself. I
    noticed on the server (win2000) dllhost.exe goes nuts taking up of
    50% CPU for 1-2 mins. Anyone got any ideas?
    Thanks for your time,
    Cam.

    It might be worth looking at any anti-virus software to see
    if that is the cause of the problem. I've seen instances with
    ordinary webhelp output where the initial load of the help took
    ages. Once the start page was assigned as "trusted" in the
    anti-virus software all was OK.

  • Issue with setting variable after certain validation in RTF

    Hi All,
    I have a requiremnt to set a variable value after certain validation in RTF, i tried by using below way.
    ?xdofx:if(($p_email is not null or $p_fax is not null ) and $p_ver is null and S_C = 'ABC' )?>
    <?xdoxslt:set_variable($_XDOCTX,'SC','LIST_PRI')?> <?end if?>
    So here i need to set the variable 'SC' with value 'LIST_PRI' once the above if condition satisfied. then i tried to get the value as below :
    <?if: xdoxslt:get_variable($_XDOCTX, 'SC')='LIST_PRI'?><?L?><?end if?>
    But it is not working properly with if statement and set_variable statement, please help me on this
    Thanks

    Change the code as follows and give it a try.
    <?if:(($p_email is !='' or $p_fax !='') and $p_ver= '' and S_C = 'ABC' )?>
    <?xdoxslt:set_variable($_XDOCTX,'SC','LIST_PRI')?><?end if?>
    Or send the RTF and xml file to bipuser@gmail and I will take a look. Update this thread to let me know if you have sent me the files.
    Thanks,
    Bipuser

Maybe you are looking for

  • NW Log Error

    Hello, We are on MII 12.1.7 build 47 I am getting below errors in NW logs (Default trace view) not sure what is it that causing these errors but I am afraid these errors might impact us sooner or later.. Any suggestions/recommendations will be of gre

  • Accounts Payable

    Dear All, Cany any one give me transaction code for A.P module. 1. For viewing only debit balances in vendor with ageging report.

  • Pre-order contents may differ again at the last minute

    It has happened again! It happened with the new Portishead album Third. At the last minute they put a note on the page saying that the contents are subject to change without notice and the final product may differ. Then one of the bonus live tracks g

  • OEPE support for ADF 11.1.2.x (11g R2)

    Hi there, Are there any plans to release a (preview) version of OEPE that supports ADF 11.1.2.x (i.e. ADF with JSF 2.0 / facelets)? Thanks, Murray Edited by: 974848 on Dec 4, 2012 2:56 AM

  • Converting mp3 voice recording to ulaw

    I am trying to take some voice over recordings that are in mp3 format and convert them to 8bit, 8khz, mono wav files or ulaw or alaw which i believe is the format used in the phone system.  Every time i export to a file with those settings, 8bit, 8kh