| Author |
Topic Search Topic Options
|
nobby
Newbie
Joined: 24 February 2011
Location: UK, Bedford
Status: Offline
Points: 13
|
Post Options
Thanks(0)
Quote Reply
Topic: new newsletter insert image Posted: 27 February 2011 at 3:51am |
|
when you click theto insert an image the window that opens RTE_popup_adv_image.asp is not big enough and some of the buttons like upload are not viible and you can't scroll down to it. how can i increase the size of the pop up window
Edited by nobby - 27 February 2011 at 4:06am
|
 |
123Simples
Senior Member
Joined: 08 July 2007
Location: United Kingdom
Status: Offline
Points: 1192
|
Post Options
Thanks(0)
Quote Reply
Posted: 27 February 2011 at 3:53pm |
|
To the right hand corner (of the open window) there should be the - minimise button, the square that allows you to open the window larger, and of course X that closes the pop up window
|
|
|
 |
nobby
Newbie
Joined: 24 February 2011
Location: UK, Bedford
Status: Offline
Points: 13
|
Post Options
Thanks(0)
Quote Reply
Posted: 27 February 2011 at 6:14pm |
Hi
yes they are there but the maximise button is disabled and there are no scroll bars, so i can minimise it but not maximise it. I was hoping somone would know where the code that sets the size of the opo up window is as the only way to see the upload button is to copy the url into a new browser window and maximise that which is a bit tedious
|
 |
123Simples
Senior Member
Joined: 08 July 2007
Location: United Kingdom
Status: Offline
Points: 1192
|
Post Options
Thanks(0)
Quote Reply
Posted: 27 February 2011 at 7:17pm |
|
It sounds like it could be a either a corrupt upload, in which case you try re-uploading the software again, or just of interest what browser are you using?
|
|
|
 |
123Simples
Senior Member
Joined: 08 July 2007
Location: United Kingdom
Status: Offline
Points: 1192
|
Post Options
Thanks(0)
Quote Reply
Posted: 27 February 2011 at 7:19pm |
|
Perhaps some software on your own computer is causing the pop up not to function correctly. If you PM me with the actual address where the software is located, perhaps I can help. It may mean just giving me temporary admin access to the newspad itself, but you can always change the password at your own discretion
|
|
|
 |
123Simples
Senior Member
Joined: 08 July 2007
Location: United Kingdom
Status: Offline
Points: 1192
|
Post Options
Thanks(0)
Quote Reply
Posted: 27 February 2011 at 7:23pm |
|
Just to add, I'm wondering if it is because you've embedded the software in your existing site?
|
|
|
 |
nobby
Newbie
Joined: 24 February 2011
Location: UK, Bedford
Status: Offline
Points: 13
|
Post Options
Thanks(0)
Quote Reply
Posted: 27 February 2011 at 9:17pm |
hi
I haven't touched any of the admin pages, which is where this is happening when i try to add a picture to a new post. surely there must be a bit of code some where that sets the height of the pop up
|
 |
123Simples
Senior Member
Joined: 08 July 2007
Location: United Kingdom
Status: Offline
Points: 1192
|
Post Options
Thanks(0)
Quote Reply
Posted: 28 February 2011 at 2:20pm |
It's probably something similar to the forum software. You could try this (but make a backup of the file first) Go to your includes FOLDER, and using a text editor, open up the includes/RTE_toolbar_inc.asp file On lines 110 to 114 inclusive you should see:
If blnAdvAddImage Then Response.Write("<img src=""" & strRTEImagePath & "post_button_image.gif"" align=""absmiddle"" border=""0"" onClick=""winOpener(\'RTE_popup_adv_image.asp\',\'insertImg\',0,0,775,402)"" title=""" & strTxtAddImage & """ class=""WebWizRTEbutton"" onmouseover=""overIcon(this)"" onmouseout=""outIcon(this)"">") ElseIf blnAddImage Then Response.Write("<img src=""" & strRTEImagePath & "post_button_image.gif"" align=""absmiddle"" border=""0"" onClick=""winOpener(\'RTE_popup_image.asp\',\'insertImg\',0,0,550,360)"" title=""" & strTxtAddImage & """ class=""WebWizRTEbutton"" onmouseover=""overIcon(this)"" onmouseout=""outIcon(this)"">") End If |
Try changing the 0 I highlighted in red to 1, so it says:
If blnAdvAddImage Then Response.Write("<img src=""" & strRTEImagePath & "post_button_image.gif"" align=""absmiddle"" border=""0"" onClick=""winOpener(\'RTE_popup_adv_image.asp\',\'insertImg\',1,0,775,402)"" title=""" & strTxtAddImage & """ class=""WebWizRTEbutton"" onmouseover=""overIcon(this)"" onmouseout=""outIcon(this)"">") ElseIf blnAddImage Then Response.Write("<img src=""" & strRTEImagePath & "post_button_image.gif"" align=""absmiddle"" border=""0"" onClick=""winOpener(\'RTE_popup_image.asp\',\'insertImg\',0,0,550,360)"" title=""" & strTxtAddImage & """ class=""WebWizRTEbutton"" onmouseover=""overIcon(this)"" onmouseout=""outIcon(this)"">") End If |
In theory that should give you a scrollbar In fact that line - 0,0,775,402 I'm fairly certain 775, 402 and width and height anyway But have a play and let me know what happens
|
|
|
 |