Attaching Images

westaust55

Moderator
Concur with IWP.
Thought it may have just been me.
Often go through the sequence:
Manage Attachments
Add file
Browse my computer
Select

But never get the button to actually upload file
Even if I repeat the process several times.
 

westaust55

Moderator
Did the 'basic uploader' function work?
When I have a problem with attachments, after clicking the "ADD" button, the "Select File" button appears at the bottom of the small window.
But having selected an attachment, when the problems arise, I still only have the "Select File" button with no "Upload files" or "Clear List".

Worked okay this morning (Firefox) and with a trial just now (Firefox) but have experienced problems on many occassions recently ( IE8 on at least some occassions).
 
Last edited:

eclectic

Moderator
As we're in the Sandbox, these are just ramblings at the moment.

1. Take your picture.
2. Save it as a jpg.

3. Start the reply process, then use the
"Go Advanced" button.

4. "Manage Attachments" button.

5. "Add Files"

6. "Select Files"

7. Directory > Left click file >

8. "Upload"

9 "Done"
 

Attachments

eclectic

Moderator
Wobbly connectors.

Just testing a new toy.
This isn't a real project. :)

Code:
#picaxe 08M  ; RX
Do
SERIN 1,n1200,("123"),b0
sertxd (#b0,"  ")
loop

#rem
#picaxe 08M 'tx

Do
for b0 = 0 to 255
SEROUT 1,n1200,(85,85,85,"123",b0)
pause 1000
next
loop
 

Attachments

Last edited:

eclectic

Moderator
Slightly less wobbly

Cheapies working much better,
but do not use 'em for your Space Shuttle. :)

Code:
; better code pinched from Womai
;http://www.picaxeforum.co.uk/showthread.php?11531-433-MHz-wireless-link-trick&highlight=Serout+pause

#picaxe 08M ; RX
setfreq M4

Do
serin 1, n1200_4, ("123"), b0
Sertxd (#b0," ")
loop

#rem
#picaxe 08M  ' TX
setfreq M4

Do

For b0 = 0 to 255

serout 1, n1200_4, (85,85,85,85,85)
pause 5
serout 1, n1200_4, ("123", b0)
pause 1000

next

loop
Seems, to be working perfectly
range ~4 metres indoors.

Too cold and damp to take outside.
 

Attachments

Last edited:

westaust55

Moderator
Deletion of posts by others(ie Dicky Mint and WA55), which although they may constitute "hijacking" of a thread (and hi-jacking is not uncommon and were in fact about RF modules),
which did not contain advertising, profanities, porn or other "issues" of similar ilk whether the sand box or other section of the forum is not particularly nice.
There are other threads in the active forum area which have links to the posts in the sand box and "Sweeping" could lose worthwhile information.
 

Attachments

Last edited:
Top